2004-09-25 07:03:54 +02:00
|
|
|
//===- Unix/TimeValue.cpp - Unix TimeValue Implementation -------*- C++ -*-===//
|
2010-11-29 19:16:10 +01:00
|
|
|
//
|
2004-09-25 07:03:54 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2010-11-29 19:16:10 +01:00
|
|
|
//
|
2004-09-25 07:03:54 +02: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 23:10:08 +01:00
|
|
|
namespace llvm {
|
|
|
|
using namespace sys;
|
|
|
|
|
2009-08-24 00:45:37 +02:00
|
|
|
std::string TimeValue::str() const {
|
2004-11-14 23:10:08 +01:00
|
|
|
char buffer[32];
|
|
|
|
|
|
|
|
time_t ourTime = time_t(this->toEpochTime());
|
2005-01-14 01:50:50 +01:00
|
|
|
#ifdef __hpux
|
2010-11-29 19:16:10 +01:00
|
|
|
// note that the following line needs -D_REENTRANT on HP-UX to be picked up
|
2005-01-14 01:50:50 +01:00
|
|
|
asctime_r(localtime(&ourTime), buffer);
|
|
|
|
#else
|
2004-11-14 23:10:08 +01:00
|
|
|
::asctime_r(::localtime(&ourTime), buffer);
|
2005-01-14 01:50:50 +01:00
|
|
|
#endif
|
2004-11-14 23:10:08 +01:00
|
|
|
|
|
|
|
std::string result(buffer);
|
|
|
|
return result.substr(0,24);
|
|
|
|
}
|
|
|
|
|
2004-11-15 05:36:35 +01:00
|
|
|
TimeValue TimeValue::now() {
|
|
|
|
struct timeval the_time;
|
2004-11-15 05:42:44 +01:00
|
|
|
timerclear(&the_time);
|
2006-08-22 19:38:44 +02: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 19:16:10 +01:00
|
|
|
// message needed.
|
2006-08-22 19:38:44 +02:00
|
|
|
return MinTime;
|
|
|
|
}
|
2004-11-15 05:36:35 +01:00
|
|
|
|
|
|
|
return TimeValue(
|
2010-11-29 19:16:10 +01:00
|
|
|
static_cast<TimeValue::SecondsType>( the_time.tv_sec + PosixZeroTime.seconds_ ),
|
|
|
|
static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
|
2004-11-15 05:36:35 +01:00
|
|
|
NANOSECONDS_PER_MICROSECOND ) );
|
|
|
|
}
|
|
|
|
|
2004-09-25 07:03:54 +02:00
|
|
|
}
|