// file : butl/timestamp -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BUTL_TIMESTAMP #define BUTL_TIMESTAMP #include #include #include namespace butl { // On all three main platforms that we target (GNU/Linux, Windows (both // VC++ and GCC/MinGW64), and MacOS X) with recent C++ runtimes, // system_clock has nanoseconds resolution and counts from the UNIX // epoch. The latter is important since struct stat also returns times // based on UNIX epoch. // // The underlying type for nanoseconds duration is signed integer type // of at least 64 bits (currently int64_t). Because it is signed, we // will overflow in year 2262 but by then the underlying type will // most likely have changed to something larger than 64-bit. // // So to support other platforms that could possibly use a different // system_clock resolutions (e.g., microseconds), we actually not going // to assume anywhere (except perhaps timestamp.cxx) that we are dealing // with nanoseconds or the 64-bit underlying type. // using std::chrono::system_clock; // Note that the default-initialized timestamp has the timestamp_nonexistent // value. // using timestamp = system_clock::time_point; using duration = system_clock::duration; // Generally-useful special values. // const timestamp timestamp_unknown {duration {-1}}; const timestamp timestamp_nonexistent {duration {0}}; // Human-readable representation. By default the timestamp is printed by // localtime_r() in the local timezone, so tzset() from should be // called prior to using the corresponding operator or the to_stream() // function (normally from main() or equivalent). // // The format argument in the to_stream() function is the put_time() format // string except that it also supports the nanoseconds conversion specifier // in the form %[N] where is the optional single delimiter character, // for example '.'. If the nanoseconds part is 0, then it is not printed (nor // the delimiter character). // // The special argument in the to_stream() function indicates whether the // special timestamp_unknown and timestamp_nonexistent values should be // printed as '' and '', respectively. // // The local argument in the to_stream() function indicates whether to use // localtime_r() or gmtime_r(). // // Note also that these operators/function may throw std::system_error. // // Finally, padding is not fully supported by these operators/function. They // throw runtime_error if nanoseconds conversion specifier is present and // the stream's width field has been set to non-zero value before the call. // // Potential improvements: // - add flag to to_stream() to use // - support %[U] (microseconds) and %[M] (milliseconds). // - make to_stream() a manipulator, similar to put_time() // - support %(N) version for non-optional printing // - support for suffix %[N], for example %[N nsec] // std::ostream& to_stream (std::ostream&, const timestamp&, const char* format, bool special, bool local); inline std::ostream& operator<< (std::ostream& os, const timestamp& ts) { return to_stream (os, ts, "%Y-%m-%d %H:%M:%S%[.N]", true, true); } std::ostream& operator<< (std::ostream&, const duration&); }; #endif // BUTL_TIMESTAMP