/usr/share/perl5/XML/Compile/Util.pm is in libxml-compile-perl 1.58-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Copyrights 2006-2017 by [Mark Overmeer].
# For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.02.
use warnings;
use strict;
package XML::Compile::Util;
use vars '$VERSION';
$VERSION = '1.58';
use base 'Exporter';
my @constants = qw/XMLNS SCHEMA1999 SCHEMA2000 SCHEMA2001 SCHEMA2001i/;
our @EXPORT = qw/pack_type unpack_type/;
our @EXPORT_OK =
( qw/pack_id unpack_id odd_elements even_elements type_of_node
escape duration2secs add_duration/
, @constants
);
our %EXPORT_TAGS = (constants => \@constants);
use constant
{ XMLNS => 'http://www.w3.org/XML/1998/namespace'
, SCHEMA1999 => 'http://www.w3.org/1999/XMLSchema'
, SCHEMA2000 => 'http://www.w3.org/2000/10/XMLSchema'
, SCHEMA2001 => 'http://www.w3.org/2001/XMLSchema'
, SCHEMA2001i => 'http://www.w3.org/2001/XMLSchema-instance'
};
use Log::Report 'xml-compile';
use POSIX qw/mktime/;
sub pack_type($;$)
{ @_==1 ? $_[0]
: !defined $_[0] || !length $_[0] ? $_[1]
: "{$_[0]}$_[1]"
}
sub unpack_type($) { $_[0] =~ m/^\{(.*?)\}(.*)$/ ? ($1, $2) : ('', $_[0]) }
sub pack_id($$) { "$_[0]#$_[1]" }
sub unpack_id($) { split /\#/, $_[0], 2 }
sub odd_elements(@) { my $i = 0; map {$i++ % 2 ? $_ : ()} @_ }
sub even_elements(@) { my $i = 0; map {$i++ % 2 ? () : $_} @_ }
sub type_of_node($)
{ my $node = shift or return ();
pack_type $node->namespaceURI, $node->localName;
}
use constant SECOND => 1;
use constant MINUTE => 60 * SECOND;
use constant HOUR => 60 * MINUTE;
use constant DAY => 24 * HOUR;
use constant MONTH => 30.4 * DAY;
use constant YEAR => 365.256 * DAY;
my $duration = qr/
^ (\-?) P (?:([0-9]+)Y)? (?:([0-9]+)M)? (?:([0-9]+)D)?
(?:T (?:([0-9]+)H)? (?:([0-9]+)M)? (?:([0-9]+(?:\.[0-9]+)?)S)?
)?$/x;
sub duration2secs($)
{ my $stamp = shift or return undef;
$stamp =~ $duration
or error __x"illegal duration format: {d}", d => $stamp;
($1 eq '-' ? -1 : 1)
* ( ($2 // 0) * YEAR
+ ($3 // 0) * MONTH
+ ($4 // 0) * DAY
+ ($5 // 0) * HOUR
+ ($6 // 0) * MINUTE
+ ($7 // 0) * SECOND
);
}
sub add_duration($;$)
{ my $stamp = shift or return;
my ($secs, $min, $hour, $mday, $mon, $year) = gmtime(shift // time);
$stamp =~ $duration
or error __x"illegal duration format: {d}", d => $stamp;
my $sign = $1 eq '-' ? -1 : 1;
mktime
$secs + $sign*($7//0)
, $min + $sign*($6//0)
, $hour + $sign*($5//0)
, $mday + $sign*($4//0)
, $mon + $sign*($3//0)
, $year + $sign*($2//0)
}
1;
|