]>
Commit | Line | Data |
---|---|---|
db9ecf05 | 1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
9a98c7a1 LP |
2 | #pragma once |
3 | ||
7c67c79c | 4 | #include <time.h> |
9a98c7a1 | 5 | |
0c15577a | 6 | #include "forward.h" |
9a98c7a1 | 7 | |
70887c5f ZJS |
8 | #define PRI_NSEC PRIu64 |
9 | #define PRI_USEC PRIu64 | |
10 | #define NSEC_FMT "%" PRI_NSEC | |
11 | #define USEC_FMT "%" PRI_USEC | |
ccd06097 | 12 | |
9a98c7a1 LP |
13 | typedef struct dual_timestamp { |
14 | usec_t realtime; | |
15 | usec_t monotonic; | |
16 | } dual_timestamp; | |
17 | ||
fe624c4c LP |
18 | typedef struct triple_timestamp { |
19 | usec_t realtime; | |
20 | usec_t monotonic; | |
21 | usec_t boottime; | |
22 | } triple_timestamp; | |
23 | ||
7b3eb5c9 LB |
24 | typedef enum TimestampStyle { |
25 | TIMESTAMP_PRETTY, | |
26 | TIMESTAMP_US, | |
27 | TIMESTAMP_UTC, | |
28 | TIMESTAMP_US_UTC, | |
ed4a5b43 | 29 | TIMESTAMP_UNIX, |
64f3419e | 30 | TIMESTAMP_DATE, |
7b3eb5c9 | 31 | _TIMESTAMP_STYLE_MAX, |
2d93c20e | 32 | _TIMESTAMP_STYLE_INVALID = -EINVAL, |
7b3eb5c9 LB |
33 | } TimestampStyle; |
34 | ||
7c0eb30e LP |
35 | #define USEC_INFINITY ((usec_t) UINT64_MAX) |
36 | #define NSEC_INFINITY ((nsec_t) UINT64_MAX) | |
3a43da28 KS |
37 | |
38 | #define MSEC_PER_SEC 1000ULL | |
609e002e LP |
39 | #define USEC_PER_SEC ((usec_t) 1000000ULL) |
40 | #define USEC_PER_MSEC ((usec_t) 1000ULL) | |
3a43da28 KS |
41 | #define NSEC_PER_SEC ((nsec_t) 1000000000ULL) |
42 | #define NSEC_PER_MSEC ((nsec_t) 1000000ULL) | |
43 | #define NSEC_PER_USEC ((nsec_t) 1000ULL) | |
609e002e LP |
44 | |
45 | #define USEC_PER_MINUTE ((usec_t) (60ULL*USEC_PER_SEC)) | |
3a43da28 | 46 | #define NSEC_PER_MINUTE ((nsec_t) (60ULL*NSEC_PER_SEC)) |
609e002e | 47 | #define USEC_PER_HOUR ((usec_t) (60ULL*USEC_PER_MINUTE)) |
3a43da28 | 48 | #define NSEC_PER_HOUR ((nsec_t) (60ULL*NSEC_PER_MINUTE)) |
609e002e | 49 | #define USEC_PER_DAY ((usec_t) (24ULL*USEC_PER_HOUR)) |
3a43da28 | 50 | #define NSEC_PER_DAY ((nsec_t) (24ULL*NSEC_PER_HOUR)) |
609e002e | 51 | #define USEC_PER_WEEK ((usec_t) (7ULL*USEC_PER_DAY)) |
3a43da28 | 52 | #define NSEC_PER_WEEK ((nsec_t) (7ULL*NSEC_PER_DAY)) |
609e002e | 53 | #define USEC_PER_MONTH ((usec_t) (2629800ULL*USEC_PER_SEC)) |
3a43da28 | 54 | #define NSEC_PER_MONTH ((nsec_t) (2629800ULL*NSEC_PER_SEC)) |
609e002e | 55 | #define USEC_PER_YEAR ((usec_t) (31557600ULL*USEC_PER_SEC)) |
3a43da28 | 56 | #define NSEC_PER_YEAR ((nsec_t) (31557600ULL*NSEC_PER_SEC)) |
9a98c7a1 | 57 | |
21b3a0fc LP |
58 | /* We assume a maximum timezone length of 6. TZNAME_MAX is not defined on Linux, but glibc internally initializes this |
59 | * to 6. Let's rely on that. */ | |
67bd5620 | 60 | #define FORMAT_TIMESTAMP_MAX (3U+1U+10U+1U+8U+1U+6U+1U+6U+1U) |
67bd5620 LP |
61 | #define FORMAT_TIMESTAMP_RELATIVE_MAX 256U |
62 | #define FORMAT_TIMESPAN_MAX 64U | |
9a98c7a1 | 63 | |
2d60169d | 64 | #define TIME_T_MAX (time_t)((UINTMAX_C(1) << ((sizeof(time_t) << 3) - 1)) - 1) |
e4746b57 | 65 | |
65b58433 | 66 | #define DUAL_TIMESTAMP_NULL ((dual_timestamp) {}) |
affde1d7 | 67 | #define DUAL_TIMESTAMP_INFINITY ((dual_timestamp) { USEC_INFINITY, USEC_INFINITY }) |
65b58433 | 68 | #define TRIPLE_TIMESTAMP_NULL ((triple_timestamp) {}) |
842129f5 | 69 | |
c876cbdd YW |
70 | #define TIMESPEC_OMIT ((const struct timespec) { .tv_nsec = UTIME_OMIT }) |
71 | ||
9a98c7a1 | 72 | usec_t now(clockid_t clock); |
45d7a8bb | 73 | nsec_t now_nsec(clockid_t clock); |
9a98c7a1 | 74 | |
3ecd6fa9 | 75 | usec_t map_clock_usec_raw(usec_t from, usec_t from_base, usec_t to_base); |
7c0eb30e LP |
76 | usec_t map_clock_usec(usec_t from, clockid_t from_clock, clockid_t to_clock); |
77 | ||
fa5a0251 | 78 | dual_timestamp* dual_timestamp_now(dual_timestamp *ts); |
9a98c7a1 | 79 | dual_timestamp* dual_timestamp_from_realtime(dual_timestamp *ts, usec_t u); |
cae0c5e0 | 80 | dual_timestamp* dual_timestamp_from_monotonic(dual_timestamp *ts, usec_t u); |
ba4e0427 | 81 | dual_timestamp* dual_timestamp_from_boottime(dual_timestamp *ts, usec_t u); |
9a98c7a1 | 82 | |
fa5a0251 | 83 | triple_timestamp* triple_timestamp_now(triple_timestamp *ts); |
fe624c4c | 84 | triple_timestamp* triple_timestamp_from_realtime(triple_timestamp *ts, usec_t u); |
7cd07551 | 85 | triple_timestamp* triple_timestamp_from_boottime(triple_timestamp *ts, usec_t u); |
fe624c4c LP |
86 | |
87 | #define DUAL_TIMESTAMP_HAS_CLOCK(clock) \ | |
88 | IN_SET(clock, CLOCK_REALTIME, CLOCK_REALTIME_ALARM, CLOCK_MONOTONIC) | |
89 | ||
90 | #define TRIPLE_TIMESTAMP_HAS_CLOCK(clock) \ | |
91 | IN_SET(clock, CLOCK_REALTIME, CLOCK_REALTIME_ALARM, CLOCK_MONOTONIC, CLOCK_BOOTTIME, CLOCK_BOOTTIME_ALARM) | |
92 | ||
1f65fd49 ZJS |
93 | static inline bool timestamp_is_set(usec_t timestamp) { |
94 | return timestamp > 0 && timestamp != USEC_INFINITY; | |
95 | } | |
96 | ||
34cf6c43 | 97 | static inline bool dual_timestamp_is_set(const dual_timestamp *ts) { |
1f65fd49 ZJS |
98 | return timestamp_is_set(ts->realtime) || |
99 | timestamp_is_set(ts->monotonic); | |
966204e0 | 100 | } |
9a98c7a1 | 101 | |
34cf6c43 | 102 | static inline bool triple_timestamp_is_set(const triple_timestamp *ts) { |
1f65fd49 ZJS |
103 | return timestamp_is_set(ts->realtime) || |
104 | timestamp_is_set(ts->monotonic) || | |
105 | timestamp_is_set(ts->boottime); | |
fe624c4c LP |
106 | } |
107 | ||
108 | usec_t triple_timestamp_by_clock(triple_timestamp *ts, clockid_t clock); | |
109 | ||
44a6b1b6 | 110 | usec_t timespec_load(const struct timespec *ts) _pure_; |
3a730176 | 111 | nsec_t timespec_load_nsec(const struct timespec *ts) _pure_; |
ae7c644c ZJS |
112 | struct timespec* timespec_store(struct timespec *ts, usec_t u); |
113 | struct timespec* timespec_store_nsec(struct timespec *ts, nsec_t n); | |
9a98c7a1 | 114 | |
52bb308c LP |
115 | #define TIMESPEC_STORE(u) timespec_store(&(struct timespec) {}, (u)) |
116 | ||
44a6b1b6 | 117 | usec_t timeval_load(const struct timeval *tv) _pure_; |
ae7c644c | 118 | struct timeval* timeval_store(struct timeval *tv, usec_t u); |
9a98c7a1 | 119 | |
52bb308c LP |
120 | #define TIMEVAL_STORE(u) timeval_store(&(struct timeval) {}, (u)) |
121 | ||
6c6368e9 | 122 | char* format_timestamp_style(char *buf, size_t l, usec_t t, TimestampStyle style) _warn_unused_result_; |
d65c289f | 123 | char* format_timestamp_relative_full(char *buf, size_t l, usec_t t, clockid_t clock, bool implicit_left) _warn_unused_result_; |
6c6368e9 | 124 | char* format_timespan(char *buf, size_t l, usec_t t, usec_t accuracy) _warn_unused_result_; |
9a98c7a1 | 125 | |
d5e6f36c | 126 | _warn_unused_result_ |
d65c289f MY |
127 | static inline char* format_timestamp_relative(char *buf, size_t l, usec_t t) { |
128 | return format_timestamp_relative_full(buf, l, t, CLOCK_REALTIME, /* implicit_left = */ false); | |
129 | } | |
130 | _warn_unused_result_ | |
131 | static inline char* format_timestamp_relative_monotonic(char *buf, size_t l, usec_t t) { | |
132 | return format_timestamp_relative_full(buf, l, t, CLOCK_MONOTONIC, /* implicit_left = */ false); | |
d5e6f36c ZJS |
133 | } |
134 | ||
6c6368e9 | 135 | _warn_unused_result_ |
ae7c644c | 136 | static inline char* format_timestamp(char *buf, size_t l, usec_t t) { |
7b3eb5c9 LB |
137 | return format_timestamp_style(buf, l, t, TIMESTAMP_PRETTY); |
138 | } | |
139 | ||
ae7c644c ZJS |
140 | /* Note: the lifetime of the compound literal is the immediately surrounding block, |
141 | * see C11 §6.5.2.5, and | |
142 | * https://stackoverflow.com/questions/34880638/compound-literal-lifetime-and-if-blocks */ | |
143 | #define FORMAT_TIMESTAMP(t) format_timestamp((char[FORMAT_TIMESTAMP_MAX]){}, FORMAT_TIMESTAMP_MAX, t) | |
32fc5c47 ZJS |
144 | #define FORMAT_TIMESTAMP_RELATIVE(t) \ |
145 | format_timestamp_relative((char[FORMAT_TIMESTAMP_RELATIVE_MAX]){}, FORMAT_TIMESTAMP_RELATIVE_MAX, t) | |
d65c289f MY |
146 | #define FORMAT_TIMESTAMP_RELATIVE_MONOTONIC(t) \ |
147 | format_timestamp_relative_monotonic((char[FORMAT_TIMESTAMP_RELATIVE_MAX]){}, FORMAT_TIMESTAMP_RELATIVE_MAX, t) | |
5291f26d | 148 | #define FORMAT_TIMESPAN(t, accuracy) format_timespan((char[FORMAT_TIMESPAN_MAX]){}, FORMAT_TIMESPAN_MAX, t, accuracy) |
0086ef19 ZJS |
149 | #define FORMAT_TIMESTAMP_STYLE(t, style) \ |
150 | format_timestamp_style((char[FORMAT_TIMESTAMP_MAX]){}, FORMAT_TIMESTAMP_MAX, t, style) | |
32fc5c47 | 151 | |
cf98b66d | 152 | int parse_timestamp(const char *t, usec_t *ret); |
9a98c7a1 | 153 | |
cf98b66d YW |
154 | int parse_sec(const char *t, usec_t *ret); |
155 | int parse_sec_fix_0(const char *t, usec_t *ret); | |
156 | int parse_sec_def_infinity(const char *t, usec_t *ret); | |
157 | int parse_time(const char *t, usec_t *ret, usec_t default_unit); | |
158 | int parse_nsec(const char *t, nsec_t *ret); | |
03cc26dd | 159 | |
cf98b66d | 160 | int get_timezones(char ***ret); |
bdaeafea ZJS |
161 | int verify_timezone(const char *name, int log_level); |
162 | static inline bool timezone_is_valid(const char *name, int log_level) { | |
163 | return verify_timezone(name, log_level) >= 0; | |
164 | } | |
77ff2de9 | 165 | |
fe624c4c | 166 | bool clock_supported(clockid_t clock); |
babc21fd | 167 | |
1007ec60 LP |
168 | usec_t usec_shift_clock(usec_t, clockid_t from, clockid_t to); |
169 | ||
cf98b66d | 170 | int get_timezone(char **ret); |
0dc39dff | 171 | const char* etc_localtime(void); |
7c67c79c | 172 | |
6f5cf415 LP |
173 | int mktime_or_timegm_usec(struct tm *tm, bool utc, usec_t *ret); |
174 | int localtime_or_gmtime_usec(usec_t t, bool utc, struct tm *ret); | |
87b8ce69 | 175 | |
77372afb YW |
176 | uint32_t usec_to_jiffies(usec_t usec); |
177 | usec_t jiffies_to_usec(uint32_t jiffies); | |
53f555b6 | 178 | |
9a9a4f10 LP |
179 | bool in_utc_timezone(void); |
180 | ||
53f555b6 | 181 | static inline usec_t usec_add(usec_t a, usec_t b) { |
cb3e854f ZJS |
182 | /* Adds two time values, and makes sure USEC_INFINITY as input results as USEC_INFINITY in output, |
183 | * and doesn't overflow. */ | |
407bfa0d | 184 | return saturate_add(a, b, USEC_INFINITY); |
53f555b6 | 185 | } |
5d634ca8 | 186 | |
54d8ef14 | 187 | static inline usec_t usec_sub_unsigned(usec_t timestamp, usec_t delta) { |
04a1d84c LP |
188 | if (timestamp == USEC_INFINITY) /* Make sure infinity doesn't degrade */ |
189 | return USEC_INFINITY; | |
54d8ef14 | 190 | if (timestamp < delta) |
04a1d84c LP |
191 | return 0; |
192 | ||
193 | return timestamp - delta; | |
5d634ca8 | 194 | } |
1bb4b028 | 195 | |
54d8ef14 | 196 | static inline usec_t usec_sub_signed(usec_t timestamp, int64_t delta) { |
782c6e5c LP |
197 | if (delta == INT64_MIN) { /* prevent overflow */ |
198 | assert_cc(-(INT64_MIN + 1) == INT64_MAX); | |
199 | assert_cc(USEC_INFINITY > INT64_MAX); | |
200 | return usec_add(timestamp, (usec_t) INT64_MAX + 1); | |
201 | } | |
54d8ef14 LP |
202 | if (delta < 0) |
203 | return usec_add(timestamp, (usec_t) (-delta)); | |
782c6e5c LP |
204 | |
205 | return usec_sub_unsigned(timestamp, (usec_t) delta); | |
54d8ef14 LP |
206 | } |
207 | ||
4251512e YW |
208 | static inline int usleep_safe(usec_t usec) { |
209 | /* usleep() takes useconds_t that is (typically?) uint32_t. Also, usleep() may only support the | |
b401efe5 LP |
210 | * range [0, 1000000]. See usleep(3). Let's override usleep() with clock_nanosleep(). |
211 | * | |
212 | * ⚠️ Note we are not using plain nanosleep() here, since that operates on CLOCK_REALTIME, not | |
213 | * CLOCK_MONOTONIC! */ | |
4251512e | 214 | |
97df9fa0 YW |
215 | if (usec == 0) |
216 | return 0; | |
217 | ||
81660754 DR |
218 | /* `clock_nanosleep()` does not use `errno`, but returns positive error codes. */ |
219 | return -clock_nanosleep(CLOCK_MONOTONIC, 0, TIMESPEC_STORE(usec), NULL); | |
4251512e YW |
220 | } |
221 | ||
bd5770da YW |
222 | /* The last second we can format is 31. Dec 9999, 1s before midnight, because otherwise we'd enter 5 digit |
223 | * year territory. However, since we want to stay away from this in all timezones we take one day off. */ | |
224 | #define USEC_TIMESTAMP_FORMATTABLE_MAX_64BIT ((usec_t) 253402214399000000) /* Thu 9999-12-30 23:59:59 UTC */ | |
da890466 | 225 | /* With a 32-bit time_t we can't go beyond 2038... |
bd5770da YW |
226 | * We parse timestamp with RFC-822/ISO 8601 (e.g. +06, or -03:00) as UTC, hence the upper bound must be off |
227 | * by USEC_PER_DAY. See parse_timestamp() for more details. */ | |
228 | #define USEC_TIMESTAMP_FORMATTABLE_MAX_32BIT (((usec_t) INT32_MAX) * USEC_PER_SEC - USEC_PER_DAY) | |
1bb4b028 | 229 | #if SIZEOF_TIME_T == 8 |
bd5770da | 230 | # define USEC_TIMESTAMP_FORMATTABLE_MAX USEC_TIMESTAMP_FORMATTABLE_MAX_64BIT |
1bb4b028 | 231 | #elif SIZEOF_TIME_T == 4 |
bd5770da | 232 | # define USEC_TIMESTAMP_FORMATTABLE_MAX USEC_TIMESTAMP_FORMATTABLE_MAX_32BIT |
1bb4b028 | 233 | #else |
cb3e854f | 234 | # error "Yuck, time_t is neither 4 nor 8 bytes wide?" |
1bb4b028 | 235 | #endif |
4f811d27 LP |
236 | |
237 | int time_change_fd(void); | |
7b3eb5c9 LB |
238 | |
239 | const char* timestamp_style_to_string(TimestampStyle t) _const_; | |
240 | TimestampStyle timestamp_style_from_string(const char *s) _pure_; |