X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Ftimedelta.h;h=c290f260a7600fd3bbb5d0de80512187bbae8b6d;hp=97c8cac03adf5020fb8e168d11d89c37fb653997;hb=967785734be5c3fc6f75da122c2d93ebbb338271;hpb=f6147f00575bdf6e6b53c2ab81161f5f73d0ab84 diff --git a/source/time/timedelta.h b/source/time/timedelta.h index 97c8cac..c290f26 100644 --- a/source/time/timedelta.h +++ b/source/time/timedelta.h @@ -1,15 +1,9 @@ -/* -This file is part of libmspcore -Copyright © 2006 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ #ifndef MSP_TIME_TIMEDELTA_H_ #define MSP_TIME_TIMEDELTA_H_ -#include #include -#include -#include "types.h" +#include +#include "rawtime.h" namespace Msp { namespace Time { @@ -19,6 +13,9 @@ Represents a quantity of time, such as five seconds. */ class TimeDelta { +private: + RawTime usec; + public: /** Constructs a zero TimeDelta. @@ -38,28 +35,20 @@ public: */ RawTime raw() const { return usec; } -#ifndef WIN32 - /** - Fills in a timespec struct. To get a meaningful scalar value from the - TimeDelta, divide with one of the values in units.h. - */ - void fill_timespec(timespec &ts) const { ts.tv_sec=usec/1000000; ts.tv_nsec=(usec%1000000)*1000; } -#endif - TimeDelta operator+(const TimeDelta &t) const { return TimeDelta(usec+t.usec); } 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; } template - TimeDelta operator*(T a) const { return TimeDelta(int64_t(usec*a)); } + TimeDelta operator*(T a) const { return TimeDelta(RawTime(usec*a)); } template - TimeDelta &operator*=(T a) { usec=int64_t(usec*a); return *this; } + TimeDelta &operator*=(T a) { usec=RawTime(usec*a); return *this; } template - TimeDelta operator/(T a) const { return TimeDelta(int64_t(usec/a)); } + TimeDelta operator/(T a) const { return TimeDelta(RawTime(usec/a)); } template - TimeDelta &operator/=(T a) { usec=int64_t(usec/a); return *this; } + TimeDelta &operator/=(T a) { usec=RawTime(usec/a); return *this; } double operator/(const TimeDelta &t) const { return double(usec)/t.usec; } @@ -70,15 +59,18 @@ public: bool operator==(const TimeDelta &t) const { return usec==t.usec; } bool operator!=(const TimeDelta &t) const { return usec!=t.usec; } - operator bool() const { return usec; } -private: - RawTime 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; } }; template inline TimeDelta operator*(T a, const TimeDelta &t) { return t*a; } -extern std::ostream &operator<<(std::ostream &, const TimeDelta &); +void operator<<(LexicalConverter &, const TimeDelta &); } // namespace Time } // namespace Msp