1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351
// This is a part of Chrono. // See README.md and LICENSE.txt for details. //! ISO 8601 date and time without timezone. use std::{str, fmt, hash}; use std::ops::{Add, Sub, AddAssign, SubAssign}; use num_traits::ToPrimitive; use oldtime::Duration as OldDuration; use {Weekday, Timelike, Datelike}; use div::div_mod_floor; use naive::{NaiveTime, NaiveDate, IsoWeek}; use format::{Item, Numeric, Pad, Fixed}; use format::{parse, Parsed, ParseError, ParseResult, DelayedFormat, StrftimeItems}; /// The tight upper bound guarantees that a duration with `|Duration| >= 2^MAX_SECS_BITS` /// will always overflow the addition with any date and time type. /// /// So why is this needed? `Duration::seconds(rhs)` may overflow, and we don't have /// an alternative returning `Option` or `Result`. Thus we need some early bound to avoid /// touching that call when we are already sure that it WILL overflow... const MAX_SECS_BITS: usize = 44; /// ISO 8601 combined date and time without timezone. /// /// # Example /// /// `NaiveDateTime` is commonly created from [`NaiveDate`](./struct.NaiveDate.html). /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2016, 7, 8).and_hms(9, 10, 11); /// # let _ = dt; /// ~~~~ /// /// You can use typical [date-like](../trait.Datelike.html) and /// [time-like](../trait.Timelike.html) methods, /// provided that relevant traits are in the scope. /// /// ~~~~ /// # use chrono::{NaiveDate, NaiveDateTime}; /// # let dt: NaiveDateTime = NaiveDate::from_ymd(2016, 7, 8).and_hms(9, 10, 11); /// use chrono::{Datelike, Timelike, Weekday}; /// /// assert_eq!(dt.weekday(), Weekday::Fri); /// assert_eq!(dt.num_seconds_from_midnight(), 33011); /// ~~~~ #[derive(PartialEq, Eq, PartialOrd, Ord, Copy, Clone)] pub struct NaiveDateTime { date: NaiveDate, time: NaiveTime, } impl NaiveDateTime { /// Makes a new `NaiveDateTime` from date and time components. /// Equivalent to [`date.and_time(time)`](./struct.NaiveDate.html#method.and_time) /// and many other helper constructors on `NaiveDate`. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveTime, NaiveDateTime}; /// /// let d = NaiveDate::from_ymd(2015, 6, 3); /// let t = NaiveTime::from_hms_milli(12, 34, 56, 789); /// /// let dt = NaiveDateTime::new(d, t); /// assert_eq!(dt.date(), d); /// assert_eq!(dt.time(), t); /// ~~~~ #[inline] pub fn new(date: NaiveDate, time: NaiveTime) -> NaiveDateTime { NaiveDateTime { date: date, time: time } } /// Makes a new `NaiveDateTime` corresponding to a UTC date and time, /// from the number of non-leap seconds /// since the midnight UTC on January 1, 1970 (aka "UNIX timestamp") /// and the number of nanoseconds since the last whole non-leap second. /// /// For a non-naive version of this function see /// [`TimeZone::timestamp`](../offset/trait.TimeZone.html#method.timestamp). /// /// The nanosecond part can exceed 1,000,000,000 in order to represent the /// [leap second](./struct.NaiveTime.html#leap-second-handling). (The true "UNIX /// timestamp" cannot represent a leap second unambiguously.) /// /// Panics on the out-of-range number of seconds and/or invalid nanosecond. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDateTime, NaiveDate}; /// /// let dt = NaiveDateTime::from_timestamp(0, 42_000_000); /// assert_eq!(dt, NaiveDate::from_ymd(1970, 1, 1).and_hms_milli(0, 0, 0, 42)); /// /// let dt = NaiveDateTime::from_timestamp(1_000_000_000, 0); /// assert_eq!(dt, NaiveDate::from_ymd(2001, 9, 9).and_hms(1, 46, 40)); /// ~~~~ #[inline] pub fn from_timestamp(secs: i64, nsecs: u32) -> NaiveDateTime { let datetime = NaiveDateTime::from_timestamp_opt(secs, nsecs); datetime.expect("invalid or out-of-range datetime") } /// Makes a new `NaiveDateTime` corresponding to a UTC date and time, /// from the number of non-leap seconds /// since the midnight UTC on January 1, 1970 (aka "UNIX timestamp") /// and the number of nanoseconds since the last whole non-leap second. /// /// The nanosecond part can exceed 1,000,000,000 /// in order to represent the [leap second](./struct.NaiveTime.html#leap-second-handling). /// (The true "UNIX timestamp" cannot represent a leap second unambiguously.) /// /// Returns `None` on the out-of-range number of seconds and/or invalid nanosecond. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDateTime, NaiveDate}; /// use std::i64; /// /// let from_timestamp_opt = NaiveDateTime::from_timestamp_opt; /// /// assert!(from_timestamp_opt(0, 0).is_some()); /// assert!(from_timestamp_opt(0, 999_999_999).is_some()); /// assert!(from_timestamp_opt(0, 1_500_000_000).is_some()); // leap second /// assert!(from_timestamp_opt(0, 2_000_000_000).is_none()); /// assert!(from_timestamp_opt(i64::MAX, 0).is_none()); /// ~~~~ #[inline] pub fn from_timestamp_opt(secs: i64, nsecs: u32) -> Option<NaiveDateTime> { let (days, secs) = div_mod_floor(secs, 86_400); let date = days.to_i32().and_then(|days| days.checked_add(719_163)) .and_then(NaiveDate::from_num_days_from_ce_opt); let time = NaiveTime::from_num_seconds_from_midnight_opt(secs as u32, nsecs); match (date, time) { (Some(date), Some(time)) => Some(NaiveDateTime { date: date, time: time }), (_, _) => None, } } /// Parses a string with the specified format string and returns a new `NaiveDateTime`. /// See the [`format::strftime` module](../format/strftime/index.html) /// on the supported escape sequences. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDateTime, NaiveDate}; /// /// let parse_from_str = NaiveDateTime::parse_from_str; /// /// assert_eq!(parse_from_str("2015-09-05 23:56:04", "%Y-%m-%d %H:%M:%S"), /// Ok(NaiveDate::from_ymd(2015, 9, 5).and_hms(23, 56, 4))); /// assert_eq!(parse_from_str("5sep2015pm012345.6789", "%d%b%Y%p%I%M%S%.f"), /// Ok(NaiveDate::from_ymd(2015, 9, 5).and_hms_micro(13, 23, 45, 678_900))); /// ~~~~ /// /// Offset is ignored for the purpose of parsing. /// /// ~~~~ /// # use chrono::{NaiveDateTime, NaiveDate}; /// # let parse_from_str = NaiveDateTime::parse_from_str; /// assert_eq!(parse_from_str("2014-5-17T12:34:56+09:30", "%Y-%m-%dT%H:%M:%S%z"), /// Ok(NaiveDate::from_ymd(2014, 5, 17).and_hms(12, 34, 56))); /// ~~~~ /// /// [Leap seconds](./struct.NaiveTime.html#leap-second-handling) are correctly handled by /// treating any time of the form `hh:mm:60` as a leap second. /// (This equally applies to the formatting, so the round trip is possible.) /// /// ~~~~ /// # use chrono::{NaiveDateTime, NaiveDate}; /// # let parse_from_str = NaiveDateTime::parse_from_str; /// assert_eq!(parse_from_str("2015-07-01 08:59:60.123", "%Y-%m-%d %H:%M:%S%.f"), /// Ok(NaiveDate::from_ymd(2015, 7, 1).and_hms_milli(8, 59, 59, 1_123))); /// ~~~~ /// /// Missing seconds are assumed to be zero, /// but out-of-bound times or insufficient fields are errors otherwise. /// /// ~~~~ /// # use chrono::{NaiveDateTime, NaiveDate}; /// # let parse_from_str = NaiveDateTime::parse_from_str; /// assert_eq!(parse_from_str("94/9/4 7:15", "%y/%m/%d %H:%M"), /// Ok(NaiveDate::from_ymd(1994, 9, 4).and_hms(7, 15, 0))); /// /// assert!(parse_from_str("04m33s", "%Mm%Ss").is_err()); /// assert!(parse_from_str("94/9/4 12", "%y/%m/%d %H").is_err()); /// assert!(parse_from_str("94/9/4 17:60", "%y/%m/%d %H:%M").is_err()); /// assert!(parse_from_str("94/9/4 24:00:00", "%y/%m/%d %H:%M:%S").is_err()); /// ~~~~ /// /// All parsed fields should be consistent to each other, otherwise it's an error. /// /// ~~~~ /// # use chrono::NaiveDateTime; /// # let parse_from_str = NaiveDateTime::parse_from_str; /// let fmt = "%Y-%m-%d %H:%M:%S = UNIX timestamp %s"; /// assert!(parse_from_str("2001-09-09 01:46:39 = UNIX timestamp 999999999", fmt).is_ok()); /// assert!(parse_from_str("1970-01-01 00:00:00 = UNIX timestamp 1", fmt).is_err()); /// ~~~~ pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<NaiveDateTime> { let mut parsed = Parsed::new(); try!(parse(&mut parsed, s, StrftimeItems::new(fmt))); parsed.to_naive_datetime_with_offset(0) // no offset adjustment } /// Retrieves a date component. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2016, 7, 8).and_hms(9, 10, 11); /// assert_eq!(dt.date(), NaiveDate::from_ymd(2016, 7, 8)); /// ~~~~ #[inline] pub fn date(&self) -> NaiveDate { self.date } /// Retrieves a time component. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveTime}; /// /// let dt = NaiveDate::from_ymd(2016, 7, 8).and_hms(9, 10, 11); /// assert_eq!(dt.time(), NaiveTime::from_hms(9, 10, 11)); /// ~~~~ #[inline] pub fn time(&self) -> NaiveTime { self.time } /// Returns the number of non-leap seconds since the midnight on January 1, 1970. /// /// Note that this does *not* account for the timezone! /// The true "UNIX timestamp" would count seconds since the midnight *UTC* on the epoch. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(1970, 1, 1).and_hms_milli(0, 0, 1, 980); /// assert_eq!(dt.timestamp(), 1); /// /// let dt = NaiveDate::from_ymd(2001, 9, 9).and_hms(1, 46, 40); /// assert_eq!(dt.timestamp(), 1_000_000_000); /// /// let dt = NaiveDate::from_ymd(1969, 12, 31).and_hms(23, 59, 59); /// assert_eq!(dt.timestamp(), -1); /// /// let dt = NaiveDate::from_ymd(-1, 1, 1).and_hms(0, 0, 0); /// assert_eq!(dt.timestamp(), -62198755200); /// ~~~~ #[inline] pub fn timestamp(&self) -> i64 { const UNIX_EPOCH_DAY: i64 = 719_163; let gregorian_day = i64::from(self.date.num_days_from_ce()); let seconds_from_midnight = i64::from(self.time.num_seconds_from_midnight()); (gregorian_day - UNIX_EPOCH_DAY) * 86_400 + seconds_from_midnight } /// Returns the number of non-leap *milliseconds* since midnight on January 1, 1970. /// /// Note that this does *not* account for the timezone! /// The true "UNIX timestamp" would count seconds since the midnight *UTC* on the epoch. /// /// Note also that this does reduce the number of years that can be /// represented from ~584 Billion to ~584 Million. (If this is a problem, /// please file an issue to let me know what domain needs millisecond /// precision over billions of years, I'm curious.) /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(1970, 1, 1).and_hms_milli(0, 0, 1, 444); /// assert_eq!(dt.timestamp_millis(), 1_444); /// /// let dt = NaiveDate::from_ymd(2001, 9, 9).and_hms_milli(1, 46, 40, 555); /// assert_eq!(dt.timestamp_millis(), 1_000_000_000_555); /// /// let dt = NaiveDate::from_ymd(1969, 12, 31).and_hms_milli(23, 59, 59, 100); /// assert_eq!(dt.timestamp_millis(), -900); /// ~~~~ #[inline] pub fn timestamp_millis(&self) -> i64 { let as_ms = self.timestamp() * 1000; as_ms + i64::from(self.timestamp_subsec_millis()) } /// Returns the number of non-leap *nanoseconds* since midnight on January 1, 1970. /// /// Note that this does *not* account for the timezone! /// The true "UNIX timestamp" would count seconds since the midnight *UTC* on the epoch. /// /// Note also that this does reduce the number of years that can be /// represented from ~584 Billion to ~584. (If this is a problem, /// please file an issue to let me know what domain needs nanosecond /// precision over millenia, I'm curious.) /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(1970, 1, 1).and_hms_nano(0, 0, 1, 444); /// assert_eq!(dt.timestamp_nanos(), 1_000_000_444); /// /// let dt = NaiveDate::from_ymd(2001, 9, 9).and_hms_nano(1, 46, 40, 555); /// assert_eq!(dt.timestamp_nanos(), 1_000_000_000_000_000_555); /// ~~~~ #[inline] pub fn timestamp_nanos(&self) -> i64 { let as_ns = self.timestamp() * 1_000_000_000; as_ns + i64::from(self.timestamp_subsec_nanos()) } /// Returns the number of milliseconds since the last whole non-leap second. /// /// The return value ranges from 0 to 999, /// or for [leap seconds](./struct.NaiveTime.html#leap-second-handling), to 1,999. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2016, 7, 8).and_hms_nano(9, 10, 11, 123_456_789); /// assert_eq!(dt.timestamp_subsec_millis(), 123); /// /// let dt = NaiveDate::from_ymd(2015, 7, 1).and_hms_nano(8, 59, 59, 1_234_567_890); /// assert_eq!(dt.timestamp_subsec_millis(), 1_234); /// ~~~~ #[inline] pub fn timestamp_subsec_millis(&self) -> u32 { self.timestamp_subsec_nanos() / 1_000_000 } /// Returns the number of microseconds since the last whole non-leap second. /// /// The return value ranges from 0 to 999,999, /// or for [leap seconds](./struct.NaiveTime.html#leap-second-handling), to 1,999,999. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2016, 7, 8).and_hms_nano(9, 10, 11, 123_456_789); /// assert_eq!(dt.timestamp_subsec_micros(), 123_456); /// /// let dt = NaiveDate::from_ymd(2015, 7, 1).and_hms_nano(8, 59, 59, 1_234_567_890); /// assert_eq!(dt.timestamp_subsec_micros(), 1_234_567); /// ~~~~ #[inline] pub fn timestamp_subsec_micros(&self) -> u32 { self.timestamp_subsec_nanos() / 1_000 } /// Returns the number of nanoseconds since the last whole non-leap second. /// /// The return value ranges from 0 to 999,999,999, /// or for [leap seconds](./struct.NaiveTime.html#leap-second-handling), to 1,999,999,999. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2016, 7, 8).and_hms_nano(9, 10, 11, 123_456_789); /// assert_eq!(dt.timestamp_subsec_nanos(), 123_456_789); /// /// let dt = NaiveDate::from_ymd(2015, 7, 1).and_hms_nano(8, 59, 59, 1_234_567_890); /// assert_eq!(dt.timestamp_subsec_nanos(), 1_234_567_890); /// ~~~~ #[inline] pub fn timestamp_subsec_nanos(&self) -> u32 { self.time.nanosecond() } /// Adds given `Duration` to the current date and time. /// /// As a part of Chrono's [leap second handling](./struct.NaiveTime.html#leap-second-handling), /// the addition assumes that **there is no leap second ever**, /// except when the `NaiveDateTime` itself represents a leap second /// in which case the assumption becomes that **there is exactly a single leap second ever**. /// /// Returns `None` when it will result in overflow. /// /// # Example /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// use chrono::NaiveDate; /// use time::Duration; /// /// let from_ymd = NaiveDate::from_ymd; /// /// let d = from_ymd(2016, 7, 8); /// let hms = |h, m, s| d.and_hms(h, m, s); /// assert_eq!(hms(3, 5, 7).checked_add_signed(Duration::zero()), /// Some(hms(3, 5, 7))); /// assert_eq!(hms(3, 5, 7).checked_add_signed(Duration::seconds(1)), /// Some(hms(3, 5, 8))); /// assert_eq!(hms(3, 5, 7).checked_add_signed(Duration::seconds(-1)), /// Some(hms(3, 5, 6))); /// assert_eq!(hms(3, 5, 7).checked_add_signed(Duration::seconds(3600 + 60)), /// Some(hms(4, 6, 7))); /// assert_eq!(hms(3, 5, 7).checked_add_signed(Duration::seconds(86_400)), /// Some(from_ymd(2016, 7, 9).and_hms(3, 5, 7))); /// /// let hmsm = |h, m, s, milli| d.and_hms_milli(h, m, s, milli); /// assert_eq!(hmsm(3, 5, 7, 980).checked_add_signed(Duration::milliseconds(450)), /// Some(hmsm(3, 5, 8, 430))); /// # } /// ~~~~ /// /// Overflow returns `None`. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let hms = |h, m, s| NaiveDate::from_ymd(2016, 7, 8).and_hms(h, m, s); /// assert_eq!(hms(3, 5, 7).checked_add_signed(Duration::days(1_000_000_000)), None); /// # } /// ~~~~ /// /// Leap seconds are handled, /// but the addition assumes that it is the only leap second happened. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let from_ymd = NaiveDate::from_ymd; /// # let hmsm = |h, m, s, milli| from_ymd(2016, 7, 8).and_hms_milli(h, m, s, milli); /// let leap = hmsm(3, 5, 59, 1_300); /// assert_eq!(leap.checked_add_signed(Duration::zero()), /// Some(hmsm(3, 5, 59, 1_300))); /// assert_eq!(leap.checked_add_signed(Duration::milliseconds(-500)), /// Some(hmsm(3, 5, 59, 800))); /// assert_eq!(leap.checked_add_signed(Duration::milliseconds(500)), /// Some(hmsm(3, 5, 59, 1_800))); /// assert_eq!(leap.checked_add_signed(Duration::milliseconds(800)), /// Some(hmsm(3, 6, 0, 100))); /// assert_eq!(leap.checked_add_signed(Duration::seconds(10)), /// Some(hmsm(3, 6, 9, 300))); /// assert_eq!(leap.checked_add_signed(Duration::seconds(-10)), /// Some(hmsm(3, 5, 50, 300))); /// assert_eq!(leap.checked_add_signed(Duration::days(1)), /// Some(from_ymd(2016, 7, 9).and_hms_milli(3, 5, 59, 300))); /// # } /// ~~~~ pub fn checked_add_signed(self, rhs: OldDuration) -> Option<NaiveDateTime> { let (time, rhs) = self.time.overflowing_add_signed(rhs); // early checking to avoid overflow in OldDuration::seconds if rhs <= (-1 << MAX_SECS_BITS) || rhs >= (1 << MAX_SECS_BITS) { return None; } let date = try_opt!(self.date.checked_add_signed(OldDuration::seconds(rhs))); Some(NaiveDateTime { date: date, time: time }) } /// Subtracts given `Duration` from the current date and time. /// /// As a part of Chrono's [leap second handling](./struct.NaiveTime.html#leap-second-handling), /// the subtraction assumes that **there is no leap second ever**, /// except when the `NaiveDateTime` itself represents a leap second /// in which case the assumption becomes that **there is exactly a single leap second ever**. /// /// Returns `None` when it will result in overflow. /// /// # Example /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// use chrono::NaiveDate; /// use time::Duration; /// /// let from_ymd = NaiveDate::from_ymd; /// /// let d = from_ymd(2016, 7, 8); /// let hms = |h, m, s| d.and_hms(h, m, s); /// assert_eq!(hms(3, 5, 7).checked_sub_signed(Duration::zero()), /// Some(hms(3, 5, 7))); /// assert_eq!(hms(3, 5, 7).checked_sub_signed(Duration::seconds(1)), /// Some(hms(3, 5, 6))); /// assert_eq!(hms(3, 5, 7).checked_sub_signed(Duration::seconds(-1)), /// Some(hms(3, 5, 8))); /// assert_eq!(hms(3, 5, 7).checked_sub_signed(Duration::seconds(3600 + 60)), /// Some(hms(2, 4, 7))); /// assert_eq!(hms(3, 5, 7).checked_sub_signed(Duration::seconds(86_400)), /// Some(from_ymd(2016, 7, 7).and_hms(3, 5, 7))); /// /// let hmsm = |h, m, s, milli| d.and_hms_milli(h, m, s, milli); /// assert_eq!(hmsm(3, 5, 7, 450).checked_sub_signed(Duration::milliseconds(670)), /// Some(hmsm(3, 5, 6, 780))); /// # } /// ~~~~ /// /// Overflow returns `None`. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let hms = |h, m, s| NaiveDate::from_ymd(2016, 7, 8).and_hms(h, m, s); /// assert_eq!(hms(3, 5, 7).checked_sub_signed(Duration::days(1_000_000_000)), None); /// # } /// ~~~~ /// /// Leap seconds are handled, /// but the subtraction assumes that it is the only leap second happened. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let from_ymd = NaiveDate::from_ymd; /// # let hmsm = |h, m, s, milli| from_ymd(2016, 7, 8).and_hms_milli(h, m, s, milli); /// let leap = hmsm(3, 5, 59, 1_300); /// assert_eq!(leap.checked_sub_signed(Duration::zero()), /// Some(hmsm(3, 5, 59, 1_300))); /// assert_eq!(leap.checked_sub_signed(Duration::milliseconds(200)), /// Some(hmsm(3, 5, 59, 1_100))); /// assert_eq!(leap.checked_sub_signed(Duration::milliseconds(500)), /// Some(hmsm(3, 5, 59, 800))); /// assert_eq!(leap.checked_sub_signed(Duration::seconds(60)), /// Some(hmsm(3, 5, 0, 300))); /// assert_eq!(leap.checked_sub_signed(Duration::days(1)), /// Some(from_ymd(2016, 7, 7).and_hms_milli(3, 6, 0, 300))); /// # } /// ~~~~ pub fn checked_sub_signed(self, rhs: OldDuration) -> Option<NaiveDateTime> { let (time, rhs) = self.time.overflowing_sub_signed(rhs); // early checking to avoid overflow in OldDuration::seconds if rhs <= (-1 << MAX_SECS_BITS) || rhs >= (1 << MAX_SECS_BITS) { return None; } let date = try_opt!(self.date.checked_sub_signed(OldDuration::seconds(rhs))); Some(NaiveDateTime { date: date, time: time }) } /// Subtracts another `NaiveDateTime` from the current date and time. /// This does not overflow or underflow at all. /// /// As a part of Chrono's [leap second handling](./struct.NaiveTime.html#leap-second-handling), /// the subtraction assumes that **there is no leap second ever**, /// except when any of the `NaiveDateTime`s themselves represents a leap second /// in which case the assumption becomes that /// **there are exactly one (or two) leap second(s) ever**. /// /// # Example /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// use chrono::NaiveDate; /// use time::Duration; /// /// let from_ymd = NaiveDate::from_ymd; /// /// let d = from_ymd(2016, 7, 8); /// assert_eq!(d.and_hms(3, 5, 7).signed_duration_since(d.and_hms(2, 4, 6)), /// Duration::seconds(3600 + 60 + 1)); /// /// // July 8 is 190th day in the year 2016 /// let d0 = from_ymd(2016, 1, 1); /// assert_eq!(d.and_hms_milli(0, 7, 6, 500).signed_duration_since(d0.and_hms(0, 0, 0)), /// Duration::seconds(189 * 86_400 + 7 * 60 + 6) + Duration::milliseconds(500)); /// # } /// ~~~~ /// /// Leap seconds are handled, but the subtraction assumes that /// there were no other leap seconds happened. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let from_ymd = NaiveDate::from_ymd; /// let leap = from_ymd(2015, 6, 30).and_hms_milli(23, 59, 59, 1_500); /// assert_eq!(leap.signed_duration_since(from_ymd(2015, 6, 30).and_hms(23, 0, 0)), /// Duration::seconds(3600) + Duration::milliseconds(500)); /// assert_eq!(from_ymd(2015, 7, 1).and_hms(1, 0, 0).signed_duration_since(leap), /// Duration::seconds(3600) - Duration::milliseconds(500)); /// # } /// ~~~~ pub fn signed_duration_since(self, rhs: NaiveDateTime) -> OldDuration { self.date.signed_duration_since(rhs.date) + self.time.signed_duration_since(rhs.time) } /// Formats the combined date and time with the specified formatting items. /// Otherwise it is same to the ordinary [`format`](#method.format) method. /// /// The `Iterator` of items should be `Clone`able, /// since the resulting `DelayedFormat` value may be formatted multiple times. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// use chrono::format::strftime::StrftimeItems; /// /// let fmt = StrftimeItems::new("%Y-%m-%d %H:%M:%S"); /// let dt = NaiveDate::from_ymd(2015, 9, 5).and_hms(23, 56, 4); /// assert_eq!(dt.format_with_items(fmt.clone()).to_string(), "2015-09-05 23:56:04"); /// assert_eq!(dt.format("%Y-%m-%d %H:%M:%S").to_string(), "2015-09-05 23:56:04"); /// ~~~~ /// /// The resulting `DelayedFormat` can be formatted directly via the `Display` trait. /// /// ~~~~ /// # use chrono::NaiveDate; /// # use chrono::format::strftime::StrftimeItems; /// # let fmt = StrftimeItems::new("%Y-%m-%d %H:%M:%S").clone(); /// # let dt = NaiveDate::from_ymd(2015, 9, 5).and_hms(23, 56, 4); /// assert_eq!(format!("{}", dt.format_with_items(fmt)), "2015-09-05 23:56:04"); /// ~~~~ #[inline] pub fn format_with_items<'a, I>(&self, items: I) -> DelayedFormat<I> where I: Iterator<Item=Item<'a>> + Clone { DelayedFormat::new(Some(self.date), Some(self.time), items) } /// Formats the combined date and time with the specified format string. /// See the [`format::strftime` module](../format/strftime/index.html) /// on the supported escape sequences. /// /// This returns a `DelayedFormat`, /// which gets converted to a string only when actual formatting happens. /// You may use the `to_string` method to get a `String`, /// or just feed it into `print!` and other formatting macros. /// (In this way it avoids the redundant memory allocation.) /// /// A wrong format string does *not* issue an error immediately. /// Rather, converting or formatting the `DelayedFormat` fails. /// You are recommended to immediately use `DelayedFormat` for this reason. /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2015, 9, 5).and_hms(23, 56, 4); /// assert_eq!(dt.format("%Y-%m-%d %H:%M:%S").to_string(), "2015-09-05 23:56:04"); /// assert_eq!(dt.format("around %l %p on %b %-d").to_string(), "around 11 PM on Sep 5"); /// ~~~~ /// /// The resulting `DelayedFormat` can be formatted directly via the `Display` trait. /// /// ~~~~ /// # use chrono::NaiveDate; /// # let dt = NaiveDate::from_ymd(2015, 9, 5).and_hms(23, 56, 4); /// assert_eq!(format!("{}", dt.format("%Y-%m-%d %H:%M:%S")), "2015-09-05 23:56:04"); /// assert_eq!(format!("{}", dt.format("around %l %p on %b %-d")), "around 11 PM on Sep 5"); /// ~~~~ #[inline] pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> { self.format_with_items(StrftimeItems::new(fmt)) } } impl Datelike for NaiveDateTime { /// Returns the year number in the [calendar date](./index.html#calendar-date). /// /// See also the [`NaiveDate::year`](./struct.NaiveDate.html#method.year) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.year(), 2015); /// ~~~~ #[inline] fn year(&self) -> i32 { self.date.year() } /// Returns the month number starting from 1. /// /// The return value ranges from 1 to 12. /// /// See also the [`NaiveDate::month`](./struct.NaiveDate.html#method.month) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.month(), 9); /// ~~~~ #[inline] fn month(&self) -> u32 { self.date.month() } /// Returns the month number starting from 0. /// /// The return value ranges from 0 to 11. /// /// See also the [`NaiveDate::month0`](./struct.NaiveDate.html#method.month0) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.month0(), 8); /// ~~~~ #[inline] fn month0(&self) -> u32 { self.date.month0() } /// Returns the day of month starting from 1. /// /// The return value ranges from 1 to 31. (The last day of month differs by months.) /// /// See also the [`NaiveDate::day`](./struct.NaiveDate.html#method.day) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.day(), 25); /// ~~~~ #[inline] fn day(&self) -> u32 { self.date.day() } /// Returns the day of month starting from 0. /// /// The return value ranges from 0 to 30. (The last day of month differs by months.) /// /// See also the [`NaiveDate::day0`](./struct.NaiveDate.html#method.day0) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.day0(), 24); /// ~~~~ #[inline] fn day0(&self) -> u32 { self.date.day0() } /// Returns the day of year starting from 1. /// /// The return value ranges from 1 to 366. (The last day of year differs by years.) /// /// See also the [`NaiveDate::ordinal`](./struct.NaiveDate.html#method.ordinal) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.ordinal(), 268); /// ~~~~ #[inline] fn ordinal(&self) -> u32 { self.date.ordinal() } /// Returns the day of year starting from 0. /// /// The return value ranges from 0 to 365. (The last day of year differs by years.) /// /// See also the [`NaiveDate::ordinal0`](./struct.NaiveDate.html#method.ordinal0) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.ordinal0(), 267); /// ~~~~ #[inline] fn ordinal0(&self) -> u32 { self.date.ordinal0() } /// Returns the day of week. /// /// See also the [`NaiveDate::weekday`](./struct.NaiveDate.html#method.weekday) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike, Weekday}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.weekday(), Weekday::Fri); /// ~~~~ #[inline] fn weekday(&self) -> Weekday { self.date.weekday() } #[inline] fn iso_week(&self) -> IsoWeek { self.date.iso_week() } /// Makes a new `NaiveDateTime` with the year number changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_year`](./struct.NaiveDate.html#method.with_year) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 25).and_hms(12, 34, 56); /// assert_eq!(dt.with_year(2016), Some(NaiveDate::from_ymd(2016, 9, 25).and_hms(12, 34, 56))); /// assert_eq!(dt.with_year(-308), Some(NaiveDate::from_ymd(-308, 9, 25).and_hms(12, 34, 56))); /// ~~~~ #[inline] fn with_year(&self, year: i32) -> Option<NaiveDateTime> { self.date.with_year(year).map(|d| NaiveDateTime { date: d, ..*self }) } /// Makes a new `NaiveDateTime` with the month number (starting from 1) changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_month`](./struct.NaiveDate.html#method.with_month) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 30).and_hms(12, 34, 56); /// assert_eq!(dt.with_month(10), Some(NaiveDate::from_ymd(2015, 10, 30).and_hms(12, 34, 56))); /// assert_eq!(dt.with_month(13), None); // no month 13 /// assert_eq!(dt.with_month(2), None); // no February 30 /// ~~~~ #[inline] fn with_month(&self, month: u32) -> Option<NaiveDateTime> { self.date.with_month(month).map(|d| NaiveDateTime { date: d, ..*self }) } /// Makes a new `NaiveDateTime` with the month number (starting from 0) changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_month0`](./struct.NaiveDate.html#method.with_month0) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 30).and_hms(12, 34, 56); /// assert_eq!(dt.with_month0(9), Some(NaiveDate::from_ymd(2015, 10, 30).and_hms(12, 34, 56))); /// assert_eq!(dt.with_month0(12), None); // no month 13 /// assert_eq!(dt.with_month0(1), None); // no February 30 /// ~~~~ #[inline] fn with_month0(&self, month0: u32) -> Option<NaiveDateTime> { self.date.with_month0(month0).map(|d| NaiveDateTime { date: d, ..*self }) } /// Makes a new `NaiveDateTime` with the day of month (starting from 1) changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_day`](./struct.NaiveDate.html#method.with_day) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms(12, 34, 56); /// assert_eq!(dt.with_day(30), Some(NaiveDate::from_ymd(2015, 9, 30).and_hms(12, 34, 56))); /// assert_eq!(dt.with_day(31), None); // no September 31 /// ~~~~ #[inline] fn with_day(&self, day: u32) -> Option<NaiveDateTime> { self.date.with_day(day).map(|d| NaiveDateTime { date: d, ..*self }) } /// Makes a new `NaiveDateTime` with the day of month (starting from 0) changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_day0`](./struct.NaiveDate.html#method.with_day0) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms(12, 34, 56); /// assert_eq!(dt.with_day0(29), Some(NaiveDate::from_ymd(2015, 9, 30).and_hms(12, 34, 56))); /// assert_eq!(dt.with_day0(30), None); // no September 31 /// ~~~~ #[inline] fn with_day0(&self, day0: u32) -> Option<NaiveDateTime> { self.date.with_day0(day0).map(|d| NaiveDateTime { date: d, ..*self }) } /// Makes a new `NaiveDateTime` with the day of year (starting from 1) changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_ordinal`](./struct.NaiveDate.html#method.with_ordinal) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms(12, 34, 56); /// assert_eq!(dt.with_ordinal(60), /// Some(NaiveDate::from_ymd(2015, 3, 1).and_hms(12, 34, 56))); /// assert_eq!(dt.with_ordinal(366), None); // 2015 had only 365 days /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2016, 9, 8).and_hms(12, 34, 56); /// assert_eq!(dt.with_ordinal(60), /// Some(NaiveDate::from_ymd(2016, 2, 29).and_hms(12, 34, 56))); /// assert_eq!(dt.with_ordinal(366), /// Some(NaiveDate::from_ymd(2016, 12, 31).and_hms(12, 34, 56))); /// ~~~~ #[inline] fn with_ordinal(&self, ordinal: u32) -> Option<NaiveDateTime> { self.date.with_ordinal(ordinal).map(|d| NaiveDateTime { date: d, ..*self }) } /// Makes a new `NaiveDateTime` with the day of year (starting from 0) changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveDate::with_ordinal0`](./struct.NaiveDate.html#method.with_ordinal0) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Datelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms(12, 34, 56); /// assert_eq!(dt.with_ordinal0(59), /// Some(NaiveDate::from_ymd(2015, 3, 1).and_hms(12, 34, 56))); /// assert_eq!(dt.with_ordinal0(365), None); // 2015 had only 365 days /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2016, 9, 8).and_hms(12, 34, 56); /// assert_eq!(dt.with_ordinal0(59), /// Some(NaiveDate::from_ymd(2016, 2, 29).and_hms(12, 34, 56))); /// assert_eq!(dt.with_ordinal0(365), /// Some(NaiveDate::from_ymd(2016, 12, 31).and_hms(12, 34, 56))); /// ~~~~ #[inline] fn with_ordinal0(&self, ordinal0: u32) -> Option<NaiveDateTime> { self.date.with_ordinal0(ordinal0).map(|d| NaiveDateTime { date: d, ..*self }) } } impl Timelike for NaiveDateTime { /// Returns the hour number from 0 to 23. /// /// See also the [`NaiveTime::hour`](./struct.NaiveTime.html#method.hour) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.hour(), 12); /// ~~~~ #[inline] fn hour(&self) -> u32 { self.time.hour() } /// Returns the minute number from 0 to 59. /// /// See also the [`NaiveTime::minute`](./struct.NaiveTime.html#method.minute) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.minute(), 34); /// ~~~~ #[inline] fn minute(&self) -> u32 { self.time.minute() } /// Returns the second number from 0 to 59. /// /// See also the [`NaiveTime::second`](./struct.NaiveTime.html#method.second) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.second(), 56); /// ~~~~ #[inline] fn second(&self) -> u32 { self.time.second() } /// Returns the number of nanoseconds since the whole non-leap second. /// The range from 1,000,000,000 to 1,999,999,999 represents /// the [leap second](./struct.NaiveTime.html#leap-second-handling). /// /// See also the /// [`NaiveTime::nanosecond`](./struct.NaiveTime.html#method.nanosecond) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.nanosecond(), 789_000_000); /// ~~~~ #[inline] fn nanosecond(&self) -> u32 { self.time.nanosecond() } /// Makes a new `NaiveDateTime` with the hour number changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveTime::with_hour`](./struct.NaiveTime.html#method.with_hour) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.with_hour(7), /// Some(NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(7, 34, 56, 789))); /// assert_eq!(dt.with_hour(24), None); /// ~~~~ #[inline] fn with_hour(&self, hour: u32) -> Option<NaiveDateTime> { self.time.with_hour(hour).map(|t| NaiveDateTime { time: t, ..*self }) } /// Makes a new `NaiveDateTime` with the minute number changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// /// See also the /// [`NaiveTime::with_minute`](./struct.NaiveTime.html#method.with_minute) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.with_minute(45), /// Some(NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 45, 56, 789))); /// assert_eq!(dt.with_minute(60), None); /// ~~~~ #[inline] fn with_minute(&self, min: u32) -> Option<NaiveDateTime> { self.time.with_minute(min).map(|t| NaiveDateTime { time: t, ..*self }) } /// Makes a new `NaiveDateTime` with the second number changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// As with the [`second`](#method.second) method, /// the input range is restricted to 0 through 59. /// /// See also the /// [`NaiveTime::with_second`](./struct.NaiveTime.html#method.with_second) method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.with_second(17), /// Some(NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 17, 789))); /// assert_eq!(dt.with_second(60), None); /// ~~~~ #[inline] fn with_second(&self, sec: u32) -> Option<NaiveDateTime> { self.time.with_second(sec).map(|t| NaiveDateTime { time: t, ..*self }) } /// Makes a new `NaiveDateTime` with nanoseconds since the whole non-leap second changed. /// /// Returns `None` when the resulting `NaiveDateTime` would be invalid. /// As with the [`nanosecond`](#method.nanosecond) method, /// the input range can exceed 1,000,000,000 for leap seconds. /// /// See also the /// [`NaiveTime::with_nanosecond`](./struct.NaiveTime.html#method.with_nanosecond) /// method. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDate, NaiveDateTime, Timelike}; /// /// let dt: NaiveDateTime = NaiveDate::from_ymd(2015, 9, 8).and_hms_milli(12, 34, 56, 789); /// assert_eq!(dt.with_nanosecond(333_333_333), /// Some(NaiveDate::from_ymd(2015, 9, 8).and_hms_nano(12, 34, 56, 333_333_333))); /// assert_eq!(dt.with_nanosecond(1_333_333_333), // leap second /// Some(NaiveDate::from_ymd(2015, 9, 8).and_hms_nano(12, 34, 56, 1_333_333_333))); /// assert_eq!(dt.with_nanosecond(2_000_000_000), None); /// ~~~~ #[inline] fn with_nanosecond(&self, nano: u32) -> Option<NaiveDateTime> { self.time.with_nanosecond(nano).map(|t| NaiveDateTime { time: t, ..*self }) } } /// `NaiveDateTime` can be used as a key to the hash maps (in principle). /// /// Practically this also takes account of fractional seconds, so it is not recommended. /// (For the obvious reason this also distinguishes leap seconds from non-leap seconds.) #[cfg_attr(feature = "cargo-clippy", allow(derive_hash_xor_eq))] impl hash::Hash for NaiveDateTime { fn hash<H: hash::Hasher>(&self, state: &mut H) { self.date.hash(state); self.time.hash(state); } } /// An addition of `Duration` to `NaiveDateTime` yields another `NaiveDateTime`. /// /// As a part of Chrono's [leap second handling](./struct.NaiveTime.html#leap-second-handling), /// the addition assumes that **there is no leap second ever**, /// except when the `NaiveDateTime` itself represents a leap second /// in which case the assumption becomes that **there is exactly a single leap second ever**. /// /// Panics on underflow or overflow. /// Use [`NaiveDateTime::checked_add_signed`](#method.checked_add_signed) to detect that. /// /// # Example /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// use chrono::NaiveDate; /// use time::Duration; /// /// let from_ymd = NaiveDate::from_ymd; /// /// let d = from_ymd(2016, 7, 8); /// let hms = |h, m, s| d.and_hms(h, m, s); /// assert_eq!(hms(3, 5, 7) + Duration::zero(), hms(3, 5, 7)); /// assert_eq!(hms(3, 5, 7) + Duration::seconds(1), hms(3, 5, 8)); /// assert_eq!(hms(3, 5, 7) + Duration::seconds(-1), hms(3, 5, 6)); /// assert_eq!(hms(3, 5, 7) + Duration::seconds(3600 + 60), hms(4, 6, 7)); /// assert_eq!(hms(3, 5, 7) + Duration::seconds(86_400), /// from_ymd(2016, 7, 9).and_hms(3, 5, 7)); /// assert_eq!(hms(3, 5, 7) + Duration::days(365), /// from_ymd(2017, 7, 8).and_hms(3, 5, 7)); /// /// let hmsm = |h, m, s, milli| d.and_hms_milli(h, m, s, milli); /// assert_eq!(hmsm(3, 5, 7, 980) + Duration::milliseconds(450), hmsm(3, 5, 8, 430)); /// # } /// ~~~~ /// /// Leap seconds are handled, /// but the addition assumes that it is the only leap second happened. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let from_ymd = NaiveDate::from_ymd; /// # let hmsm = |h, m, s, milli| from_ymd(2016, 7, 8).and_hms_milli(h, m, s, milli); /// let leap = hmsm(3, 5, 59, 1_300); /// assert_eq!(leap + Duration::zero(), hmsm(3, 5, 59, 1_300)); /// assert_eq!(leap + Duration::milliseconds(-500), hmsm(3, 5, 59, 800)); /// assert_eq!(leap + Duration::milliseconds(500), hmsm(3, 5, 59, 1_800)); /// assert_eq!(leap + Duration::milliseconds(800), hmsm(3, 6, 0, 100)); /// assert_eq!(leap + Duration::seconds(10), hmsm(3, 6, 9, 300)); /// assert_eq!(leap + Duration::seconds(-10), hmsm(3, 5, 50, 300)); /// assert_eq!(leap + Duration::days(1), /// from_ymd(2016, 7, 9).and_hms_milli(3, 5, 59, 300)); /// # } /// ~~~~ impl Add<OldDuration> for NaiveDateTime { type Output = NaiveDateTime; #[inline] fn add(self, rhs: OldDuration) -> NaiveDateTime { self.checked_add_signed(rhs).expect("`NaiveDateTime + Duration` overflowed") } } impl AddAssign<OldDuration> for NaiveDateTime { #[inline] fn add_assign(&mut self, rhs: OldDuration) { *self = self.add(rhs); } } /// A subtraction of `Duration` from `NaiveDateTime` yields another `NaiveDateTime`. /// It is same to the addition with a negated `Duration`. /// /// As a part of Chrono's [leap second handling](./struct.NaiveTime.html#leap-second-handling), /// the addition assumes that **there is no leap second ever**, /// except when the `NaiveDateTime` itself represents a leap second /// in which case the assumption becomes that **there is exactly a single leap second ever**. /// /// Panics on underflow or overflow. /// Use [`NaiveDateTime::checked_sub_signed`](#method.checked_sub_signed) to detect that. /// /// # Example /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// use chrono::NaiveDate; /// use time::Duration; /// /// let from_ymd = NaiveDate::from_ymd; /// /// let d = from_ymd(2016, 7, 8); /// let hms = |h, m, s| d.and_hms(h, m, s); /// assert_eq!(hms(3, 5, 7) - Duration::zero(), hms(3, 5, 7)); /// assert_eq!(hms(3, 5, 7) - Duration::seconds(1), hms(3, 5, 6)); /// assert_eq!(hms(3, 5, 7) - Duration::seconds(-1), hms(3, 5, 8)); /// assert_eq!(hms(3, 5, 7) - Duration::seconds(3600 + 60), hms(2, 4, 7)); /// assert_eq!(hms(3, 5, 7) - Duration::seconds(86_400), /// from_ymd(2016, 7, 7).and_hms(3, 5, 7)); /// assert_eq!(hms(3, 5, 7) - Duration::days(365), /// from_ymd(2015, 7, 9).and_hms(3, 5, 7)); /// /// let hmsm = |h, m, s, milli| d.and_hms_milli(h, m, s, milli); /// assert_eq!(hmsm(3, 5, 7, 450) - Duration::milliseconds(670), hmsm(3, 5, 6, 780)); /// # } /// ~~~~ /// /// Leap seconds are handled, /// but the subtraction assumes that it is the only leap second happened. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let from_ymd = NaiveDate::from_ymd; /// # let hmsm = |h, m, s, milli| from_ymd(2016, 7, 8).and_hms_milli(h, m, s, milli); /// let leap = hmsm(3, 5, 59, 1_300); /// assert_eq!(leap - Duration::zero(), hmsm(3, 5, 59, 1_300)); /// assert_eq!(leap - Duration::milliseconds(200), hmsm(3, 5, 59, 1_100)); /// assert_eq!(leap - Duration::milliseconds(500), hmsm(3, 5, 59, 800)); /// assert_eq!(leap - Duration::seconds(60), hmsm(3, 5, 0, 300)); /// assert_eq!(leap - Duration::days(1), /// from_ymd(2016, 7, 7).and_hms_milli(3, 6, 0, 300)); /// # } /// ~~~~ impl Sub<OldDuration> for NaiveDateTime { type Output = NaiveDateTime; #[inline] fn sub(self, rhs: OldDuration) -> NaiveDateTime { self.checked_sub_signed(rhs).expect("`NaiveDateTime - Duration` overflowed") } } impl SubAssign<OldDuration> for NaiveDateTime { #[inline] fn sub_assign(&mut self, rhs: OldDuration) { *self = self.sub(rhs); } } /// Subtracts another `NaiveDateTime` from the current date and time. /// This does not overflow or underflow at all. /// /// As a part of Chrono's [leap second handling](./struct.NaiveTime.html#leap-second-handling), /// the subtraction assumes that **there is no leap second ever**, /// except when any of the `NaiveDateTime`s themselves represents a leap second /// in which case the assumption becomes that /// **there are exactly one (or two) leap second(s) ever**. /// /// The implementation is a wrapper around /// [`NaiveDateTime::signed_duration_since`](#method.signed_duration_since). /// /// # Example /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// use chrono::NaiveDate; /// use time::Duration; /// /// let from_ymd = NaiveDate::from_ymd; /// /// let d = from_ymd(2016, 7, 8); /// assert_eq!(d.and_hms(3, 5, 7) - d.and_hms(2, 4, 6), Duration::seconds(3600 + 60 + 1)); /// /// // July 8 is 190th day in the year 2016 /// let d0 = from_ymd(2016, 1, 1); /// assert_eq!(d.and_hms_milli(0, 7, 6, 500) - d0.and_hms(0, 0, 0), /// Duration::seconds(189 * 86_400 + 7 * 60 + 6) + Duration::milliseconds(500)); /// # } /// ~~~~ /// /// Leap seconds are handled, but the subtraction assumes that /// there were no other leap seconds happened. /// /// ~~~~ /// # extern crate chrono; extern crate time; fn main() { /// # use chrono::NaiveDate; /// # use time::Duration; /// # let from_ymd = NaiveDate::from_ymd; /// let leap = from_ymd(2015, 6, 30).and_hms_milli(23, 59, 59, 1_500); /// assert_eq!(leap - from_ymd(2015, 6, 30).and_hms(23, 0, 0), /// Duration::seconds(3600) + Duration::milliseconds(500)); /// assert_eq!(from_ymd(2015, 7, 1).and_hms(1, 0, 0) - leap, /// Duration::seconds(3600) - Duration::milliseconds(500)); /// # } /// ~~~~ impl Sub<NaiveDateTime> for NaiveDateTime { type Output = OldDuration; #[inline] fn sub(self, rhs: NaiveDateTime) -> OldDuration { self.signed_duration_since(rhs) } } /// The `Debug` output of the naive date and time `dt` is same to /// [`dt.format("%Y-%m-%dT%H:%M:%S%.f")`](../format/strftime/index.html). /// /// The string printed can be readily parsed via the `parse` method on `str`. /// /// It should be noted that, for leap seconds not on the minute boundary, /// it may print a representation not distinguishable from non-leap seconds. /// This doesn't matter in practice, since such leap seconds never happened. /// (By the time of the first leap second on 1972-06-30, /// every time zone offset around the world has standardized to the 5-minute alignment.) /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2016, 11, 15).and_hms(7, 39, 24); /// assert_eq!(format!("{:?}", dt), "2016-11-15T07:39:24"); /// ~~~~ /// /// Leap seconds may also be used. /// /// ~~~~ /// # use chrono::NaiveDate; /// let dt = NaiveDate::from_ymd(2015, 6, 30).and_hms_milli(23, 59, 59, 1_500); /// assert_eq!(format!("{:?}", dt), "2015-06-30T23:59:60.500"); /// ~~~~ impl fmt::Debug for NaiveDateTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{:?}T{:?}", self.date, self.time) } } /// The `Debug` output of the naive date and time `dt` is same to /// [`dt.format("%Y-%m-%d %H:%M:%S%.f")`](../format/strftime/index.html). /// /// It should be noted that, for leap seconds not on the minute boundary, /// it may print a representation not distinguishable from non-leap seconds. /// This doesn't matter in practice, since such leap seconds never happened. /// (By the time of the first leap second on 1972-06-30, /// every time zone offset around the world has standardized to the 5-minute alignment.) /// /// # Example /// /// ~~~~ /// use chrono::NaiveDate; /// /// let dt = NaiveDate::from_ymd(2016, 11, 15).and_hms(7, 39, 24); /// assert_eq!(format!("{}", dt), "2016-11-15 07:39:24"); /// ~~~~ /// /// Leap seconds may also be used. /// /// ~~~~ /// # use chrono::NaiveDate; /// let dt = NaiveDate::from_ymd(2015, 6, 30).and_hms_milli(23, 59, 59, 1_500); /// assert_eq!(format!("{}", dt), "2015-06-30 23:59:60.500"); /// ~~~~ impl fmt::Display for NaiveDateTime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{} {}", self.date, self.time) } } /// Parsing a `str` into a `NaiveDateTime` uses the same format, /// [`%Y-%m-%dT%H:%M:%S%.f`](../format/strftime/index.html), as in `Debug`. /// /// # Example /// /// ~~~~ /// use chrono::{NaiveDateTime, NaiveDate}; /// /// let dt = NaiveDate::from_ymd(2015, 9, 18).and_hms(23, 56, 4); /// assert_eq!("2015-09-18T23:56:04".parse::<NaiveDateTime>(), Ok(dt)); /// /// let dt = NaiveDate::from_ymd(12345, 6, 7).and_hms_milli(7, 59, 59, 1_500); // leap second /// assert_eq!("+12345-6-7T7:59:60.5".parse::<NaiveDateTime>(), Ok(dt)); /// /// assert!("foo".parse::<NaiveDateTime>().is_err()); /// ~~~~ impl str::FromStr for NaiveDateTime { type Err = ParseError; fn from_str(s: &str) -> ParseResult<NaiveDateTime> { const ITEMS: &'static [Item<'static>] = &[ Item::Space(""), Item::Numeric(Numeric::Year, Pad::Zero), Item::Space(""), Item::Literal("-"), Item::Space(""), Item::Numeric(Numeric::Month, Pad::Zero), Item::Space(""), Item::Literal("-"), Item::Space(""), Item::Numeric(Numeric::Day, Pad::Zero), Item::Space(""), Item::Literal("T"), // XXX shouldn't this be case-insensitive? Item::Space(""), Item::Numeric(Numeric::Hour, Pad::Zero), Item::Space(""), Item::Literal(":"), Item::Space(""), Item::Numeric(Numeric::Minute, Pad::Zero), Item::Space(""), Item::Literal(":"), Item::Space(""), Item::Numeric(Numeric::Second, Pad::Zero), Item::Fixed(Fixed::Nanosecond), Item::Space(""), ]; let mut parsed = Parsed::new(); try!(parse(&mut parsed, s, ITEMS.iter().cloned())); parsed.to_naive_datetime_with_offset(0) } } #[cfg(all(test, any(feature = "rustc-serialize", feature = "serde")))] fn test_encodable_json<F, E>(to_string: F) where F: Fn(&NaiveDateTime) -> Result<String, E>, E: ::std::fmt::Debug { use naive::{MIN_DATE, MAX_DATE}; assert_eq!( to_string(&NaiveDate::from_ymd(2016, 7, 8).and_hms_milli(9, 10, 48, 90)).ok(), Some(r#""2016-07-08T09:10:48.090""#.into())); assert_eq!( to_string(&NaiveDate::from_ymd(2014, 7, 24).and_hms(12, 34, 6)).ok(), Some(r#""2014-07-24T12:34:06""#.into())); assert_eq!( to_string(&NaiveDate::from_ymd(0, 1, 1).and_hms_milli(0, 0, 59, 1_000)).ok(), Some(r#""0000-01-01T00:00:60""#.into())); assert_eq!( to_string(&NaiveDate::from_ymd(-1, 12, 31).and_hms_nano(23, 59, 59, 7)).ok(), Some(r#""-0001-12-31T23:59:59.000000007""#.into())); assert_eq!( to_string(&MIN_DATE.and_hms(0, 0, 0)).ok(), Some(r#""-262144-01-01T00:00:00""#.into())); assert_eq!( to_string(&MAX_DATE.and_hms_nano(23, 59, 59, 1_999_999_999)).ok(), Some(r#""+262143-12-31T23:59:60.999999999""#.into())); } #[cfg(all(test, any(feature = "rustc-serialize", feature = "serde")))] fn test_decodable_json<F, E>(from_str: F) where F: Fn(&str) -> Result<NaiveDateTime, E>, E: ::std::fmt::Debug { use naive::{MIN_DATE, MAX_DATE}; assert_eq!( from_str(r#""2016-07-08T09:10:48.090""#).ok(), Some(NaiveDate::from_ymd(2016, 7, 8).and_hms_milli(9, 10, 48, 90))); assert_eq!( from_str(r#""2016-7-8T9:10:48.09""#).ok(), Some(NaiveDate::from_ymd(2016, 7, 8).and_hms_milli(9, 10, 48, 90))); assert_eq!( from_str(r#""2014-07-24T12:34:06""#).ok(), Some(NaiveDate::from_ymd(2014, 7, 24).and_hms(12, 34, 6))); assert_eq!( from_str(r#""0000-01-01T00:00:60""#).ok(), Some(NaiveDate::from_ymd(0, 1, 1).and_hms_milli(0, 0, 59, 1_000))); assert_eq!( from_str(r#""0-1-1T0:0:60""#).ok(), Some(NaiveDate::from_ymd(0, 1, 1).and_hms_milli(0, 0, 59, 1_000))); assert_eq!( from_str(r#""-0001-12-31T23:59:59.000000007""#).ok(), Some(NaiveDate::from_ymd(-1, 12, 31).and_hms_nano(23, 59, 59, 7))); assert_eq!( from_str(r#""-262144-01-01T00:00:00""#).ok(), Some(MIN_DATE.and_hms(0, 0, 0))); assert_eq!( from_str(r#""+262143-12-31T23:59:60.999999999""#).ok(), Some(MAX_DATE.and_hms_nano(23, 59, 59, 1_999_999_999))); assert_eq!( from_str(r#""+262143-12-31T23:59:60.9999999999997""#).ok(), // excess digits are ignored Some(MAX_DATE.and_hms_nano(23, 59, 59, 1_999_999_999))); // bad formats assert!(from_str(r#""""#).is_err()); assert!(from_str(r#""2016-07-08""#).is_err()); assert!(from_str(r#""09:10:48.090""#).is_err()); assert!(from_str(r#""20160708T091048.090""#).is_err()); assert!(from_str(r#""2000-00-00T00:00:00""#).is_err()); assert!(from_str(r#""2000-02-30T00:00:00""#).is_err()); assert!(from_str(r#""2001-02-29T00:00:00""#).is_err()); assert!(from_str(r#""2002-02-28T24:00:00""#).is_err()); assert!(from_str(r#""2002-02-28T23:60:00""#).is_err()); assert!(from_str(r#""2002-02-28T23:59:61""#).is_err()); assert!(from_str(r#""2016-07-08T09:10:48,090""#).is_err()); assert!(from_str(r#""2016-07-08 09:10:48.090""#).is_err()); assert!(from_str(r#""2016-007-08T09:10:48.090""#).is_err()); assert!(from_str(r#""yyyy-mm-ddThh:mm:ss.fffffffff""#).is_err()); assert!(from_str(r#"20160708000000"#).is_err()); assert!(from_str(r#"{}"#).is_err()); // pre-0.3.0 rustc-serialize format is now invalid assert!(from_str(r#"{"date":{"ymdf":20},"time":{"secs":0,"frac":0}}"#).is_err()); assert!(from_str(r#"null"#).is_err()); } #[cfg(all(test, feature = "rustc-serialize"))] fn test_decodable_json_timestamp<F, E>(from_str: F) where F: Fn(&str) -> Result<rustc_serialize::TsSeconds, E>, E: ::std::fmt::Debug { assert_eq!( *from_str("0").unwrap(), NaiveDate::from_ymd(1970, 1, 1).and_hms(0, 0, 0), "should parse integers as timestamps" ); assert_eq!( *from_str("-1").unwrap(), NaiveDate::from_ymd(1969, 12, 31).and_hms(23, 59, 59), "should parse integers as timestamps" ); } #[cfg(feature = "rustc-serialize")] pub mod rustc_serialize { use std::ops::Deref; use super::NaiveDateTime; use rustc_serialize::{Encodable, Encoder, Decodable, Decoder}; impl Encodable for NaiveDateTime { fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> { format!("{:?}", self).encode(s) } } impl Decodable for NaiveDateTime { fn decode<D: Decoder>(d: &mut D) -> Result<NaiveDateTime, D::Error> { d.read_str()?.parse().map_err(|_| d.error("invalid date time string")) } } /// A `DateTime` that can be deserialized from a seconds-based timestamp #[derive(Debug)] #[deprecated(since = "1.4.2", note = "RustcSerialize will be removed before chrono 1.0, use Serde instead")] pub struct TsSeconds(NaiveDateTime); #[allow(deprecated)] impl From<TsSeconds> for NaiveDateTime { /// Pull the internal NaiveDateTime out #[allow(deprecated)] fn from(obj: TsSeconds) -> NaiveDateTime { obj.0 } } #[allow(deprecated)] impl Deref for TsSeconds { type Target = NaiveDateTime; #[allow(deprecated)] fn deref(&self) -> &Self::Target { &self.0 } } #[allow(deprecated)] impl Decodable for TsSeconds { #[allow(deprecated)] fn decode<D: Decoder>(d: &mut D) -> Result<TsSeconds, D::Error> { Ok(TsSeconds( NaiveDateTime::from_timestamp_opt(d.read_i64()?, 0) .ok_or_else(|| d.error("invalid timestamp"))?)) } } #[cfg(test)] use rustc_serialize::json; #[test] fn test_encodable() { super::test_encodable_json(json::encode); } #[test] fn test_decodable() { super::test_decodable_json(json::decode); } #[test] fn test_decodable_timestamps() { super::test_decodable_json_timestamp(json::decode); } } /// Tools to help serializing/deserializing `NaiveDateTime`s #[cfg(feature = "serde")] pub mod serde { use std::fmt; use super::{NaiveDateTime}; use serdelib::{ser, de}; /// Serialize a `NaiveDateTime` as an RFC 3339 string /// /// See [the `serde` module](./serde/index.html) for alternate /// serialization formats. impl ser::Serialize for NaiveDateTime { fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: ser::Serializer { struct FormatWrapped<'a, D: 'a> { inner: &'a D } impl<'a, D: fmt::Debug> fmt::Display for FormatWrapped<'a, D> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.inner.fmt(f) } } serializer.collect_str(&FormatWrapped { inner: &self }) } } struct NaiveDateTimeVisitor; impl<'de> de::Visitor<'de> for NaiveDateTimeVisitor { type Value = NaiveDateTime; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { write!(formatter, "a formatted date and time string") } fn visit_str<E>(self, value: &str) -> Result<NaiveDateTime, E> where E: de::Error { value.parse().map_err(|err| E::custom(format!("{}", err))) } } impl<'de> de::Deserialize<'de> for NaiveDateTime { fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: de::Deserializer<'de> { deserializer.deserialize_str(NaiveDateTimeVisitor) } } /// Used to serialize/deserialize from nanosecond-precision timestamps /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # extern crate serde_json; /// # extern crate serde; /// # extern crate chrono; /// # use chrono::{TimeZone, NaiveDate, NaiveDateTime, Utc}; /// use chrono::naive::serde::ts_nanoseconds; /// #[derive(Deserialize, Serialize)] /// struct S { /// #[serde(with = "ts_nanoseconds")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<S, serde_json::Error> { /// let time = NaiveDate::from_ymd(2018, 5, 17).and_hms_nano(02, 04, 59, 918355733); /// let my_s = S { /// time: time.clone(), /// }; /// /// let as_string = serde_json::to_string(&my_s)?; /// assert_eq!(as_string, r#"{"time":1526522699918355733}"#); /// let my_s: S = serde_json::from_str(&as_string)?; /// assert_eq!(my_s.time, time); /// # Ok(my_s) /// # } /// # fn main() { example().unwrap(); } /// ``` pub mod ts_nanoseconds { use std::fmt; use serdelib::{ser, de}; use NaiveDateTime; /// Serialize a UTC datetime into an integer number of nanoseconds since the epoch /// /// Intended for use with `serde`s `serialize_with` attribute. /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # #[macro_use] extern crate serde_json; /// # #[macro_use] extern crate serde; /// # extern crate chrono; /// # use chrono::{TimeZone, NaiveDate, NaiveDateTime, Utc}; /// # use serde::Serialize; /// use chrono::naive::serde::ts_nanoseconds::serialize as to_nano_ts; /// #[derive(Serialize)] /// struct S { /// #[serde(serialize_with = "to_nano_ts")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<String, serde_json::Error> { /// let my_s = S { /// time: NaiveDate::from_ymd(2018, 5, 17).and_hms_nano(02, 04, 59, 918355733), /// }; /// let as_string = serde_json::to_string(&my_s)?; /// assert_eq!(as_string, r#"{"time":1526522699918355733}"#); /// # Ok(as_string) /// # } /// # fn main() { example().unwrap(); } /// ``` pub fn serialize<S>(dt: &NaiveDateTime, serializer: S) -> Result<S::Ok, S::Error> where S: ser::Serializer { serializer.serialize_i64(dt.timestamp_nanos()) } /// Deserialize a `DateTime` from a nanoseconds timestamp /// /// Intended for use with `serde`s `deserialize_with` attribute. /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # #[macro_use] extern crate serde_json; /// # extern crate serde; /// # extern crate chrono; /// # use chrono::{NaiveDateTime, Utc}; /// # use serde::Deserialize; /// use chrono::naive::serde::ts_nanoseconds::deserialize as from_nano_ts; /// #[derive(Deserialize)] /// struct S { /// #[serde(deserialize_with = "from_nano_ts")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<S, serde_json::Error> { /// let my_s: S = serde_json::from_str(r#"{ "time": 1526522699918355733 }"#)?; /// # Ok(my_s) /// # } /// # fn main() { example().unwrap(); } /// ``` pub fn deserialize<'de, D>(d: D) -> Result<NaiveDateTime, D::Error> where D: de::Deserializer<'de> { Ok(try!(d.deserialize_i64(NaiveDateTimeFromNanoSecondsVisitor))) } struct NaiveDateTimeFromNanoSecondsVisitor; impl<'de> de::Visitor<'de> for NaiveDateTimeFromNanoSecondsVisitor { type Value = NaiveDateTime; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { formatter.write_str("a unix timestamp") } fn visit_i64<E>(self, value: i64) -> Result<NaiveDateTime, E> where E: de::Error { NaiveDateTime::from_timestamp_opt(value / 1_000_000_000, (value % 1_000_000_000) as u32) .ok_or_else(|| E::custom(format!("value is not a legal timestamp: {}", value))) } fn visit_u64<E>(self, value: u64) -> Result<NaiveDateTime, E> where E: de::Error { NaiveDateTime::from_timestamp_opt(value as i64 / 1_000_000_000, (value as i64 % 1_000_000_000) as u32) .ok_or_else(|| E::custom(format!("value is not a legal timestamp: {}", value))) } } } /// Used to serialize/deserialize from millisecond-precision timestamps /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # extern crate serde_json; /// # extern crate serde; /// # extern crate chrono; /// # use chrono::{TimeZone, NaiveDate, NaiveDateTime, Utc}; /// use chrono::naive::serde::ts_milliseconds; /// #[derive(Deserialize, Serialize)] /// struct S { /// #[serde(with = "ts_milliseconds")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<S, serde_json::Error> { /// let time = NaiveDate::from_ymd(2018, 5, 17).and_hms_milli(02, 04, 59, 918); /// let my_s = S { /// time: time.clone(), /// }; /// /// let as_string = serde_json::to_string(&my_s)?; /// assert_eq!(as_string, r#"{"time":1526522699918}"#); /// let my_s: S = serde_json::from_str(&as_string)?; /// assert_eq!(my_s.time, time); /// # Ok(my_s) /// # } /// # fn main() { example().unwrap(); } /// ``` pub mod ts_milliseconds { use std::fmt; use serdelib::{ser, de}; use NaiveDateTime; /// Serialize a UTC datetime into an integer number of milliseconds since the epoch /// /// Intended for use with `serde`s `serialize_with` attribute. /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # #[macro_use] extern crate serde_json; /// # #[macro_use] extern crate serde; /// # extern crate chrono; /// # use chrono::{TimeZone, NaiveDate, NaiveDateTime, Utc}; /// # use serde::Serialize; /// use chrono::naive::serde::ts_milliseconds::serialize as to_milli_ts; /// #[derive(Serialize)] /// struct S { /// #[serde(serialize_with = "to_milli_ts")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<String, serde_json::Error> { /// let my_s = S { /// time: NaiveDate::from_ymd(2018, 5, 17).and_hms_milli(02, 04, 59, 918), /// }; /// let as_string = serde_json::to_string(&my_s)?; /// assert_eq!(as_string, r#"{"time":1526522699918}"#); /// # Ok(as_string) /// # } /// # fn main() { example().unwrap(); } /// ``` pub fn serialize<S>(dt: &NaiveDateTime, serializer: S) -> Result<S::Ok, S::Error> where S: ser::Serializer { serializer.serialize_i64(dt.timestamp_millis()) } /// Deserialize a `DateTime` from a milliseconds timestamp /// /// Intended for use with `serde`s `deserialize_with` attribute. /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # #[macro_use] extern crate serde_json; /// # extern crate serde; /// # extern crate chrono; /// # use chrono::{NaiveDateTime, Utc}; /// # use serde::Deserialize; /// use chrono::naive::serde::ts_milliseconds::deserialize as from_milli_ts; /// #[derive(Deserialize)] /// struct S { /// #[serde(deserialize_with = "from_milli_ts")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<S, serde_json::Error> { /// let my_s: S = serde_json::from_str(r#"{ "time": 1526522699918 }"#)?; /// # Ok(my_s) /// # } /// # fn main() { example().unwrap(); } /// ``` pub fn deserialize<'de, D>(d: D) -> Result<NaiveDateTime, D::Error> where D: de::Deserializer<'de> { Ok(try!(d.deserialize_i64(NaiveDateTimeFromMilliSecondsVisitor))) } struct NaiveDateTimeFromMilliSecondsVisitor; impl<'de> de::Visitor<'de> for NaiveDateTimeFromMilliSecondsVisitor { type Value = NaiveDateTime; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { formatter.write_str("a unix timestamp") } fn visit_i64<E>(self, value: i64) -> Result<NaiveDateTime, E> where E: de::Error { NaiveDateTime::from_timestamp_opt(value / 1000, ((value % 1000) * 1_000_000) as u32) .ok_or_else(|| E::custom(format!("value is not a legal timestamp: {}", value))) } fn visit_u64<E>(self, value: u64) -> Result<NaiveDateTime, E> where E: de::Error { NaiveDateTime::from_timestamp_opt((value / 1000) as i64, ((value % 1000) * 1_000_000) as u32) .ok_or_else(|| E::custom(format!("value is not a legal timestamp: {}", value))) } } } /// Used to serialize/deserialize from second-precision timestamps /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # extern crate serde_json; /// # extern crate serde; /// # extern crate chrono; /// # use chrono::{TimeZone, NaiveDate, NaiveDateTime, Utc}; /// use chrono::naive::serde::ts_seconds; /// #[derive(Deserialize, Serialize)] /// struct S { /// #[serde(with = "ts_seconds")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<S, serde_json::Error> { /// let time = NaiveDate::from_ymd(2015, 5, 15).and_hms(10, 0, 0); /// let my_s = S { /// time: time.clone(), /// }; /// /// let as_string = serde_json::to_string(&my_s)?; /// assert_eq!(as_string, r#"{"time":1431684000}"#); /// let my_s: S = serde_json::from_str(&as_string)?; /// assert_eq!(my_s.time, time); /// # Ok(my_s) /// # } /// # fn main() { example().unwrap(); } /// ``` pub mod ts_seconds { use std::fmt; use serdelib::{ser, de}; use NaiveDateTime; /// Serialize a UTC datetime into an integer number of seconds since the epoch /// /// Intended for use with `serde`s `serialize_with` attribute. /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # #[macro_use] extern crate serde_json; /// # #[macro_use] extern crate serde; /// # extern crate chrono; /// # use chrono::{TimeZone, NaiveDate, NaiveDateTime, Utc}; /// # use serde::Serialize; /// use chrono::naive::serde::ts_seconds::serialize as to_ts; /// #[derive(Serialize)] /// struct S { /// #[serde(serialize_with = "to_ts")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<String, serde_json::Error> { /// let my_s = S { /// time: NaiveDate::from_ymd(2015, 5, 15).and_hms(10, 0, 0), /// }; /// let as_string = serde_json::to_string(&my_s)?; /// assert_eq!(as_string, r#"{"time":1431684000}"#); /// # Ok(as_string) /// # } /// # fn main() { example().unwrap(); } /// ``` pub fn serialize<S>(dt: &NaiveDateTime, serializer: S) -> Result<S::Ok, S::Error> where S: ser::Serializer { serializer.serialize_i64(dt.timestamp()) } /// Deserialize a `DateTime` from a seconds timestamp /// /// Intended for use with `serde`s `deserialize_with` attribute. /// /// # Example: /// /// ```rust /// # // We mark this ignored so that we can test on 1.13 (which does not /// # // support custom derive), and run tests with --ignored on beta and /// # // nightly to actually trigger these. /// # /// # #[macro_use] extern crate serde_derive; /// # #[macro_use] extern crate serde_json; /// # extern crate serde; /// # extern crate chrono; /// # use chrono::{NaiveDateTime, Utc}; /// # use serde::Deserialize; /// use chrono::naive::serde::ts_seconds::deserialize as from_ts; /// #[derive(Deserialize)] /// struct S { /// #[serde(deserialize_with = "from_ts")] /// time: NaiveDateTime /// } /// /// # fn example() -> Result<S, serde_json::Error> { /// let my_s: S = serde_json::from_str(r#"{ "time": 1431684000 }"#)?; /// # Ok(my_s) /// # } /// # fn main() { example().unwrap(); } /// ``` pub fn deserialize<'de, D>(d: D) -> Result<NaiveDateTime, D::Error> where D: de::Deserializer<'de> { Ok(try!(d.deserialize_i64(NaiveDateTimeFromSecondsVisitor))) } struct NaiveDateTimeFromSecondsVisitor; impl<'de> de::Visitor<'de> for NaiveDateTimeFromSecondsVisitor { type Value = NaiveDateTime; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { formatter.write_str("a unix timestamp") } fn visit_i64<E>(self, value: i64) -> Result<NaiveDateTime, E> where E: de::Error { NaiveDateTime::from_timestamp_opt(value, 0) .ok_or_else(|| E::custom(format!("value is not a legal timestamp: {}", value))) } fn visit_u64<E>(self, value: u64) -> Result<NaiveDateTime, E> where E: de::Error { NaiveDateTime::from_timestamp_opt(value as i64, 0) .ok_or_else(|| E::custom(format!("value is not a legal timestamp: {}", value))) } } } #[cfg(test)] extern crate serde_json; #[cfg(test)] extern crate bincode; #[test] fn test_serde_serialize() { super::test_encodable_json(self::serde_json::to_string); } #[test] fn test_serde_deserialize() { super::test_decodable_json(|input| self::serde_json::from_str(&input)); } #[test] fn test_serde_bincode() { // Bincode is relevant to test separately from JSON because // it is not self-describing. use naive::NaiveDate; use self::bincode::{Infinite, serialize, deserialize}; let dt = NaiveDate::from_ymd(2016, 7, 8).and_hms_milli(9, 10, 48, 90); let encoded = serialize(&dt, Infinite).unwrap(); let decoded: NaiveDateTime = deserialize(&encoded).unwrap(); assert_eq!(dt, decoded); } } #[cfg(test)] mod tests { use super::NaiveDateTime; use Datelike; use naive::{NaiveDate, MIN_DATE, MAX_DATE}; use std::i64; use oldtime::Duration; #[test] fn test_datetime_from_timestamp() { let from_timestamp = |secs| NaiveDateTime::from_timestamp_opt(secs, 0); let ymdhms = |y,m,d,h,n,s| NaiveDate::from_ymd(y,m,d).and_hms(h,n,s); assert_eq!(from_timestamp(-1), Some(ymdhms(1969, 12, 31, 23, 59, 59))); assert_eq!(from_timestamp(0), Some(ymdhms(1970, 1, 1, 0, 0, 0))); assert_eq!(from_timestamp(1), Some(ymdhms(1970, 1, 1, 0, 0, 1))); assert_eq!(from_timestamp(1_000_000_000), Some(ymdhms(2001, 9, 9, 1, 46, 40))); assert_eq!(from_timestamp(0x7fffffff), Some(ymdhms(2038, 1, 19, 3, 14, 7))); assert_eq!(from_timestamp(i64::MIN), None); assert_eq!(from_timestamp(i64::MAX), None); } #[test] fn test_datetime_add() { fn check((y,m,d,h,n,s): (i32,u32,u32,u32,u32,u32), rhs: Duration, result: Option<(i32,u32,u32,u32,u32,u32)>) { let lhs = NaiveDate::from_ymd(y, m, d).and_hms(h, n, s); let sum = result.map(|(y,m,d,h,n,s)| NaiveDate::from_ymd(y, m, d).and_hms(h, n, s)); assert_eq!(lhs.checked_add_signed(rhs), sum); assert_eq!(lhs.checked_sub_signed(-rhs), sum); }; check((2014,5,6, 7,8,9), Duration::seconds(3600 + 60 + 1), Some((2014,5,6, 8,9,10))); check((2014,5,6, 7,8,9), Duration::seconds(-(3600 + 60 + 1)), Some((2014,5,6, 6,7,8))); check((2014,5,6, 7,8,9), Duration::seconds(86399), Some((2014,5,7, 7,8,8))); check((2014,5,6, 7,8,9), Duration::seconds(86_400 * 10), Some((2014,5,16, 7,8,9))); check((2014,5,6, 7,8,9), Duration::seconds(-86_400 * 10), Some((2014,4,26, 7,8,9))); check((2014,5,6, 7,8,9), Duration::seconds(86_400 * 10), Some((2014,5,16, 7,8,9))); // overflow check // assumes that we have correct values for MAX/MIN_DAYS_FROM_YEAR_0 from `naive::date`. // (they are private constants, but the equivalence is tested in that module.) let max_days_from_year_0 = MAX_DATE.signed_duration_since(NaiveDate::from_ymd(0,1,1)); check((0,1,1, 0,0,0), max_days_from_year_0, Some((MAX_DATE.year(),12,31, 0,0,0))); check((0,1,1, 0,0,0), max_days_from_year_0 + Duration::seconds(86399), Some((MAX_DATE.year(),12,31, 23,59,59))); check((0,1,1, 0,0,0), max_days_from_year_0 + Duration::seconds(86_400), None); check((0,1,1, 0,0,0), Duration::max_value(), None); let min_days_from_year_0 = MIN_DATE.signed_duration_since(NaiveDate::from_ymd(0,1,1)); check((0,1,1, 0,0,0), min_days_from_year_0, Some((MIN_DATE.year(),1,1, 0,0,0))); check((0,1,1, 0,0,0), min_days_from_year_0 - Duration::seconds(1), None); check((0,1,1, 0,0,0), Duration::min_value(), None); } #[test] fn test_datetime_sub() { let ymdhms = |y,m,d,h,n,s| NaiveDate::from_ymd(y,m,d).and_hms(h,n,s); let since = NaiveDateTime::signed_duration_since; assert_eq!(since(ymdhms(2014, 5, 6, 7, 8, 9), ymdhms(2014, 5, 6, 7, 8, 9)), Duration::zero()); assert_eq!(since(ymdhms(2014, 5, 6, 7, 8, 10), ymdhms(2014, 5, 6, 7, 8, 9)), Duration::seconds(1)); assert_eq!(since(ymdhms(2014, 5, 6, 7, 8, 9), ymdhms(2014, 5, 6, 7, 8, 10)), Duration::seconds(-1)); assert_eq!(since(ymdhms(2014, 5, 7, 7, 8, 9), ymdhms(2014, 5, 6, 7, 8, 10)), Duration::seconds(86399)); assert_eq!(since(ymdhms(2001, 9, 9, 1, 46, 39), ymdhms(1970, 1, 1, 0, 0, 0)), Duration::seconds(999_999_999)); } #[test] fn test_datetime_addassignment() { let ymdhms = |y,m,d,h,n,s| NaiveDate::from_ymd(y,m,d).and_hms(h,n,s); let mut date = ymdhms(2016, 10, 1, 10, 10, 10); date += Duration::minutes(10_000_000); assert_eq!(date, ymdhms(2035, 10, 6, 20, 50, 10)); date += Duration::days(10); assert_eq!(date, ymdhms(2035, 10, 16, 20, 50, 10)); } #[test] fn test_datetime_subassignment() { let ymdhms = |y,m,d,h,n,s| NaiveDate::from_ymd(y,m,d).and_hms(h,n,s); let mut date = ymdhms(2016, 10, 1, 10, 10, 10); date -= Duration::minutes(10_000_000); assert_eq!(date, ymdhms(1997, 9, 26, 23, 30, 10)); date -= Duration::days(10); assert_eq!(date, ymdhms(1997, 9, 16, 23, 30, 10)); } #[test] fn test_datetime_timestamp() { let to_timestamp = |y,m,d,h,n,s| NaiveDate::from_ymd(y,m,d).and_hms(h,n,s).timestamp(); assert_eq!(to_timestamp(1969, 12, 31, 23, 59, 59), -1); assert_eq!(to_timestamp(1970, 1, 1, 0, 0, 0), 0); assert_eq!(to_timestamp(1970, 1, 1, 0, 0, 1), 1); assert_eq!(to_timestamp(2001, 9, 9, 1, 46, 40), 1_000_000_000); assert_eq!(to_timestamp(2038, 1, 19, 3, 14, 7), 0x7fffffff); } #[test] fn test_datetime_from_str() { // valid cases let valid = [ "2015-2-18T23:16:9.15", "-77-02-18T23:16:09", " +82701 - 05 - 6 T 15 : 9 : 60.898989898989 ", ]; for &s in &valid { let d = match s.parse::<NaiveDateTime>() { Ok(d) => d, Err(e) => panic!("parsing `{}` has failed: {}", s, e) }; let s_ = format!("{:?}", d); // `s` and `s_` may differ, but `s.parse()` and `s_.parse()` must be same let d_ = match s_.parse::<NaiveDateTime>() { Ok(d) => d, Err(e) => panic!("`{}` is parsed into `{:?}`, but reparsing that has failed: {}", s, d, e) }; assert!(d == d_, "`{}` is parsed into `{:?}`, but reparsed result \ `{:?}` does not match", s, d, d_); } // some invalid cases // since `ParseErrorKind` is private, all we can do is to check if there was an error assert!("".parse::<NaiveDateTime>().is_err()); assert!("x".parse::<NaiveDateTime>().is_err()); assert!("15".parse::<NaiveDateTime>().is_err()); assert!("15:8:9".parse::<NaiveDateTime>().is_err()); assert!("15-8-9".parse::<NaiveDateTime>().is_err()); assert!("2015-15-15T15:15:15".parse::<NaiveDateTime>().is_err()); assert!("2012-12-12T12:12:12x".parse::<NaiveDateTime>().is_err()); assert!("2012-123-12T12:12:12".parse::<NaiveDateTime>().is_err()); assert!("+ 82701-123-12T12:12:12".parse::<NaiveDateTime>().is_err()); assert!("+802701-123-12T12:12:12".parse::<NaiveDateTime>().is_err()); // out-of-bound } #[test] fn test_datetime_parse_from_str() { let ymdhms = |y,m,d,h,n,s| NaiveDate::from_ymd(y,m,d).and_hms(h,n,s); let ymdhmsn = |y,m,d,h,n,s,nano| NaiveDate::from_ymd(y, m, d).and_hms_nano(h, n, s, nano); assert_eq!(NaiveDateTime::parse_from_str("2014-5-7T12:34:56+09:30", "%Y-%m-%dT%H:%M:%S%z"), Ok(ymdhms(2014, 5, 7, 12, 34, 56))); // ignore offset assert_eq!(NaiveDateTime::parse_from_str("2015-W06-1 000000", "%G-W%V-%u%H%M%S"), Ok(ymdhms(2015, 2, 2, 0, 0, 0))); assert_eq!(NaiveDateTime::parse_from_str("Fri, 09 Aug 2013 23:54:35 GMT", "%a, %d %b %Y %H:%M:%S GMT"), Ok(ymdhms(2013, 8, 9, 23, 54, 35))); assert!(NaiveDateTime::parse_from_str("Sat, 09 Aug 2013 23:54:35 GMT", "%a, %d %b %Y %H:%M:%S GMT").is_err()); assert!(NaiveDateTime::parse_from_str("2014-5-7 12:3456", "%Y-%m-%d %H:%M:%S").is_err()); assert!(NaiveDateTime::parse_from_str("12:34:56", "%H:%M:%S").is_err()); // insufficient assert_eq!(NaiveDateTime::parse_from_str("1441497364", "%s"), Ok(ymdhms(2015, 9, 5, 23, 56, 4))); assert_eq!(NaiveDateTime::parse_from_str("1283929614.1234", "%s.%f"), Ok(ymdhmsn(2010, 9, 8, 7, 6, 54, 1234))); assert_eq!(NaiveDateTime::parse_from_str("1441497364.649", "%s%.3f"), Ok(ymdhmsn(2015, 9, 5, 23, 56, 4, 649000000))); assert_eq!(NaiveDateTime::parse_from_str("1497854303.087654", "%s%.6f"), Ok(ymdhmsn(2017, 6, 19, 6, 38, 23, 87654000))); assert_eq!(NaiveDateTime::parse_from_str("1437742189.918273645", "%s%.9f"), Ok(ymdhmsn(2015, 7, 24, 12, 49, 49, 918273645))); } #[test] fn test_datetime_format() { let dt = NaiveDate::from_ymd(2010, 9, 8).and_hms_milli(7, 6, 54, 321); assert_eq!(dt.format("%c").to_string(), "Wed Sep 8 07:06:54 2010"); assert_eq!(dt.format("%s").to_string(), "1283929614"); assert_eq!(dt.format("%t%n%%%n%t").to_string(), "\t\n%\n\t"); // a horror of leap second: coming near to you. let dt = NaiveDate::from_ymd(2012, 6, 30).and_hms_milli(23, 59, 59, 1_000); assert_eq!(dt.format("%c").to_string(), "Sat Jun 30 23:59:60 2012"); assert_eq!(dt.format("%s").to_string(), "1341100799"); // not 1341100800, it's intentional. } #[test] fn test_datetime_add_sub_invariant() { // issue #37 let base = NaiveDate::from_ymd(2000, 1, 1).and_hms(0, 0, 0); let t = -946684799990000; let time = base + Duration::microseconds(t); assert_eq!(t, time.signed_duration_since(base).num_microseconds().unwrap()); } }