/usr/share/perl5/XML/Dumper.pm is in libxml-dumper-perl 0.81-1.
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 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 | # ============================================================
# XML::
# ____
# | _ \ _ _ _ __ ___ _ __ ___ _ __
# | | | | | | | '_ ` _ \| '_ \ / _ \ '__|
# | |_| | |_| | | | | | | |_) | __/ |
# |____/ \__,_|_| |_| |_| .__/ \___|_|
# |_|
# Perl module for dumping Perl objects from/to XML
# ============================================================
=head1 NAME
XML::Dumper - Perl module for dumping Perl objects from/to XML
=head1 SYNOPSIS
# ===== Using an object
use XML::Dumper;
$dump = new XML::Dumper;
$xml = $dump->pl2xml( $perl );
$perl = $dump->xml2pl( $xml );
$dump->pl2xml( $perl, "my_perl_data.xml.gz" );
# ===== Using function calls
use XML::Dumper;
$xml = pl2xml( $perl );
$perl = xml2pl( $xml );
=head1 EXTENDED SYNOPSIS
use XML::Dumper;
my $dump = new XML::Dumper;
my $perl = '';
my $xml = '';
# ===== Convert Perl code to XML
$perl = [
{
fname => 'Fred',
lname => 'Flintstone',
residence => 'Bedrock'
},
{
fname => 'Barney',
lname => 'Rubble',
residence => 'Bedrock'
}
];
$xml = $dump->pl2xml( $perl );
# ===== Dump to a file
my $file = "dump.xml";
$dump->pl2xml( $perl, $file );
# ===== Convert XML to Perl code
$xml = q|
<perldata>
<arrayref>
<item key="0">
<hashref>
<item key="fname">Fred</item>
<item key="lname">Flintstone</item>
<item key="residence">Bedrock</item>
</hashref>
</item>
<item key="1">
<hashref>
<item key="fname">Barney</item>
<item key="lname">Rubble</item>
<item key="residence">Bedrock</item>
</hashref>
</item>
</arrayref>
</perldata>
|;
my $perl = $dump->xml2pl( $xml );
# ===== Convert an XML file to Perl code
my $perl = $dump->xml2pl( $file );
# ===== And serialize Perl code to an XML file
$dump->pl2xml( $perl, $file );
# ===== USE COMPRESSION
$dump->pl2xml( $perl, $file.".gz" );
# ===== INCLUDE AN IN-DOCUMENT DTD
$dump->dtd;
my $xml_with_dtd = $dump->pl2xml( $perl );
# ===== USE EXTERNAL DTD
$dump->dtd( $file, $url );
my $xml_with_link_to_dtd = $dump->pl2xml( $perl );
=head1 DESCRIPTION
XML::Dumper dumps Perl data to XML format. XML::Dumper can also read XML data
that was previously dumped by the module and convert it back to Perl. You can
use the module read the XML from a file and write the XML to a file. Perl
objects are blessed back to their original packaging; if the modules are
installed on the system where the perl objects are reconstituted from xml, they
will behave as expected. Intuitively, if the perl objects are converted and
reconstituted in the same environment, all should be well. And it is.
Additionally, because XML benefits so nicely from compression, XML::Dumper
understands gzipped XML files. It does so with an optional dependency on
Compress::Zlib. So, if you dump a Perl variable with a file that has an
extension of '.xml.gz', it will store and compress the file in gzipped format.
Likewise, if you read a file with the extension '.xml.gz', it will uncompress
the file in memory before parsing the XML back into a Perl variable.
Another fine challenge that this module rises to meet is that it understands
circular definitions and multiple references to a single object. This includes
doubly-linked lists, circular references, and the so-called 'Flyweight' pattern of
Object Oriented programming. So it can take the gnarliest of your perl data, and
should do just fine.
One caveat; XML::Dumper does not handle binary data. There have been
discussions in the expat mailing list archives discussing the challenges
associated with encoding binary data with XML. I chose the cowardly path
of making the problem a non-issue by not addressing it. To store binary
data, one could encode the data into ASCII before encapsulating the data
as XML, and then reverse the process to restore the data. There are several
Perl modules that one can use for this, Convert::UU, for example.
=head2 FUNCTIONS AND METHODS
=over 4
=cut
package XML::Dumper;
require 5.005_62;
use strict;
use warnings;
require Exporter;
use XML::Parser;
use overload;
our @ISA = qw( Exporter );
our %EXPORT_TAGS = ( );
our @EXPORT_OK = ( );
our @EXPORT = qw( xml2pl pl2xml xml_compare xml_identity );
our $VERSION = '0.81';
our $COMPRESSION_AVAILABLE;
BEGIN {
eval { require Compress::Zlib; };
if( $@ ) {
$COMPRESSION_AVAILABLE = 0;
} else {
$COMPRESSION_AVAILABLE = 1;
}
}
our $dump = new XML::Dumper;
# ============================================================
sub new {
# ============================================================
=item * new() - XML::Dumper constructor.
Creates a lean, mean, XML dumping machine. It's also completely
at your disposal.
=cut
# ------------------------------------------------------------
my ($class) = map { ref || $_ } shift;
my $self = bless {}, $class;
$self->init( @_ );
return $self;
}
# ============================================================
sub init {
# ============================================================
my $self = shift;
$self->{ perldata } = {};
$self->{ xml } = {};
$self->{ xml_parser_params } = { @_ };
1;
}
# ============================================================
sub dtd {
# ============================================================
=item * dtd -
Generates a Document Type Dictionary for the 'perldata' data
type. The default behaviour is to embed the DTD in the XML,
thereby creating valid XML. Given a filename, the DTD will be
written out to that file and the XML document for your Perl data
will link to the file. Given a filename and an URL, the DTD will
be written out the file and the XML document will link to the URL.
XML::Dumper doesn't try really hard to determine where your DTD's
ought to go or relative paths or anything, so be careful with
what arguments you supply this method, or just go with the default
with the embedded DTD. Between DTD's and Schemas, the potential
for more free-form data to be imported and exported becomes
feasible.
Usage:
dtd(); # Causes XML to include embedded DTD
dtd( $file ); # DTD saved to $file; XML will link to $file
dtd( $file, $url ); # DTD saved to $file; XML will link to $url
dtd( 0 ); # Prevents XML from including embedded DTD
=cut
# ------------------------------------------------------------
my $self = ( ref $_[0] && (ref $_[0]) =~ /XML::Dumper/ ) ? shift : $dump;
my $file = shift;
my $url = shift;
my $dtd = qq{<!ELEMENT scalar (#PCDATA)>
<!ELEMENT scalarref (#PCDATA)>
<!ATTLIST scalarref
blessed_package CDATA #IMPLIED
memory_address CDATA #IMPLIED>
<!ELEMENT arrayref (item*)>
<!ATTLIST arrayref
blessed_package CDATA #IMPLIED
memory_address CDATA #IMPLIED>
<!ELEMENT hashref (item*)>
<!ATTLIST hashref
blessed_package CDATA #IMPLIED
memory_address CDATA #IMPLIED>
<!ELEMENT item (#PCDATA|scalar|scalarref|arrayref|hashref)*>
<!ATTLIST item
key CDATA #REQUIRED
defined CDATA #IMPLIED>
<!ELEMENT perldata (scalar|scalarref|arrayref|hashref)*>
};
if( defined $file && $file ) {
open DTD, ">$file" or die $!;
print DTD $dtd;
close DTD;
$url = defined $url ? $url : $file;
$self->{ dtd } = qq{
<!DOCTYPE perldata SYSTEM "$url">
};
} elsif( not defined $file ) {
$self->{ dtd } = join( "\n",
"<?xml version=\"1.0\"?>",
"<!DOCTYPE perldata [",
( map { /^\t/ ? $_ : " $_" } split /\n/, $dtd ),
']>',
'');
} else {
delete $self->{ dtd };
return;
}
$self->{ dtd };
}
# ============================================================
sub dump {
# ============================================================
my $self = shift;
my $ref = shift;
my $indent = shift;
my $string = '';
# ===== HANDLE REFERENCE DUMPING
if( ref $ref ) {
no warnings;
local $_ = ref( $ref );
my $class = '';
my $address = '';
my $reused = '';
# ===== HANDLE THE VARIETY OF THINGS A PERL REFERENCE CAN REFER TO
REFERENCE: {
# ----------------------------------------
OBJECT: {
# ----------------------------------------
last OBJECT if /^(?:SCALAR|HASH|ARRAY)$/;
$class = $_;
$class = xml_escape( $class );
($_,$address) = overload::StrVal( $ref ) =~ /$class=([^(]+)\(([x0-9A-Fa-f]+)\)/;
}
# ----------------------------------------
HAS_MEMORY_ADDRESS: {
# ----------------------------------------
# References which refer to the same memory space point to the
# same thing
last HAS_MEMORY_ADDRESS if( $class );
($_,$address) = overload::StrVal( $ref ) =~ /([^(]+)\(([x0-9A-Fa-f]+)\)/;
}
$reused = exists( $self->{ xml }{ $address } );
# ----------------------------------------
if( /^SCALAR$/ ) {
# ----------------------------------------
my $type =
"<scalarref".
($class ? " blessed_package=\"$class\"" : '' ) .
($address ? " memory_address=\"$address\"" : '' ) .
( defined $$ref ? '' : " defined=\"false\"" ) .
">";
$self->{ xml }{ $address }++ if( $address );
$string = "\n" . " " x $indent . $type . ($reused ? '' : xml_escape($$ref)) . "</scalarref>";
last REFERENCE;
}
# ----------------------------------------
if( /^HASH$/ ) {
# ----------------------------------------
$self->{ xml }{ $address }++ if( $address );
my $type =
"<hashref".
($class ? " blessed_package=\"$class\"" : '' ).
($address && $self->{ xml }{ $address } ? " memory_address=\"$address\"" : '' ).
">";
$string = "\n" . " " x $indent . $type;
if( not $reused ) {
$indent++;
foreach my $key (sort keys(%$ref)) {
my $type =
"<item " .
"key=\"" . xml_escape( $key ) . "\"" .
( defined $ref->{ $key } ? '' : " defined=\"false\"" ) .
">";
$string .= "\n" . " " x $indent . $type;
if (ref($ref->{$key})) {
$string .= $self->dump( $ref->{$key}, $indent+1);
$string .= "\n" . " " x $indent . "</item>";
} else {
$string .= xml_escape($ref->{$key}) . "</item>";
}
}
$indent--;
}
$string .= "\n" . " " x $indent . "</hashref>";
last REFERENCE;
}
# ----------------------------------------
if( /^ARRAY$/ ) {
# ----------------------------------------
my $type =
"<arrayref".
($class ? " blessed_package=\"$class\"" : '' ).
($address ? " memory_address=\"$address\"" : '' ).
">";
$string .= "\n" . " " x $indent . $type;
$self->{ xml }{ $address }++ if( $address );
if( not $reused ) {
$indent++;
for (my $i=0; $i < @$ref; $i++) {
my $defined;
my $type =
"<item " .
"key=\"" . xml_escape( $i ) . "\"" .
( defined $ref->[ $i ] ? '' : " defined=\"false\"" ) .
">";
$string .= "\n" . " " x $indent . $type;
if (ref($ref->[$i])) {
$string .= $self->dump($ref->[$i], $indent+1);
$string .= "\n" . " " x $indent . "</item>";
} else {
$string .= xml_escape($ref->[$i]) . "</item>";
}
}
$indent--;
}
$string .= "\n" . " " x $indent . "</arrayref>";
last REFERENCE;
}
}
# ===== HANDLE SCALAR DUMPING
} else {
my $type =
"<scalar".
( defined $ref ? '' : " defined=\"false\"" ) .
">";
$string .= "\n" . " " x $indent . $type . xml_escape( $ref ) . "</scalar>";
}
return( $string );
}
# ============================================================
sub perl2xml {
# ============================================================
pl2xml( @_ );
}
# ============================================================
sub pl2xml {
# ============================================================
=item * pl2xml( $xml, [ $file ] ) -
(Also perl2xml(), for those who enjoy readability over brevity).
Converts Perl data to XML. If a second argument is given, then the Perl data
will be stored to disk as XML, using the second argument as a filename.
Usage: See Synopsis
=cut
# ------------------------------------------------------------
my $self = ( ref $_[0] && (ref $_[0]) =~ /XML::Dumper/ ) ? shift : $dump;
my $ref = shift;
my $file = shift;
$self->init;
my $xml =
( defined $self->{ dtd } ? $self->{ dtd } : '' ) .
"<perldata>" . $self->dump( $ref, 1 ) . "\n</perldata>\n";
if( defined $file ) {
if( $file =~ /\.xml\.gz$/i ) {
if( $COMPRESSION_AVAILABLE ) {
my $compressed_xml = Compress::Zlib::memGzip( $xml ) or die "Failed to compress xml $!";
open FILE, ">:utf8", $file or die "Can't open '$file' for writing $!";
binmode FILE;
print FILE $compressed_xml;
close FILE;
} else {
my $uncompressed_file = $file;
$uncompressed_file =~ s/\.gz$//i;
warn "Compress::Zlib not installed. Saving '$file' as '$uncompressed_file'\n";
open FILE, ">:utf8", $uncompressed_file or die "Can't open '$uncompressed_file' for writing $!";
print FILE $xml;
close FILE;
}
} else {
no warnings; # to shut Perl up about Wide characters for UTF8 output
open FILE, ">$file" or die "Can't open '$file' for writing $!";
print FILE $xml;
close FILE;
}
}
return $xml;
}
# ============================================================
sub undump {
# ============================================================
# undump
# Takes the XML generated by pl2xml, and recursively undumps it to
# create a data structure in memory. The top-level object is a scalar,
# a reference to a scalar, a hash, or an array. Hashes and arrays may
# themselves contain scalars, or references to scalars, or references to
# hashes or arrays, with the exception that scalar values are never
# "undef" because there's currently no way to represent undef in the
# dumped data.
#
# The key to understanding undump is to understand XML::Parser's
# Tree parsing format:
#
# <tag name>, [ { <attributes }, '0', <[text]>, <[children tag-array pair value(s)]...> ]
# ------------------------------------------------------------
my $self = shift;
my $tree = shift;
my $callback = shift;
my $ref = undef;
my $item;
# make Perl stop whining about deep recursion and soft references
no warnings;
TREE: for (my $i = 1; $i < $#$tree; $i+=2) {
local $_ = lc( $tree->[ $i ] );
my $class = '';
my $address = '';
PERL_TYPES: {
# ----------------------------------------
if( /^scalar$/ ) {
# ----------------------------------------
$ref = defined $tree->[ $i+1 ][ 2 ] ? $tree->[ $i +1 ][ 2 ] : '';
if( exists $tree->[ $i+1 ][ 0 ]{ 'defined' } ) {
if( $tree->[ $i +1 ][ 0 ]{ 'defined' } =~ /false/i ) {
$ref = undef;
}
}
last TREE;
}
# ===== FIND PACKAGE
if( $tree->[ $i+1 ] && ref( $tree->[ $i +1 ] ) eq 'ARRAY' ) {
if( exists $tree->[ $i+1 ][0]{ blessed_package } ) {
$class = $tree->[ $i+1 ][ 0 ]{ blessed_package };
}
}
# ===== FIND MEMORY ADDRESS
if( $tree->[ $i+1 ] && ref( $tree->[ $i +1 ] ) eq 'ARRAY' ) {
if( exists $tree->[ $i+1 ][0]{ memory_address } ) {
$address = $tree->[ $i+1 ][ 0 ]{ memory_address };
}
}
ALREADY_EXISTS_IN_MEMORY: {
if( exists $self->{ perldata }{ $address } ) {
$ref = $self->{ perldata }{ $address };
last TREE;
}
}
# ----------------------------------------
if( /^scalarref/ ) {
# ----------------------------------------
$ref = defined $tree->[ $i+1 ][ 2 ] ? \ $tree->[ $i +1 ][ 2 ] : \'';
if( exists $tree->[ $i+1 ][ 0 ]{ 'defined' } ) {
if( $tree->[ $i +1 ][ 0 ]{ 'defined' } =~ /false/i ) {
$ref = \ undef;
}
}
$self->{ perldata }{ $address } = $ref if( $address );
if( $class ) {
# Check class name for nasty stuff...
$class =~ m/^[\w-]+(?:::[\w-]+)*$/
or die "Refusing to load unsafe class name '$class'\n";
unless( int( eval( "\%$class"."::")) ) {
eval "require $class;";
if( $@ ) {
warn $@;
}
}
bless $ref, $class;
if( defined $callback && $ref->can( $callback ) ) {
$ref->$callback();
}
}
last TREE;
}
# ----------------------------------------
if( /^hash(?:ref)?/ ) {
# ----------------------------------------
$ref = {};
$self->{ perldata }{ $address } = $ref if( $address );
for (my $j = 1; $j < $#{$tree->[$i+1]}; $j+=2) {
next unless $tree->[$i+1][$j] eq 'item';
my $item_tree = $tree->[$i+1][$j+1];
if( exists $item_tree->[0]{ key } ) {
my $key = $item_tree->[ 0 ]{ key };
if( exists $item_tree->[ 0 ]{ 'defined' } ) {
if( $item_tree->[ 0 ]{ 'defined' } =~ /false/ ) {
$ref->{ $key } = undef;
next;
}
}
# ===== XML::PARSER IGNORES ZERO-LENGTH STRINGS
# It indicates the presence of a zero-length string by
# not having the array portion of the tag-name/array pair
# values be of length 1. (Which is to say it captures only
# the attributes of the tag and acknowledges that the tag
# is an empty one.
if( int( @{ $item_tree } ) == 1 ) {
$ref->{ $key } = '';
next;
}
$ref->{ $key } = $self->undump( $item_tree, $callback );
}
}
if( $class ) {
# Check class name for nasty stuff...
$class =~ m/^[\w-]+(?:::[\w-]+)*$/
or die "Refusing to load unsafe class name '$class'\n";
unless( int( eval( "\%$class"."::")) ) {
eval "require $class;";
if( $@ ) {
warn $@;
}
}
bless $ref, $class;
if( defined $callback && $ref->can( $callback ) ) {
$ref->$callback();
}
}
last TREE;
}
# ----------------------------------------
if( /^arrayref/ ) {
# ----------------------------------------
$ref = [];
$self->{ perldata }{ $address } = $ref if( $address );
for (my $j = 1; $j < $#{$tree->[$i+1]}; $j+=2) {
next unless $tree->[$i+1][$j] eq 'item';
my $item_tree = $tree->[$i+1][$j+1];
if( exists $item_tree->[0]{ key } ) {
my $key = $item_tree->[0]{ key };
if( exists $item_tree->[ 0 ]{ 'defined' } ) {
if( $item_tree->[ 0 ]{ 'defined' } =~ /false/ ) {
$ref->[ $key ] = undef;
next;
}
}
# ===== XML::PARSER IGNORES ZERO-LENGTH STRINGS
# See note above.
if( int( @{ $item_tree } ) == 1 ) {
$ref->[ $key ] = '';
next;
}
$ref->[ $key ] = $self->undump( $item_tree, $callback );
}
}
if( $class ) {
# Check class name for nasty stuff...
$class =~ m/^[\w-]+(?:::[\w-]+)*$/
or die "Refusing to load unsafe class name '$class'\n";
unless( int( eval( "\%$class"."::")) ) {
eval "require $class;";
if( $@ ) {
warn $@;
}
}
bless $ref, $class;
if( defined $callback && $ref->can( $callback ) ) {
$ref->$callback();
}
}
last TREE;
}
# ----------------------------------------
if( /^0$/ ) { # SIMPLE SCALAR
# ----------------------------------------
$item = $tree->[$i + 1];
}
}
}
## If $ref is not set at this point, it means we've just
## encountered a scalar value directly inside the item tag.
$ref = $item unless defined( $ref );
return ($ref);
}
# ============================================================
sub xml_escape {
# ============================================================
# Transforms and filters input characters to acceptable XML characters
# (or filters them out completely). There's probably a better
# implementation of this in another module, by now.
# ------------------------------------------------------------
local $_ = shift;
return $_ if not defined $_;
s/&/&/g;
s/</</g;
s/>/>/g;
s/[\0\ca\cb\cc\cd\ce\cf\cg\ch\ck\cl\cn\co\cp\cq\cr\cs\ct\cu\cv\cw\cx\cy\cz\c[\c\\c]\c^\c_]//g;
s/'/'/g;
s/"/"/g;
return $_;
}
# ============================================================
sub xml2perl {
# ============================================================
xml2pl( @_ );
}
# ============================================================
sub xml2pl {
# ============================================================
=item * xml2pl( $xml_or_filename, [ $callback ] ) -
(Also xml2perl(), for those who enjoy readability over brevity.)
Converts XML to a Perl datatype. If this method is given a second argument,
XML::Dumper will use the second argument as a callback (if possible). If
the first argument isn't XML and exists as a file, that file will be read
and its contents will be used as the input XML.
Currently, the only supported invocation of callbacks is through soft
references. That is to say, the callback argument ought to be a string
that matches the name of a callable method for your classes. If you have
a congruent interface, this should work like a peach. If your class
interface doesn't have such a named method, it won't be called.
=cut
# ------------------------------------------------------------
my $self = ( ref $_[0] && (ref $_[0]) =~ /XML::Dumper/) ? shift : $dump;
my $xml = shift;
my $callback = shift;
$self->init;
if( $xml !~ /\</ ) {
my $file = $xml;
if( -e $file ) {
my $gzip_header_signature = pack "H4", "1f8b";
my $first_two_bytes;
open FILE, "<". $file or die "Can't open '$file' for reading $!";
defined read FILE, $first_two_bytes, 2 or die "Can't read first two bytes of '$file' $!";
close FILE;
if( $first_two_bytes eq $gzip_header_signature ) {
if( $COMPRESSION_AVAILABLE ) {
my $gz = Compress::Zlib::gzopen( $file, "rb" );
my @xml;
my $buffer;
while( $gz->gzread( $buffer ) > 0 ) {
push @xml, $buffer;
}
$gz->gzclose();
$xml = join "", @xml;
} else {
die "Compress::Zlib is not installed. Cannot read gzipped file '$file'";
}
} else {
open FILE, $file or die "Can't open file '$file' for reading $!";
my @xml = <FILE>;
close FILE;
$xml = join "", @xml;
}
} else {
die "'$file' does not exist as a file and is not XML.\n";
}
}
my $parser = new XML::Parser( %{ $self->{ xml_parser_params }}, Style => 'Tree' );
my $tree = $parser->parse($xml);
# Skip enclosing "perldata" level
my $topItem = $tree->[1];
my $ref = $self->undump($topItem, $callback);
return($ref);
}
# ============================================================
sub xml_compare {
# ============================================================
=item * xml_compare( $xml1, $xml2 ) - Compares xml for content
Compares two dumped Perl data structures (that is, compares the xml) for
identity in content. Use this function rather than perl's built-in string
comparison. This function will return true for any two perl data that are
either deep clones of each other, or identical. This method is exported
by default.
=cut
# ------------------------------------------------------------
my $self = shift;
my $xml1 = shift;
my $xml2 = shift;
my $class = ref $self;
if( $class ne 'XML::Dumper' ) {
$xml2 = $xml1;
$xml1 = $self;
}
$xml1 =~ s/(<[^>]*)\smemory_address="\dx[A-Za-z0-9]+"([^<]*>)/$1$2/g;
$xml2 =~ s/(<[^>]*)\smemory_address="\dx[A-Za-z0-9]+"([^<]*>)/$1$2/g;
$xml1 =~ s/(<[^>]*)\sdefined=\"false\"([^<]>)/$1$2/g; # For backwards
$xml2 =~ s/(<[^>]*)\sdefined=\"false\"([^<]>)/$1$2/g; # compatibility
$xml1 =~ s/<\?xml .*>//; # Ignore XML declaration
$xml2 =~ s/<\?xml .*>//;
$xml1 =~ s/<\!DOCTYPE perldata \[.*\]>//s; # Remove DTD
$xml2 =~ s/<\!DOCTYPE perldata \[.*\]>//s;
$xml1 =~ s/^\s*</</; # Remove empty space
$xml2 =~ s/^\s*</</;
$xml1 =~ s/>\s*</></g;
$xml2 =~ s/>\s*</></g;
$xml1 =~ s/>\s*$/>/;
$xml2 =~ s/>\s*$/>/;
return $xml1 eq $xml2;
}
# ============================================================
sub xml_identity {
# ============================================================
=item * xml_identity( $xml1, $xml2 ) - Compares xml for identity
Compares two dumped Perl data structures (that is, compares the xml) for
identity in instantiation. This function will return true for any two
perl data that are identical, but not for deep clones of each other. This
method is also exported by default.
=cut
# ------------------------------------------------------------
my $self = shift;
my $xml1 = shift;
my $xml2 = shift;
my $class = ref $self;
if( $class ne 'XML::Dumper' ) {
$xml2 = $xml1;
$xml1 = $self;
}
return ( $xml1 eq $xml2 );
}
1;
__END__
=back
=head1 EXPORTS
By default, the following methods are exported:
xml2pl, pl2xml, xml_compare, xml_identity
=head1 BUGS AND DEPENDENCIES
XML::Dumper has changed API since 0.4, as a response to a bug report
from PerlMonks. I felt it was necessary, as the functions simply didn't
work as advertised. That is, xml2pl really didnt accept xml as an
argument; what it wanted was an XML Parse tree. To correct for the
API change, simply don't parse the XML before feeding it to XML::Dumper.
XML::Dumper also has no understanding of typeglobs (references or not),
references to regular expressions, or references to Perl subroutines.
Turns out that Data::Dumper doesn't do references to Perl subroutines,
either, so at least I'm in somewhat good company.
XML::Dumper requires one perl module, available from CPAN
XML::Parser
XML::Parser itself relies on Clark Cooper's Expat implementation in Perl,
which in turn requires James Clark's expat package itself. See the
documentation for XML::Parser for more information.
=head1 REVISIONS AND CREDITS
The list of credits got so long that I had to move it to the Changes
file. Thanks to all those who've contributed with bug reports and
suggested features! Keep 'em coming!
I've had ownership of the module since June of 2002, and very much
appreciate requests on how to make the module better. It has served me
well, both as a learning tool on how I can repay my debt to the Perl
Community, and as a practical module that is useful. I'm thrilled to
be able to offer this bit of code. So, if you have suggestions, bug
reports, or feature requests, please let me know and I'll do my best
to make this a better module.
=head1 CURRENT MAINTAINER
Mike Wong E<lt>mike_w3@pacbell.netE<gt>
XML::Dumper is free software. You can redistribute it and/or
modify it under the same terms as Perl itself.
=head1 ORIGINAL AUTHOR
Jonathan Eisenzopf E<lt>eisen@pobox.comE<gt>
=head1 SEE ALSO
perl(1)
Compress::Zlib(3)
XML::Parser(3)
Data::DumpXML(3)
=cut
|