| 1 | // ************************************************************************** | 
|---|
| 2 | /** @class Time | 
|---|
| 3 |  | 
|---|
| 4 | @brief Adds some functionality to boost::posix_time::ptime for our needs | 
|---|
| 5 |  | 
|---|
| 6 | This is basically a wrapper around boost::posix_time::ptime which is made | 
|---|
| 7 | to adapt the functionality to our needs. Time can store the current | 
|---|
| 8 | data and time with a precision up to nanoseconds if provided by the | 
|---|
| 9 | undrlaying system, otherwise microsecond precision is used. | 
|---|
| 10 |  | 
|---|
| 11 | It main purpose is to provide needed constructors and simplyfy the | 
|---|
| 12 | conversion of dates and times from and to a string/stream. | 
|---|
| 13 |  | 
|---|
| 14 | Note that posix_time (as Posix times have) has a limited range. You cannot | 
|---|
| 15 | use it for example for very early years of the last century. | 
|---|
| 16 |  | 
|---|
| 17 | @section Examples | 
|---|
| 18 |  | 
|---|
| 19 | - An example can be found in \ref time.cc | 
|---|
| 20 |  | 
|---|
| 21 | @section References | 
|---|
| 22 |  | 
|---|
| 23 | - <A HREF="http://www.boost.org/doc/libs/1_45_0/doc/html/date_time.html">BOOST++ date_time (V1.45.0)</A> | 
|---|
| 24 |  | 
|---|
| 25 | **/ | 
|---|
| 26 | // ************************************************************************** | 
|---|
| 27 | #include "Time.h" | 
|---|
| 28 |  | 
|---|
| 29 | using namespace std; | 
|---|
| 30 | using namespace boost::posix_time; | 
|---|
| 31 |  | 
|---|
| 32 | const boost::gregorian::date Time::fUnixOffset(1970, 1, 1); | 
|---|
| 33 |  | 
|---|
| 34 | const Time Time::None(Time::none); | 
|---|
| 35 |  | 
|---|
| 36 | // strftime | 
|---|
| 37 | const _time_format Time::reset  = 0; | 
|---|
| 38 | const _time_format Time::def    = "%c"; | 
|---|
| 39 | const _time_format Time::std    = "%x %X%F"; | 
|---|
| 40 | const _time_format Time::sql    = "%Y-%m-%d %H:%M:%S.%f"; | 
|---|
| 41 | const _time_format Time::ssql   = "%Y-%m-%d %H:%M:%S"; | 
|---|
| 42 | const _time_format Time::iso    = "%Y%m%dT%H%M%S%F%q"; | 
|---|
| 43 | const _time_format Time::magic  = "%Y %m %d %H %M %S %f"; | 
|---|
| 44 | const _time_format Time::smagic = "%Y %m %d %H %M %S"; | 
|---|
| 45 |  | 
|---|
| 46 | // -------------------------------------------------------------------------- | 
|---|
| 47 | // | 
|---|
| 48 | //! Construct a Time object with either UTC or local time, or without any | 
|---|
| 49 | //! particular time. | 
|---|
| 50 | //! | 
|---|
| 51 | //! @param typ | 
|---|
| 52 | //!    enum as defined in Time::init_t | 
|---|
| 53 | // | 
|---|
| 54 | Time::Time(enum init_t typ) | 
|---|
| 55 | { | 
|---|
| 56 | switch (typ) | 
|---|
| 57 | { | 
|---|
| 58 | case utc: | 
|---|
| 59 | *this = microsec_clock::universal_time(); | 
|---|
| 60 | break; | 
|---|
| 61 | case local: | 
|---|
| 62 | *this = microsec_clock::local_time(); | 
|---|
| 63 | break; | 
|---|
| 64 | case none: | 
|---|
| 65 | break; | 
|---|
| 66 | } | 
|---|
| 67 | } | 
|---|
| 68 |  | 
|---|
| 69 |  | 
|---|
| 70 | // -------------------------------------------------------------------------- | 
|---|
| 71 | // | 
|---|
| 72 | //! Construct a Time object with a date_time::special_value, e.g. | 
|---|
| 73 | //! | 
|---|
| 74 | //!  - neg_infin | 
|---|
| 75 | //!  - pos_infin | 
|---|
| 76 | //!  - not_a_date_time | 
|---|
| 77 | //!  - max_date_time | 
|---|
| 78 | //!  - min_date_time | 
|---|
| 79 | //! | 
|---|
| 80 | //! | 
|---|
| 81 | //! @param val | 
|---|
| 82 | //!    date_time::special_value | 
|---|
| 83 | // | 
|---|
| 84 | Time::Time(const boost::date_time::special_values &val) : ptime(val) | 
|---|
| 85 | { | 
|---|
| 86 | } | 
|---|
| 87 |  | 
|---|
| 88 | // -------------------------------------------------------------------------- | 
|---|
| 89 | // | 
|---|
| 90 | //! Construct a Time object from seconds since 1970/1/1 and number of | 
|---|
| 91 | //! milliseconds, as for example returned by gettimeofday() | 
|---|
| 92 | //! | 
|---|
| 93 | //! @param tm | 
|---|
| 94 | //!    seconds since 1970/1/1 | 
|---|
| 95 | //! | 
|---|
| 96 | //! @param millisec | 
|---|
| 97 | //!    number of milliseconds | 
|---|
| 98 | // | 
|---|
| 99 | Time::Time(const time_t &tm, const int &millisec) | 
|---|
| 100 | : ptime(fUnixOffset, time_duration(0, 0, tm, millisec)) | 
|---|
| 101 | { | 
|---|
| 102 | } | 
|---|
| 103 |  | 
|---|
| 104 | // -------------------------------------------------------------------------- | 
|---|
| 105 | // | 
|---|
| 106 | //! Construct a Time from a date and time. | 
|---|
| 107 | //! | 
|---|
| 108 | //! @param year, month, day, hh, mm, ss, microsec | 
|---|
| 109 | //!    A full date and time down to microsecond precision. From the end | 
|---|
| 110 | //!    arguments can be omitted. | 
|---|
| 111 | //! | 
|---|
| 112 | Time::Time(short year, unsigned char month, unsigned char day, | 
|---|
| 113 | unsigned char hh, unsigned char mm, unsigned char ss, unsigned int microsec) | 
|---|
| 114 | // Last argument is fractional_seconds ( correct with num_fractional_digits() ) | 
|---|
| 115 | : ptime(boost::gregorian::date(year, month, day), | 
|---|
| 116 | time_duration(hh, mm, ss, microsec*pow(10, time_of_day().num_fractional_digits()-6))) | 
|---|
| 117 | { | 
|---|
| 118 | } | 
|---|
| 119 |  | 
|---|
| 120 | // -------------------------------------------------------------------------- | 
|---|
| 121 | // | 
|---|
| 122 | //! Set the Time object to a given MJD. Note that this involves | 
|---|
| 123 | //! conversion from double. So converting forth and back many many | 
|---|
| 124 | //! times might results in drifts. | 
|---|
| 125 | //! | 
|---|
| 126 | //! @param mjd | 
|---|
| 127 | //!    Modified Julian Date | 
|---|
| 128 | //! | 
|---|
| 129 | void Time::Mjd(double mjd) | 
|---|
| 130 | { | 
|---|
| 131 | // Convert MJD to seconds since offset | 
|---|
| 132 | mjd -= 40587; | 
|---|
| 133 | mjd *= 24*60*60; | 
|---|
| 134 |  | 
|---|
| 135 | const int exp = time_of_day().num_fractional_digits(); | 
|---|
| 136 | const double frac = fmod(mjd, 1)*pow(10, exp); | 
|---|
| 137 |  | 
|---|
| 138 | *this = ptime(fUnixOffset, time_duration(0, 0, mjd, frac)); | 
|---|
| 139 | } | 
|---|
| 140 |  | 
|---|
| 141 | // -------------------------------------------------------------------------- | 
|---|
| 142 | // | 
|---|
| 143 | //! @returns the seconds of the day including the fractional seconds. | 
|---|
| 144 | //! | 
|---|
| 145 | double Time::SecondsOfDay() const | 
|---|
| 146 | { | 
|---|
| 147 | const time_duration tod = time_of_day(); | 
|---|
| 148 |  | 
|---|
| 149 | const int exp = tod.num_fractional_digits(); | 
|---|
| 150 |  | 
|---|
| 151 | const double frac = tod.fractional_seconds()/pow(10, exp); | 
|---|
| 152 | const double sec  = tod.total_seconds()+frac; | 
|---|
| 153 |  | 
|---|
| 154 | return sec; | 
|---|
| 155 | } | 
|---|
| 156 |  | 
|---|
| 157 | // -------------------------------------------------------------------------- | 
|---|
| 158 | // | 
|---|
| 159 | //! Get the current MJD. Note that this involves | 
|---|
| 160 | //! conversion to double. So converting forth and back many many | 
|---|
| 161 | //! times might results in drifts. | 
|---|
| 162 | //! | 
|---|
| 163 | //! @returns | 
|---|
| 164 | //!    Modified Julian Date | 
|---|
| 165 | //! | 
|---|
| 166 | double Time::Mjd() const | 
|---|
| 167 | { | 
|---|
| 168 | return date().modjulian_day()+SecondsOfDay()/(24*60*60); | 
|---|
| 169 |  | 
|---|
| 170 | /* | 
|---|
| 171 | const time_duration mjd = *this - ptime(fUnixOffset); | 
|---|
| 172 | const double sec = mjd.total_seconds()+mjd.fractional_seconds()/1e6; | 
|---|
| 173 | return sec/(24*60*60)+40587; | 
|---|
| 174 | */ | 
|---|
| 175 | } | 
|---|
| 176 |  | 
|---|
| 177 | // -------------------------------------------------------------------------- | 
|---|
| 178 | // | 
|---|
| 179 | // @returns seconds since 1970/1/1 | 
|---|
| 180 | // | 
|---|
| 181 | double Time::UnixTime() const | 
|---|
| 182 | { | 
|---|
| 183 | return (date().modjulian_day()-40587)*24*60*60 + SecondsOfDay(); | 
|---|
| 184 | } | 
|---|
| 185 |  | 
|---|
| 186 | // -------------------------------------------------------------------------- | 
|---|
| 187 | // | 
|---|
| 188 | // @returns seconds since 1970/1/1 | 
|---|
| 189 | // | 
|---|
| 190 | time_t Time::Time_t() const | 
|---|
| 191 | { | 
|---|
| 192 | return (date().modjulian_day()-40587)*24*60*60 + time_of_day().total_seconds(); | 
|---|
| 193 | } | 
|---|
| 194 |  | 
|---|
| 195 | // -------------------------------------------------------------------------- | 
|---|
| 196 | // | 
|---|
| 197 | //! @returns the time in a format needed for root's TAxis | 
|---|
| 198 | //! | 
|---|
| 199 | double Time::RootTime() const | 
|---|
| 200 | { | 
|---|
| 201 | return (date().modjulian_day()-49718)*24*60*60 + SecondsOfDay(); | 
|---|
| 202 | } | 
|---|
| 203 |  | 
|---|
| 204 | // -------------------------------------------------------------------------- | 
|---|
| 205 | // | 
|---|
| 206 | //! Returns a string with the contents of the Time object formated | 
|---|
| 207 | //! as defined in format. | 
|---|
| 208 | //! | 
|---|
| 209 | //! @param format | 
|---|
| 210 | //!    format description of the string to be returned. For details | 
|---|
| 211 | //!    see the boost documentation or the man page of strftime | 
|---|
| 212 | //! | 
|---|
| 213 | //! @returns | 
|---|
| 214 | //!    A string with the time formatted as requested. Note some special | 
|---|
| 215 | //!    strings might be returned in case the time is invalid. | 
|---|
| 216 | // | 
|---|
| 217 | string Time::GetAsStr(const char *format) const | 
|---|
| 218 | { | 
|---|
| 219 | stringstream out; | 
|---|
| 220 | out << Time::fmt(format) << *this; | 
|---|
| 221 | return out.str(); | 
|---|
| 222 | } | 
|---|
| 223 |  | 
|---|
| 224 | // -------------------------------------------------------------------------- | 
|---|
| 225 | // | 
|---|
| 226 | //! @returns | 
|---|
| 227 | //!     a human readable string which complies with ISO 8601, in the | 
|---|
| 228 | //!    "CCYY-MM-DDThh:mm:ss.f" | 
|---|
| 229 | // | 
|---|
| 230 | string Time::Iso() const | 
|---|
| 231 | { | 
|---|
| 232 | stringstream out; | 
|---|
| 233 | out << Time::fmt("%Y-%m-%dT%H:%M:%S%F") << *this; | 
|---|
| 234 | return out.str(); | 
|---|
| 235 | } | 
|---|
| 236 |  | 
|---|
| 237 | // -------------------------------------------------------------------------- | 
|---|
| 238 | // | 
|---|
| 239 | //! Sets the time of the Time object to a time corresponding to | 
|---|
| 240 | //! the one given as argument. It is evaluated according to the given | 
|---|
| 241 | //! format. | 
|---|
| 242 | //! | 
|---|
| 243 | //! @param str | 
|---|
| 244 | //!    The time as a string which should be converted to the Time object | 
|---|
| 245 | //! | 
|---|
| 246 | //! @param format | 
|---|
| 247 | //!    format description of the string to be returned. For details | 
|---|
| 248 | //!    see the boost documentation or the man page of strftime | 
|---|
| 249 | //! | 
|---|
| 250 | void Time::SetFromStr(const string &str, const char *format) | 
|---|
| 251 | { | 
|---|
| 252 | // FIXME: exception handline | 
|---|
| 253 | stringstream stream; | 
|---|
| 254 | stream << str; | 
|---|
| 255 | stream >> Time::fmt(format) >> *this; | 
|---|
| 256 | } | 
|---|
| 257 |  | 
|---|
| 258 | // -------------------------------------------------------------------------- | 
|---|
| 259 | // | 
|---|
| 260 | //! @returns | 
|---|
| 261 | //!     an int corresponding to the stored time minus 12 hours of the form | 
|---|
| 262 | //!     YYYYMMDD, e.g. 20111224 for Christmas eve 2011 | 
|---|
| 263 | // | 
|---|
| 264 | int Time::NightAsInt() const | 
|---|
| 265 | { | 
|---|
| 266 | const Time tm = *this - boost::posix_time::hours(12); | 
|---|
| 267 | return tm.Y()*10000 + tm.M()*100 + tm.D(); | 
|---|
| 268 | } | 
|---|
| 269 |  | 
|---|
| 270 | // -------------------------------------------------------------------------- | 
|---|
| 271 | // | 
|---|
| 272 | //! A stream manipulator which sets the streams Time output format | 
|---|
| 273 | //! as defined in the argument. | 
|---|
| 274 | //! | 
|---|
| 275 | //! @param format | 
|---|
| 276 | //!    format description of the manipulator be returned. For details | 
|---|
| 277 | //!    see the boost documentation or the man page of strftime | 
|---|
| 278 | //! | 
|---|
| 279 | //! @returns | 
|---|
| 280 | //!    a stream manipulator for the given format | 
|---|
| 281 | //! | 
|---|
| 282 | const _time_format Time::fmt(const char *format) | 
|---|
| 283 | { | 
|---|
| 284 | return format; | 
|---|
| 285 | } | 
|---|
| 286 |  | 
|---|
| 287 | // -------------------------------------------------------------------------- | 
|---|
| 288 | // | 
|---|
| 289 | //! Sets the locale discription of the stream (the way how a time is | 
|---|
| 290 | //! output) to the format defined by the given manipulator. | 
|---|
| 291 | //! | 
|---|
| 292 | //! Example: | 
|---|
| 293 | //! \code | 
|---|
| 294 | //!    Time t(); | 
|---|
| 295 | //!    cout << Time::fmt("%Y:%m:%d %H:%M:%S.%f") << t << endl; | 
|---|
| 296 | //! \endcode | 
|---|
| 297 | //! | 
|---|
| 298 | //! @param out | 
|---|
| 299 | //!    Reference to the stream | 
|---|
| 300 | //! | 
|---|
| 301 | //! @param f | 
|---|
| 302 | //!    Time format described by a manipulator | 
|---|
| 303 | //! | 
|---|
| 304 | //! @returns | 
|---|
| 305 | //!    A reference to the stream | 
|---|
| 306 | //! | 
|---|
| 307 | ostream &operator<<(ostream &out, const _time_format &f) | 
|---|
| 308 | { | 
|---|
| 309 | const locale loc(locale::classic(), | 
|---|
| 310 | f.ptr==0 ? 0 : new time_facet(f.ptr)); | 
|---|
| 311 |  | 
|---|
| 312 | out.imbue(loc); | 
|---|
| 313 |  | 
|---|
| 314 | return out; | 
|---|
| 315 | } | 
|---|
| 316 |  | 
|---|
| 317 | // -------------------------------------------------------------------------- | 
|---|
| 318 | // | 
|---|
| 319 | //! Sets the locale discription of the stream (the way how a time is | 
|---|
| 320 | //! input) to the format defined by the given manipulator. | 
|---|
| 321 | //! | 
|---|
| 322 | //! Example: | 
|---|
| 323 | //! \code | 
|---|
| 324 | //!    stringstream s; | 
|---|
| 325 | //!    s << "09.09.1974 21:59"; | 
|---|
| 326 | //! | 
|---|
| 327 | //!    Time t; | 
|---|
| 328 | //!    s >> Time::fmt("%d.%m.%Y %H:%M") >> t; | 
|---|
| 329 | //! \endcode | 
|---|
| 330 | //! | 
|---|
| 331 | //! @param in | 
|---|
| 332 | //!    Reference to the stream | 
|---|
| 333 | //! | 
|---|
| 334 | //! @param f | 
|---|
| 335 | //!    Time format described by a manipulator | 
|---|
| 336 | //! | 
|---|
| 337 | //! @returns | 
|---|
| 338 | //!    A reference to the stream | 
|---|
| 339 | //! | 
|---|
| 340 | istream &operator>>(istream &in, const _time_format &f) | 
|---|
| 341 | { | 
|---|
| 342 | const locale loc(locale::classic(), | 
|---|
| 343 | f.ptr==0 ? 0 : new time_input_facet(f.ptr)); | 
|---|
| 344 |  | 
|---|
| 345 | in.imbue(loc); | 
|---|
| 346 |  | 
|---|
| 347 | return in; | 
|---|
| 348 | } | 
|---|
| 349 |  | 
|---|