vega
date_time.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <memory>
5 #include <regex>
6 
7 namespace vega {
8  class RegexString;
9 
11  /* A concatenated date-time character string in the format: */
12  /* YYYYMMDDHHMMSS.FFFFFF&ZZXX */
13  /* The components of this string, from left to right, are YYYY = Year, MM = Month, DD = Day, HH = Hour (range "00" - "23"), MM = Minute (range "00" - "59"), SS = Second (range "00" - "60"). */
14  /* FFFFFF = Fractional Second contains a fractional part of a second as small as 1 millionth of a second (range "000000" - "999999"). */
15  /* &ZZXX is an optional suffix for offset from Coordinated Universal Time (UTC), where & = "+" or "-", and ZZ = Hours and XX = Minutes of offset. */
16  /* The year, month, and day shall be interpreted as a date of the Gregorian calendar system. */
17  /* A 24-hour clock is used. Midnight shall be represented by only "0000" since "2400" would violate the hour range. */
18  /* The Fractional Second component, if present, shall contain 1 to 6 digits. If Fractional Second is unspecified the preceding "." shall not be included. The offset suffix, if present, shall contain 4 digits. The string may be padded with trailing SPACE characters. Leading and embedded spaces are not allowed. */
19  /* A component that is omitted from the string is termed a null component. Trailing null components of Date Time indicate that the value is not precise to the precision of those components. The YYYY component shall not be null. Non-trailing null components are prohibited. The optional suffix is not considered as a component. */
20  /* A Date Time value without the optional suffix is interpreted to be in the local time zone of the application creating the Data Element, unless explicitly specified by the Timezone Offset From UTC (0008,0201). */
21  /* UTC offsets are calculated as "local time minus UTC". The offset for a Date Time value in UTC shall be +0000. */
22  /* Note */
23  /* The range of the offset is -1200 to +1400. The offset for United States Eastern Standard Time is -0500. The offset for Japan Standard Time is +0900. */
24  /* The RFC 2822 use of -0000 as an offset to indicate local time is not allowed. */
25  /* A Date Time value of 195308 means August 1953, not specific to particular day. A Date Time value of 19530827111300.0 means August 27, 1953, 11;13 a.m. accurate to 1/10th second. */
26  /* The Second component may have a value of 60 only for a leap second. */
27  /* The offset may be included regardless of null components; e.g., 2007-0500 is a legal value./ */
28 
39  class DateTime {
40  public:
41  static const std::shared_ptr<const std::regex> SINGLE_DATE_TIME_REGEX;
42  static const std::shared_ptr<const std::regex> DATE_TIME_RANGE_REGEX;
43 
44  // Can either be single DateTime
45  std::shared_ptr<const RegexString> m_date_time;
46  // Or a range of DateTimes
47  std::shared_ptr<const DateTime> m_lower;
48  std::shared_ptr<const DateTime> m_upper;
49 
50  public:
51  explicit DateTime(const std::string& s);
52  DateTime(const std::shared_ptr<DateTime>& lower, const std::shared_ptr<DateTime>& upper);
53 
54  bool is_range() const;
55  const std::shared_ptr<const DateTime>& lower() const;
56  const std::shared_ptr<const DateTime>& upper() const;
57 
58  bool operator==(const DateTime& other) const;
59  bool operator!=(const DateTime& other) const;
60 
61  std::string str() const;
62  void set_string(const std::string& s);
63  };
64 }
const std::shared_ptr< const DateTime > & upper() const
std::shared_ptr< const RegexString > m_date_time
Definition: date_time.h:45
static const std::shared_ptr< const std::regex > DATE_TIME_RANGE_REGEX
Definition: date_time.h:42
bool is_range() const
bool operator==(const DateTime &other) const
const std::shared_ptr< const DateTime > & lower() const
DateTime(const std::string &s)
void set_string(const std::string &s)
bool operator!=(const DateTime &other) const
Date Time.
Definition: date_time.h:39
Definition: age.h:6
std::shared_ptr< const DateTime > m_lower
Definition: date_time.h:47
std::string str() const
std::shared_ptr< const DateTime > m_upper
Definition: date_time.h:48
static const std::shared_ptr< const std::regex > SINGLE_DATE_TIME_REGEX
Definition: date_time.h:41