X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftimedelta.h;h=a6c7005b9a35639875e36d85cc6d5b97ed169b5c;hb=5d3a5019399f97af0371f4fd6dc415d36de6ac3a;hp=972ee26387406d224b11bf3f77f76b4c88fdd296;hpb=d16185720fa344263367dbd50c61bfc8183d99a4;p=libs%2Fcore.git diff --git a/source/time/timedelta.h b/source/time/timedelta.h index 972ee26..a6c7005 100644 --- a/source/time/timedelta.h +++ b/source/time/timedelta.h @@ -1,7 +1,9 @@ #ifndef MSP_TIME_TIMEDELTA_H_ #define MSP_TIME_TIMEDELTA_H_ +#include #include +#include #include #include "rawtime.h" @@ -11,18 +13,17 @@ namespace Time { /** Represents a quantity of time, such as five seconds. */ -class TimeDelta +class MSPCORE_API TimeDelta { private: - RawTime usec; + RawTime usec = 0; public: /** Constructs a zero TimeDelta. */ - TimeDelta(): usec(0) { } + TimeDelta() = default; /** Constructs a TimeDelta from a plain number. The purpose of this is to - allow serialization together with the raw() function. For creating - TimeDeltas with a specific length, see units.h. */ + allow serialization together with the raw() function. */ explicit TimeDelta(RawTime u): usec(u) { } /** Returns the raw number stored inside the TimeDelta. This should only be used @@ -33,6 +34,7 @@ public: TimeDelta &operator+=(const TimeDelta &t) { usec += t.usec; return *this; } TimeDelta operator-(const TimeDelta &t) const { return TimeDelta(usec-t.usec); } TimeDelta &operator-=(const TimeDelta &t) { usec -= t.usec; return *this; } + TimeDelta operator-() const { return TimeDelta(-usec); } template TimeDelta operator*(T a) const { return TimeDelta(RawTime(usec*a)); } @@ -53,18 +55,27 @@ public: bool operator==(const TimeDelta &t) const { return usec==t.usec; } bool operator!=(const TimeDelta &t) const { return usec!=t.usec; } -#ifndef WIN32 - operator timeval() const { return rawtime_to_timeval(usec); } - operator timespec() const { return rawtime_to_timespec(usec); } -#endif - - operator const void *() const { return usec ? this : 0; } + explicit operator bool() const { return usec; } }; template inline TimeDelta operator*(T a, const TimeDelta &t) { return t*a; } -void operator<<(LexicalConverter &, const TimeDelta &); +MSPCORE_API void operator<<(LexicalConverter &, const TimeDelta &); + + +// Constants to be used in creation of TimeDeltas +MSPCORE_API extern const TimeDelta zero; +MSPCORE_API extern const TimeDelta usec; +MSPCORE_API extern const TimeDelta msec; +MSPCORE_API extern const TimeDelta sec; +MSPCORE_API extern const TimeDelta min; +MSPCORE_API extern const TimeDelta hour; +MSPCORE_API extern const TimeDelta day; +MSPCORE_API extern const TimeDelta week; + +inline TimeDelta abs(const TimeDelta &t) { return t>=zero ? t : -t; } +using std::abs; } // namespace Time } // namespace Msp