X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Fdatetime.h;h=b7f578cd9f71326ae510c0780c8714f195aa684d;hp=ba8049bc2aad9ad6a2b794364da2478ad25466c3;hb=242a4a9abe1e1113b5eb39aa751aa054f696d7be;hpb=fe8c3e73b5d9147d400c2b7d2e35ebfc64fc7b9d diff --git a/source/time/datetime.h b/source/time/datetime.h index ba8049b..b7f578c 100644 --- a/source/time/datetime.h +++ b/source/time/datetime.h @@ -1,10 +1,3 @@ -/* $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_ @@ -30,14 +23,14 @@ TimeStamp is a better choice. class DateTime { private: - int year; + int year; unsigned char month; unsigned char mday; unsigned char hour; unsigned char minute; unsigned char second; - unsigned usec; - TimeZone zone; + unsigned usec; + TimeZone zone; public: DateTime(const TimeStamp &); @@ -50,13 +43,15 @@ private: 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 +79,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