X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Fdatetime.h;h=a5d91cf3451d4b547e93698cabd1f191983b4b0f;hp=ba8049bc2aad9ad6a2b794364da2478ad25466c3;hb=HEAD;hpb=fe8c3e73b5d9147d400c2b7d2e35ebfc64fc7b9d diff --git a/source/time/datetime.h b/source/time/datetime.h index ba8049b..2336374 100644 --- a/source/time/datetime.h +++ b/source/time/datetime.h @@ -1,14 +1,8 @@ -/* $Id$ - -This file is part of libmspcore -Copyright © 2006 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_TIME_DATETIME_H_ #define MSP_TIME_DATETIME_H_ #include +#include #include "timezone.h" #include "rawtime.h" @@ -27,17 +21,17 @@ Due to the complex internal representation, arithmetic operations on a DateTime are relatively slow. For purposes of internal scheduling in a program, a TimeStamp is a better choice. */ -class DateTime +class MSPCORE_API DateTime { private: - int year; - unsigned char month; - unsigned char mday; - unsigned char hour; - unsigned char minute; - unsigned char second; - unsigned usec; - TimeZone zone; + int year = 1970; + unsigned char month = 1; + unsigned char mday = 1; + unsigned char hour = 0; + unsigned char minute = 0; + unsigned char second = 0; + unsigned usec = 0; + TimeZone zone; public: DateTime(const TimeStamp &); @@ -45,18 +39,16 @@ public: DateTime(int, unsigned char, unsigned char); DateTime(int, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char); DateTime(int, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned); -private: - void init(const TimeStamp &); - void init(int, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned); -public: - int get_year() const { return year; } - unsigned char get_month() const { return month; } - unsigned char get_mday() const { return mday; } - unsigned char get_hour() const { return hour; } + static DateTime parse_rfc3339(const std::string &); + + int get_year() const { return year; } + unsigned char get_month() const { return month; } + unsigned char get_mday() const { return mday; } + unsigned char get_hour() const { return hour; } unsigned char get_minute() const { return minute; } unsigned char get_second() const { return second; } - unsigned get_usec() const { return usec; } + unsigned get_usec() const { return usec; } void add_days(int); void set_timezone(const TimeZone &); @@ -84,6 +76,12 @@ private: void normalize(); }; +inline void operator<<(LexicalConverter &c, const DateTime &d) +{ c.result(d.format_rfc3339()); } + +inline void operator>>(const LexicalConverter &c, DateTime &d) +{ d = DateTime::parse_rfc3339(c.get()); } + } // namespace Time } // namespace Msp