1 Star 0 Fork 2

HoperunHarmony/stress-ng

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
core-time.c 2.97 KB
一键复制 编辑 原始数据 按行查看 历史
Colin Ian King 提交于 2022-01-29 11:31 . core-, stress-: update copyright
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2022 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
#define SECONDS_IN_MINUTE (60.0)
#define SECONDS_IN_HOUR (60.0 * SECONDS_IN_MINUTE)
#define SECONDS_IN_DAY (24.0 * SECONDS_IN_HOUR)
#define SECONDS_IN_YEAR (365.2425 * SECONDS_IN_DAY)
/* Approx, for Gregorian calendar */
/*
* stress_timeval_to_double()
* convert timeval to seconds as a double
*/
double stress_timeval_to_double(const struct timeval *tv)
{
return (double)tv->tv_sec + ((double)tv->tv_usec * ONE_MILLIONTH);
}
/*
* stress_time_now()
* time in seconds as a double
*/
double stress_time_now(void)
{
struct timeval now;
if (gettimeofday(&now, NULL) < 0)
return -1.0;
return stress_timeval_to_double(&now);
}
/*
* stress_format_time()
* format a unit of time into human readable format
*/
static inline void stress_format_time(
const bool last, /* Last unit to format */
const double secs_in_units, /* Seconds in the specific time unit */
const char *units, /* Unit of time */
char **ptr, /* Destination string ptr */
double *duration, /* Duration left in seconds */
size_t *len) /* Length of string left at ptr */
{
const unsigned long val = (unsigned long)(*duration / secs_in_units);
if (last || (val > 0)) {
int ret;
if (last)
ret = snprintf(*ptr, *len, "%.2f %ss", *duration, units);
else
ret = snprintf(*ptr, *len, "%lu %s%s, ", val, units,
(val > 1) ? "s" : "");
if (ret > 0) {
*len -= (size_t)ret;
*ptr += ret;
}
}
*duration -= secs_in_units * (double)val;
}
/*
* stress_duration_to_str
* duration in seconds to a human readable string
*/
const char *stress_duration_to_str(const double duration)
{
static char str[128];
char *ptr = str;
size_t len = sizeof(str) - 1;
double dur = duration;
*str = '\0';
if (duration > 60.0) {
(void)shim_strlcpy(ptr, " (", len);
ptr += 2;
len -= 2;
stress_format_time(false, SECONDS_IN_YEAR, "year", &ptr, &dur, &len);
stress_format_time(false, SECONDS_IN_DAY, "day", &ptr, &dur, &len);
stress_format_time(false, SECONDS_IN_HOUR, "hour", &ptr, &dur, &len);
stress_format_time(false, SECONDS_IN_MINUTE, "min", &ptr, &dur, &len);
stress_format_time(true, 1, "sec", &ptr, &dur, &len);
(void)shim_strlcpy(ptr, ")", len);
}
return str;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hoperun_harmony/stress-ng.git
git@gitee.com:hoperun_harmony/stress-ng.git
hoperun_harmony
stress-ng
stress-ng
master

搜索帮助