/* */ #ifndef D_TIME_H #define D_TIME_H #include "common.h" #include #include #include "a2time.h" namespace aria2 { class Time { public: using Clock = std::chrono::system_clock; // The time value is initialized so that it represents the time at which // this object was created. Time(); Time(const Time& time) = default; Time(Time&& time) = default; Time(time_t sec); Time& operator=(const Time& time) = default; Time& operator=(Time&& time) = default; bool operator<(const Time& time) const { return tp_ < time.tp_; } bool operator>(const Time& time) const { return time < *this; } bool operator<=(const Time& time) const { return !(time < *this); } bool operator>=(const Time& time) const { return !(*this < time); } // Makes this object's time value up to date. void reset(); Clock::duration difference() const; Clock::duration difference(const Time& now) const; const Clock::time_point& getTime() const { return tp_; } void setTimeFromEpoch(time_t sec); time_t getTimeFromEpoch() const { return Clock::to_time_t(tp_); } template void advance(const duration& t) { tp_ += t; } bool good() const { return good_; } bool bad() const { return !good_; } static Time null() { return Time(0, false); } std::string toHTTPDate() const; // Currently timezone is assumed as GMT. static Time parse(const std::string& datetime, const std::string& format); // Currently timezone is assumed to GMT. static Time parseRFC1123(const std::string& datetime); // Like parseRFC1123, but only accepts trailing "+0000" instead of // last 3 letters "GMT". static Time parseRFC1123Alt(const std::string& datetime); // Currently timezone is assumed to GMT. static Time parseRFC850(const std::string& datetime); // Currently timezone is assumed to GMT. Basically the format is // RFC850, but year part is 4digit, eg 2008 This format appears in // original Netscape's PERSISTENT CLIENT STATE HTTP COOKIES // Specification. http://curl.haxx.se/rfc/cookie_spec.html static Time parseRFC850Ext(const std::string& datetime); // Currently timezone is assumed to GMT. // ANSI C's asctime() format static Time parseAsctime(const std::string& datetime); // Try parseRFC1123, parseRFC850, parseAsctime, parseRFC850Ext in // that order and returns the first "good" Time object returned by // these functions. static Time parseHTTPDate(const std::string& datetime); private: Time(time_t t, bool good) : tp_(Clock::from_time_t(t)), good_(good) {} Clock::time_point tp_; bool good_; }; } // namespace aria2 #endif // D_TIME_H