Trying to fix the windows build.
[oota-llvm.git] / lib / Support / Windows / TimeValue.inc
index f52af98d29f73bbb673e22dcff5e427bc41c9b52..0223ab424488737407ddc9190ae14378268269dc 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#include "Windows.h"
+#include "WindowsSupport.h"
+#include "llvm/Support/Format.h"
+#include "llvm/Support/raw_ostream.h"
+#include <cctype>
 #include <time.h>
 
-namespace llvm {
-using namespace sys;
+using namespace llvm;
+using namespace llvm::sys;
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only Win32 specific code.
@@ -31,16 +34,27 @@ TimeValue TimeValue::now() {
 }
 
 std::string TimeValue::str() const {
-  struct tm LT;
+  std::string S;
+  struct tm *LT;
+#ifdef __MINGW32__
+  // Old versions of mingw don't have _localtime64_s. Remove this once we drop support
+  // for them.
+  time_t OurTime = time_t(this->toEpochTime());
+  LT = ::localtime(&OurTime);
+  assert(LT);
+#else
+  struct tm Storage;
   __time64_t OurTime = this->toEpochTime();
-  int Error = ::_localtime64_s(&LT, &OurTime);
+  int Error = ::_localtime64_s(&Storage, &OurTime);
   assert(!Error);
-
-  char Buffer[25];
-  // FIXME: the windows version of strftime doesn't support %e
-  strftime(Buffer, 25, "%b %d %H:%M %Y", &LT);
-  return std::string(Buffer);
-}
-
-
+  LT = &Storage;
+#endif
+
+  char Buffer[sizeof("YYYY-MM-DD HH:MM:SS")];
+  strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", LT);
+  raw_string_ostream OS(S);
+  OS << format("%s.%.9u", static_cast<const char *>(Buffer),
+               this->nanoseconds());
+  OS.flush();
+  return S;
 }