aboutsummaryrefslogtreecommitdiff
path: root/build/timestamp
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-12-05 13:26:29 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-12-05 13:26:29 +0200
commit985e8f5f28da87be779b80942577f088321024af (patch)
tree811473dc2c89d755e46cfa28711c3ce8569a1556 /build/timestamp
parent0ba8af59dbc3e7419a9ef24c6d4d466d6d64862c (diff)
Add support for starting processes, getting file timestamps
g++-4.9 -std=c++11 -I.. -o bd bd.cxx process.cxx timestamp.cxx
Diffstat (limited to 'build/timestamp')
-rw-r--r--build/timestamp52
1 files changed, 52 insertions, 0 deletions
diff --git a/build/timestamp b/build/timestamp
new file mode 100644
index 0000000..6ed2f2c
--- /dev/null
+++ b/build/timestamp
@@ -0,0 +1,52 @@
+// file : build/timestamp -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD_TIMESTAMP
+#define BUILD_TIMESTAMP
+
+#include <chrono>
+#include <string>
+#include <iosfwd>
+
+namespace build
+{
+ // 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;
+
+ using timestamp = system_clock::time_point;
+ using duration = system_clock::duration;
+
+ const timestamp timestamp_unknown {duration {-1}};
+ const timestamp timestamp_nonexistent {duration {0}};
+
+ std::ostream&
+ operator<< (std::ostream&, timestamp);
+
+ std::ostream&
+ operator<< (std::ostream&, duration);
+
+ // Returns timestamp_nonexistent if the entry at the specified path
+ // does not exist. All other errors are reported by throwing
+ // std::system_error.
+ //
+ timestamp
+ path_timestamp (const std::string&);
+};
+
+#endif // BUILD_TIMESTAMP