source: src/libcfa/time @ ce28c7b

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since ce28c7b was 273cde6, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

make constants long long int

  • Property mode set to 100644
File size: 14.5 KB
Line 
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 : Wed Mar 28 18:03:08 2018
13// Update Count     : 568
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
22extern "C" {
23#include <sys/time.h>                                                                   // timeval
24}
25#include <iostream>                                                                             // istype/ostype
26
27enum { TIMEGRAN = 1_000_000_000LL };                                    // nanosecond granularity, except for timeval
28
29
30//######################### timeval #########################
31
32static inline void ?{}( timeval & t ) {}
33static inline void ?{}( timeval & t, time_t sec ) { t.tv_sec = sec; t.tv_usec = 0; }
34static inline void ?{}( timeval & t, time_t sec, suseconds_t usec ) { t.tv_sec = sec; t.tv_usec = usec; }
35static inline void ?{}( timeval & t, zero_t ) { t.tv_sec = 0; t.tv_usec = 0; }
36static inline timeval ?=?( timeval & t, zero_t ) { return t{ 0 }; }
37static inline timeval ?+?( timeval & lhs, timeval rhs ) { return (timeval)@{ lhs.tv_sec + rhs.tv_sec, lhs.tv_usec + rhs.tv_usec }; }
38static inline timeval ?-?( timeval & lhs, timeval rhs ) { return (timeval)@{ lhs.tv_sec - rhs.tv_sec, lhs.tv_usec - rhs.tv_usec }; }
39static inline _Bool ?==?( timeval lhs, timeval rhs ) { return lhs.tv_sec == rhs.tv_sec && lhs.tv_usec == rhs.tv_usec; }
40static inline _Bool ?!=?( timeval lhs, timeval rhs ) { return lhs.tv_sec != rhs.tv_sec || lhs.tv_usec != rhs.tv_usec; }
41
42
43//######################### timespec #########################
44
45static inline void ?{}( timespec & t ) {}
46static inline void ?{}( timespec & t, time_t sec ) { t.tv_sec = sec; t.tv_nsec = 0; }
47static inline void ?{}( timespec & t, time_t sec, __syscall_slong_t nsec ) { t.tv_sec = sec; t.tv_nsec = nsec; }
48static inline void ?{}( timespec & t, zero_t ) { t.tv_sec = 0; t.tv_nsec = 0; }
49static inline timespec ?=?( timespec & t, zero_t ) { return t{ 0 }; }
50static inline timespec ?+?( timespec & lhs, timespec rhs ) { return (timespec)@{ lhs.tv_sec + rhs.tv_sec, lhs.tv_nsec + rhs.tv_nsec }; }
51static inline timespec ?-?( timespec & lhs, timespec rhs ) { return (timespec)@{ lhs.tv_sec - rhs.tv_sec, lhs.tv_nsec - rhs.tv_nsec }; }
52static inline _Bool ?==?( timespec lhs, timespec rhs ) { return lhs.tv_sec == rhs.tv_sec && lhs.tv_nsec == rhs.tv_nsec; }
53static 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
58static inline char * ctime( time_t tp ) { char * buf = ctime( &tp ); buf[24] = '\0'; return buf; }
59static inline char * ctime_r( time_t tp, char * buf ) { ctime_r( &tp, buf ); buf[24] = '\0'; return buf; }
60static inline tm * gmtime( time_t tp ) { return gmtime( &tp ); }
61static inline tm * gmtime_r( time_t tp, tm * result ) { return gmtime_r( &tp, result ); }
62static inline tm * localtime( time_t tp ) { return localtime( &tp ); }
63static inline tm * localtime_r( time_t tp, tm * result ) { return localtime_r( &tp, result ); }
64
65//######################### Duration #########################
66
67struct Duration {
68        int64_t tv;
69};
70
71static inline void ?{}( Duration & dur ) with( dur ) { tv = 0; }
72static inline void ?{}( Duration & dur, Duration d ) with( dur ) { tv = d.tv; }
73static inline void ?{}( Duration & dur, zero_t ) with( dur ) { tv = 0; }
74static inline Duration ?=?( Duration & dur, zero_t ) { return dur{ 0 }; }
75
76static inline void ?{}( Duration & dur, timeval t ) with( dur ) {
77        tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000;
78} // Duration
79
80static inline void ?{}( Duration & dur, timespec t ) with( dur ) {
81        tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec;
82} // Duration
83
84static 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
89static 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
94static inline int64_t nsecs( Duration dur ) with( dur ) { return tv; }
95
96static inline Duration +?( Duration rhs ) with( rhs ) { return (Duration)@{ +tv }; }
97static inline Duration ?+?( Duration & lhs, Duration rhs ) { return (Duration)@{ lhs.tv + rhs.tv }; }
98static inline Duration ?+=?( Duration & lhs, Duration rhs ) { lhs = lhs + rhs; return lhs; }
99
100static inline Duration -?( Duration rhs ) with( rhs ) { return (Duration)@{ -tv }; }
101static inline Duration ?-?( Duration & lhs, Duration rhs ) { return (Duration)@{ lhs.tv - rhs.tv }; }
102static inline Duration ?-=?( Duration & lhs, Duration rhs ) { lhs = lhs - rhs; return lhs; }
103
104static inline Duration ?*?( Duration lhs, int64_t rhs ) { return (Duration)@{ lhs.tv * rhs }; }
105static inline Duration ?*?( int64_t lhs, Duration rhs ) { return (Duration)@{ lhs * rhs.tv }; }
106static inline Duration ?*=?( Duration & lhs, int64_t rhs ) { lhs = lhs * rhs; return lhs; }
107
108static inline Duration ?/?( Duration lhs, int64_t rhs ) { return (Duration)@{ lhs.tv / rhs }; }
109static inline int64_t ?/?( Duration lhs, Duration rhs ) { return lhs.tv / rhs.tv; }
110static inline Duration ?/=?( Duration & lhs, int64_t rhs ) { lhs = lhs / rhs; return lhs; }
111
112static inline Duration ?%?( Duration lhs, Duration rhs ) { return (Duration)@{ lhs.tv % rhs.tv }; }
113
114static inline _Bool ?==?( Duration lhs, Duration rhs ) { return lhs.tv == rhs.tv; }
115static inline _Bool ?!=?( Duration lhs, Duration rhs ) { return lhs.tv != rhs.tv; }
116static inline _Bool ?<? ( Duration lhs, Duration rhs ) { return lhs.tv <  rhs.tv; }
117static inline _Bool ?<=?( Duration lhs, Duration rhs ) { return lhs.tv <= rhs.tv; }
118static inline _Bool ?>? ( Duration lhs, Duration rhs ) { return lhs.tv >  rhs.tv; }
119static inline _Bool ?>=?( Duration lhs, Duration rhs ) { return lhs.tv >= rhs.tv; }
120
121static inline _Bool ?==?( Duration lhs, zero_t ) { return lhs.tv == 0; }
122static inline _Bool ?!=?( Duration lhs, zero_t ) { return lhs.tv != 0; }
123static inline _Bool ?<? ( Duration lhs, zero_t ) { return lhs.tv <  0; }
124static inline _Bool ?<=?( Duration lhs, zero_t ) { return lhs.tv <= 0; }
125static inline _Bool ?>? ( Duration lhs, zero_t ) { return lhs.tv >  0; }
126static inline _Bool ?>=?( Duration lhs, zero_t ) { return lhs.tv >= 0; }
127
128static inline Duration abs( Duration lhs ) { return lhs.tv >= 0 ? lhs : -lhs; }
129
130forall( dtype ostype | ostream( ostype ) ) ostype & ?|?( ostype & os, Duration dur );
131
132static inline Duration ?`ns( int64_t nsec  ) { return (Duration)@{ nsec }; }
133static inline Duration ?`us( int64_t usec  ) { return (Duration)@{ usec * (TIMEGRAN / 1_000_000LL) }; }
134static inline Duration ?`ms( int64_t msec  ) { return (Duration)@{ msec * (TIMEGRAN / 1_000LL) }; }
135static inline Duration ?`s ( int64_t sec   ) { return (Duration)@{ sec * TIMEGRAN }; }
136static inline Duration ?`s ( double  sec   ) { return (Duration)@{ sec * TIMEGRAN }; }
137static inline Duration ?`m ( int64_t min   ) { return (Duration)@{ min * (60LL * TIMEGRAN) }; }
138static inline Duration ?`m ( double  min   ) { return (Duration)@{ min * (60LL * TIMEGRAN) }; }
139static inline Duration ?`h ( int64_t hours ) { return (Duration)@{ hours * (3600LL * TIMEGRAN) }; }
140static inline Duration ?`h ( double  hours ) { return (Duration)@{ hours * (3600LL * TIMEGRAN) }; }
141static inline Duration ?`d ( int64_t days  ) { return (Duration)@{ days * (24LL * 3600LL * TIMEGRAN) }; }
142static inline Duration ?`d ( double  days  ) { return (Duration)@{ days * (24LL * 3600LL * TIMEGRAN) }; }
143static inline Duration ?`w ( int64_t weeks ) { return (Duration)@{ weeks * (7LL * 24LL * 3600LL * TIMEGRAN) }; }
144static inline Duration ?`f ( int64_t fortnight ) { return (Duration)@{ fortnight * (14LL * 24LL * 3600LL * TIMEGRAN) }; }
145
146static inline int64_t ?`ns ( Duration dur ) { return dur.tv; }
147static inline int64_t ?`us ( Duration dur ) { return dur.tv / (TIMEGRAN / 1_000_000LL); }
148static inline int64_t ?`ms ( Duration dur ) { return dur.tv / (TIMEGRAN / 1_000LL); }
149static inline int64_t ?`s  ( Duration dur ) { return dur.tv / TIMEGRAN; }
150static inline int64_t ?`m  ( Duration dur ) { return dur.tv / (60LL * TIMEGRAN); }
151static inline int64_t ?`h  ( Duration dur ) { return dur.tv / (3600LL * TIMEGRAN); }
152static inline int64_t ?`d  ( Duration dur ) { return dur.tv / (24LL * 3600LL * TIMEGRAN); }
153static inline int64_t ?`w  ( Duration dur ) { return dur.tv / (7LL * 24LL * 3600LL * TIMEGRAN); }
154static inline int64_t ?`f  ( Duration dur ) { return dur.tv / (14LL * 24LL * 3600LL * TIMEGRAN); }
155
156//------------------------- timeval (cont) -------------------------
157
158static inline void ?{}( timeval & t, Duration dur ) with( dur ) {
159        t.tv_sec = tv / TIMEGRAN;                                                       // seconds
160        t.tv_usec = tv % TIMEGRAN / (TIMEGRAN / 1_000_000LL); // microseconds
161} // ?{}
162
163//------------------------- timespec (cont) -------------------------
164
165static 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
174struct Time {
175        uint64_t tv;
176};
177
178void mktime( Time & time, int year, int month, int day, int hour, int min, int sec, int nsec );
179
180static inline void ?{}( Time & t ) with( t ) {
181        tv = 0;
182} // Time
183
184static 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
188static 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
192static 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
196static 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
200static inline void ?{}( Time & time, int year, int month, int day ) {
201        mktime( time, year, month, day, 0, 0, 0, 0 );
202} // Time
203
204static inline void ?{}( Time & time, int year, int month ) {
205        mktime( time, year, month, 0, 0, 0, 0, 0 );
206} // Time
207
208static inline void ?{}( Time & time, int year ) {
209        mktime( time, year, 0, 0, 0, 0, 0, 0 );
210} // Time
211
212static inline void ?{}( Time & time, timeval t ) with( time ) {
213        tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000;
214} // Time
215
216static inline void ?{}( Time & time, timespec t ) with( time ) {
217        tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec;
218} // Time
219
220static inline void ?{}( Time & t, zero_t ) { t.tv = 0; }
221static inline Time ?=?( Time & t, zero_t ) { return t{ 0 }; }
222
223static inline Time ?=?( Time & time, timeval t ) with( time ) {
224        tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * (TIMEGRAN / 1_000_000LL);
225        return time;
226} // ?=?
227
228static inline Time ?=?( Time & time, timespec t ) with( time ) {
229        tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_nsec;
230        return time;
231} // ?=?
232
233static inline Time ?+?( Time & lhs, Duration rhs ) { return (Time)@{ lhs.tv + rhs.tv }; }
234static inline Time ?+?( Duration lhs, Time rhs ) { return rhs + lhs; }
235static inline Time ?+=?( Time & lhs, Duration rhs ) { lhs = lhs + rhs; return lhs; }
236
237static inline Duration ?-?( Time lhs, Time rhs ) { return (Duration)@{ lhs.tv - rhs.tv }; }
238static inline Time ?-?( Time lhs, Duration rhs ) { return (Time)@{ lhs.tv - rhs.tv }; }
239static inline Time ?-=?( Time & lhs, Duration rhs ) { lhs = lhs - rhs; return lhs; }
240static inline _Bool ?==?( Time lhs, Time rhs ) { return lhs.tv == rhs.tv; }
241static inline _Bool ?!=?( Time lhs, Time rhs ) { return lhs.tv != rhs.tv; }
242static inline _Bool ?<?( Time lhs, Time rhs ) { return lhs.tv < rhs.tv; }
243static inline _Bool ?<=?( Time lhs, Time rhs ) { return lhs.tv <= rhs.tv; }
244static inline _Bool ?>?( Time lhs, Time rhs ) { return lhs.tv > rhs.tv; }
245static inline _Bool ?>=?( Time lhs, Time rhs ) { return lhs.tv >= rhs.tv; }
246
247char * yy_mm_dd( Time time, char * buf );
248static inline char * ?`ymd( Time time, char * buf ) {
249        return yy_mm_dd( time, buf );
250} // ymd
251
252char * mm_dd_yy( Time time, char * buf );
253static inline char * ?`mdy( Time time, char * buf ) {
254        return mm_dd_yy( time, buf );
255} // mdy
256
257char * dd_mm_yy( Time time, char * buf );
258static inline char * ?`dmy( Time time, char * buf ) {
259        return dd_mm_yy( time, buf );;
260} // dmy
261
262size_t strftime( char * buf, size_t size, const char * fmt, Time time );
263
264forall( dtype ostype | ostream( ostype ) ) ostype & ?|?( ostype & os, Time time );
265
266//------------------------- timeval (cont) -------------------------
267
268static inline void ?{}( timeval & t, Time time ) with( t, time ) {
269        tv_sec = tv / TIMEGRAN;                                                         // seconds
270        tv_usec = tv % TIMEGRAN / (TIMEGRAN / 1_000_000LL);     // microseconds
271} // ?{}
272
273//------------------------- timespec (cont) -------------------------
274
275static inline void ?{}( timespec & t, Time time ) with( t, time ) {
276        tv_sec = tv / TIMEGRAN;                                                         // seconds
277        tv_nsec = tv % TIMEGRAN;                                                        // nanoseconds
278} // ?{}
279
280
281//######################### Clock #########################
282
283
284struct Clock {
285        Duration offset;                                                                        // for virtual clock: contains offset from real-time
286        int clocktype;                                                                          // implementation only -1 (virtual), CLOCK_REALTIME
287};
288
289static inline void resetClock( Clock & clk ) with( clk ) {
290        clocktype = CLOCK_REALTIME_COARSE;
291} // Clock::resetClock
292
293static inline void resetClock( Clock & clk, Duration adj ) with( clk ) {
294        clocktype = -1;
295        Duration tz = (timeval){ timezone, 0 };
296        offset = adj + tz;
297} // resetClock
298
299static inline void ?{}( Clock & clk ) {
300        resetClock( clk );
301} // Clock
302
303static inline void ?{}( Clock & clk, Duration adj ) {
304        resetClock( clk, adj );
305} // Clock
306
307static inline Duration getRes() {
308        struct timespec res;
309        clock_getres( CLOCK_REALTIME_COARSE, &res );
310        return (Duration){ res };
311} // getRes
312
313static inline Time getTimeNsec() {                                              // with nanoseconds
314        timespec curr;
315        clock_gettime( CLOCK_REALTIME_COARSE, &curr );
316        return (Time){ curr };
317} // getTime
318
319static inline Time getTime() {                                                  // without nanoseconds
320        timespec curr;
321        clock_gettime( CLOCK_REALTIME_COARSE, &curr );
322        curr.tv_nsec = 0;
323        return (Time){ curr };
324} // getTime
325
326static inline Time getTime( Clock & clk ) with( clk ) {
327        return getTime() + offset;
328} // getTime
329
330static inline Time ?()( Clock & clk ) with( clk ) {             // alternative syntax
331        return getTime() + offset;
332} // getTime
333
334static inline timeval getTime( Clock & clk ) {
335        return (timeval){ clk() };
336} // getTime
337
338static inline tm getTime( Clock & clk ) with( clk ) {
339        tm ret;
340        localtime_r( getTime( clk ).tv_sec, &ret );
341        return ret;
342} // getTime
343
344// Local Variables: //
345// mode: c //
346// tab-width: 4 //
347// End: //
Note: See TracBrowser for help on using the repository browser.