You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

civil_time.h 23 kB

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