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
|
package Types::XSD;
use 5.008003;
use strict;
use warnings;
use utf8;
BEGIN {
$Types::XSD::AUTHORITY = 'cpan:TOBYINK';
$Types::XSD::VERSION = '0.008';
}
use B qw(perlstring);
use Carp;
use DateTimeX::Auto qw( dt dur );
use DateTime::Incomplete ();
use Types::XSD::Lite 0.007 -base, -utils, -declare => qw(
Name NmToken NmTokens NCName Id IdRef IdRefs Entity Entities
QName Notation Duration DateTime Time Date GYearMonth
GYear GMonthDay GDay GMonth
DateTimeStamp YearMonthDuration DayTimeDuration
);
use Types::Standard 2.000000 qw( StrMatch );
use XML::RegExp;
push( our(@EXPORT_OK), qw( dt_cmp dur_cmp dt_parse dur_parse ) );
BEGIN {
*create_range_check = \&Types::XSD::Lite::create_range_check;
*quick_range_check = \&Types::XSD::Lite::quick_range_check;
*hex_length = \&Types::XSD::Lite::hex_length;
*b64_length = \&Types::XSD::Lite::b64_length;
*with_facets = \&Types::XSD::Lite::with_facets;
};
use constant MAGIC_DATES => map dt($_), qw( 1696-09-01 1697-02-01 1903-03-01 1903-07-01 );
use constant MAGIC_TABLE => +{ "-1-1-1-1" => -1, "0000" => 0, "1111" => 1 };
sub dur_cmp {
my @durations = do {
local $SIG{__WARN__} = sub {};
map ref($_) ? $_ : dur($_), @_[0,1];
};
my $result = join q[], map "DateTime::Duration"->compare(@durations, $_), MAGIC_DATES;
return MAGIC_TABLE->{$result} if exists MAGIC_TABLE->{$result};
return undef;
}
our @patterns; my $pattern_i = -1;
our @assertions; my $assertion_i = -1;
my %facets = (
explicitTimezone => sub {
my ($o, $var) = @_;
return unless exists $o->{explicitTimezone};
my $etz = delete $o->{explicitTimezone};
return sprintf('%s =~ m/(?:Z|(?:[+-]\d{2}:?\d{2}))$/xism', $var)
if lc($etz) eq 'required';
return sprintf('%s !~ m/(?:Z|(?:[+-]\d{2}:?\d{2}))$/xism', $var)
if lc($etz) eq 'prohibited';
return '!!1'
if lc($etz) eq 'optional';
croak "explicitTimezone facet expected to be 'required', 'prohibited' or 'optional'"
},
maxInclusiveDuration => sub {
my ($o, $var) = @_;
return unless exists $o->{maxInclusive};
sprintf('(Types::XSD::dur_cmp(%s, %s)||0) <= 0', $var, perlstring delete $o->{maxInclusive});
},
minInclusiveDuration => sub {
my ($o, $var) = @_;
return unless exists $o->{minInclusive};
sprintf('(Types::XSD::dur_cmp(%s, %s)||0) >= 0', $var, perlstring delete $o->{minInclusive});
},
maxExclusiveDuration => sub {
my ($o, $var) = @_;
return unless exists $o->{maxExclusive};
sprintf('(Types::XSD::dur_cmp(%s, %s)||0) < 0', $var, perlstring delete $o->{maxExclusive});
},
minExclusiveDuration => sub {
my ($o, $var) = @_;
return unless exists $o->{minExclusive};
sprintf('(Types::XSD::dur_cmp(%s, %s)||0) > 0', $var, perlstring delete $o->{minExclusive});
},
maxInclusiveDT => sub {
my ($o, $var) = @_;
return unless exists $o->{maxInclusive};
sprintf('(Types::XSD::dt_cmp(%s, %s, %s)||0) <= 0', perlstring($Types::XSD::Lite::T), $var, perlstring delete $o->{maxInclusive});
},
minInclusiveDT => sub {
my ($o, $var) = @_;
return unless exists $o->{minInclusive};
sprintf('(Types::XSD::dt_cmp(%s, %s, %s)||0) >= 0', perlstring($Types::XSD::Lite::T), $var, perlstring delete $o->{minInclusive});
},
maxExclusiveDT => sub {
my ($o, $var) = @_;
return unless exists $o->{maxExclusive};
sprintf('(Types::XSD::dt_cmp(%s, %s, %s)||0) < 0', perlstring($Types::XSD::Lite::T), $var, perlstring delete $o->{maxExclusive});
},
minExclusiveDT => sub {
my ($o, $var) = @_;
return unless exists $o->{minExclusive};
sprintf('(Types::XSD::dt_cmp(%s, %s, %s)||0) > 0', perlstring($Types::XSD::Lite::T), $var, perlstring delete $o->{minExclusive});
},
);
$Types::XSD::Lite::facets{$_} = $facets{$_} for keys %facets;
our @dtarr;
my $i = -1;
our $base_datetime = "DateTime"->new(year => 2000, month => 1, day => 1); # leap year, 31 day month
our %dt_regexps;
sub dt_maker {
my ( $name, $regexp, @fields ) = @_;
my $j = ++$i;
$dtarr[$j] = $regexp;
my $inlined = sub {
my $var = $_[1];
my @code;
push @code, "do { my \$ok = 1;";
push @code, sprintf(
'my (%s) = (%s =~ $Types::XSD::dtarr[%d]) or --$ok;',
join(', ', map "\$$_", @fields),
$var,
$j,
);
push @code, sprintf(
'$ok and eval { "DateTime::Incomplete"->new(%s)->to_datetime(base => $Types::XSD::base_datetime) };',
join(', ', map "$_ => \$$_", @fields),
);
push @code, "}";
"@code";
};
my $type = declare $name,
with_facets [qw( pattern whiteSpace enumeration maxInclusiveDT maxExclusiveDT minInclusiveDT minExclusiveDT explicitTimezone )],
constraint => eval sprintf( 'sub { %s }', $inlined->(undef, '$_') ),
inlined => $inlined;
$dt_regexps{$type} = [ $regexp, @fields ];
}
sub dt_parse {
my ($type, $a) = @_;
my ($re, @fields) = @{ $dt_regexps{$type} };
my %d;
@d{@fields} = ($a =~ $re);
!defined($d{$_}) && delete($d{$_}) for @fields;
"DateTime::Incomplete"->new(%d);
}
sub dur_parse {
goto \&DateTimeX::Auto::dur;
}
{
my %cache;
sub _detect_type {
my ($lib, $v) = @_;
for my $type (qw(DateTime Time Date GYearMonth GYear GMonthDay GDay GMonth)) {
return $type if $lib->get_type($type)->check($v);
}
return $lib->get_type('DateTime');
}
sub dt_cmp {
my ($type, $a, $b) = @_;
$type = __PACKAGE__->_detect_type($a) unless $type;
$type = __PACKAGE__->get_type($type) unless ref $type;
my $A = eval($cache{"$type;a"} ||= $type->inline_check('$a'));
my $B = eval($cache{"$type;b"} ||= $type->inline_check('$b'));
$A <=> $B;
}
}
declare Name,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::Name)\z}sm];
declare NmToken,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::NmToken)\z}sm];
declare NmTokens,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::NmToken)(?:\s+$XML::RegExp::NmToken)*\z}sm];
declare NCName,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::NCName)\z}sm];
declare Id,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as NCName;
declare IdRef,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as NCName;
declare IdRefs,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::NCName)(?:\s+$XML::RegExp::NCName)*\z}sm];
declare Entity,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as NCName;
declare Entities,
with_facets [qw( length minLength maxLength pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::NCName)(?:\s+$XML::RegExp::NCName)*\z}sm];
declare QName,
with_facets [qw( lengthQName minLengthQName maxLengthQName pattern enumeration whiteSpace )],
as StrMatch[qr{\A(?:$XML::RegExp::QName)\z}sm];
declare Notation,
with_facets [qw( lengthQName minLengthQName maxLengthQName pattern enumeration whiteSpace )],
as QName;
declare Duration,
with_facets [qw( pattern whiteSpace enumeration maxInclusiveDuration maxExclusiveDuration minInclusiveDuration minExclusiveDuration )],
as StrMatch[
qr{\A
-?
P
(?:[0-9]+Y)?
(?:[0-9]+M)?
(?:[0-9]+D)?
(?:T
(?:[0-9]+H)?
(?:[0-9]+M)?
(?:[0-9]+(?:\.[0-9]+)?S)?
)?
\z}xism
];
declare YearMonthDuration,
with_facets [qw( pattern whiteSpace enumeration maxInclusiveDuration maxExclusiveDuration minInclusiveDuration minExclusiveDuration )],
as Duration->parameterize(pattern => qr{\A[^DT]*\z}i);
declare DayTimeDuration,
with_facets [qw( pattern whiteSpace enumeration maxInclusiveDuration maxExclusiveDuration minInclusiveDuration minExclusiveDuration )],
as Duration->parameterize(pattern => qr{\A[^YM]*[DT].*\z}i);
dt_maker(
DateTime => qr{\A
(-?[0-9]{4,})
-
([0-9]{2})
-
([0-9]{2})
T
([0-9]{2})
:
([0-9]{2})
:
([0-9]{2}(?:\.[0-9]+)?)
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( year month day hour minute second time_zone ),
);
dt_maker(
DateTimeStamp => qr{\A
(-?[0-9]{4,})
-
([0-9]{2})
-
([0-9]{2})
T
([0-9]{2})
:
([0-9]{2})
:
([0-9]{2}(?:\.[0-9]+)?)
(Z | (?: [+-]\d{2}:?\d{2} ))
\z}xism,
qw( year month day hour minute second time_zone ),
);
dt_maker(
Time => qr{\A
([0-9]{2})
:
([0-9]{2})
:
([0-9]{2}(?:\.[0-9]+)?)
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( hour minute second time_zone ),
);
dt_maker(
Date => qr{\A
(-?[0-9]{4,})
-
([0-9]{2})
-
([0-9]{2})
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( year month day time_zone ),
);
dt_maker(
GYearMonth => qr{\A
(-?[0-9]{4,})
-
([0-9]{2})
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( year month time_zone ),
);
dt_maker(
GYear => qr{\A
(-?[0-9]{4,})
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( year time_zone ),
);
dt_maker(
GMonthDay => qr{\A
-
-
([0-9]{2})
-
([0-9]{2})
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( month day time_zone ),
);
dt_maker(
GDay => qr{\A
-
-
-
([0-9]{2})
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( day time_zone ),
);
dt_maker(
GMonth => qr{\A
-
-
([0-9]{2})
(Z | (?: [+-]\d{2}:?\d{2} ))?
\z}xism,
qw( month time_zone ),
);
__PACKAGE__->meta->make_immutable;
__END__
=pod
=encoding utf-8
=head1 NAME
Types::XSD - type constraints based on XML schema datatypes
=head1 SYNOPSIS
package Person;
use Moo;
use Types::XSD qw( PositiveInteger String );
has name => (is => "ro", isa => String[ minLength => 1 ]);
has age => (is => "ro", isa => PositiveInteger);
=head1 DESCRIPTION
Types::XSD is a type constraint library inspired by XML Schema, and built
with L<Type::Library>. It can be used as a type constraint library for
L<Moo>, L<Mouse> or L<Moose>, or used completely independently of any OO
framework.
This module is an extension of L<Types::XSD::Lite> (which has fewer type
constraints, but fewer dependencies). For completeness, the type constraints
and other features inherited from Types::XSD::Lite are documented below
too.
=head2 Type Constraints
This module defines the following type constraints based on the data types
defined in L<XML Schema|http://www.w3.org/TR/xmlschema-2/>. (The names of
the type constraints are the same as the XML Schema data types, but
capitalization often differs.)
I've added some quick explainations of what each type is, but for details,
see the XML Schema specification.
=over
=item C<< AnyType >>
As per C<Any> from L<Types::Standard>.
=item C<< AnySimpleType >>
As per C<Value> from L<Types::Standard>.
=item C<< String >>
As per C<Str> from L<Types::Standard>.
=item C<< NormalizedString >>
A string containing no line breaks, carriage returns or tabs.
=item C<< Token >>
Like C<NormalizedString>, but also no leading or trailing space, and no
doubled spaces (i.e. not C<< /\s{2,}/ >>).
=item C<< Language >>
An RFC 3066 language code.
=item C<< Name >>
Something that could be a valid XML element or attribute name. These roughly
correspond to Perl identifiers but may also contain colons, hyphens and stops.
(Digits, hyphens and stops are not allowed as the first character.)
=item C<< NmToken >>
Slightly looser version of C<Name>; allows digits, hyphens and stops in the
first character.
=item C<< NmTokens >>
Space-separated list of C<NmToken>.
=item C<< NCName >>
Slightly tighter vesion of C<Name>; disallows colons.
=item C<< Id >>
Effectively the same as C<NCName>.
=item C<< IdRef >>
Effectively the same as C<NCName>.
=item C<< IdRefs >>
Space-separated list of C<IdRef>.
=item C<< Entity >>
Effectively the same as C<NCName>.
=item C<< Entities >>
Space-separated list of C<Entity>.
=item C<< Boolean >>
Allows C<< "true" >>, C<< "false" >>, C<< "1" >> and C<< "0" >>
(case-insensitively).
Gotcha: The string C<< "false" >> evaluates to true in Perl. You probably
want to use C<< Bool >> from L<Types::Standard> instead.
=item C<< Base64Binary >>
Strings which are valid Base64 data. Allows whitespace.
Gotcha: If you parameterize this with C<length>, C<maxLength> or C<minLength>,
it is the length of the I<decoded> string which will be checked.
=item C<< HexBinary >>
Strings which are valid hexadecimal data. Disallows whitespace; disallows
leading C<< 0x >>.
Gotcha: If you parameterize this with C<length>, C<maxLength> or C<minLength>,
it is the length of the I<decoded> string which will be checked.
=item C<< Float >>
As per C<Num> from L<Types::Standard>.
=item C<< Double >>
As per C<Num> from L<Types::Standard>.
=item C<< AnyURI >>
Any absolute I<< or relative >> URI. Effectively, any string at all!
=item C<< QName >>
An XML QName; something that could be used as a valid element name in a
namespaced XML document.
Gotcha: while C<length>, C<maxLength> and C<minLength> are allowed facets for
parameterization, they are silently ignored, as per the specification!
=item C<< Notation >>
Effectively the same as C<QName>. According to XML Schema, this is I<always>
supposed to be parameterized with an enumeration. But we don't enforce that.
Gotcha: while C<length>, C<maxLength> and C<minLength> are allowed facets for
parameterization, they are silently ignored, as per the specification!
=item C<< Decimal >>
Numbers possibly including a decimal point, but not allowing exponential
notation (e.g. C<< "3.14e-3" >>).
=item C<< Integer >>
As per C<Int> from L<Types::Standard>.
=item C<< NonPositiveInteger >>
An C<Integer> 0 or below.
=item C<< NegativeInteger >>
An C<Integer> -1 or below.
=item C<< Long >>
An C<Integer> between -9223372036854775808 and 9223372036854775807 (inclusive).
=item C<< Int >>
An C<Integer> between -2147483648 and 2147483647 (inclusive).
=item C<< Short >>
An C<Integer> between -32768 and 32767 (inclusive).
=item C<< Byte >>
An C<Integer> between -128 and 127 (inclusive).
=item C<< NonNegativeInteger >>
An C<Integer> 0 or above.
=item C<< PositiveInteger >>
An C<Integer> 1 or above.
=item C<< UnsignedLong >>
A C<NonNegativeInteger> between 0 and 18446744073709551615 (inclusive).
=item C<< UnsignedInt >>
A C<NonNegativeInteger> between 0 and 4294967295 (inclusive).
=item C<< UnsignedShort >>
A C<NonNegativeInteger> between 0 and 65535 (inclusive).
=item C<< UnsignedByte >>
A C<NonNegativeInteger> between 0 and 255 (inclusive).
=item C<< Duration >>
An ISO 8601 duration.
=item C<< YearMonthDuration >>
An ISO 8601 duration restricted to cover only years and months.
=item C<< DayTimeDuration >>
An ISO 8601 duration restricted to cover only days, hours, minutes and
seconds. (Note that this still permits durations of many years, as the
days component is an arbitrary non-negative integer.)
=item C<< DateTime >>
An ISO 8601 datetime with optional timezone.
=item C<< DateTimeStamp >>
An ISO 8601 datetime with required timezone.
=item C<< Time >>
An ISO 8601 time with optional timezone.
=item C<< Date >>
An ISO 8601 date with optional timezone.
=item C<< GYearMonth >>
An year-month pair with optional timezone.
=item C<< GYear >>
An year with optional timezone.
=item C<< GMonthDay >>
An month-day pair with optional timezone.
=item C<< GDay >>
An day with optional timezone.
=item C<< GMonth >>
An month with optional timezone.
=back
=head2 Parameters
Datatypes can be parameterized using the facets defined by XML Schema. For
example:
use Types::XSD qw( String Decimal PositiveInteger Token );
my @sizes = qw( XS S M L XL XXL );
has name => (is => "ro", isa => String[ minLength => 1 ]);
has price => (is => "ro", isa => Decimal[ fractionDigits => 2 ]);
has rating => (is => "ro", isa => PositiveInteger[ maxInclusive => 5 ]);
has size => (is => "ro", isa => Token[ enumeration => \@sizes ]);
The following facets exist, but not all facets are supported for all
datatypes. (The module will croak if you try to use an unsupported facet.)
=over
=item C<< enumeration >>
An arrayref of allowable values. You should probably use L<Type::Tiny::Enum>
instead.
=item C<< pattern >>
A regular expression that the value is expected to conform to. Use a normal
Perl quoted regexp:
Token[ pattern => qr{^[a-z]+$} ]
=item C<< whiteSpace >>
The C<whiteSpace> facet is ignored as I'm not entirely sure what it should
do. It perhaps makes sense for coercions, but this module doesn't define any
coercions.
=item C<< assertions >>
An arrayref of arbitrary additional restrictions, expressed as strings of
Perl code or coderefs operating on C<< $_ >>.
For example:
Integer[
assertions => [
'$_ % 3 == 0', # multiple of three, and...
sub { is_nice($_) }, # is nice (whatever that means)
],
],
Strings of Perl code will result in faster-running type constraints.
=item C<< length >>, C<< maxLength >>, C<< minLength >>
Restrict the length of a value. For example C<< Integer[length=>2] >> allows
C<10>, C<99> and C<-1>, but not C<100>, C<9> or C<-10>.
Types::XSD won't prevent you from making ridiculous constraints such as
C<< String[ maxLength => 1, minLength => 2 ] >>.
Note that on C<HexBinary> and C<Base64Binary> types, the lengths apply to
the decoded string. Length restrictions are silently ignored for C<QName>
and C<Notation> because the W3C doesn't think you should care what length
these datatypes are.
=item C<< maxInclusive >>, C<< minInclusive >>, C<< maxExclusive >>, C<< minExclusive >>
Supported for numeric types and datetime/duration-related types.
Note that to be super-correct, the C<< {max,min}{Inclusive,Exclusive} >>
facets for numeric types are performed by passing the numbers through
L<Math::BigInt> or L<Math::BigFloat>, so may be a little slow.
=item C<< totalDigits >>
For a decimal (or type derived from decimals) specifies that the total number
of digits for the value must be at most this number. Given
C<< Decimal[ totalDigits => 3 ] >>, C<1.23>, C<12.3>, C<123>, C<1.2> and C<1>
are all allowable; C<1.234> is not. C<1.230> is also not, but this may change
in a future version.
=item C<< fractionDigits >>
Like C<totalDigits> but ignores digits before the decimal point.
=item C<< explicitTimezone >>
May be C<< "optional" >>, C<< "prohibited" >> or C<< "required" >>. For
example:
Time[ explicitTimezone => "prohibited" ]
=back
=head2 Functions
This module also exports some convenience functions:
=over
=item C<< dur_parse($str) >>
Parse an xsd:duration string, returning a L<DateTime::Duration>.
=item C<< dur_cmp($a, $b) >>
Compare two strings conforming to the xsd:duration datatype to indicate
which is the longer duration.
Returns -1 if $a is shorter. Returns 1 if $b is shorter. Returns 0 if the
durations are identical. Returns undef if the comparison is indeterminate;
for example, "P1Y" (one year) and "P365D" (365 days) are not necessarily
identical - in leap years "P365D" is shorter.
=item C<< dt_cmp($type, $a, $b) >>
Compare two datetime-like strings. For example, two C<gYearMonth> strings
can be compared using:
dt_cmp(GYearMonth, "2009-02", "2010-10");
Both strings are expected to conform to the same datatype. It doesn't make
much sense to compare them otherwise.
=item C<< dt_parse($type, $str) >>
Parse a datetime-like string, returning a L<DateTime::Incomplete> object.
Note that L<DateTime::Incomplete> objects are always returned, even if the
datetime is potentially complete.
=back
=head1 BUGS
Please report any bugs to
L<http://rt.cpan.org/Dist/Display.html?Queue=Types-XSD>.
=head1 SEE ALSO
L<Type::Tiny>, L<Types::XSD::Lite>, L<Types::Standard>.
=over
=item *
L<http://www.w3.org/TR/xmlschema-2/> Datatypes in XML Schema 1.0
=item *
L<http://www.w3.org/TR/xmlschema11-2/> Datatypes in XML Schema 1.1
=back
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2013-2014, 2021 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|