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
|
# Copyright (C) 2003-2012 Joshua Hoblitt
package DateTime::Format::ISO8601;
use strict;
use warnings;
use namespace::autoclean;
our $VERSION = '0.17';
use Carp qw( croak );
use DateTime 1.45;
use DateTime::Format::Builder 0.77;
use DateTime::Format::ISO8601::Types;
use Params::ValidationCompiler 0.26 qw( validation_for );
{
my $validator = validation_for(
name => 'DefaultLegacyYear',
name_is_optional => 1,
params => [ { type => t('Bool') } ],
);
my $default_legacy_year;
sub DefaultLegacyYear {
shift;
($default_legacy_year) = $validator->(@_)
if @_;
return $default_legacy_year;
}
}
__PACKAGE__->DefaultLegacyYear(1);
{
my $validator = validation_for(
name => 'DefaultCutOffYear',
name_is_optional => 1,
params => [ { type => t('CutOffYear') } ],
);
my $default_cut_off_year;
sub DefaultCutOffYear {
shift;
($default_cut_off_year) = $validator->(@_)
if @_;
return $default_cut_off_year;
}
}
# the same default value as DT::F::Mail
__PACKAGE__->DefaultCutOffYear(49);
{
my $validator = validation_for(
name => '_check_new_params',
name_is_optional => 1,
params => {
base_datetime => {
type => t('DateTimeIsh'),
optional => 1,
},
legacy_year => {
type => t('Bool'),
optional => 1,
},
cut_off_year => {
type => t('CutOffYear'),
optional => 1,
},
},
);
sub new {
my ($class) = shift;
my %args = $validator->(@_);
$args{legacy_year} = $class->DefaultLegacyYear
unless exists $args{legacy_year};
$args{cut_off_year} = $class->DefaultCutOffYear
unless exists $args{cut_off_year};
$class = ref($class) || $class;
my $self = bless( \%args, $class );
if ( $args{base_datetime} ) {
$self->set_base_datetime( object => $args{base_datetime} );
}
return ($self);
}
}
# lifted from DateTime
sub clone { bless { %{ $_[0] } }, ref $_[0] }
sub base_datetime { $_[0]->{base_datetime} }
{
my $validator = validation_for(
name => 'set_base_datetime',
name_is_optional => 1,
params => {
object => { type => t('DateTimeIsh') },
},
);
sub set_base_datetime {
my $self = shift;
my %args = $validator->(@_);
# ISO8601 only allows years 0 to 9999
# this implementation ignores the needs of expanded formats
my $dt = DateTime->from_object( object => $args{object} );
my $lower_bound = DateTime->new( year => 0 );
my $upper_bound = DateTime->new( year => 10000 );
if ( $dt < $lower_bound ) {
croak 'base_datetime must be greater then or equal to ',
$lower_bound->iso8601;
}
if ( $dt >= $upper_bound ) {
croak 'base_datetime must be less then ', $upper_bound->iso8601;
}
$self->{base_datetime} = $dt;
return $self;
}
}
sub legacy_year { $_[0]->{legacy_year} }
{
my $validator = validation_for(
name => 'set_legacy_year',
name_is_optional => 1,
params => [ { type => t('Bool') } ],
);
sub set_legacy_year {
my $self = shift;
( $self->{legacy_year} ) = $validator->(@_);
return $self;
}
}
sub cut_off_year { $_[0]->{cut_off_year} }
{
my $validator = validation_for(
name => 'set_cut_off_year',
name_is_optional => 1,
params => [ { type => t('CutOffYear') } ],
);
sub set_cut_off_year {
my $self = shift;
( $self->{cut_off_year} ) = $validator->(@_);
return $self;
}
}
{
my $validator = validation_for(
name => 'format_datetime',
name_is_optional => 1,
params => [ { type => t('DateTime') } ],
);
sub format_datetime {
my $self = shift;
my ($dt) = $validator->(@_);
my $cldr
= $dt->nanosecond % 1000000 ? 'yyyy-MM-ddTHH:mm:ss.SSSSSSSSS'
: $dt->nanosecond ? 'yyyy-MM-ddTHH:mm:ss.SSS'
: 'yyyy-MM-ddTHH:mm:ss';
my $tz;
if ( $dt->time_zone->is_utc ) {
$tz = 'Z';
}
else {
$tz = q{};
$cldr .= 'ZZZZZ';
}
return $dt->format_cldr($cldr) . $tz;
}
}
DateTime::Format::Builder->create_class(
parsers => {
parse_datetime => [
{
#YYYYMMDD 19850412
length => 8,
regex => qr/^ (\d{4}) (\d\d) (\d\d) $/x,
params => [qw( year month day )],
},
{
# uncombined with above because
#regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d) $/x,
# was matching 152746-05
#YYYY-MM-DD 1985-04-12
length => 10,
regex => qr/^ (\d{4}) - (\d\d) - (\d\d) $/x,
params => [qw( year month day )],
},
{
#YYYY-MM 1985-04
length => 7,
regex => qr/^ (\d{4}) - (\d\d) $/x,
params => [qw( year month )],
},
{
#YYYY 1985
length => 4,
regex => qr/^ (\d{4}) $/x,
params => [qw( year )],
},
{
#YY 19 (century)
length => 2,
regex => qr/^ (\d\d) $/x,
params => [qw( year )],
postprocess => \&_normalize_century,
},
{
#YYMMDD 850412
#YY-MM-DD 85-04-12
length => [qw( 6 8 )],
regex => qr/^ (\d\d) -?? (\d\d) -?? (\d\d) $/x,
params => [qw( year month day )],
postprocess => \&_fix_2_digit_year,
},
{
#-YYMM -8504
#-YY-MM -85-04
length => [qw( 5 6 )],
regex => qr/^ - (\d\d) -?? (\d\d) $/x,
params => [qw( year month )],
postprocess => \&_fix_2_digit_year,
},
{
#-YY -85
length => 3,
regex => qr/^ - (\d\d) $/x,
params => [qw( year )],
postprocess => \&_fix_2_digit_year,
},
{
#--MMDD --0412
#--MM-DD --04-12
length => [qw( 6 7 )],
regex => qr/^ -- (\d\d) -?? (\d\d) $/x,
params => [qw( month day )],
postprocess => \&_add_year,
},
{
#--MM --04
length => 4,
regex => qr/^ -- (\d\d) $/x,
params => [qw( month )],
postprocess => \&_add_year,
},
{
#---DD ---12
length => 5,
regex => qr/^ --- (\d\d) $/x,
params => [qw( day )],
postprocess => [ \&_add_year, \&_add_month ],
},
{
#+[YY]YYYYMMDD +0019850412
#+[YY]YYYY-MM-DD +001985-04-12
length => [qw( 11 13 )],
regex => qr/^ \+ (\d{6}) -?? (\d\d) -?? (\d\d) $/x,
params => [qw( year month day )],
},
{
#+[YY]YYYY-MM +001985-04
length => 10,
regex => qr/^ \+ (\d{6}) - (\d\d) $/x,
params => [qw( year month )],
},
{
#+[YY]YYYY +001985
length => 7,
regex => qr/^ \+ (\d{6}) $/x,
params => [qw( year )],
},
{
#+[YY]YY +0019 (century)
length => 5,
regex => qr/^ \+ (\d{4}) $/x,
params => [qw( year )],
postprocess => \&_normalize_century,
},
{
#YYYYDDD 1985102
#YYYY-DDD 1985-102
length => [qw( 7 8 )],
regex => qr/^ (\d{4}) -?? (\d{3}) $/x,
params => [qw( year day_of_year )],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYDDD 85102
#YY-DDD 85-102
length => [qw( 5 6 )],
regex => qr/^ (\d\d) -?? (\d{3}) $/x,
params => [qw( year day_of_year )],
postprocess => [ \&_fix_2_digit_year ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#-DDD -102
length => 4,
regex => qr/^ - (\d{3}) $/x,
params => [qw( day_of_year )],
postprocess => [ \&_add_year ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#+[YY]YYYYDDD +001985102
#+[YY]YYYY-DDD +001985-102
length => [qw( 10 11 )],
regex => qr/^ \+ (\d{6}) -?? (\d{3}) $/x,
params => [qw( year day_of_year )],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYYYWwwD 1985W155
#YYYY-Www-D 1985-W15-5
length => [qw( 8 10 )],
regex => qr/^ (\d{4}) -?? W (\d\d) -?? (\d) $/x,
params => [qw( year week day_of_week )],
postprocess => [ \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYYYWww 1985W15
#YYYY-Www 1985-W15
length => [qw( 7 8 )],
regex => qr/^ (\d{4}) -?? W (\d\d) $/x,
params => [qw( year week )],
postprocess => [ \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYWwwD 85W155
#YY-Www-D 85-W15-5
length => [qw( 6 8 )],
regex => qr/^ (\d\d) -?? W (\d\d) -?? (\d) $/x,
params => [qw( year week day_of_week )],
postprocess => [ \&_fix_2_digit_year, \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYWww 85W15
#YY-Www 85-W15
length => [qw( 5 6 )],
regex => qr/^ (\d\d) -?? W (\d\d) $/x,
params => [qw( year week )],
postprocess => [ \&_fix_2_digit_year, \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#-YWwwD -5W155
#-Y-Www-D -5-W15-5
length => [qw( 6 8 )],
regex => qr/^ - (\d) -?? W (\d\d) -?? (\d) $/x,
params => [qw( year week day_of_week )],
postprocess => [ \&_fix_1_digit_year, \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#-YWww -5W15
#-Y-Www -5-W15
length => [qw( 5 6 )],
regex => qr/^ - (\d) -?? W (\d\d) $/x,
params => [qw( year week )],
postprocess => [ \&_fix_1_digit_year, \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#-WwwD -W155
#-Www-D -W15-5
length => [qw( 5 6 )],
regex => qr/^ - W (\d\d) -?? (\d) $/x,
params => [qw( week day_of_week )],
postprocess => [ \&_add_year, \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#-Www -W15
length => 4,
regex => qr/^ - W (\d\d) $/x,
params => [qw( week )],
postprocess => [ \&_add_year, \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#-W-D -W-5
length => 4,
regex => qr/^ - W - (\d) $/x,
params => [qw( day_of_week )],
postprocess => [
\&_add_year,
\&_add_week,
\&_normalize_week,
],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#+[YY]YYYYWwwD +001985W155
#+[YY]YYYY-Www-D +001985-W15-5
length => [qw( 11 13 )],
regex => qr/^ \+ (\d{6}) -?? W (\d\d) -?? (\d) $/x,
params => [qw( year week day_of_week )],
postprocess => [ \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#+[YY]YYYYWww +001985W15
#+[YY]YYYY-Www +001985-W15
length => [qw( 10 11 )],
regex => qr/^ \+ (\d{6}) -?? W (\d\d) $/x,
params => [qw( year week )],
postprocess => [ \&_normalize_week ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#hhmmss 232050 - skipped
#hh:mm:ss 23:20:50
length => [qw( 8 9 )],
regex => qr/^ T?? (\d\d) : (\d\d) : (\d\d) $/x,
params => [qw( hour minute second)],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day
],
},
#hhmm 2320 - skipped
#hh 23 -skipped
{
#hh:mm 23:20
length => [qw( 4 5 6 )],
regex => qr/^ T?? (\d\d) :?? (\d\d) $/x,
params => [qw( hour minute )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day
],
},
{
#hhmmss,ss 232050,5
#hh:mm:ss,ss 23:20:50,5
regex =>
qr/^ T?? (\d\d) :?? (\d\d) :?? (\d\d) [\.,] (\d+) $/x,
params => [qw( hour minute second nanosecond)],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_fractional_second
],
},
{
#hhmm,mm 2320,8
#hh:mm,mm 23:20,8
regex => qr/^ T?? (\d\d) :?? (\d\d) [\.,] (\d+) $/x,
params => [qw( hour minute second )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_fractional_minute
],
},
{
#hh,hh 23,3
regex => qr/^ T?? (\d\d) [\.,] (\d+) $/x,
params => [qw( hour minute )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_fractional_hour
],
},
{
#-mmss -2050 - skipped
#-mm:ss -20:50
length => 6,
regex => qr/^ - (\d\d) : (\d\d) $/x,
params => [qw( minute second )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour
],
},
#-mm -20 - skipped
#--ss --50 - skipped
{
#-mmss,s -2050,5
#-mm:ss,s -20:50,5
regex => qr/^ - (\d\d) :?? (\d\d) [\.,] (\d+) $/x,
params => [qw( minute second nanosecond )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour,
\&_fractional_second
],
},
{
#-mm,m -20,8
regex => qr/^ - (\d\d) [\.,] (\d+) $/x,
params => [qw( minute second )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour,
\&_fractional_minute
],
},
{
#--ss,s --50,5
regex => qr/^ -- (\d\d) [\.,] (\d+) $/x,
params => [qw( second nanosecond)],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour,
\&_add_minute,
\&_fractional_second,
],
},
{
#hhmmssZ 232030Z
#hh:mm:ssZ 23:20:30Z
length => [qw( 7 8 9 10 )],
regex => qr/^ T?? (\d\d) :?? (\d\d) :?? (\d\d) Z $/x,
params => [qw( hour minute second )],
extra => { time_zone => 'UTC' },
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
],
},
{
#hhmmss.ssZ 232030.5Z
#hh:mm:ss.ssZ 23:20:30.5Z
regex =>
qr/^ T?? (\d\d) :?? (\d\d) :?? (\d\d) [\.,] (\d+) Z $/x,
params => [qw( hour minute second nanosecond)],
extra => { time_zone => 'UTC' },
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_fractional_second
],
},
{
#hhmmZ 2320Z
#hh:mmZ 23:20Z
length => [qw( 5 6 7 )],
regex => qr/^ T?? (\d\d) :?? (\d\d) Z $/x,
params => [qw( hour minute )],
extra => { time_zone => 'UTC' },
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
],
},
{
#hhZ 23Z
length => [qw( 3 4 )],
regex => qr/^ T?? (\d\d) Z $/x,
params => [qw( hour )],
extra => { time_zone => 'UTC' },
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
],
},
{
#hhmmss[+-]hhmm 152746+0100 152746-0500
#hh:mm:ss[+-]hh:mm 15:27:46+01:00 15:27:46-05:00
length => [qw( 11 12 14 15 )],
regex => qr/^ T?? (\d\d) :?? (\d\d) :?? (\d\d)
([+-] \d\d :?? \d\d) $/x,
params => [qw( hour minute second time_zone )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_normalize_offset,
],
},
{
#hhmmss.ss[+-]hhmm 152746.5+0100 152746.5-0500
#hh:mm:ss.ss[+-]hh:mm 15:27:46.5+01:00 15:27:46.5-05:00
regex => qr/^ T?? (\d\d) :?? (\d\d) :?? (\d\d) [\.,] (\d+)
([+-] \d\d :?? \d\d) $/x,
params => [qw( hour minute second nanosecond time_zone )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_fractional_second,
\&_normalize_offset,
],
},
{
#hhmmss[+-]hh 152746+01 152746-05
#hh:mm:ss[+-]hh 15:27:46+01 15:27:46-05
length => [qw( 9 10 11 12 )],
regex => qr/^ T?? (\d\d) :?? (\d\d) :?? (\d\d)
([+-] \d\d) $/x,
params => [qw( hour minute second time_zone )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_normalize_offset,
],
},
{
#YYYYMMDDThhmmss 19850412T101530
#YYYY-MM-DDThh:mm:ss 1985-04-12T10:15:30
length => [qw( 15 19 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) :?? (\d\d) $/x,
params => [qw( year month day hour minute second )],
extra => { time_zone => 'floating' },
},
{
#YYYYMMDDThhmmss.ss 19850412T101530.123
#YYYY-MM-DDThh:mm:ss.ss 1985-04-12T10:15:30.123
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) :?? (\d\d) [\.,] (\d+) $/x,
params =>
[qw( year month day hour minute second nanosecond )],
extra => { time_zone => 'floating' },
postprocess => [
\&_fractional_second,
],
},
{
#YYYYMMDDThhmmssZ 19850412T101530Z
#YYYY-MM-DDThh:mm:ssZ 1985-04-12T10:15:30Z
length => [qw( 16 20 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) :?? (\d\d) Z $/x,
params => [qw( year month day hour minute second )],
extra => { time_zone => 'UTC' },
},
{
#YYYYMMDDThhmmss.ssZ 19850412T101530.5Z 20041020T101530.5Z
#YYYY-MM-DDThh:mm:ss.ssZ 1985-04-12T10:15:30.5Z 1985-04-12T10:15:30.5Z
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T?? (\d\d) :?? (\d\d) :?? (\d\d) [\.,] (\d+)
Z$/x,
params =>
[qw( year month day hour minute second nanosecond )],
extra => { time_zone => 'UTC' },
postprocess => [
\&_fractional_second,
],
},
{
#YYYYMMDDThhmm[+-]hhmm 19850412T1015+0400
#YYYY-MM-DDThh:mm[+-]hh:mm 1985-04-12T10:15+04:00
length => [qw( 18 22 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) ([+-] \d\d :?? \d\d) $/x,
params => [qw( year month day hour minute time_zone )],
postprocess => \&_normalize_offset,
},
{
#YYYYMMDDThhmmss[+-]hhmm 19850412T101530+0400
#YYYY-MM-DDThh:mm:ss[+-]hh:mm 1985-04-12T10:15:30+04:00
length => [qw( 20 24 25 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) :?? (\d\d) ([+-] \d\d :?? \d\d) $/x,
params => [qw( year month day hour minute second time_zone )],
postprocess => \&_normalize_offset,
},
{
#YYYYMMDDThhmmss.ss[+-]hhmm 19850412T101530.5+0100 20041020T101530.5-0500
regex => qr/^ (\d{4}) (\d\d) (\d\d)
T?? (\d\d) (\d\d) (\d\d) [\.,] (\d+)
([+-] \d\d \d\d) $/x,
params => [
qw( year month day hour minute second nanosecond time_zone )
],
postprocess => [
\&_fractional_second,
\&_normalize_offset,
],
},
{
#YYYY-MM-DDThh:mm:ss.ss[+-]hh 1985-04-12T10:15:30.5+01 1985-04-12T10:15:30.5-05
regex => qr/^ (\d{4}) - (\d\d) - (\d\d)
T?? (\d\d) : (\d\d) : (\d\d) [\.,] (\d+)
([+-] \d\d ) $/x,
params => [
qw( year month day hour minute second nanosecond time_zone )
],
postprocess => [
\&_fractional_second,
\&_normalize_offset,
],
},
{
#YYYYMMDDThhmmss.ss[+-]hh 19850412T101530.5+01 20041020T101530.5-05
regex => qr/^ (\d{4}) (\d\d) (\d\d)
T?? (\d\d) (\d\d) (\d\d) [\.,] (\d+)
([+-] \d\d ) $/x,
params => [
qw( year month day hour minute second nanosecond time_zone )
],
postprocess => [
\&_fractional_second,
\&_normalize_offset,
],
},
{
#YYYY-MM-DDThh:mm:ss.ss[+-]hh:mm 1985-04-12T10:15:30.5+01:00 1985-04-12T10:15:30.5-05:00
regex => qr/^ (\d{4}) - (\d\d) - (\d\d)
T?? (\d\d) : (\d\d) : (\d\d) [\.,] (\d+)
([+-] \d\d : \d\d) $/x,
params => [
qw( year month day hour minute second nanosecond time_zone )
],
postprocess => [
\&_fractional_second,
\&_normalize_offset,
],
},
{
#YYYYMMDDThhmmss[+-]hh 19850412T101530+04
#YYYY-MM-DDThh:mm:ss[+-]hh 1985-04-12T10:15:30+04
length => [qw( 18 22 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) :?? (\d\d) ([+-] \d\d) $/x,
params => [qw( year month day hour minute second time_zone )],
postprocess => \&_normalize_offset,
},
{
#YYYYMMDDThhmm 19850412T1015
#YYYY-MM-DDThh:mm 1985-04-12T10:15
length => [qw( 13 16 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) $/x,
params => [qw( year month day hour minute )],
extra => { time_zone => 'floating' },
},
{
#YYYYMMDDThhmmZ 19850412T1015
#YYYY-MM-DDThh:mmZ 1985-04-12T10:15
length => [qw( 14 17 )],
regex => qr/^ (\d{4}) -?? (\d\d) -?? (\d\d)
T (\d\d) :?? (\d\d) Z $/x,
params => [qw( year month day hour minute )],
extra => { time_zone => 'UTC' },
},
{
#YYYYDDDThhmm 1985102T1015
#YYYY-DDDThh:mm 1985-102T10:15
length => [qw( 12 14 )],
regex => qr/^ (\d{4}) -?? (\d{3}) T
(\d\d) :?? (\d\d) $/x,
params => [qw( year day_of_year hour minute )],
extra => { time_zone => 'floating' },
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYYYDDDThhmmZ 1985102T1015Z
#YYYY-DDDThh:mmZ 1985-102T10:15Z
length => [qw( 13 15 )],
regex => qr/^ (\d{4}) -?? (\d{3}) T
(\d\d) :?? (\d\d) Z $/x,
params => [qw( year day_of_year hour minute )],
extra => { time_zone => 'UTC' },
constructor => [ 'DateTime', 'from_day_of_year' ],
},
{
#YYYYWwwDThhmm[+-]hhmm 1985W155T1015+0400
#YYYY-Www-DThh:mm[+-]hh 1985-W15-5T10:15+04
length => [qw( 18 19 )],
regex => qr/^ (\d{4}) -?? W (\d\d) -?? (\d)
T (\d\d) :?? (\d\d) ([+-] \d{2,4}) $/x,
params => [qw( year week day_of_week hour minute time_zone)],
postprocess => [ \&_normalize_week, \&_normalize_offset ],
constructor => [ 'DateTime', 'from_day_of_year' ],
},
],
parse_time => [
{
#hhmmss 232050
length => [qw( 6 7 )],
regex => qr/^ T?? (\d\d) (\d\d) (\d\d) $/x,
params => [qw( hour minute second )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
],
},
{
#hhmm 2320
length => [qw( 4 5 )],
regex => qr/^ T?? (\d\d) (\d\d) $/x,
params => [qw( hour minute )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
],
},
{
#hh 23
length => [qw( 2 3 )],
regex => qr/^ T?? (\d\d) $/x,
params => [qw( hour )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
],
},
{
#-mmss -2050
length => 5,
regex => qr/^ - (\d\d) (\d\d) $/x,
params => [qw( minute second )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour,
],
},
{
#-mm -20
length => 3,
regex => qr/^ - (\d\d) $/x,
params => [qw( minute )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour,
],
},
{
#--ss --50
length => 4,
regex => qr/^ -- (\d\d) $/x,
params => [qw( second )],
postprocess => [
\&_add_year,
\&_add_month,
\&_add_day,
\&_add_hour,
\&_add_minute,
],
},
],
}
);
sub _fix_1_digit_year {
my %p = @_;
my $year = _base_dt( $p{self} )->year;
$year =~ s/.$//;
$p{parsed}{year} = $year . $p{parsed}{year};
return 1;
}
sub _fix_2_digit_year {
my %p = @_;
# this is a mess because of the need to support parse_* being called
# as a class method
if ( ref $p{self} && exists $p{self}{legacy_year} ) {
if ( $p{self}{legacy_year} ) {
my $cutoff
= exists $p{self}{cut_off_year}
? $p{self}{cut_off_year}
: $p{self}->DefaultCutOffYear;
$p{parsed}{year} += $p{parsed}{year} > $cutoff ? 1900 : 2000;
}
else {
my $century = ( $p{self}{base_datetime} || DateTime->now )
->strftime('%C');
$p{parsed}{year} += $century * 100;
}
}
else {
my $cutoff
= ref $p{self} && exists $p{self}{cut_off_year}
? $p{self}{cut_off_year}
: $p{self}->DefaultCutOffYear;
$p{parsed}{year} += $p{parsed}{year} > $cutoff ? 1900 : 2000;
}
return 1;
}
sub _add_minute {
my %p = @_;
$p{parsed}{minute} = _base_dt( $p{self} )->minute;
return 1;
}
sub _add_hour {
my %p = @_;
$p{parsed}{hour} = _base_dt( $p{self} )->hour;
return 1;
}
sub _add_day {
my %p = @_;
$p{parsed}{day} = _base_dt( $p{self} )->day;
return 1;
}
sub _add_week {
my %p = @_;
$p{parsed}{week} = _base_dt( $p{self} )->week;
return 1;
}
sub _add_month {
my %p = @_;
$p{parsed}{month} = _base_dt( $p{self} )->month;
return 1;
}
sub _add_year {
my %p = @_;
$p{parsed}{year} = _base_dt( $p{self} )->year;
return 1;
}
sub _base_dt {
return $_[0]{base_datetime} if ref $_[0] && $_[0]{base_datetime};
return DateTime->now;
}
sub _fractional_second {
my %p = @_;
## no critic (ValuesAndExpressions::ProhibitMismatchedOperators)
$p{parsed}{nanosecond} = int( ".$p{ parsed }{ nanosecond }" * 10**9 );
return 1;
}
sub _fractional_minute {
my %p = @_;
## no critic (ValuesAndExpressions::ProhibitMismatchedOperators)
$p{parsed}{second} = ".$p{ parsed }{ second }" * 60;
return 1;
}
sub _fractional_hour {
my %p = @_;
## no critic (ValuesAndExpressions::ProhibitMismatchedOperators)
$p{parsed}{minute} = ".$p{ parsed }{ minute }" * 60;
return 1;
}
sub _normalize_offset {
my %p = @_;
$p{parsed}{time_zone} =~ s/://;
if ( length $p{parsed}{time_zone} == 3 ) {
$p{parsed}{time_zone} .= '00';
}
return 1;
}
sub _normalize_week {
my %p = @_;
# See
# https://en.wikipedia.org/wiki/ISO_week_date#Calculating_an_ordinal_or_month_date_from_a_week_date
# for the algorithm we're using here.
my $od = $p{parsed}{week} * 7;
$od += ( exists $p{parsed}{day_of_week} ? $p{parsed}{day_of_week} : 1 );
$od -= DateTime->new(
year => $p{parsed}{year},
month => 1,
day => 4,
)->day_of_week + 3;
my ( $year, $day_of_year );
if ( $od < 1 ) {
$year = $p{parsed}{year} - 1;
$day_of_year = DateTime->new( year => $year )->year_length + $od;
}
else {
my $year_length
= DateTime->new( year => $p{parsed}{year} )->year_length;
if ( $od > $year_length ) {
$year = $p{parsed}{year} + 1;
$day_of_year = $od - $year_length;
}
else {
$year = $p{parsed}{year};
$day_of_year = $od;
}
}
# We need to leave the references in $p{parsed} as is. We cannot create a
# new reference.
$p{parsed}{year} = $year;
$p{parsed}{day_of_year} = $day_of_year;
delete $p{parsed}{week};
delete $p{parsed}{day_of_week};
return 1;
}
sub _normalize_century {
my %p = @_;
$p{parsed}{year} .= '01';
return 1;
}
1;
# ABSTRACT: Parses ISO8601 formats
__END__
=pod
=encoding UTF-8
=head1 NAME
DateTime::Format::ISO8601 - Parses ISO8601 formats
=head1 VERSION
version 0.17
=head1 SYNOPSIS
use DateTime::Format::ISO8601;
my $datetime_str = '2020-07-25T11:32:31';
my $dt = DateTime::Format::ISO8601->parse_datetime($datetime_str);
say $dt;
# This format is ambiguous and could be either a date or time, so use the
# parse_time method.
my $time_str = '113231';
$dt = DateTime::Format::ISO8601->parse_time($time_str);
say $dt;
# or
my $iso8601 = DateTime::Format::ISO8601->new;
$dt = $iso8601->parse_datetime($datetime_str);
say $dt;
$dt = $iso8601->parse_time($time_str);
say $dt;
say DateTime::Format::ISO8601->format_datetime($dt);
=head1 DESCRIPTION
Parses almost all ISO8601 date and time formats. ISO8601 time-intervals will be
supported in a later release.
=head1 METHODS
This class provides the following methods:
=head2 Constructors
=head3 DateTime::Format::ISO8601->new( ... )
Accepts an optional hash.
my $iso8601 = DateTime::Format::ISO8601->new(
base_datetime => $dt,
cut_off_year => 42,
legacy_year => 1,
);
=over 4
=item * base_datetime
A C<DateTime> object that will be used to fill in missing information from
incomplete date/time formats.
This key is optional.
=item * cut_off_year
A integer representing the cut-off point between interpreting 2-digits years as
19xx or 20xx.
2-digit years < cut_off_year will be interpreted as 20xx
2-digit years >= cut_off_year will be untreated as 19xx
This key defaults to the value of C<DefaultCutOffYear>.
=item * legacy_year
A boolean value controlling if a 2-digit year is interpreted as being in the
current century (unless a C<base_datetime> is set) or if C<cut_off_year> should
be used to place the year in either 20xx or 19xx.
If this is true, then the C<cut_off_year> is used. If this is false, then the
year is always interpreted as being in the current century.
This key defaults to the value of C<DefaultLegacyYear>.
=back
=head3 $iso8601->clone
Returns a replica of the given object.
=head2 Object Methods
=head3 $iso8601->base_datetime
Returns a C<DateTime> object if a C<base_datetime> has been set.
=head3 $iso8601->set_base_datetime( object => $object )
Accepts a C<DateTime> object that will be used to fill in missing information
from incomplete date/time formats.
=head3 $iso8601->cut_off_year
Returns a integer representing the cut-off point between interpreting 2-digits
years as 19xx or 20xx.
=head3 $iso8601->set_cut_off_year($int)
Accepts a integer representing the cut-off point between interpreting 2-digits
years as 19xx or 20xx.
2-digit years < legacy_year will be interpreted as 20xx
2-digit years >= legacy_year will be interpreted as 19xx
=head3 $iso8601->legacy_year
Returns a boolean value indicating the 2-digit year handling behavior.
=head3 $iso8601->set_legacy_year($bool)
Accepts a boolean value controlling if a 2-digit year is interpreted as being
in the current century (unless a C<base_datetime> is set) or if C<cut_off_year>
should be used to place the year in either 20xx or 19xx.
=head2 Class Methods
=head3 DateTime::Format::ISO8601->DefaultCutOffYear($int)
Accepts a integer representing the cut-off point for 2-digit years when calling
C<parse_*> as class methods and the default value for C<cut_off_year> when
creating objects. If called with no parameters this method will return the
default value for C<cut_off_year>.
=head3 DateTime::Format::ISO8601->DefaultLegacyYear($bool)
Accepts a boolean value controlling the legacy year behavior when calling
C<parse_*> as class methods and the default value for C<legacy_year> when
creating objects. If called with no parameters this method will return the
default value for C<legacy_year>.
=head2 Parser(s)
These methods may be called as either class or object methods.
=head3 parse_datetime
=head3 parse_time
Please see the L</FORMATS> section.
=head2 Formatter
This may be called as either class or object method.
=head3 format_datetime($dt)
Formats the datetime in an ISO8601-compatible format. This differs from
L<DateTime/iso8601> by including nanoseconds/milliseconds and the correct
timezone offset.
=head1 FORMATS
There are 6 strings that can match against date only or time only formats. The
C<parse_datetime> method will attempt to match these ambiguous strings against
date only formats. If you want to match against the time only formats use the
C<parse_time> method.
=head2 Conventions
=over 4
=item * Expanded ISO8601
These formats are supported with exactly 6 digits for the year. Support for a
variable number of digits will be in a later release.
=item * Precision
If a format doesn't include a year all larger time unit up to and including the
year are filled in using the current date/time or [if set] the C<base_datetime>
object.
=item * Fractional time
There is no limit on the expressed precision.
=back
=head2 Supported via parse_datetime
The supported formats are listed by the section of ISO 8601:2000(E) in which
they appear.
=head3 5.2 Dates
=over 4
=item * 5.2.1.1
=over 8
=item YYYYMMDD
=item YYYY-MM-DD
=back
=item * 5.2.1.2
=over 8
=item YYYY-MM
=item YYYY
=item YY
=back
=item * 5.2.1.3
=over 8
=item YYMMDD
=item YY-MM-DD
=item -YYMM
=item -YY-MM
=item -YY
=item --MMDD
=item --MM-DD
=item --MM
=item ---DD
=back
=item * 5.2.1.4
=over 8
=item +[YY]YYYYMMDD
=item +[YY]YYYY-MM-DD
=item +[YY]YYYY-MM
=item +[YY]YYYY
=item +[YY]YY
=back
=item * 5.2.2.1
=over 8
=item YYYYDDD
=item YYYY-DDD
=back
=item * 5.2.2.2
=over 8
=item YYDDD
=item YY-DDD
=item -DDD
=back
=item * 5.2.2.3
=over 8
=item +[YY]YYYYDDD
=item +[YY]YYYY-DDD
=back
=item * 5.2.3.1
=over 8
=item YYYYWwwD
=item YYYY-Www-D
=back
=item * 5.2.3.2
=over 8
=item YYYYWww
=item YYYY-Www
=item YYWwwD
=item YY-Www-D
=item YYWww
=item YY-Www
=item -YWwwD
=item -Y-Www-D
=item -YWww
=item -Y-Www
=item -WwwD
=item -Www-D
=item -Www
=item -W-D
=back
=item * 5.2.3.4
=over 8
=item +[YY]YYYYWwwD
=item +[YY]YYYY-Www-D
=item +[YY]YYYYWww
=item +[YY]YYYY-Www
=back
=back
=head3 5.3 Time of Day
=over 4
=item * 5.3.1.1 - 5.3.1.3
Values can optionally be prefixed with 'T'.
=item * 5.3.1.1
=over 8
=item hh:mm:ss
=back
=item * 5.3.1.2
=over 8
=item hh:mm
=back
=item * 5.3.1.3 - 5.3.1.4
fractional (decimal) separator maybe either ',' or '.'
=item * 5.3.1.3
=over 8
=item hhmmss,ss
=item hh:mm:ss,ss
=item hhmm,mm
=item hh:mm,mm
=item hh,hh
=back
=item * 5.3.1.4
=over 8
=item -mm:ss
=item -mmss,s
=item -mm:ss,s
=item -mm,m
=item --ss,s
=back
=item * 5.3.3 - 5.3.4.2
Values can optionally be prefixed with 'T'.
=item * 5.3.3
=over 8
=item hhmmssZ
=item hh:mm:ssZ
=item hhmmZ
=item hh:mmZ
=item hhZ
=item hhmmss.ssZ
=item hh:mm:ss.ssZ
=back
=item * 5.3.4.2
=over 8
=item hhmmss[+-]hhmm
=item hh:mm:ss[+-]hh:mm
=item hhmmss[+-]hh
=item hh:mm:ss[+-]hh
=item hhmmss.ss[+-]hhmm
=item hh:mm:ss.ss[+-]hh:mm
=back
=back
=head3 5.4 Combinations of date and time of day
=over 4
=item * 5.4.1
=over 8
=item YYYYMMDDThhmmss
=item YYYY-MM-DDThh:mm:ss
=item YYYYMMDDThhmmssZ
=item YYYY-MM-DDThh:mm:ssZ
=item YYYYMMDDThhmmss[+-]hhmm
=item YYYY-MM-DDThh:mm:ss[+-]hh:mm
=item YYYYMMDDThhmmss[+-]hh
=item YYYY-MM-DDThh:mm:ss[+-]hh
=back
=item * 5.4.2
=over 8
=item YYYYMMDDThhmmss.ss
=item YYYY-MM-DDThh:mm:ss.ss
=item YYYYMMDDThhmmss.ss[+-]hh
=item YYYY-MM-DDThh:mm:ss.ss[+-]hh
=item YYYYMMDDThhmmss.ss[+-]hhmm
=item YYYY-MM-DDThh:mm:ss.ss[+-]hh:mm
=back
=item * 5.4.3
Support for this section is not complete.
=over 8
=item YYYYMMDDThhmm
=item YYYY-MM-DDThh:mm
=item YYYYMMDDThhmmZ
=item YYYY-MM-DDThh:mmZ
=item YYYYDDDThhmm
=item YYYY-DDDThh:mm
=item YYYYDDDThhmmZ
=item YYYY-DDDThh:mmZ
=item YYYYWwwDThhmm[+-]hhmm
=item YYYY-Www-DThh:mm[+-]hh
=back
=back
=head3 5.5 Time-Intervals
These are not currently supported
=head2 Supported via parse_time
=head3 5.3.1.1 - 5.3.1.3
Values can optionally be prefixed with 'T'.
=over 4
=item * 5.3.1.1
=over 8
=item hhmmss
=back
=item * 5.3.1.2
=over 8
=item hhmm
=item hh
=back
=item * 5.3.1.4
=over 8
=item -mmss
=item -mm
=item --ss
=back
=back
=head1 STANDARDS DOCUMENT
=head2 Title
ISO8601:2000(E)
Data elements and interchange formats - information exchange -
Representation of dates and times
Second edition 2000-12-15
=head2 Reference Number
ISO/TC 154 N 362
=head1 CREDITS
Iain 'Spoon' Truskett (SPOON) who wrote L<DateTime::Format::Builder>. That has
grown into I<The Vacuum Energy Powered C<Swiss Army> Katana> of date and time
parsing. This module was inspired by and conceived in honor of Iain's work.
Tom Phoenix (PHOENIX) and PDX.pm for helping me solve the ISO week conversion
bug. Not by fixing the code but motivation me to fix it so I could participate
in a game of C<Zendo>.
Jonathan Leffler (JOHNL) for reporting a test bug.
Kelly McCauley for a patch to add 8 missing formats.
Alasdair Allan (AALLAN) for complaining about excessive test execution time.
Everyone at the DateTime C<Asylum>.
=head1 SEE ALSO
=over 4
=item *
L<DateTime>
=item *
L<DateTime::Format::Builder>
=back
=head1 SUPPORT
Bugs may be submitted at L<https://github.com/houseabsolute/DateTime-Format-ISO8601/issues>.
=head1 SOURCE
The source code repository for DateTime-Format-ISO8601 can be found at L<https://github.com/houseabsolute/DateTime-Format-ISO8601>.
=head1 AUTHORS
=over 4
=item *
Joshua Hoblitt <josh@hoblitt.com>
=item *
Dave Rolsky <autarch@urth.org>
=back
=head1 CONTRIBUTORS
=for stopwords Doug Bell joe Liam Widdowson Thomas Klausner William Ricker
=over 4
=item *
Doug Bell <doug@preaction.me>
=item *
joe <draxil@gmail.com>
=item *
Liam Widdowson <lbw@telstra.com>
=item *
Thomas Klausner <domm@plix.at>
=item *
William Ricker <bill.n1vux@gmail.com>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2025 by Joshua Hoblitt.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
The full text of the license can be found in the
F<LICENSE> file included with this distribution.
=cut
|