libfilezilla
time.hpp
Go to the documentation of this file.
1 #ifndef LIBFILEZILLA_TIME_HEADER
2 #define LIBFILEZILLA_TIME_HEADER
3 
4 #include "libfilezilla.hpp"
5 
6 #include <chrono>
7 #include <ctime>
8 
9 #include <limits>
10 
11 #ifdef FZ_WINDOWS
12 #include "private/windows.hpp"
13 #endif
14 
19 namespace fz {
20 
21 class FZ_PUBLIC_SYMBOL duration;
22 
40 class FZ_PUBLIC_SYMBOL datetime final
41 {
42 public:
46  enum accuracy : char {
47  days,
48  hours,
49  minutes,
50  seconds,
51  milliseconds
52  };
53 
58  enum zone {
59  utc,
60  local
61  };
62 
64  datetime() = default;
65 
66  datetime(zone z, int year, int month, int day, int hour = -1, int minute = -1, int second = -1, int millisecond = -1);
67 
68  explicit datetime(time_t, accuracy a);
69 
74  explicit datetime(std::string const& s, zone z);
75  explicit datetime(std::wstring const& s, zone z);
76 
77 #ifdef FZ_WINDOWS
78  explicit datetime(FILETIME const& ft, accuracy a);
80 #endif
81 
82  datetime(datetime const& op) = default;
83  datetime(datetime && op) noexcept = default;
84  datetime& operator=(datetime const& op) = default;
85  datetime& operator=(datetime && op) noexcept = default;
86 
88  bool empty() const;
89 
90  explicit operator bool() const {
91  return !empty();
92  }
93 
95  void clear();
96 
97  accuracy get_accuracy() const { return a_; }
98 
100  static datetime now();
101 
108  bool operator==(datetime const& op) const;
109  bool operator!=(datetime const& op) const { return !(*this == op); }
110  bool operator<(datetime const& op) const;
111  bool operator<=(datetime const& op) const;
112  bool operator>(datetime const& op) const { return op < *this; }
114 
124  int compare(datetime const& op) const;
125 
127  bool earlier_than(datetime const& op) const { return compare(op) < 0; };
128 
130  bool later_than(datetime const& op) const { return compare(op) > 0; };
131 
137  datetime& operator+=(duration const& op);
138  datetime operator+(duration const& op) const { datetime t(*this); t += op; return t; }
139 
140  datetime& operator-=(duration const& op);
141  datetime operator-(duration const& op) const { datetime t(*this); t -= op; return t; }
143 
144  friend duration FZ_PUBLIC_SYMBOL operator-(datetime const& a, datetime const& b);
145 
153  bool set(zone z, int year, int month, int day, int hour = -1, int minute = -1, int second = -1, int millisecond = -1);
154 
164  bool set(std::string const& str, zone z);
165  bool set(std::wstring const& str, zone z);
166 
167 #ifdef FZ_WINDOWS
168  bool set(FILETIME const& ft, accuracy a);
171  bool set(SYSTEMTIME const& ft, accuracy a, zone z);
172 #endif
173 
174 #if defined(FZ_UNIX) || defined(FZ_MAC)
175 
180  bool set(tm & t, accuracy a, zone z);
181 #endif
182 
189  bool imbue_time(int hour, int minute, int second = -1, int millisecond = -1);
190 
197  std::string format(std::string const& format, zone z) const;
198  std::wstring format(std::wstring const& format, zone z) const;
199 
205  static bool verify_format(std::string const& fmt);
206  static bool verify_format(std::wstring const& fmt);
207 
209  int get_milliseconds() const { return t_ % 1000; }
210 
212  time_t get_time_t() const;
213 
218  tm get_tm(zone z) const;
219 
220 #ifdef FZ_WINDOWS
221  FILETIME get_filetime() const;
223 #endif
224 
231  std::string get_rfc822() const;
232 
248  bool set_rfc822(std::string const& str);
249  bool set_rfc822(std::wstring const& str);
250 
251 private:
252  int FZ_PRIVATE_SYMBOL compare_slow(datetime const& op) const;
253 
254  bool FZ_PRIVATE_SYMBOL clamped();
255 
256  enum invalid_t : int64_t {
257  invalid = std::numeric_limits<int64_t>::min()
258  };
259 
260  int64_t t_{invalid};
261  accuracy a_{days};
262 };
263 
271 class FZ_PUBLIC_SYMBOL duration final
272 {
273 public:
274  duration() = default;
275 
280  int64_t get_days() const { return ms_ / 1000 / 3600 / 24; }
281  int64_t get_hours() const { return ms_ / 1000 / 3600; }
282  int64_t get_minutes() const { return ms_ / 1000 / 60; }
283  int64_t get_seconds() const { return ms_ / 1000; }
284  int64_t get_milliseconds() const { return ms_; }
286 
287  static duration from_days(int64_t m) {
288  return duration(m * 1000 * 60 * 60 * 24);
289  }
290  static duration from_hours(int64_t m) {
291  return duration(m * 1000 * 60 * 60);
292  }
293  static duration from_minutes(int64_t m) {
294  return duration(m * 1000 * 60);
295  }
296  static duration from_seconds(int64_t m) {
297  return duration(m * 1000);
298  }
299  static duration from_milliseconds(int64_t m) {
300  return duration(m);
301  }
303 
304  duration& operator-=(duration const& op) {
305  ms_ -= op.ms_;
306  return *this;
307  }
308 
309  duration operator-() const {
310  return duration(-ms_);
311  }
312 
313  explicit operator bool() const {
314  return ms_ != 0;
315  }
316 
317  duration& operator*=(int64_t op) {
318  ms_ *= op;
319  return *this;
320  }
321 
322  bool operator<(duration const& op) const { return ms_ < op.ms_; }
323  bool operator<=(duration const& op) const { return ms_ <= op.ms_; }
324  bool operator>(duration const& op) const { return ms_ > op.ms_; }
325  bool operator>=(duration const& op) const { return ms_ >= op.ms_; }
326 
327  friend duration FZ_PUBLIC_SYMBOL operator-(duration const& a, duration const& b);
328 private:
329  explicit duration(int64_t ms) : ms_(ms) {}
330 
331  int64_t ms_{};
332 };
333 
334 inline duration operator-(duration const& a, duration const& b)
335 {
336  return duration(a) -= b;
337 }
338 
339 
346 duration FZ_PUBLIC_SYMBOL operator-(datetime const& a, datetime const& b);
347 
348 
349 
350 
358 class FZ_PUBLIC_SYMBOL monotonic_clock final
359 {
360 public:
365  monotonic_clock() = default;
366 
367  monotonic_clock(monotonic_clock const&) = default;
368  monotonic_clock(monotonic_clock &&) noexcept = default;
369  monotonic_clock& operator=(monotonic_clock const&) = default;
370  monotonic_clock& operator=(monotonic_clock &&) noexcept = default;
371 
372  monotonic_clock const operator+(duration const& d) const
373  {
374  return monotonic_clock(*this) += d;
375  }
376 
377 private:
378  typedef std::chrono::steady_clock clock_type;
379  static_assert(std::chrono::steady_clock::is_steady, "Nonconforming stdlib, your steady_clock isn't steady");
380 
381 public:
383  static monotonic_clock now() {
384  return monotonic_clock(clock_type::now());
385  }
386 
387  explicit operator bool() const {
388  return t_ != clock_type::time_point();
389  }
390 
391  monotonic_clock& operator+=(duration const& d)
392  {
393  t_ += std::chrono::milliseconds(d.get_milliseconds());
394  return *this;
395  }
396 
397  monotonic_clock& operator-=(duration const& d)
398  {
399  t_ -= std::chrono::milliseconds(d.get_milliseconds());
400  return *this;
401  }
402 
403 private:
404  explicit monotonic_clock(clock_type::time_point const& t)
405  : t_(t)
406  {}
407 
408  clock_type::time_point t_;
409 
410  friend duration operator-(monotonic_clock const& a, monotonic_clock const& b);
411  friend bool operator==(monotonic_clock const& a, monotonic_clock const& b);
412  friend bool operator<(monotonic_clock const& a, monotonic_clock const& b);
413  friend bool operator<=(monotonic_clock const& a, monotonic_clock const& b);
414  friend bool operator>(monotonic_clock const& a, monotonic_clock const& b);
415  friend bool operator>=(monotonic_clock const& a, monotonic_clock const& b);
416 };
417 
422 inline duration operator-(monotonic_clock const& a, monotonic_clock const& b)
423 {
424  return duration::from_milliseconds(std::chrono::duration_cast<std::chrono::milliseconds>(a.t_ - b.t_).count());
425 }
426 
428 inline bool operator==(monotonic_clock const& a, monotonic_clock const& b)
429 {
430  return a.t_ == b.t_;
431 }
432 
434 inline bool operator<(monotonic_clock const& a, monotonic_clock const& b)
435 {
436  return a.t_ < b.t_;
437 }
438 
440 inline bool operator<=(monotonic_clock const& a, monotonic_clock const& b)
441 {
442  return a.t_ <= b.t_;
443 }
444 
446 inline bool operator>(monotonic_clock const& a, monotonic_clock const& b)
447 {
448  return a.t_ > b.t_;
449 }
450 
452 inline bool operator>=(monotonic_clock const& a, monotonic_clock const& b)
453 {
454  return a.t_ >= b.t_;
455 }
456 
457 }
458 
459 #endif
bool operator==(monotonic_clock const &a, monotonic_clock const &b)
Definition: time.hpp:428
bool earlier_than(datetime const &op) const
Equivalent to compare(op) < 0.
Definition: time.hpp:127
bool operator<(monotonic_clock const &a, monotonic_clock const &b)
Definition: time.hpp:434
int get_milliseconds() const
Get millisecond part of timestamp.
Definition: time.hpp:209
Represents a point of time in wallclock, tracking the timestamps accuracy/precision.
Definition: time.hpp:40
accuracy
The datetime's accuracy.
Definition: time.hpp:46
bool later_than(datetime const &op) const
Equivalent to compare(op) > 0.
Definition: time.hpp:130
A monotonic clock (aka steady clock) is independent from walltime.
Definition: time.hpp:358
bool operator>(monotonic_clock const &a, monotonic_clock const &b)
Definition: time.hpp:446
The namespace used by libfilezilla.
Definition: apply.hpp:16
zone
When importing or exporting a timestamp, zone is used to explicitly specify whether the conversion is...
Definition: time.hpp:58
The duration class represents a time interval in milliseconds.
Definition: time.hpp:271
Sets some global macros and further includes string.hpp.
bool operator<=(monotonic_clock const &a, monotonic_clock const &b)
Definition: time.hpp:440
bool operator>=(monotonic_clock const &a, monotonic_clock const &b)
Definition: time.hpp:452
static monotonic_clock now()
Gets the current point in time time.
Definition: time.hpp:383