2 * Copyright (C) 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #include <common/time.h>
19 #include <common/macros.h>
20 #include <common/error.h>
29 static bool utf8_output_supported
;
32 bool locale_supports_utf8(void)
34 return utf8_output_supported
;
38 int timespec_to_ms(struct timespec ts
, unsigned long *ms
)
40 unsigned long res
, remain_ms
;
42 if (ts
.tv_sec
> ULONG_MAX
/ MSEC_PER_SEC
) {
44 return -1; /* multiplication overflow */
46 res
= ts
.tv_sec
* MSEC_PER_SEC
;
47 remain_ms
= ULONG_MAX
- res
;
48 if (ts
.tv_nsec
/ NSEC_PER_MSEC
> remain_ms
) {
50 return -1; /* addition overflow */
52 res
+= ts
.tv_nsec
/ NSEC_PER_MSEC
;
58 struct timespec
timespec_abs_diff(struct timespec t1
, struct timespec t2
)
60 uint64_t ts1
= (uint64_t) t1
.tv_sec
* (uint64_t) NSEC_PER_SEC
+
61 (uint64_t) t1
.tv_nsec
;
62 uint64_t ts2
= (uint64_t) t2
.tv_sec
* (uint64_t) NSEC_PER_SEC
+
63 (uint64_t) t2
.tv_nsec
;
64 uint64_t diff
= max(ts1
, ts2
) - min(ts1
, ts2
);
67 res
.tv_sec
= diff
/ (uint64_t) NSEC_PER_SEC
;
68 res
.tv_nsec
= diff
% (uint64_t) NSEC_PER_SEC
;
73 void __attribute__((constructor
)) init_locale_utf8_support(void)
75 const char *program_locale
= setlocale(LC_ALL
, NULL
);
76 const char *lang
= getenv("LANG");
78 if (program_locale
&& strstr(program_locale
, "utf8")) {
79 utf8_output_supported
= true;
80 } else if (lang
&& strstr(lang
, "utf8")) {
81 utf8_output_supported
= true;
86 int time_to_iso8601_str(time_t time
, char *str
, size_t len
)
93 if (len
< ISO8601_STR_LEN
) {
94 ERR("Buffer too short to format ISO 8601 timestamp: %zu bytes provided when at least %zu are needed",
95 len
, ISO8601_STR_LEN
);
100 tm_result
= localtime_r(&time
, &tm_storage
);
103 PERROR("Failed to break down timestamp to tm structure");
107 strf_ret
= strftime(str
, len
, "%Y%m%dT%H%M%S%z", tm_result
);
110 ERR("Failed to format timestamp as local time");
This page took 0.031897 seconds and 4 git commands to generate.