| [73abe95] | 1 | //
 | 
|---|
| [43725bd] | 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
 | 
|---|
 | 3 | //
 | 
|---|
 | 4 | // The contents of this file are covered under the licence agreement in the
 | 
|---|
 | 5 | // file "LICENCE" distributed with Cforall.
 | 
|---|
| [73abe95] | 6 | //
 | 
|---|
| [dc8511c] | 7 | // time.cfa --
 | 
|---|
| [73abe95] | 8 | //
 | 
|---|
| [43725bd] | 9 | // Author           : Peter A. Buhr
 | 
|---|
 | 10 | // Created On       : Tue Mar 27 17:24:56 2018
 | 
|---|
 | 11 | // Last Modified By : Peter A. Buhr
 | 
|---|
| [4aa495f] | 12 | // Last Modified On : Fri Apr 16 14:59:53 2021
 | 
|---|
 | 13 | // Update Count     : 38
 | 
|---|
| [73abe95] | 14 | //
 | 
|---|
| [43725bd] | 15 | 
 | 
|---|
| [58b6d1b] | 16 | #include "time.hfa"
 | 
|---|
| [73abe95] | 17 | #include <fstream.hfa>
 | 
|---|
| [43725bd] | 18 | 
 | 
|---|
 | 19 | int main() {
 | 
|---|
| [ef2eade] | 20 |         Duration d1 = 3`h, d2 = 2`s, d3 = 3.375`s, d4 = 12`s, d5 = 1`s + 10_000`ns;
 | 
|---|
| [200fcb3] | 21 |         sout | d1 | d2 | d3 | d4 | d5;
 | 
|---|
| [030653a] | 22 |         sout | d1`dd | d2`dm | d3`ds | d4`dms | d5`dus;
 | 
|---|
| [43725bd] | 23 |         d1 = 0;
 | 
|---|
| [200fcb3] | 24 |         sout | d1 | d2 | d3;
 | 
|---|
| [43725bd] | 25 |         d1 = 7`s;
 | 
|---|
 | 26 |         d3 = d2 = d1;
 | 
|---|
| [200fcb3] | 27 |         sout | d1 | d2 | d3;
 | 
|---|
| [43725bd] | 28 |         d1 = d1 + d2;
 | 
|---|
| [200fcb3] | 29 |         sout | d1;
 | 
|---|
 | 30 |         sout | d1 == 7`s | d1 == d2 | d1 == 0;
 | 
|---|
 | 31 |         sout | div( 7`s, 2`s );
 | 
|---|
| [5ea5b28] | 32 |         sout | nl;
 | 
|---|
| [43725bd] | 33 | 
 | 
|---|
 | 34 |         Time t = { 1970, 1, 2, 0, 0, 0, 10_000_000 };
 | 
|---|
| [200fcb3] | 35 |         sout | t;
 | 
|---|
| [43725bd] | 36 |         t = t + d1;
 | 
|---|
| [e0c235c] | 37 |         sout | t | t`ns;
 | 
|---|
| [8eb2018] | 38 |         Time t1 = (timespec){ 104_414, 10_000_000 };
 | 
|---|
| [e0c235c] | 39 |         sout | t1 | t1`ns;
 | 
|---|
 | 40 |         sout | t - t  | t + d5 | t`ns;
 | 
|---|
 | 41 |         char buf[64];
 | 
|---|
| [200fcb3] | 42 |         sout | "yy/mm/dd" | [t, buf]`ymd | nonl;                        // shared buf => separate calls
 | 
|---|
 | 43 |         sout | "mm/dd/yy" | mm_dd_yy( t, buf ) | nonl;
 | 
|---|
| [43725bd] | 44 |         strftime( buf, 16, "%D", t );                                           // %D => mm/dd/yy
 | 
|---|
| [200fcb3] | 45 |         sout | "mm/dd/yy" | buf | nonl;
 | 
|---|
 | 46 |         sout | "dd/yy/mm" | [t, buf]`dmy;
 | 
|---|
| [8eb2018] | 47 |         Time t2 = { 2001, 7, 4, 0, 0, 1, 0 }, t3 = (timeval){ 994_219_201 };
 | 
|---|
| [e0c235c] | 48 |         sout | t2 | t2`ns | nl | t3 | t3`ns;
 | 
|---|
| [5ea5b28] | 49 |         sout | nl;
 | 
|---|
| [43725bd] | 50 | 
 | 
|---|
 | 51 |         // Clock Newfoundland = { -3.5`h }, PST = { -8`h };     // distance from GMT (UTC)
 | 
|---|
| [200fcb3] | 52 |         // sout | "Clock Resolution" | getRes()
 | 
|---|
 | 53 |         //       | "Newfoundland" | getTime( Newfoundland )
 | 
|---|
 | 54 |         //       | "local" | getTime()
 | 
|---|
| [4aa495f] | 55 |         //       | "local nsec" | timeHiRes()
 | 
|---|
| [200fcb3] | 56 |         //       | "PST" | PST();                                                               // getTime short form
 | 
|---|
| [5ea5b28] | 57 |         // sout | nl;
 | 
|---|
| [43725bd] | 58 | 
 | 
|---|
 | 59 |         // http://en.cppreference.com/w/cpp/chrono/duration/operator_arith4
 | 
|---|
 | 60 |         Duration s = 1`h + 2 * 10`m + 70`s / 10;
 | 
|---|
| [200fcb3] | 61 |         sout | "1 hour + 2*10 min + 70/10 sec = " | s | "seconds";
 | 
|---|
 | 62 |         sout | "Dividing that by 2 minutes gives" | s / 2`m;
 | 
|---|
 | 63 |         sout | "Dividing that by 2 gives" | s / 2 | "seconds";
 | 
|---|
 | 64 |         sout | s | "seconds is" | s`h | "hours," | (s % 1`h)`m | "minutes," | (s % 1`m)`s | "seconds";
 | 
|---|
| [e0c235c] | 65 | 
 | 
|---|
 | 66 |     t1 = (Time){ 2020, 1, 5, 9, 0, 0, 100000000000LL };
 | 
|---|
 | 67 |     t2 = (Time){ 1969, 13, 5, 9 };
 | 
|---|
 | 68 |     t3 = (Time){ 1970, 25, 366, 48, 120, -120, 60000000000LL };
 | 
|---|
 | 69 |     strftime( buf, 128, "%Y %b %e %H:%M:%S (GMT)", t1 );
 | 
|---|
 | 70 |     sout | buf;
 | 
|---|
 | 71 |     strftime( buf, 128, "%Y %b %e %H:%M:%S (GMT)", t2 );
 | 
|---|
 | 72 |     sout | buf;
 | 
|---|
 | 73 |     strftime( buf, 128, "%Y %b %e %H:%M:%S (GMT)", t3 );
 | 
|---|
 | 74 |     sout | buf;
 | 
|---|
| [43725bd] | 75 | } // main
 | 
|---|
 | 76 | 
 | 
|---|
 | 77 | // Local Variables: //
 | 
|---|
 | 78 | // mode: c //
 | 
|---|
 | 79 | // tab-width: 4 //
 | 
|---|
| [dc8511c] | 80 | // compile-command: "cfa time.cfa" //
 | 
|---|
| [43725bd] | 81 | // End: //
 | 
|---|