mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Clean up the interface of TimeValue:
- get rid of unneeded constructors - get rid of duplicate methods/constructors/operators - normalize to LLVM coding standards - wrap to 80 columns. Many thanks to Alkis Evlogimenos for his suggestions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16514 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -20,25 +20,27 @@ namespace llvm {
|
|||||||
namespace sys {
|
namespace sys {
|
||||||
/// This class is used where a precise fixed point in time is required. The
|
/// This class is used where a precise fixed point in time is required. The
|
||||||
/// range of TimeValue spans many hundreds of billions of years both past and
|
/// range of TimeValue spans many hundreds of billions of years both past and
|
||||||
/// present. The precision of TimeValue is to the nanosecond. However, actual
|
/// present. The precision of TimeValue is to the nanosecond. However, the
|
||||||
/// precision of values will be determined by the resolution of the system clock.
|
/// actual precision of its values will be determined by the resolution of
|
||||||
/// The TimeValue class is used in conjunction with several other lib/System
|
/// the system clock. The TimeValue class is used in conjunction with several
|
||||||
/// interfaces to specify the time at which a call should timeout, etc.
|
/// other lib/System interfaces to specify the time at which a call should
|
||||||
|
/// timeout, etc.
|
||||||
/// @since 1.4
|
/// @since 1.4
|
||||||
/// @brief Provides an abstraction for a fixed point in time.
|
/// @brief Provides an abstraction for a fixed point in time.
|
||||||
class TimeValue {
|
class TimeValue {
|
||||||
|
|
||||||
/// @name Constants
|
/// @name Constants
|
||||||
/// @{
|
/// @{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// A constant TimeValue representing the smallest time
|
/// A constant TimeValue representing the smallest time
|
||||||
/// value permissable by the class. min_time is some point
|
/// value permissable by the class. MinTime is some point
|
||||||
/// in the distant past, about 300 billion years BC.
|
/// in the distant past, about 300 billion years BCE.
|
||||||
/// @brief The smallest possible time value.
|
/// @brief The smallest possible time value.
|
||||||
static const TimeValue MinTime;
|
static const TimeValue MinTime;
|
||||||
|
|
||||||
/// A constant TimeValue representing the largest time
|
/// A constant TimeValue representing the largest time
|
||||||
/// value permissable by the class. max_time is some point
|
/// value permissable by the class. MaxTime is some point
|
||||||
/// in the distant future, about 300 billion years AD.
|
/// in the distant future, about 300 billion years AD.
|
||||||
/// @brief The largest possible time value.
|
/// @brief The largest possible time value.
|
||||||
static const TimeValue MaxTime;
|
static const TimeValue MaxTime;
|
||||||
@@ -48,12 +50,12 @@ namespace sys {
|
|||||||
/// @brief 00:00:00 Jan 1, 2000 UTC.
|
/// @brief 00:00:00 Jan 1, 2000 UTC.
|
||||||
static const TimeValue ZeroTime;
|
static const TimeValue ZeroTime;
|
||||||
|
|
||||||
/// A constant TimeValue for the posix base time which is
|
/// A constant TimeValue for the Posix base time which is
|
||||||
/// 00:00:00 (midnight) January 1st, 1970.
|
/// 00:00:00 (midnight) January 1st, 1970.
|
||||||
/// @brief 00:00:00 Jan 1, 1970 UTC.
|
/// @brief 00:00:00 Jan 1, 1970 UTC.
|
||||||
static const TimeValue PosixZeroTime;
|
static const TimeValue PosixZeroTime;
|
||||||
|
|
||||||
/// A constant TimeValue for the win32 base time which is
|
/// A constant TimeValue for the Win32 base time which is
|
||||||
/// 00:00:00 (midnight) January 1st, 1601.
|
/// 00:00:00 (midnight) January 1st, 1601.
|
||||||
/// @brief 00:00:00 Jan 1, 1601 UTC.
|
/// @brief 00:00:00 Jan 1, 1601 UTC.
|
||||||
static const TimeValue Win32ZeroTime;
|
static const TimeValue Win32ZeroTime;
|
||||||
@@ -66,70 +68,47 @@ namespace sys {
|
|||||||
typedef int32_t NanoSecondsType; ///< Type used for representing nanoseconds.
|
typedef int32_t NanoSecondsType; ///< Type used for representing nanoseconds.
|
||||||
|
|
||||||
enum TimeConversions {
|
enum TimeConversions {
|
||||||
NANOSECONDS_PER_SECOND = 1000000000,
|
NANOSECONDS_PER_SECOND = 1000000000, ///< One Billion
|
||||||
MICROSECONDS_PER_SECOND = 1000000,
|
MICROSECONDS_PER_SECOND = 1000000, ///< One Million
|
||||||
MILLISECONDS_PER_SECOND = 1000,
|
MILLISECONDS_PER_SECOND = 1000, ///< One Thousand
|
||||||
NANOSECONDS_PER_MICROSECOND = 1000,
|
NANOSECONDS_PER_MICROSECOND = 1000, ///< One Thousand
|
||||||
NANOSECONDS_PER_MILLISECOND = 1000000,
|
NANOSECONDS_PER_MILLISECOND = 1000000,///< One Million
|
||||||
NANOSECONDS_PER_POSIX_TICK = 100,
|
NANOSECONDS_PER_POSIX_TICK = 100, ///< Posix tick is 100 Hz (10ms)
|
||||||
NANOSECONDS_PER_WIN32_TICK = 100,
|
NANOSECONDS_PER_WIN32_TICK = 100, ///< Win32 tick is 100 Hz (10ms)
|
||||||
};
|
};
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
/// @name Constructors
|
/// @name Constructors
|
||||||
/// @{
|
/// @{
|
||||||
public:
|
public:
|
||||||
/// Value is initialized to zero_time.
|
/// Caller provides the exact value in seconds and nanoseconds. The
|
||||||
/// @brief Default Constructor
|
/// \p nanos argument defaults to zero for convenience.
|
||||||
TimeValue ()
|
/// @brief Explicit constructor
|
||||||
: seconds_(0), nanos_(0) {}
|
explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
|
||||||
|
|
||||||
/// Caller provides the exact value in seconds and
|
|
||||||
/// nano-seconds. The \p nsec argument defaults to
|
|
||||||
/// zero for convenience.
|
|
||||||
/// @brief Explicit Constructor.
|
|
||||||
TimeValue (SecondsType seconds, NanoSecondsType nanos = 0)
|
|
||||||
: seconds_( seconds )
|
: seconds_( seconds )
|
||||||
, nanos_( nanos )
|
, nanos_( nanos ) { this->normalize(); }
|
||||||
{
|
|
||||||
|
/// Caller provides the exact value as a double in seconds with the
|
||||||
|
/// fractional part representing nanoseconds.
|
||||||
|
/// @brief Double Constructor.
|
||||||
|
explicit TimeValue( double new_time )
|
||||||
|
: seconds_( 0 ) , nanos_ ( 0 ) {
|
||||||
|
SecondsType integer_part = static_cast<SecondsType>( new_time );
|
||||||
|
seconds_ = integer_part;
|
||||||
|
nanos_ = static_cast<NanoSecondsType>( (new_time -
|
||||||
|
static_cast<double>(integer_part)) * NANOSECONDS_PER_SECOND );
|
||||||
this->normalize();
|
this->normalize();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Caller provides the exact value in in seconds with the
|
/// This is a static constructor that returns a TimeValue that represents
|
||||||
/// fractional part represengin nanoseconds.
|
/// the current time.
|
||||||
/// @brief Double Constructor.
|
/// @brief Creates a TimeValue with the current time (UTC).
|
||||||
TimeValue( double time )
|
static TimeValue now();
|
||||||
: seconds_( 0 ) , nanos_ ( 0 )
|
|
||||||
{
|
|
||||||
this->set( time );
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Copies one TimeValue to another.
|
|
||||||
/// @brief Copy Constructor.
|
|
||||||
TimeValue( const TimeValue & that )
|
|
||||||
: seconds_( that.seconds_ ) , nanos_( that.nanos_ ) { }
|
|
||||||
|
|
||||||
//
|
|
||||||
/// @}
|
/// @}
|
||||||
/// @name Operators
|
/// @name Operators
|
||||||
/// @{
|
/// @{
|
||||||
public:
|
public:
|
||||||
/// Assigns the value of \p that TimeValue to \p this
|
|
||||||
/// @brief Assignment operator.
|
|
||||||
TimeValue& operator = ( const TimeValue& that ) {
|
|
||||||
this->set( that );
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Assigns the value of \p that floating point value to \p this.
|
|
||||||
/// The \p that vlue is assumed to be in seconds format with
|
|
||||||
/// the fraction indicating the number of nanoseconds.
|
|
||||||
/// @brief Assignment operator.
|
|
||||||
TimeValue& operator = ( double that ) {
|
|
||||||
this->set( that );
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Add \p that to \p this.
|
/// Add \p that to \p this.
|
||||||
/// @returns this
|
/// @returns this
|
||||||
/// @brief Incrementing assignment operator.
|
/// @brief Incrementing assignment operator.
|
||||||
@@ -140,20 +119,6 @@ namespace sys {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add \p addend to \p this. \p addend is assumed to be in seconds
|
|
||||||
/// format with the fraction providing nanoseconds.
|
|
||||||
/// @returns this
|
|
||||||
/// @brief Incrementing assignment operator.
|
|
||||||
TimeValue& operator += ( double addend ) {
|
|
||||||
SecondsType seconds_part = static_cast<SecondsType>( addend );
|
|
||||||
NanoSecondsType nanos_part = static_cast<NanoSecondsType>(
|
|
||||||
(addend - static_cast<double>(seconds_part)) * NANOSECONDS_PER_SECOND );
|
|
||||||
this->seconds_ += seconds_part;
|
|
||||||
this->nanos_ += nanos_part;
|
|
||||||
this->normalize();
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Subtract \p that from \p this.
|
/// Subtract \p that from \p this.
|
||||||
/// @returns this
|
/// @returns this
|
||||||
/// @brief Decrementing assignment operator.
|
/// @brief Decrementing assignment operator.
|
||||||
@@ -164,58 +129,51 @@ namespace sys {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add \p that to \p this. \p that is assumed to be in seconds
|
/// Determine if \p this is less than \p that.
|
||||||
/// format with the fraction providing nanoseconds.
|
/// @returns True iff *this < that.
|
||||||
/// @returns this
|
|
||||||
/// @brief Decrementing assignment operator.
|
|
||||||
TimeValue& operator -= ( double subtrahend ) {
|
|
||||||
SecondsType seconds_part = static_cast<SecondsType>( subtrahend );
|
|
||||||
NanoSecondsType nanos_part = static_cast<NanoSecondsType>(
|
|
||||||
(subtrahend - static_cast<double>(seconds_part)) * NANOSECONDS_PER_SECOND );
|
|
||||||
this->seconds_ -= seconds_part;
|
|
||||||
this->nanos_ -= nanos_part;
|
|
||||||
this->normalize();
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief True if this < that.
|
/// @brief True if this < that.
|
||||||
int operator < (const TimeValue &that) const { return that > *this; }
|
int operator < (const TimeValue &that) const { return that > *this; }
|
||||||
|
|
||||||
|
/// Determine if \p this is greather than \p that.
|
||||||
|
/// @returns True iff *this > that.
|
||||||
/// @brief True if this > that.
|
/// @brief True if this > that.
|
||||||
int operator > (const TimeValue &that) const {
|
int operator > (const TimeValue &that) const {
|
||||||
if ( this->seconds_ > that.seconds_ )
|
if ( this->seconds_ > that.seconds_ ) {
|
||||||
{
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
} else if ( this->seconds_ == that.seconds_ ) {
|
||||||
else if ( this->seconds_ == that.seconds_ )
|
|
||||||
{
|
|
||||||
if ( this->nanos_ > that.nanos_ ) return 1;
|
if ( this->nanos_ > that.nanos_ ) return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Determine if \p this is less than or equal to \p that.
|
||||||
|
/// @returns True iff *this <= that.
|
||||||
/// @brief True if this <= that.
|
/// @brief True if this <= that.
|
||||||
int operator <= (const TimeValue &that) const { return that >= *this; }
|
int operator <= (const TimeValue &that) const { return that >= *this; }
|
||||||
|
|
||||||
|
/// Determine if \p this is greater than or equal to \p that.
|
||||||
|
/// @returns True iff *this >= that.
|
||||||
/// @brief True if this >= that.
|
/// @brief True if this >= that.
|
||||||
int operator >= (const TimeValue &that) const {
|
int operator >= (const TimeValue &that) const {
|
||||||
if ( this->seconds_ > that.seconds_ )
|
if ( this->seconds_ > that.seconds_ ) {
|
||||||
{
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
} else if ( this->seconds_ == that.seconds_ ) {
|
||||||
else if ( this->seconds_ == that.seconds_ )
|
|
||||||
{
|
|
||||||
if ( this->nanos_ >= that.nanos_ ) return 1;
|
if ( this->nanos_ >= that.nanos_ ) return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Determines if two TimeValue objects represent the same moment in time.
|
||||||
|
/// @brief True iff *this == that.
|
||||||
/// @brief True if this == that.
|
/// @brief True if this == that.
|
||||||
int operator == (const TimeValue &that) const {
|
int operator == (const TimeValue &that) const {
|
||||||
return (this->seconds_ == that.seconds_) &&
|
return (this->seconds_ == that.seconds_) &&
|
||||||
(this->nanos_ == that.nanos_);
|
(this->nanos_ == that.nanos_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Determines if two TimeValue objects represent times that are not the
|
||||||
|
/// same.
|
||||||
|
/// @return True iff *this != that.
|
||||||
/// @brief True if this != that.
|
/// @brief True if this != that.
|
||||||
int operator != (const TimeValue &that) const { return !(*this == that); }
|
int operator != (const TimeValue &that) const { return !(*this == that); }
|
||||||
|
|
||||||
@@ -234,139 +192,145 @@ namespace sys {
|
|||||||
/// @{
|
/// @{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// @brief Retrieve the seconds component
|
/// Returns only the seconds component of the TimeValue. The nanoseconds
|
||||||
SecondsType seconds( void ) const { return seconds_; }
|
/// portion is ignored. No rounding is performed.
|
||||||
|
/// @brief Retrieve the seconds component
|
||||||
|
SecondsType seconds( void ) const { return seconds_; }
|
||||||
|
|
||||||
/// @brief Retrieve the nanoseconds component.
|
/// Returns only the nanoseconds component of the TimeValue. The seconds
|
||||||
NanoSecondsType nanoseconds( void ) const { return nanos_; }
|
/// portion is ignored.
|
||||||
|
/// @brief Retrieve the nanoseconds component.
|
||||||
|
NanoSecondsType nanoseconds( void ) const { return nanos_; }
|
||||||
|
|
||||||
/// @brief Retrieve the fractional part as microseconds;
|
/// Returns only the fractional portion of the TimeValue rounded down to the
|
||||||
uint32_t microseconds( void ) const {
|
/// nearest microsecond (divide by one thousand).
|
||||||
return nanos_ / NANOSECONDS_PER_MICROSECOND;
|
/// @brief Retrieve the fractional part as microseconds;
|
||||||
}
|
uint32_t microseconds( void ) const {
|
||||||
|
return nanos_ / NANOSECONDS_PER_MICROSECOND;
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Retrieve the fractional part as milliseconds;
|
/// Returns only the fractional portion of the TimeValue rounded down to the
|
||||||
uint32_t milliseconds( void ) const {
|
/// nearest millisecond (divide by one million).
|
||||||
return nanos_ / NANOSECONDS_PER_MILLISECOND;
|
/// @brief Retrieve the fractional part as milliseconds;
|
||||||
}
|
uint32_t milliseconds( void ) const {
|
||||||
|
return nanos_ / NANOSECONDS_PER_MILLISECOND;
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Convert to a number of microseconds (can overflow)
|
/// Returns the TimeValue as a number of microseconds. Note that the value
|
||||||
uint64_t usec( void ) const {
|
/// returned can overflow because the range of a uint64_t is smaller than
|
||||||
return seconds_ * MICROSECONDS_PER_SECOND +
|
/// the range of a TimeValue. Nevertheless, this is useful on some operating
|
||||||
( nanos_ / NANOSECONDS_PER_MICROSECOND );
|
/// systems and is therefore provided.
|
||||||
}
|
/// @brief Convert to a number of microseconds (can overflow)
|
||||||
|
uint64_t usec( void ) const {
|
||||||
|
return seconds_ * MICROSECONDS_PER_SECOND +
|
||||||
|
( nanos_ / NANOSECONDS_PER_MICROSECOND );
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Convert to a number of milliseconds (can overflow)
|
/// Returns the TimeValue as a number of milliseconds. Note that the value
|
||||||
uint64_t msec( void ) const {
|
/// returned can overflow because the range of a uint64_t is smaller than
|
||||||
return seconds_ * MILLISECONDS_PER_SECOND + ( nanos_ / NANOSECONDS_PER_MILLISECOND );
|
/// the range of a TimeValue. Nevertheless, this is useful on some operating
|
||||||
}
|
/// systems and is therefore provided.
|
||||||
|
/// @brief Convert to a number of milliseconds (can overflow)
|
||||||
|
uint64_t msec( void ) const {
|
||||||
|
return seconds_ * MILLISECONDS_PER_SECOND +
|
||||||
|
( nanos_ / NANOSECONDS_PER_MILLISECOND );
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Convert to unix time (100 nanoseconds since 12:00:00a Jan 1, 1970)
|
/// Converts the TimeValue into the corresponding number of "ticks" for
|
||||||
uint64_t posix_time( void ) const {
|
/// Posix, correcting for the difference in Posix zero time.
|
||||||
uint64_t result = seconds_ - PosixZeroTime.seconds_;
|
/// @brief Convert to unix time (100 nanoseconds since 12:00:00a Jan 1,1970)
|
||||||
result += nanos_ / NANOSECONDS_PER_POSIX_TICK;
|
uint64_t ToPosixTime( void ) const {
|
||||||
return result;
|
uint64_t result = seconds_ - PosixZeroTime.seconds_;
|
||||||
}
|
result += nanos_ / NANOSECONDS_PER_POSIX_TICK;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Convert to windows time (seconds since 12:00:00a Jan 1, 1601)
|
/// Converts the TiemValue into the correspodning number of "ticks" for
|
||||||
uint64_t win32_time( void ) const {
|
/// Win32 platforms, correcting for the difference in Win32 zero time.
|
||||||
uint64_t result = seconds_ - Win32ZeroTime.seconds_;
|
/// @brief Convert to windows time (seconds since 12:00:00a Jan 1, 1601)
|
||||||
result += nanos_ / NANOSECONDS_PER_WIN32_TICK;
|
uint64_t ToWin32Time( void ) const {
|
||||||
return result;
|
uint64_t result = seconds_ - Win32ZeroTime.seconds_;
|
||||||
}
|
result += nanos_ / NANOSECONDS_PER_WIN32_TICK;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Convert to timespec time (ala POSIX.1b)
|
/// Provides the seconds and nanoseconds as results in its arguments after
|
||||||
void timespecTime( uint64_t& seconds, uint32_t& nanos ) const {
|
/// correction for the Posix zero time.
|
||||||
nanos = nanos_;
|
/// @brief Convert to timespec time (ala POSIX.1b)
|
||||||
seconds = seconds_ - PosixZeroTime.seconds_;
|
void GetTimespecTime( uint64_t& seconds, uint32_t& nanos ) const {
|
||||||
}
|
seconds = seconds_ - PosixZeroTime.seconds_;
|
||||||
|
nanos = nanos_;
|
||||||
|
}
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
/// @name Mutators
|
/// @name Mutators
|
||||||
/// @{
|
/// @{
|
||||||
/// @brief Set a TimeValue from the two component values.
|
public:
|
||||||
void set (SecondsType secs, NanoSecondsType nanos) {
|
/// The seconds component of the TimeValue is set to \p sec without
|
||||||
this->seconds_ = secs;
|
/// modifying the nanoseconds part. This is useful for whole second arithmetic.
|
||||||
this->nanos_ = nanos;
|
/// @brief Set the seconds component.
|
||||||
this->normalize();
|
void seconds (SecondsType sec ) {
|
||||||
}
|
this->seconds_ = sec;
|
||||||
|
this->normalize();
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Set a TimeValue from another
|
/// The nanoseconds component of the TimeValue is set to \p nanos without
|
||||||
void set ( const TimeValue & that ) {
|
/// modifying the seconds part. This is useful for basic computations
|
||||||
this->seconds_ = that.seconds_;
|
/// involving just the nanoseconds portion. Note that the TimeValue will be
|
||||||
this->nanos_ = that.nanos_;
|
/// normalized after this call so that the fractional (nanoseconds) portion
|
||||||
}
|
/// will have the smallest equivalent value.
|
||||||
|
/// @brief Set the nanoseconds component using a number of nanoseconds.
|
||||||
|
void nanoseconds ( NanoSecondsType nanos ) {
|
||||||
|
this->nanos_ = nanos;
|
||||||
|
this->normalize();
|
||||||
|
}
|
||||||
|
|
||||||
/// The double value is assumed to be in seconds format, with any
|
/// The seconds component remains unchanged.
|
||||||
/// remainder treated as nanoseconds.
|
/// @brief Set the nanoseconds component using a number of microseconds.
|
||||||
/// @brief Set a TimeValue from a double.
|
void microseconds ( int32_t micros ) {
|
||||||
void set (double new_time) {
|
this->nanos_ = micros * NANOSECONDS_PER_MICROSECOND;
|
||||||
SecondsType integer_part = static_cast<SecondsType>( new_time );
|
this->normalize();
|
||||||
seconds_ = integer_part;
|
};
|
||||||
nanos_ = static_cast<NanoSecondsType>( (new_time - static_cast<double>(integer_part)) * NANOSECONDS_PER_SECOND );
|
|
||||||
this->normalize();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The seconds component of the timevalue is set to \p sec without
|
/// The seconds component remains unchanged.
|
||||||
/// modifying the nanoseconds part. This is useful for whole second arithmetic.
|
/// @brief Set the nanoseconds component using a number of milliseconds.
|
||||||
/// @brief Set the seconds component.
|
void milliseconds ( int32_t millis ) {
|
||||||
void seconds (SecondsType sec ) {
|
this->nanos_ = millis * NANOSECONDS_PER_MILLISECOND;
|
||||||
this->seconds_ = sec;
|
this->normalize();
|
||||||
this->normalize();
|
};
|
||||||
}
|
|
||||||
|
|
||||||
/// The seconds component remains unchanged.
|
/// @brief Converts from microsecond format to TimeValue format
|
||||||
/// @brief Set the nanoseconds component using a number of nanoseconds.
|
void usec( int64_t microseconds ) {
|
||||||
void nanoseconds ( NanoSecondsType nanos ) {
|
this->seconds_ = microseconds / MICROSECONDS_PER_SECOND;
|
||||||
this->nanos_ = nanos;
|
this->nanos_ = (microseconds % MICROSECONDS_PER_SECOND) *
|
||||||
this->normalize();
|
NANOSECONDS_PER_MICROSECOND;
|
||||||
}
|
this->normalize();
|
||||||
|
}
|
||||||
|
|
||||||
/// The seconds component remains unchanged.
|
/// @brief Converts from millisecond format to TimeValue format
|
||||||
/// @brief Set the nanoseconds component using a number of microseconds.
|
void msec( int64_t milliseconds ) {
|
||||||
void microseconds ( int32_t micros ) {
|
this->seconds_ = milliseconds / MILLISECONDS_PER_SECOND;
|
||||||
this->nanos_ = micros * NANOSECONDS_PER_MICROSECOND;
|
this->nanos_ = (milliseconds % MILLISECONDS_PER_SECOND) *
|
||||||
this->normalize();
|
NANOSECONDS_PER_MILLISECOND;
|
||||||
};
|
this->normalize();
|
||||||
|
}
|
||||||
/// The seconds component remains unchanged.
|
|
||||||
/// @brief Set the nanoseconds component using a number of milliseconds.
|
|
||||||
void milliseconds ( int32_t millis ) {
|
|
||||||
this->nanos_ = millis * NANOSECONDS_PER_MILLISECOND;
|
|
||||||
this->normalize();
|
|
||||||
};
|
|
||||||
|
|
||||||
/// @brief Converts from microsecond format to TimeValue format
|
|
||||||
void usec( int64_t microseconds ) {
|
|
||||||
this->seconds_ = microseconds / MICROSECONDS_PER_SECOND;
|
|
||||||
this->nanos_ = (microseconds % MICROSECONDS_PER_SECOND) *
|
|
||||||
NANOSECONDS_PER_MICROSECOND;
|
|
||||||
this->normalize();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief Converts from millisecond format to TimeValue format
|
|
||||||
void msec( int64_t milliseconds ) {
|
|
||||||
this->seconds_ = milliseconds / MILLISECONDS_PER_SECOND;
|
|
||||||
this->nanos_ = (milliseconds % MILLISECONDS_PER_SECOND) *
|
|
||||||
NANOSECONDS_PER_MILLISECOND;
|
|
||||||
this->normalize();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// This causes the values to be represented so that the fractional
|
|
||||||
/// part is minimized, possibly incrementing the seconds part.
|
|
||||||
/// @brief Normalize to canonical form.
|
|
||||||
void normalize (void);
|
|
||||||
|
|
||||||
/// @brief Sets \p this to the current time (UTC).
|
|
||||||
void now( void );
|
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
/// @name Implementation
|
||||||
|
/// @{
|
||||||
|
private:
|
||||||
|
/// This causes the values to be represented so that the fractional
|
||||||
|
/// part is minimized, possibly incrementing the seconds part.
|
||||||
|
/// @brief Normalize to canonical form.
|
||||||
|
void normalize (void);
|
||||||
|
|
||||||
|
/// @}
|
||||||
/// @name Data
|
/// @name Data
|
||||||
/// @{
|
/// @{
|
||||||
private:
|
private:
|
||||||
/// Store the values as a <timeval>.
|
/// Store the values as a <timeval>.
|
||||||
SecondsType seconds_; ///< Stores the seconds component of the TimeVal
|
SecondsType seconds_;///< Stores the seconds part of the TimeVal
|
||||||
NanoSecondsType nanos_; ///< Stores the nanoseconds component of the TimeVal
|
NanoSecondsType nanos_; ///< Stores the nanoseconds part of the TimeVal
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user