| Pavel Labath | 59838f7 | 2016-10-20 12:05:50 +0000 | [diff] [blame] | 1 | //===- Support/Chrono.cpp - Utilities for Timing Manipulation ---*- C++ -*-===// | 
|  | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
|  | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
|  | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 |  | 
|  | 10 | #include "llvm/Support/Chrono.h" | 
|  | 11 | #include "llvm/Config/config.h" | 
|  | 12 | #include "llvm/Support/Format.h" | 
|  | 13 | #include "llvm/Support/raw_ostream.h" | 
|  | 14 |  | 
|  | 15 | namespace llvm { | 
|  | 16 |  | 
|  | 17 | using namespace sys; | 
|  | 18 |  | 
| Pavel Labath | c1ec4c9 | 2017-02-07 18:35:36 +0000 | [diff] [blame] | 19 | const char detail::unit<std::ratio<3600>>::value[] = "h"; | 
|  | 20 | const char detail::unit<std::ratio<60>>::value[] = "m"; | 
|  | 21 | const char detail::unit<std::ratio<1>>::value[] = "s"; | 
|  | 22 | const char detail::unit<std::milli>::value[] = "ms"; | 
|  | 23 | const char detail::unit<std::micro>::value[] = "us"; | 
|  | 24 | const char detail::unit<std::nano>::value[] = "ns"; | 
| Pavel Labath | 24cb654 | 2017-02-07 18:11:33 +0000 | [diff] [blame] | 25 |  | 
| Pavel Labath | 59838f7 | 2016-10-20 12:05:50 +0000 | [diff] [blame] | 26 | static inline struct tm getStructTM(TimePoint<> TP) { | 
|  | 27 | struct tm Storage; | 
|  | 28 | std::time_t OurTime = toTimeT(TP); | 
|  | 29 |  | 
|  | 30 | #if defined(LLVM_ON_UNIX) | 
|  | 31 | struct tm *LT = ::localtime_r(&OurTime, &Storage); | 
|  | 32 | assert(LT); | 
|  | 33 | (void)LT; | 
|  | 34 | #endif | 
|  | 35 | #if defined(LLVM_ON_WIN32) | 
|  | 36 | int Error = ::localtime_s(&Storage, &OurTime); | 
|  | 37 | assert(!Error); | 
|  | 38 | (void)Error; | 
|  | 39 | #endif | 
|  | 40 |  | 
|  | 41 | return Storage; | 
|  | 42 | } | 
|  | 43 |  | 
|  | 44 | raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { | 
|  | 45 | struct tm LT = getStructTM(TP); | 
|  | 46 | char Buffer[sizeof("YYYY-MM-DD HH:MM:SS")]; | 
|  | 47 | strftime(Buffer, sizeof(Buffer), "%Y-%m-%d %H:%M:%S", <); | 
|  | 48 | return OS << Buffer << '.' | 
|  | 49 | << format("%.9lu", | 
|  | 50 | long((TP.time_since_epoch() % std::chrono::seconds(1)) | 
|  | 51 | .count())); | 
|  | 52 | } | 
|  | 53 |  | 
|  | 54 | } // namespace llvm |