2004-09-25 05:03:54 +00:00
|
|
|
//===- Unix/TimeValue.cpp - Unix TimeValue Implementation -------*- C++ -*-===//
|
2010-11-29 18:16:10 +00:00
|
|
|
//
|
2004-09-25 05:03:54 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-11-29 18:16:10 +00:00
|
|
|
//
|
2004-09-25 05:03:54 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Unix specific portion of the TimeValue class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only generic UNIX code that
|
|
|
|
//=== is guaranteed to work on *all* UNIX variants.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Unix.h"
|
|
|
|
|
2004-11-14 22:10:08 +00:00
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
2009-08-23 22:45:37 +00:00
|
|
|
std::string TimeValue::str() const {
|
2013-07-11 15:35:23 +00:00
|
|
|
time_t OurTime = time_t(this->toEpochTime());
|
|
|
|
struct tm Storage;
|
|
|
|
struct tm *LT = ::localtime_r(&OurTime, &Storage);
|
|
|
|
assert(LT);
|
|
|
|
char Buffer[25];
|
|
|
|
strftime(Buffer, 25, "%b %e %H:%M %Y", LT);
|
|
|
|
return std::string(Buffer);
|
2004-11-14 22:10:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-15 04:36:35 +00:00
|
|
|
TimeValue TimeValue::now() {
|
|
|
|
struct timeval the_time;
|
2004-11-15 04:42:44 +00:00
|
|
|
timerclear(&the_time);
|
2006-08-22 17:38:44 +00:00
|
|
|
if (0 != ::gettimeofday(&the_time,0)) {
|
|
|
|
// This is *really* unlikely to occur because the only gettimeofday
|
|
|
|
// errors concern the timezone parameter which we're passing in as 0.
|
|
|
|
// In the unlikely case it does happen, just return MinTime, no error
|
2010-11-29 18:16:10 +00:00
|
|
|
// message needed.
|
2006-08-22 17:38:44 +00:00
|
|
|
return MinTime;
|
|
|
|
}
|
2004-11-15 04:36:35 +00:00
|
|
|
|
|
|
|
return TimeValue(
|
2013-02-19 11:35:39 +00:00
|
|
|
static_cast<TimeValue::SecondsType>( the_time.tv_sec +
|
|
|
|
PosixZeroTimeSeconds ),
|
2010-11-29 18:16:10 +00:00
|
|
|
static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
|
2004-11-15 04:36:35 +00:00
|
|
|
NANOSECONDS_PER_MICROSECOND ) );
|
|
|
|
}
|
|
|
|
|
2004-09-25 05:03:54 +00:00
|
|
|
}
|