1 | // |
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo |
---|
3 | // |
---|
4 | // The contents of this file are covered under the licence agreement in the |
---|
5 | // file "LICENCE" distributed with Cforall. |
---|
6 | // |
---|
7 | // time -- |
---|
8 | // |
---|
9 | // Author : Peter A. Buhr |
---|
10 | // Created On : Wed Mar 14 23:18:57 2018 |
---|
11 | // Last Modified By : Peter A. Buhr |
---|
12 | // Last Modified On : Tue Mar 27 16:37:37 2018 |
---|
13 | // Update Count : 564 |
---|
14 | // |
---|
15 | |
---|
16 | #pragma once |
---|
17 | |
---|
18 | // http://en.cppreference.com/w/cpp/header/chrono |
---|
19 | // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0355r5.html#refcc |
---|
20 | |
---|
21 | #include <time.h> // timespec |
---|
22 | extern "C" { |
---|
23 | #include <sys/time.h> // timeval |
---|
24 | } |
---|
25 | #include <iostream> // istype/ostype |
---|
26 | |
---|
27 | enum { TIMEGRAN = 1_000_000_000L }; // nanosecond granularity, except for timeval |
---|
28 | |
---|
29 | |
---|
30 | //######################### timeval ######################### |
---|
31 | |
---|
32 | static inline void ?{}( timeval & t ) {} |
---|
33 | static inline void ?{}( timeval & t, time_t sec ) { t.tv_sec = sec; t.tv_usec = 0; } |
---|
34 | static inline void ?{}( timeval & t, time_t sec, suseconds_t usec ) { t.tv_sec = sec; t.tv_usec = usec; } |
---|
35 | static inline void ?{}( timeval & t, zero_t ) { t.tv_sec = 0; t.tv_usec = 0; } |
---|
36 | static inline timeval ?=?( timeval & t, zero_t ) { return t{ 0 }; } |
---|
37 | static inline timeval ?+?( timeval & lhs, timeval rhs ) { return (timeval)@{ lhs.tv_sec + rhs.tv_sec, lhs.tv_usec + rhs.tv_usec }; } |
---|
38 | static inline timeval ?-?( timeval & lhs, timeval rhs ) { return (timeval)@{ lhs.tv_sec - rhs.tv_sec, lhs.tv_usec - rhs.tv_usec }; } |
---|
39 | static inline _Bool ?==?( timeval lhs, timeval rhs ) { return lhs.tv_sec == rhs.tv_sec && lhs.tv_usec == rhs.tv_usec; } |
---|
40 | static inline _Bool ?!=?( timeval lhs, timeval rhs ) { return lhs.tv_sec != rhs.tv_sec || lhs.tv_usec != rhs.tv_usec; } |
---|
41 | |
---|
42 | |
---|
43 | //######################### timespec ######################### |
---|
44 | |
---|
45 | static inline void ?{}( timespec & t ) {} |
---|
46 | static inline void ?{}( timespec & t, time_t sec ) { t.tv_sec = sec; t.tv_nsec = 0; } |
---|
47 | static inline void ?{}( timespec & t, time_t sec, __syscall_slong_t nsec ) { t.tv_sec = sec; t.tv_nsec = nsec; } |
---|
48 | static inline void ?{}( timespec & t, zero_t ) { t.tv_sec = 0; t.tv_nsec = 0; } |
---|
49 | static inline timespec ?=?( timespec & t, zero_t ) { return t{ 0 }; } |
---|
50 | static inline timespec ?+?( timespec & lhs, timespec rhs ) { return (timespec)@{ lhs.tv_sec + rhs.tv_sec, lhs.tv_nsec + rhs.tv_nsec }; } |
---|
51 | static inline timespec ?-?( timespec & lhs, timespec rhs ) { return (timespec)@{ lhs.tv_sec - rhs.tv_sec, lhs.tv_nsec - rhs.tv_nsec }; } |
---|
52 | static inline _Bool ?==?( timespec lhs, timespec rhs ) { return lhs.tv_sec == rhs.tv_sec && lhs.tv_nsec == rhs.tv_nsec; } |
---|
53 | static inline _Bool ?!=?( timespec lhs, timespec rhs ) { return lhs.tv_sec != rhs.tv_sec || lhs.tv_nsec != rhs.tv_nsec; } |
---|
54 | |
---|
55 | |
---|
56 | //######################### C time ######################### |
---|
57 | |
---|
58 | static inline char * ctime( time_t tp ) { char * buf = ctime( &tp ); buf[24] = '\0'; return buf; } |
---|
59 | static inline char * ctime_r( time_t tp, char * buf ) { ctime_r( &tp, buf ); buf[24] = '\0'; return buf; } |
---|
60 | static inline tm * gmtime( time_t tp ) { return gmtime( &tp ); } |
---|
61 | static inline tm * gmtime_r( time_t tp, tm * result ) { return gmtime_r( &tp, result ); } |
---|
62 | static inline tm * localtime( time_t tp ) { return localtime( &tp ); } |
---|
63 | static inline tm * localtime_r( time_t tp, tm * result ) { return localtime_r( &tp, result ); } |
---|
64 | |
---|
65 | //######################### Duration ######################### |
---|
66 | |
---|
67 | struct Duration { |
---|
68 | int64_t tv; |
---|
69 | }; |
---|
70 | |
---|
71 | static inline void ?{}( Duration & dur ) with( dur ) { tv = 0; } |
---|
72 | static inline void ?{}( Duration & dur, Duration d ) with( dur ) { tv = d.tv; } |
---|
73 | static inline void ?{}( Duration & dur, zero_t ) with( dur ) { tv = 0; } |
---|
74 | static inline Duration ?=?( Duration & dur, zero_t ) { return dur{ 0 }; } |
---|
75 | |
---|
76 | static inline void ?{}( Duration & dur, timeval t ) with( dur ) { |
---|
77 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000; |
---|
78 | } // Duration |
---|
79 | |
---|
80 | static inline void ?{}( Duration & dur, timespec t ) with( dur ) { |
---|
81 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec; |
---|
82 | } // Duration |
---|
83 | |
---|
84 | static inline Duration ?=?( Duration & dur, timeval t ) with( dur ) { |
---|
85 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000; |
---|
86 | return dur; |
---|
87 | } // ?=? |
---|
88 | |
---|
89 | static inline Duration ?=?( Duration & dur, timespec t ) with( dur ) { |
---|
90 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec; |
---|
91 | return dur; |
---|
92 | } // ?=? timespec |
---|
93 | |
---|
94 | static inline int64_t nsecs( Duration dur ) with( dur ) { return tv; } |
---|
95 | |
---|
96 | static inline Duration +?( Duration rhs ) with( rhs ) { return (Duration)@{ +tv }; } |
---|
97 | static inline Duration ?+?( Duration & lhs, Duration rhs ) { return (Duration)@{ lhs.tv + rhs.tv }; } |
---|
98 | static inline Duration ?+=?( Duration & lhs, Duration rhs ) { lhs = lhs + rhs; return lhs; } |
---|
99 | |
---|
100 | static inline Duration -?( Duration rhs ) with( rhs ) { return (Duration)@{ -tv }; } |
---|
101 | static inline Duration ?-?( Duration & lhs, Duration rhs ) { return (Duration)@{ lhs.tv - rhs.tv }; } |
---|
102 | static inline Duration ?-=?( Duration & lhs, Duration rhs ) { lhs = lhs - rhs; return lhs; } |
---|
103 | |
---|
104 | static inline Duration ?*?( Duration lhs, int64_t rhs ) { return (Duration)@{ lhs.tv * rhs }; } |
---|
105 | static inline Duration ?*?( int64_t lhs, Duration rhs ) { return (Duration)@{ lhs * rhs.tv }; } |
---|
106 | static inline Duration ?*=?( Duration & lhs, int64_t rhs ) { lhs = lhs * rhs; return lhs; } |
---|
107 | |
---|
108 | static inline Duration ?/?( Duration lhs, int64_t rhs ) { return (Duration)@{ lhs.tv / rhs }; } |
---|
109 | static inline int64_t ?/?( Duration lhs, Duration rhs ) { return lhs.tv / rhs.tv; } |
---|
110 | static inline Duration ?/=?( Duration & lhs, int64_t rhs ) { lhs = lhs / rhs; return lhs; } |
---|
111 | |
---|
112 | static inline Duration ?%?( Duration lhs, Duration rhs ) { return (Duration)@{ lhs.tv % rhs.tv }; } |
---|
113 | |
---|
114 | static inline _Bool ?==?( Duration lhs, Duration rhs ) { return lhs.tv == rhs.tv; } |
---|
115 | static inline _Bool ?!=?( Duration lhs, Duration rhs ) { return lhs.tv != rhs.tv; } |
---|
116 | static inline _Bool ?<? ( Duration lhs, Duration rhs ) { return lhs.tv < rhs.tv; } |
---|
117 | static inline _Bool ?<=?( Duration lhs, Duration rhs ) { return lhs.tv <= rhs.tv; } |
---|
118 | static inline _Bool ?>? ( Duration lhs, Duration rhs ) { return lhs.tv > rhs.tv; } |
---|
119 | static inline _Bool ?>=?( Duration lhs, Duration rhs ) { return lhs.tv >= rhs.tv; } |
---|
120 | |
---|
121 | static inline _Bool ?==?( Duration lhs, zero_t ) { return lhs.tv == 0; } |
---|
122 | static inline _Bool ?!=?( Duration lhs, zero_t ) { return lhs.tv != 0; } |
---|
123 | static inline _Bool ?<? ( Duration lhs, zero_t ) { return lhs.tv < 0; } |
---|
124 | static inline _Bool ?<=?( Duration lhs, zero_t ) { return lhs.tv <= 0; } |
---|
125 | static inline _Bool ?>? ( Duration lhs, zero_t ) { return lhs.tv > 0; } |
---|
126 | static inline _Bool ?>=?( Duration lhs, zero_t ) { return lhs.tv >= 0; } |
---|
127 | |
---|
128 | static inline Duration abs( Duration lhs ) { return lhs.tv >= 0 ? lhs : -lhs; } |
---|
129 | |
---|
130 | forall( dtype ostype | ostream( ostype ) ) ostype & ?|?( ostype & os, Duration dur ); |
---|
131 | |
---|
132 | static inline Duration ?`ns( int64_t nsec ) { return (Duration)@{ nsec }; } |
---|
133 | static inline Duration ?`us( int64_t usec ) { return (Duration)@{ usec * (TIMEGRAN / 1_000_000L) }; } |
---|
134 | static inline Duration ?`ms( int64_t msec ) { return (Duration)@{ msec * (TIMEGRAN / 1_000L) }; } |
---|
135 | static inline Duration ?`s ( int64_t sec ) { return (Duration)@{ sec * TIMEGRAN }; } |
---|
136 | static inline Duration ?`s ( double sec ) { return (Duration)@{ sec * TIMEGRAN }; } |
---|
137 | static inline Duration ?`m ( int64_t min ) { return (Duration)@{ min * (60L * TIMEGRAN) }; } |
---|
138 | static inline Duration ?`m ( double min ) { return (Duration)@{ min * (60L * TIMEGRAN) }; } |
---|
139 | static inline Duration ?`h ( int64_t hours ) { return (Duration)@{ hours * (3600L * TIMEGRAN) }; } |
---|
140 | static inline Duration ?`h ( double hours ) { return (Duration)@{ hours * (3600L * TIMEGRAN) }; } |
---|
141 | static inline Duration ?`d ( int64_t days ) { return (Duration)@{ days * (24L * 3600L * TIMEGRAN) }; } |
---|
142 | static inline Duration ?`d ( double days ) { return (Duration)@{ days * (24L * 3600L * TIMEGRAN) }; } |
---|
143 | static inline Duration ?`w ( int64_t weeks ) { return (Duration)@{ weeks * (7L * 24L * 3600L * TIMEGRAN) }; } |
---|
144 | static inline Duration ?`f ( int64_t fortnight ) { return (Duration)@{ fortnight * (14L * 24L * 3600L * TIMEGRAN) }; } |
---|
145 | |
---|
146 | static inline int64_t ?`ns ( Duration dur ) { return dur.tv; } |
---|
147 | static inline int64_t ?`us ( Duration dur ) { return dur.tv / (TIMEGRAN / 1_000_000L); } |
---|
148 | static inline int64_t ?`ms ( Duration dur ) { return dur.tv / (TIMEGRAN / 1_000L); } |
---|
149 | static inline int64_t ?`s ( Duration dur ) { return dur.tv / TIMEGRAN; } |
---|
150 | static inline int64_t ?`m ( Duration dur ) { return dur.tv / (60L * TIMEGRAN); } |
---|
151 | static inline int64_t ?`h ( Duration dur ) { return dur.tv / (3600L * TIMEGRAN); } |
---|
152 | static inline int64_t ?`d ( Duration dur ) { return dur.tv / (24L * 3600L * TIMEGRAN); } |
---|
153 | static inline int64_t ?`w ( Duration dur ) { return dur.tv / (7L * 24L * 3600L * TIMEGRAN); } |
---|
154 | static inline int64_t ?`f ( Duration dur ) { return dur.tv / (14L * 24L * 3600L * TIMEGRAN); } |
---|
155 | |
---|
156 | //------------------------- timeval (cont) ------------------------- |
---|
157 | |
---|
158 | static inline void ?{}( timeval & t, Duration dur ) with( dur ) { |
---|
159 | t.tv_sec = tv / TIMEGRAN; // seconds |
---|
160 | t.tv_usec = tv % TIMEGRAN / (TIMEGRAN / 1_000_000L); // microseconds |
---|
161 | } // ?{} |
---|
162 | |
---|
163 | //------------------------- timespec (cont) ------------------------- |
---|
164 | |
---|
165 | static inline void ?{}( timespec & t, Duration dur ) with( dur ) { |
---|
166 | t.tv_sec = tv / TIMEGRAN; // seconds |
---|
167 | t.tv_nsec = tv % TIMEGRAN; // nanoseconds |
---|
168 | } // Timespec |
---|
169 | |
---|
170 | |
---|
171 | //######################### Time ######################### |
---|
172 | |
---|
173 | |
---|
174 | struct Time { |
---|
175 | uint64_t tv; |
---|
176 | }; |
---|
177 | |
---|
178 | void mktime( Time & time, int year, int month, int day, int hour, int min, int sec, int nsec ); |
---|
179 | |
---|
180 | static inline void ?{}( Time & t ) with( t ) { |
---|
181 | tv = 0; |
---|
182 | } // Time |
---|
183 | |
---|
184 | static inline void ?{}( Time & time, int year, int month, int day, int hour, int min, int sec, int nsec ) { |
---|
185 | mktime( time, year, month, day, hour, min, sec, nsec ); |
---|
186 | } // Time |
---|
187 | |
---|
188 | static inline void ?{}( Time & time, int year, int month, int day, int hour, int min, int sec ) { |
---|
189 | mktime( time, year, month, day, hour, min, sec, 0 ); |
---|
190 | } // Time |
---|
191 | |
---|
192 | static inline void ?{}( Time & time, int year, int month, int day, int hour, int min ) { |
---|
193 | mktime( time, year, month, day, hour, min, 0, 0 ); |
---|
194 | } // Time |
---|
195 | |
---|
196 | static inline void ?{}( Time & time, int year, int month, int day, int hour ) { |
---|
197 | mktime( time, year, month, day, hour, 0, 0, 0 ); |
---|
198 | } // Time |
---|
199 | |
---|
200 | static inline void ?{}( Time & time, int year, int month, int day ) { |
---|
201 | mktime( time, year, month, day, 0, 0, 0, 0 ); |
---|
202 | } // Time |
---|
203 | |
---|
204 | static inline void ?{}( Time & time, int year, int month ) { |
---|
205 | mktime( time, year, month, 0, 0, 0, 0, 0 ); |
---|
206 | } // Time |
---|
207 | |
---|
208 | static inline void ?{}( Time & time, int year ) { |
---|
209 | mktime( time, year, 0, 0, 0, 0, 0, 0 ); |
---|
210 | } // Time |
---|
211 | |
---|
212 | static inline void ?{}( Time & time, timeval t ) with( time ) { |
---|
213 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000; |
---|
214 | } // Time |
---|
215 | |
---|
216 | static inline void ?{}( Time & time, timespec t ) with( time ) { |
---|
217 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec; |
---|
218 | } // Time |
---|
219 | |
---|
220 | static inline void ?{}( Time & t, zero_t ) { t.tv = 0; } |
---|
221 | static inline Time ?=?( Time & t, zero_t ) { return t{ 0 }; } |
---|
222 | |
---|
223 | static inline Time ?=?( Time & time, timeval t ) with( time ) { |
---|
224 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * (TIMEGRAN / 1_000_000L); |
---|
225 | return time; |
---|
226 | } // ?=? |
---|
227 | |
---|
228 | static inline Time ?=?( Time & time, timespec t ) with( time ) { |
---|
229 | tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec; |
---|
230 | return time; |
---|
231 | } // ?=? |
---|
232 | |
---|
233 | static inline void ?{}( timeval & t, Time time ) with( time ) { |
---|
234 | t.tv_sec = tv / TIMEGRAN; // seconds |
---|
235 | t.tv_usec = tv % TIMEGRAN / ( TIMEGRAN / 1_000_000L ); // microseconds |
---|
236 | } // ?{} |
---|
237 | |
---|
238 | static inline void ?{}( timespec & t, Time time ) with( time ) { |
---|
239 | t.tv_sec = tv / TIMEGRAN; // seconds |
---|
240 | t.tv_nsec = tv % TIMEGRAN; // nanoseconds |
---|
241 | } // ?{} |
---|
242 | |
---|
243 | static inline Time ?+?( Time & lhs, Duration rhs ) { return (Time)@{ lhs.tv + rhs.tv }; } |
---|
244 | static inline Time ?+?( Duration lhs, Time rhs ) { return rhs + lhs; } |
---|
245 | static inline Time ?+=?( Time & lhs, Duration rhs ) { lhs = lhs + rhs; return lhs; } |
---|
246 | |
---|
247 | static inline Duration ?-?( Time lhs, Time rhs ) { return (Duration)@{ lhs.tv - rhs.tv }; } |
---|
248 | static inline Time ?-?( Time lhs, Duration rhs ) { return (Time)@{ lhs.tv - rhs.tv }; } |
---|
249 | static inline Time ?-=?( Time & lhs, Duration rhs ) { lhs = lhs - rhs; return lhs; } |
---|
250 | static inline _Bool ?==?( Time lhs, Time rhs ) { return lhs.tv == rhs.tv; } |
---|
251 | static inline _Bool ?!=?( Time lhs, Time rhs ) { return lhs.tv != rhs.tv; } |
---|
252 | static inline _Bool ?<?( Time lhs, Time rhs ) { return lhs.tv < rhs.tv; } |
---|
253 | static inline _Bool ?<=?( Time lhs, Time rhs ) { return lhs.tv <= rhs.tv; } |
---|
254 | static inline _Bool ?>?( Time lhs, Time rhs ) { return lhs.tv > rhs.tv; } |
---|
255 | static inline _Bool ?>=?( Time lhs, Time rhs ) { return lhs.tv >= rhs.tv; } |
---|
256 | |
---|
257 | char * yy_mm_dd( Time time, char * buf ); |
---|
258 | static inline char * ?`ymd( Time time, char * buf ) { |
---|
259 | return yy_mm_dd( time, buf ); |
---|
260 | } // ymd |
---|
261 | |
---|
262 | char * mm_dd_yy( Time time, char * buf ); |
---|
263 | static inline char * ?`mdy( Time time, char * buf ) { |
---|
264 | return mm_dd_yy( time, buf ); |
---|
265 | } // mdy |
---|
266 | |
---|
267 | char * dd_mm_yy( Time time, char * buf ); |
---|
268 | static inline char * ?`dmy( Time time, char * buf ) { |
---|
269 | return dd_mm_yy( time, buf );; |
---|
270 | } // dmy |
---|
271 | |
---|
272 | size_t strftime( char * buf, size_t size, const char * fmt, Time time ); |
---|
273 | |
---|
274 | forall( dtype ostype | ostream( ostype ) ) ostype & ?|?( ostype & os, Time time ); |
---|
275 | |
---|
276 | |
---|
277 | //######################### Clock ######################### |
---|
278 | |
---|
279 | |
---|
280 | struct Clock { |
---|
281 | Duration offset; // for virtual clock: contains offset from real-time |
---|
282 | int clocktype; // implementation only -1 (virtual), CLOCK_REALTIME |
---|
283 | }; |
---|
284 | |
---|
285 | static inline void resetClock( Clock & clk ) with( clk ) { |
---|
286 | clocktype = CLOCK_REALTIME_COARSE; |
---|
287 | } // Clock::resetClock |
---|
288 | |
---|
289 | static inline void resetClock( Clock & clk, Duration adj ) with( clk ) { |
---|
290 | clocktype = -1; |
---|
291 | Duration tz = (timeval){ timezone, 0 }; |
---|
292 | offset = adj + tz; |
---|
293 | } // resetClock |
---|
294 | |
---|
295 | static inline void ?{}( Clock & clk ) { |
---|
296 | resetClock( clk ); |
---|
297 | } // Clock |
---|
298 | |
---|
299 | static inline void ?{}( Clock & clk, Duration adj ) { |
---|
300 | resetClock( clk, adj ); |
---|
301 | } // Clock |
---|
302 | |
---|
303 | static inline Duration getRes() { |
---|
304 | struct timespec res; |
---|
305 | clock_getres( CLOCK_REALTIME_COARSE, &res ); |
---|
306 | return (Duration){ res }; |
---|
307 | } // getRes |
---|
308 | |
---|
309 | static inline Time getTimeNsec() { // with nanoseconds |
---|
310 | timespec curr; |
---|
311 | clock_gettime( CLOCK_REALTIME_COARSE, &curr ); |
---|
312 | return (Time){ curr }; |
---|
313 | } // getTime |
---|
314 | |
---|
315 | static inline Time getTime() { // without nanoseconds |
---|
316 | timespec curr; |
---|
317 | clock_gettime( CLOCK_REALTIME_COARSE, &curr ); |
---|
318 | curr.tv_nsec = 0; |
---|
319 | return (Time){ curr }; |
---|
320 | } // getTime |
---|
321 | |
---|
322 | static inline Time getTime( Clock & clk ) with( clk ) { |
---|
323 | return getTime() + offset; |
---|
324 | } // getTime |
---|
325 | |
---|
326 | static inline Time ?()( Clock & clk ) with( clk ) { // alternative syntax |
---|
327 | return getTime() + offset; |
---|
328 | } // getTime |
---|
329 | |
---|
330 | static inline timeval getTime( Clock & clk ) { |
---|
331 | return (timeval){ clk() }; |
---|
332 | } // getTime |
---|
333 | |
---|
334 | static inline tm getTime( Clock & clk ) with( clk ) { |
---|
335 | tm ret; |
---|
336 | localtime_r( getTime( clk ).tv_sec, &ret ); |
---|
337 | return ret; |
---|
338 | } // getTime |
---|
339 | |
---|
340 | // Local Variables: // |
---|
341 | // mode: c // |
---|
342 | // tab-width: 4 // |
---|
343 | // End: // |
---|