2004-09-25 05:03:54 +00:00
|
|
|
//===- Unix/TimeValue.cpp - Unix TimeValue Implementation -------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Reid Spencer and is distributed under the
|
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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;
|
|
|
|
|
2004-11-16 06:22:17 +00:00
|
|
|
std::string TimeValue::toString() const {
|
2004-11-14 22:10:08 +00:00
|
|
|
char buffer[32];
|
|
|
|
|
|
|
|
time_t ourTime = time_t(this->toEpochTime());
|
2005-01-14 00:50:50 +00:00
|
|
|
#ifdef __hpux
|
2005-05-16 06:59:53 +00:00
|
|
|
// note that the following line needs -D_REENTRANT on HP-UX to be picked up
|
2005-01-14 00:50:50 +00:00
|
|
|
asctime_r(localtime(&ourTime), buffer);
|
|
|
|
#else
|
2004-11-14 22:10:08 +00:00
|
|
|
::asctime_r(::localtime(&ourTime), buffer);
|
2005-01-14 00:50:50 +00:00
|
|
|
#endif
|
2004-11-14 22:10:08 +00:00
|
|
|
|
|
|
|
std::string result(buffer);
|
|
|
|
return result.substr(0,24);
|
|
|
|
}
|
|
|
|
|
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);
|
2004-11-15 04:36:35 +00:00
|
|
|
if (0 != ::gettimeofday(&the_time,0))
|
|
|
|
ThrowErrno("Couldn't obtain time of day");
|
|
|
|
|
|
|
|
return TimeValue(
|
|
|
|
static_cast<TimeValue::SecondsType>( the_time.tv_sec ),
|
|
|
|
static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
|
|
|
|
NANOSECONDS_PER_MICROSECOND ) );
|
|
|
|
}
|
|
|
|
|
2004-09-25 05:03:54 +00:00
|
|
|
}
|