civil_time.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  1. // Copyright 2018 The Abseil Authors.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // -----------------------------------------------------------------------------
  16. // File: civil_time.h
  17. // -----------------------------------------------------------------------------
  18. //
  19. // This header file defines abstractions for computing with "civil time".
  20. // The term "civil time" refers to the legally recognized human-scale time
  21. // that is represented by the six fields `YYYY-MM-DD hh:mm:ss`. A "date"
  22. // is perhaps the most common example of a civil time (represented here as
  23. // an `y_absl::CivilDay`).
  24. //
  25. // Modern-day civil time follows the Gregorian Calendar and is a
  26. // time-zone-independent concept: a civil time of "2015-06-01 12:00:00", for
  27. // example, is not tied to a time zone. Put another way, a civil time does not
  28. // map to a unique point in time; a civil time must be mapped to an absolute
  29. // time *through* a time zone.
  30. //
  31. // Because a civil time is what most people think of as "time," it is common to
  32. // map absolute times to civil times to present to users.
  33. //
  34. // Time zones define the relationship between absolute and civil times. Given an
  35. // absolute or civil time and a time zone, you can compute the other time:
  36. //
  37. // Civil Time = F(Absolute Time, Time Zone)
  38. // Absolute Time = G(Civil Time, Time Zone)
  39. //
  40. // The Abseil time library allows you to construct such civil times from
  41. // absolute times; consult time.h for such functionality.
  42. //
  43. // This library provides six classes for constructing civil-time objects, and
  44. // provides several helper functions for rounding, iterating, and performing
  45. // arithmetic on civil-time objects, while avoiding complications like
  46. // daylight-saving time (DST):
  47. //
  48. // * `y_absl::CivilSecond`
  49. // * `y_absl::CivilMinute`
  50. // * `y_absl::CivilHour`
  51. // * `y_absl::CivilDay`
  52. // * `y_absl::CivilMonth`
  53. // * `y_absl::CivilYear`
  54. //
  55. // Example:
  56. //
  57. // // Construct a civil-time object for a specific day
  58. // const y_absl::CivilDay cd(1969, 07, 20);
  59. //
  60. // // Construct a civil-time object for a specific second
  61. // const y_absl::CivilSecond cd(2018, 8, 1, 12, 0, 1);
  62. //
  63. // Note: In C++14 and later, this library is usable in a constexpr context.
  64. //
  65. // Example:
  66. //
  67. // // Valid in C++14
  68. // constexpr y_absl::CivilDay cd(1969, 07, 20);
  69. #ifndef Y_ABSL_TIME_CIVIL_TIME_H_
  70. #define Y_ABSL_TIME_CIVIL_TIME_H_
  71. #include <iosfwd>
  72. #include <util/generic/string.h>
  73. #include "y_absl/base/config.h"
  74. #include "y_absl/strings/string_view.h"
  75. #include "y_absl/time/internal/cctz/include/cctz/civil_time.h"
  76. namespace y_absl {
  77. Y_ABSL_NAMESPACE_BEGIN
  78. namespace time_internal {
  79. struct second_tag : cctz::detail::second_tag {};
  80. struct minute_tag : second_tag, cctz::detail::minute_tag {};
  81. struct hour_tag : minute_tag, cctz::detail::hour_tag {};
  82. struct day_tag : hour_tag, cctz::detail::day_tag {};
  83. struct month_tag : day_tag, cctz::detail::month_tag {};
  84. struct year_tag : month_tag, cctz::detail::year_tag {};
  85. } // namespace time_internal
  86. // -----------------------------------------------------------------------------
  87. // CivilSecond, CivilMinute, CivilHour, CivilDay, CivilMonth, CivilYear
  88. // -----------------------------------------------------------------------------
  89. //
  90. // Each of these civil-time types is a simple value type with the same
  91. // interface for construction and the same six accessors for each of the civil
  92. // time fields (year, month, day, hour, minute, and second, aka YMDHMS). These
  93. // classes differ only in their alignment, which is indicated by the type name
  94. // and specifies the field on which arithmetic operates.
  95. //
  96. // CONSTRUCTION
  97. //
  98. // Each of the civil-time types can be constructed in two ways: by directly
  99. // passing to the constructor up to six integers representing the YMDHMS fields,
  100. // or by copying the YMDHMS fields from a differently aligned civil-time type.
  101. // Omitted fields are assigned their minimum valid value. Hours, minutes, and
  102. // seconds will be set to 0, month and day will be set to 1. Since there is no
  103. // minimum year, the default is 1970.
  104. //
  105. // Examples:
  106. //
  107. // y_absl::CivilDay default_value; // 1970-01-01 00:00:00
  108. //
  109. // y_absl::CivilDay a(2015, 2, 3); // 2015-02-03 00:00:00
  110. // y_absl::CivilDay b(2015, 2, 3, 4, 5, 6); // 2015-02-03 00:00:00
  111. // y_absl::CivilDay c(2015); // 2015-01-01 00:00:00
  112. //
  113. // y_absl::CivilSecond ss(2015, 2, 3, 4, 5, 6); // 2015-02-03 04:05:06
  114. // y_absl::CivilMinute mm(ss); // 2015-02-03 04:05:00
  115. // y_absl::CivilHour hh(mm); // 2015-02-03 04:00:00
  116. // y_absl::CivilDay d(hh); // 2015-02-03 00:00:00
  117. // y_absl::CivilMonth m(d); // 2015-02-01 00:00:00
  118. // y_absl::CivilYear y(m); // 2015-01-01 00:00:00
  119. //
  120. // m = y_absl::CivilMonth(y); // 2015-01-01 00:00:00
  121. // d = y_absl::CivilDay(m); // 2015-01-01 00:00:00
  122. // hh = y_absl::CivilHour(d); // 2015-01-01 00:00:00
  123. // mm = y_absl::CivilMinute(hh); // 2015-01-01 00:00:00
  124. // ss = y_absl::CivilSecond(mm); // 2015-01-01 00:00:00
  125. //
  126. // Each civil-time class is aligned to the civil-time field indicated in the
  127. // class's name after normalization. Alignment is performed by setting all the
  128. // inferior fields to their minimum valid value (as described above). The
  129. // following are examples of how each of the six types would align the fields
  130. // representing November 22, 2015 at 12:34:56 in the afternoon. (Note: the
  131. // string format used here is not important; it's just a shorthand way of
  132. // showing the six YMDHMS fields.)
  133. //
  134. // y_absl::CivilSecond : 2015-11-22 12:34:56
  135. // y_absl::CivilMinute : 2015-11-22 12:34:00
  136. // y_absl::CivilHour : 2015-11-22 12:00:00
  137. // y_absl::CivilDay : 2015-11-22 00:00:00
  138. // y_absl::CivilMonth : 2015-11-01 00:00:00
  139. // y_absl::CivilYear : 2015-01-01 00:00:00
  140. //
  141. // Each civil-time type performs arithmetic on the field to which it is
  142. // aligned. This means that adding 1 to an y_absl::CivilDay increments the day
  143. // field (normalizing as necessary), and subtracting 7 from an y_absl::CivilMonth
  144. // operates on the month field (normalizing as necessary). All arithmetic
  145. // produces a valid civil time. Difference requires two similarly aligned
  146. // civil-time objects and returns the scalar answer in units of the objects'
  147. // alignment. For example, the difference between two y_absl::CivilHour objects
  148. // will give an answer in units of civil hours.
  149. //
  150. // ALIGNMENT CONVERSION
  151. //
  152. // The alignment of a civil-time object cannot change, but the object may be
  153. // used to construct a new object with a different alignment. This is referred
  154. // to as "realigning". When realigning to a type with the same or more
  155. // precision (e.g., y_absl::CivilDay -> y_absl::CivilSecond), the conversion may be
  156. // performed implicitly since no information is lost. However, if information
  157. // could be discarded (e.g., CivilSecond -> CivilDay), the conversion must
  158. // be explicit at the call site.
  159. //
  160. // Examples:
  161. //
  162. // void UseDay(y_absl::CivilDay day);
  163. //
  164. // y_absl::CivilSecond cs;
  165. // UseDay(cs); // Won't compile because data may be discarded
  166. // UseDay(y_absl::CivilDay(cs)); // OK: explicit conversion
  167. //
  168. // y_absl::CivilDay cd;
  169. // UseDay(cd); // OK: no conversion needed
  170. //
  171. // y_absl::CivilMonth cm;
  172. // UseDay(cm); // OK: implicit conversion to y_absl::CivilDay
  173. //
  174. // NORMALIZATION
  175. //
  176. // Normalization takes invalid values and adjusts them to produce valid values.
  177. // Within the civil-time library, integer arguments passed to the Civil*
  178. // constructors may be out-of-range, in which case they are normalized by
  179. // carrying overflow into a field of courser granularity to produce valid
  180. // civil-time objects. This normalization enables natural arithmetic on
  181. // constructor arguments without worrying about the field's range.
  182. //
  183. // Examples:
  184. //
  185. // // Out-of-range; normalized to 2016-11-01
  186. // y_absl::CivilDay d(2016, 10, 32);
  187. // // Out-of-range, negative: normalized to 2016-10-30T23
  188. // y_absl::CivilHour h1(2016, 10, 31, -1);
  189. // // Normalization is cumulative: normalized to 2016-10-30T23
  190. // y_absl::CivilHour h2(2016, 10, 32, -25);
  191. //
  192. // Note: If normalization is undesired, you can signal an error by comparing
  193. // the constructor arguments to the normalized values returned by the YMDHMS
  194. // properties.
  195. //
  196. // COMPARISON
  197. //
  198. // Comparison between civil-time objects considers all six YMDHMS fields,
  199. // regardless of the type's alignment. Comparison between differently aligned
  200. // civil-time types is allowed.
  201. //
  202. // Examples:
  203. //
  204. // y_absl::CivilDay feb_3(2015, 2, 3); // 2015-02-03 00:00:00
  205. // y_absl::CivilDay mar_4(2015, 3, 4); // 2015-03-04 00:00:00
  206. // // feb_3 < mar_4
  207. // // y_absl::CivilYear(feb_3) == y_absl::CivilYear(mar_4)
  208. //
  209. // y_absl::CivilSecond feb_3_noon(2015, 2, 3, 12, 0, 0); // 2015-02-03 12:00:00
  210. // // feb_3 < feb_3_noon
  211. // // feb_3 == y_absl::CivilDay(feb_3_noon)
  212. //
  213. // // Iterates all the days of February 2015.
  214. // for (y_absl::CivilDay d(2015, 2, 1); d < y_absl::CivilMonth(2015, 3); ++d) {
  215. // // ...
  216. // }
  217. //
  218. // ARITHMETIC
  219. //
  220. // Civil-time types support natural arithmetic operators such as addition,
  221. // subtraction, and difference. Arithmetic operates on the civil-time field
  222. // indicated in the type's name. Difference operators require arguments with
  223. // the same alignment and return the answer in units of the alignment.
  224. //
  225. // Example:
  226. //
  227. // y_absl::CivilDay a(2015, 2, 3);
  228. // ++a; // 2015-02-04 00:00:00
  229. // --a; // 2015-02-03 00:00:00
  230. // y_absl::CivilDay b = a + 1; // 2015-02-04 00:00:00
  231. // y_absl::CivilDay c = 1 + b; // 2015-02-05 00:00:00
  232. // int n = c - a; // n = 2 (civil days)
  233. // int m = c - y_absl::CivilMonth(c); // Won't compile: different types.
  234. //
  235. // ACCESSORS
  236. //
  237. // Each civil-time type has accessors for all six of the civil-time fields:
  238. // year, month, day, hour, minute, and second.
  239. //
  240. // civil_year_t year()
  241. // int month()
  242. // int day()
  243. // int hour()
  244. // int minute()
  245. // int second()
  246. //
  247. // Recall that fields inferior to the type's alignment will be set to their
  248. // minimum valid value.
  249. //
  250. // Example:
  251. //
  252. // y_absl::CivilDay d(2015, 6, 28);
  253. // // d.year() == 2015
  254. // // d.month() == 6
  255. // // d.day() == 28
  256. // // d.hour() == 0
  257. // // d.minute() == 0
  258. // // d.second() == 0
  259. //
  260. // CASE STUDY: Adding a month to January 31.
  261. //
  262. // One of the classic questions that arises when considering a civil time
  263. // library (or a date library or a date/time library) is this:
  264. // "What is the result of adding a month to January 31?"
  265. // This is an interesting question because it is unclear what is meant by a
  266. // "month", and several different answers are possible, depending on context:
  267. //
  268. // 1. March 3 (or 2 if a leap year), if "add a month" means to add a month to
  269. // the current month, and adjust the date to overflow the extra days into
  270. // March. In this case the result of "February 31" would be normalized as
  271. // within the civil-time library.
  272. // 2. February 28 (or 29 if a leap year), if "add a month" means to add a
  273. // month, and adjust the date while holding the resulting month constant.
  274. // In this case, the result of "February 31" would be truncated to the last
  275. // day in February.
  276. // 3. An error. The caller may get some error, an exception, an invalid date
  277. // object, or perhaps return `false`. This may make sense because there is
  278. // no single unambiguously correct answer to the question.
  279. //
  280. // Practically speaking, any answer that is not what the programmer intended
  281. // is the wrong answer.
  282. //
  283. // The Abseil time library avoids this problem by making it impossible to
  284. // ask ambiguous questions. All civil-time objects are aligned to a particular
  285. // civil-field boundary (such as aligned to a year, month, day, hour, minute,
  286. // or second), and arithmetic operates on the field to which the object is
  287. // aligned. This means that in order to "add a month" the object must first be
  288. // aligned to a month boundary, which is equivalent to the first day of that
  289. // month.
  290. //
  291. // Of course, there are ways to compute an answer the question at hand using
  292. // this Abseil time library, but they require the programmer to be explicit
  293. // about the answer they expect. To illustrate, let's see how to compute all
  294. // three of the above possible answers to the question of "Jan 31 plus 1
  295. // month":
  296. //
  297. // Example:
  298. //
  299. // const y_absl::CivilDay d(2015, 1, 31);
  300. //
  301. // // Answer 1:
  302. // // Add 1 to the month field in the constructor, and rely on normalization.
  303. // const auto normalized = y_absl::CivilDay(d.year(), d.month() + 1, d.day());
  304. // // normalized == 2015-03-03 (aka Feb 31)
  305. //
  306. // // Answer 2:
  307. // // Add 1 to month field, capping to the end of next month.
  308. // const auto next_month = y_absl::CivilMonth(d) + 1;
  309. // const auto last_day_of_next_month = y_absl::CivilDay(next_month + 1) - 1;
  310. // const auto capped = std::min(normalized, last_day_of_next_month);
  311. // // capped == 2015-02-28
  312. //
  313. // // Answer 3:
  314. // // Signal an error if the normalized answer is not in next month.
  315. // if (y_absl::CivilMonth(normalized) != next_month) {
  316. // // error, month overflow
  317. // }
  318. //
  319. using CivilSecond =
  320. time_internal::cctz::detail::civil_time<time_internal::second_tag>;
  321. using CivilMinute =
  322. time_internal::cctz::detail::civil_time<time_internal::minute_tag>;
  323. using CivilHour =
  324. time_internal::cctz::detail::civil_time<time_internal::hour_tag>;
  325. using CivilDay =
  326. time_internal::cctz::detail::civil_time<time_internal::day_tag>;
  327. using CivilMonth =
  328. time_internal::cctz::detail::civil_time<time_internal::month_tag>;
  329. using CivilYear =
  330. time_internal::cctz::detail::civil_time<time_internal::year_tag>;
  331. // civil_year_t
  332. //
  333. // Type alias of a civil-time year value. This type is guaranteed to (at least)
  334. // support any year value supported by `time_t`.
  335. //
  336. // Example:
  337. //
  338. // y_absl::CivilSecond cs = ...;
  339. // y_absl::civil_year_t y = cs.year();
  340. // cs = y_absl::CivilSecond(y, 1, 1, 0, 0, 0); // CivilSecond(CivilYear(cs))
  341. //
  342. using civil_year_t = time_internal::cctz::year_t;
  343. // civil_diff_t
  344. //
  345. // Type alias of the difference between two civil-time values.
  346. // This type is used to indicate arguments that are not
  347. // normalized (such as parameters to the civil-time constructors), the results
  348. // of civil-time subtraction, or the operand to civil-time addition.
  349. //
  350. // Example:
  351. //
  352. // y_absl::civil_diff_t n_sec = cs1 - cs2; // cs1 == cs2 + n_sec;
  353. //
  354. using civil_diff_t = time_internal::cctz::diff_t;
  355. // Weekday::monday, Weekday::tuesday, Weekday::wednesday, Weekday::thursday,
  356. // Weekday::friday, Weekday::saturday, Weekday::sunday
  357. //
  358. // The Weekday enum class represents the civil-time concept of a "weekday" with
  359. // members for all days of the week.
  360. //
  361. // y_absl::Weekday wd = y_absl::Weekday::thursday;
  362. //
  363. using Weekday = time_internal::cctz::weekday;
  364. // GetWeekday()
  365. //
  366. // Returns the y_absl::Weekday for the given (realigned) civil-time value.
  367. //
  368. // Example:
  369. //
  370. // y_absl::CivilDay a(2015, 8, 13);
  371. // y_absl::Weekday wd = y_absl::GetWeekday(a); // wd == y_absl::Weekday::thursday
  372. //
  373. inline Weekday GetWeekday(CivilSecond cs) {
  374. return time_internal::cctz::get_weekday(cs);
  375. }
  376. // NextWeekday()
  377. // PrevWeekday()
  378. //
  379. // Returns the y_absl::CivilDay that strictly follows or precedes a given
  380. // y_absl::CivilDay, and that falls on the given y_absl::Weekday.
  381. //
  382. // Example, given the following month:
  383. //
  384. // August 2015
  385. // Su Mo Tu We Th Fr Sa
  386. // 1
  387. // 2 3 4 5 6 7 8
  388. // 9 10 11 12 13 14 15
  389. // 16 17 18 19 20 21 22
  390. // 23 24 25 26 27 28 29
  391. // 30 31
  392. //
  393. // y_absl::CivilDay a(2015, 8, 13);
  394. // // y_absl::GetWeekday(a) == y_absl::Weekday::thursday
  395. // y_absl::CivilDay b = y_absl::NextWeekday(a, y_absl::Weekday::thursday);
  396. // // b = 2015-08-20
  397. // y_absl::CivilDay c = y_absl::PrevWeekday(a, y_absl::Weekday::thursday);
  398. // // c = 2015-08-06
  399. //
  400. // y_absl::CivilDay d = ...
  401. // // Gets the following Thursday if d is not already Thursday
  402. // y_absl::CivilDay thurs1 = y_absl::NextWeekday(d - 1, y_absl::Weekday::thursday);
  403. // // Gets the previous Thursday if d is not already Thursday
  404. // y_absl::CivilDay thurs2 = y_absl::PrevWeekday(d + 1, y_absl::Weekday::thursday);
  405. //
  406. inline CivilDay NextWeekday(CivilDay cd, Weekday wd) {
  407. return CivilDay(time_internal::cctz::next_weekday(cd, wd));
  408. }
  409. inline CivilDay PrevWeekday(CivilDay cd, Weekday wd) {
  410. return CivilDay(time_internal::cctz::prev_weekday(cd, wd));
  411. }
  412. // GetYearDay()
  413. //
  414. // Returns the day-of-year for the given (realigned) civil-time value.
  415. //
  416. // Example:
  417. //
  418. // y_absl::CivilDay a(2015, 1, 1);
  419. // int yd_jan_1 = y_absl::GetYearDay(a); // yd_jan_1 = 1
  420. // y_absl::CivilDay b(2015, 12, 31);
  421. // int yd_dec_31 = y_absl::GetYearDay(b); // yd_dec_31 = 365
  422. //
  423. inline int GetYearDay(CivilSecond cs) {
  424. return time_internal::cctz::get_yearday(cs);
  425. }
  426. // FormatCivilTime()
  427. //
  428. // Formats the given civil-time value into a string value of the following
  429. // format:
  430. //
  431. // Type | Format
  432. // ---------------------------------
  433. // CivilSecond | YYYY-MM-DDTHH:MM:SS
  434. // CivilMinute | YYYY-MM-DDTHH:MM
  435. // CivilHour | YYYY-MM-DDTHH
  436. // CivilDay | YYYY-MM-DD
  437. // CivilMonth | YYYY-MM
  438. // CivilYear | YYYY
  439. //
  440. // Example:
  441. //
  442. // y_absl::CivilDay d = y_absl::CivilDay(1969, 7, 20);
  443. // TString day_string = y_absl::FormatCivilTime(d); // "1969-07-20"
  444. //
  445. TString FormatCivilTime(CivilSecond c);
  446. TString FormatCivilTime(CivilMinute c);
  447. TString FormatCivilTime(CivilHour c);
  448. TString FormatCivilTime(CivilDay c);
  449. TString FormatCivilTime(CivilMonth c);
  450. TString FormatCivilTime(CivilYear c);
  451. // Support for StrFormat(), StrCat(), etc
  452. template <typename Sink>
  453. void AbslStringify(Sink& sink, CivilSecond c) {
  454. sink.Append(FormatCivilTime(c));
  455. }
  456. template <typename Sink>
  457. void AbslStringify(Sink& sink, CivilMinute c) {
  458. sink.Append(FormatCivilTime(c));
  459. }
  460. template <typename Sink>
  461. void AbslStringify(Sink& sink, CivilHour c) {
  462. sink.Append(FormatCivilTime(c));
  463. }
  464. template <typename Sink>
  465. void AbslStringify(Sink& sink, CivilDay c) {
  466. sink.Append(FormatCivilTime(c));
  467. }
  468. template <typename Sink>
  469. void AbslStringify(Sink& sink, CivilMonth c) {
  470. sink.Append(FormatCivilTime(c));
  471. }
  472. template <typename Sink>
  473. void AbslStringify(Sink& sink, CivilYear c) {
  474. sink.Append(FormatCivilTime(c));
  475. }
  476. // y_absl::ParseCivilTime()
  477. //
  478. // Parses a civil-time value from the specified `y_absl::string_view` into the
  479. // passed output parameter. Returns `true` upon successful parsing.
  480. //
  481. // The expected form of the input string is as follows:
  482. //
  483. // Type | Format
  484. // ---------------------------------
  485. // CivilSecond | YYYY-MM-DDTHH:MM:SS
  486. // CivilMinute | YYYY-MM-DDTHH:MM
  487. // CivilHour | YYYY-MM-DDTHH
  488. // CivilDay | YYYY-MM-DD
  489. // CivilMonth | YYYY-MM
  490. // CivilYear | YYYY
  491. //
  492. // Example:
  493. //
  494. // y_absl::CivilDay d;
  495. // bool ok = y_absl::ParseCivilTime("2018-01-02", &d); // OK
  496. //
  497. // Note that parsing will fail if the string's format does not match the
  498. // expected type exactly. `ParseLenientCivilTime()` below is more lenient.
  499. //
  500. bool ParseCivilTime(y_absl::string_view s, CivilSecond* c);
  501. bool ParseCivilTime(y_absl::string_view s, CivilMinute* c);
  502. bool ParseCivilTime(y_absl::string_view s, CivilHour* c);
  503. bool ParseCivilTime(y_absl::string_view s, CivilDay* c);
  504. bool ParseCivilTime(y_absl::string_view s, CivilMonth* c);
  505. bool ParseCivilTime(y_absl::string_view s, CivilYear* c);
  506. // ParseLenientCivilTime()
  507. //
  508. // Parses any of the formats accepted by `y_absl::ParseCivilTime()`, but is more
  509. // lenient if the format of the string does not exactly match the associated
  510. // type.
  511. //
  512. // Example:
  513. //
  514. // y_absl::CivilDay d;
  515. // bool ok = y_absl::ParseLenientCivilTime("1969-07-20", &d); // OK
  516. // ok = y_absl::ParseLenientCivilTime("1969-07-20T10", &d); // OK: T10 floored
  517. // ok = y_absl::ParseLenientCivilTime("1969-07", &d); // OK: day defaults to 1
  518. //
  519. bool ParseLenientCivilTime(y_absl::string_view s, CivilSecond* c);
  520. bool ParseLenientCivilTime(y_absl::string_view s, CivilMinute* c);
  521. bool ParseLenientCivilTime(y_absl::string_view s, CivilHour* c);
  522. bool ParseLenientCivilTime(y_absl::string_view s, CivilDay* c);
  523. bool ParseLenientCivilTime(y_absl::string_view s, CivilMonth* c);
  524. bool ParseLenientCivilTime(y_absl::string_view s, CivilYear* c);
  525. namespace time_internal { // For functions found via ADL on civil-time tags.
  526. // Streaming Operators
  527. //
  528. // Each civil-time type may be sent to an output stream using operator<<().
  529. // The result matches the string produced by `FormatCivilTime()`.
  530. //
  531. // Example:
  532. //
  533. // y_absl::CivilDay d = y_absl::CivilDay(1969, 7, 20);
  534. // std::cout << "Date is: " << d << "\n";
  535. //
  536. std::ostream& operator<<(std::ostream& os, CivilYear y);
  537. std::ostream& operator<<(std::ostream& os, CivilMonth m);
  538. std::ostream& operator<<(std::ostream& os, CivilDay d);
  539. std::ostream& operator<<(std::ostream& os, CivilHour h);
  540. std::ostream& operator<<(std::ostream& os, CivilMinute m);
  541. std::ostream& operator<<(std::ostream& os, CivilSecond s);
  542. // AbslParseFlag()
  543. //
  544. // Parses the command-line flag string representation `s` into a civil-time
  545. // value. Flags must be specified in a format that is valid for
  546. // `y_absl::ParseLenientCivilTime()`.
  547. bool AbslParseFlag(y_absl::string_view s, CivilSecond* c, TString* error);
  548. bool AbslParseFlag(y_absl::string_view s, CivilMinute* c, TString* error);
  549. bool AbslParseFlag(y_absl::string_view s, CivilHour* c, TString* error);
  550. bool AbslParseFlag(y_absl::string_view s, CivilDay* c, TString* error);
  551. bool AbslParseFlag(y_absl::string_view s, CivilMonth* c, TString* error);
  552. bool AbslParseFlag(y_absl::string_view s, CivilYear* c, TString* error);
  553. // AbslUnparseFlag()
  554. //
  555. // Unparses a civil-time value into a command-line string representation using
  556. // the format specified by `y_absl::ParseCivilTime()`.
  557. TString AbslUnparseFlag(CivilSecond c);
  558. TString AbslUnparseFlag(CivilMinute c);
  559. TString AbslUnparseFlag(CivilHour c);
  560. TString AbslUnparseFlag(CivilDay c);
  561. TString AbslUnparseFlag(CivilMonth c);
  562. TString AbslUnparseFlag(CivilYear c);
  563. } // namespace time_internal
  564. Y_ABSL_NAMESPACE_END
  565. } // namespace y_absl
  566. #endif // Y_ABSL_TIME_CIVIL_TIME_H_