/usr/share/perl5/XML/CompactTree.pm is in libxml-compacttree-perl 0.03-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 | package XML::CompactTree;
use warnings;
use strict;
=head1 NAME
XML::CompactTree - builder of compact tree structures from XML documents
=head1 VERSION
Version 0.03
=cut
our $VERSION = '0.03';
use base qw(Exporter);
use vars qw( @EXPORT @EXPORT_OK %EXPORT_TAGS );
use XML::LibXML::Reader;
# XCT_USE_QNAMES /* not yet implemented */
# XCT_TEXT_AS_STRING /* not yet implemented */
# XCT_PRESERVE_PARENT /* not yet implemented */
# XCT_MERGE_TEXT_NODES /* not yet implemented */
use constant do {
my @flags = (qw(
XCT_IGNORE_WS
XCT_IGNORE_SIGNIFICANT_WS
XCT_IGNORE_PROCESSING_INSTRUCTIONS
XCT_IGNORE_COMMENTS
XCT_USE_QNAMES
XCT_KEEP_NS_DECLS
XCT_TEXT_AS_STRING
XCT_ATTRIBUTE_ARRAY
XCT_PRESERVE_PARENT
XCT_MERGE_TEXT_NODES
XCT_LINE_NUMBERS
XCT_DOCUMENT_ROOT
));
$EXPORT_TAGS{flags} = \@flags;
my %c = map { ($flags[$_] => (1 << $_)) } 0..$#flags;
\%c
};
BEGIN {
@EXPORT = (map @$_, values %EXPORT_TAGS);
@EXPORT_OK = @EXPORT;
$EXPORT_TAGS{all}=\@EXPORT_OK;
}
=head1 SYNOPSIS
use XML::CompactTree;
use XML::LibXML::Reader;
my $reader = XML::LibXML::Reader->new(location => $url);
...
my $tree = XML::CompactTree::readSubtreeToPerl($reader);
...
=head1 DESCRIPTION
This module provides functions that use XML::LibXML::Reader to parse
an XML document into a parse tree formed of nested arrays (and hashes).
It aims to be fast in doing that and to presreve all relevant
information from the XML (including namespaces, document order, mixed
content, etc.). It sacrifices user friendliness for speed.
IMPORTANT: There is an even more efficient XS implementation of this
module called XML::CompactTree::XS with 100% equivalent functionality.
=head1 PURPOSE
I wrote this module because I noticed that repeated calls to methods
implemented in C (XS) were very expensive in Perl.
Therefore traversing a large DOM tree using XML::LibXML or iterating
over an XML stream using XML::LibXML::Reader was much slower than
traversing similarly large and structured native Perl data
structures.
This module allows the user to build a document parse tree consisting
of native Perl data structures (arrays and optionally hashes) using
XML::LibXML::Reader with minimal number of XS calls.
(Note that there XML::CompactTree::XS is 100% equivalent of this
module that manages the same with just one XS call.)
It does not provide full DOM navigation but attempts to provide
maximum amount of information. Its memory footprint should be
somewhat smaller than that of a corresponding XML::LibXML DOM tree.
=head1 EXPORT
By default, the following constants are exported (C<:flags> export
tag) to be used as flags for the tree builder:
XCT_IGNORE_WS
XCT_IGNORE_SIGNIFICANT_WS
XCT_IGNORE_PROCESSING_INSTRUCTIONS
XCT_IGNORE_COMMENTS
XCT_USE_QNAMES /* not yet implemented */
XCT_KEEP_NS_DECLS
XCT_TEXT_AS_STRING /* not yet implemented */
XCT_ATTRIBUTE_ARRAY
XCT_PRESERVE_PARENT /* not yet implemented */
XCT_MERGE_TEXT_NODES /* not yet implemented */
XCT_DOCUMENT_ROOT
=head1 FUNCTIONS
=head2 readSubtreeToPerl( $reader, $flags, \my %ns )
Uses a given XML::LibXML::Reader parser objects to parse a subtree at
the current reader position to build a tree formed of nested arrays
(see L<OUTPUT FORMAT>).
=over 4
=item reader
A XML::LibXML::Reader object to use as the reader. While building the
tree, the reader moves to the next node on the current or higher
level.
=item flags
An integer consisting of 1 bit flags (see constants in the EXPORT section).
Use binary or (|) to combine individual flags.
The following flags are NOT implemented yet:
XCT_USE_QNAMES, XCT_TEXT_AS_STRING, XCT_PRESERVE_PARENT, XCT_MERGE_TEXT_NODES
=item ns
You may pass an empty hash reference that will be populated by a
namespace_uri to namespace_index map, that can be used to decode
namespace indexes in the resulting data structure (see L<OUTPUT
FORMAT>).
=back
=cut
sub readSubtreeToPerl {
my ($reader,$flags,$ns)=@_;
$ns||={};
$ns->{''}=0;
my $ret = _readSubtreeToPerl($reader,$flags,$ns,1,0);
return $ret->[0];
}
=head2 readLevelToPerl( $reader, $flags, $ns )
Like C<readSubtreeToPerl>, but reads the subtree
at the current reader position and all its following siblings.
It returns an array reference of representations of these subtrees
as in the format described in L<OUTPUT FORMAT>.
=cut
sub readLevelToPerl {
my ($reader,$flags,$ns)=@_;
$ns||={};
$ns->{''}=0;
my $ret = _readSubtreeToPerl($reader,$flags,$ns,1,1);
return $ret;
}
sub _readSubtreeToPerl {
my ($reader, $flags, $ns_map, $free_ns_index, $read_siblings) = @_;
my @parents;
my ($av,$prev,$kids,$ret,$type,$name);
my $cur_depth=$reader->depth();
my $start_depth = $cur_depth;
my $prev_depth = $start_depth;
my $top = [];
if ($reader->nodeType()==0) {
return if $reader->read()!=1;
if ($flags & XCT_DOCUMENT_ROOT) {
$prev = [ XML_READER_TYPE_DOCUMENT,
$reader->encoding,
];
$start_depth --;
$prev_depth --;
push @$top, $prev;
push @parents, $prev;
}
}
do {{
$type = $reader->nodeType();
# warn("$type, $cur_depth, ".$reader->name."\n");
if ($type == XML_READER_TYPE_NONE
or $type == XML_READER_TYPE_ATTRIBUTE
or $type == XML_READER_TYPE_DOCUMENT_TYPE
or $type == XML_READER_TYPE_END_ELEMENT
or $type == XML_READER_TYPE_ENTITY
or $type == XML_READER_TYPE_END_ENTITY
or $type == XML_READER_TYPE_XML_DECLARATION) {
$ret = $reader->read();
} else {
if (($flags & (XCT_IGNORE_WS|XCT_IGNORE_SIGNIFICANT_WS))
and $type == XML_READER_TYPE_WHITESPACE
or
($flags & XCT_IGNORE_SIGNIFICANT_WS)
and $type == XML_READER_TYPE_SIGNIFICANT_WHITESPACE
or
($flags & XCT_IGNORE_COMMENTS)
and $type == XML_READER_TYPE_COMMENT
or
($flags & XCT_IGNORE_PROCESSING_INSTRUCTIONS
and $type == XML_READER_TYPE_PROCESSING_INSTRUCTION)) {
$ret = $reader->read();
} else {
my @av=();
$av=\@av;
push @av, $type;
if ($type == XML_READER_TYPE_ELEMENT) {
# warn(" element\n");
push @av, $reader->localName();
$name = $reader->namespaceURI();
if ($name) {
if (exists($ns_map->{$name})) {
push(@av, $ns_map->{$name} || 0);
} else {
# warn("storing namespace $name as $free_ns_index)";
push(@av, $free_ns_index);
$ns_map->{$name}=$free_ns_index;
$free_ns_index++;
}
} else {
push(@av, 0); # no namespace
}
if ($reader->hasAttributes() && $reader->moveToFirstAttribute()==1) {
if ($flags & XCT_ATTRIBUTE_ARRAY) {
my @attrs;
do {
$name = $reader->name();
if (($flags & XCT_KEEP_NS_DECLS) || substr($name,0,5) ne 'xmlns' ) {
push(@attrs, $name);
push(@attrs, $reader->value());
}
} while ($reader->moveToNextAttribute()==1);
# $reader->moveToElement();
push(@av, \@attrs);
} else {
my %attrs;
do {
$name = $reader->name();
if (($flags & XCT_KEEP_NS_DECLS) || substr($name,0,5) ne 'xmlns' ) {
$attrs{$name}=$reader->value();
}
} while ($reader->moveToNextAttribute()==1);
$reader->moveToElement();
push(@av, \%attrs);
}
} else {
push(@av, undef); # no attributes
}
if ($flags & XCT_LINE_NUMBERS) {
push(@av, $reader->lineNumber());
}
} elsif ($type == XML_READER_TYPE_TEXT or
$type == XML_READER_TYPE_CDATA or
$type == XML_READER_TYPE_COMMENT or
$type == XML_READER_TYPE_WHITESPACE or
$type == XML_READER_TYPE_SIGNIFICANT_WHITESPACE) {
push(@av, $reader->value());
} elsif ($type == XML_READER_TYPE_ENTITY_REFERENCE or
$type == XML_READER_TYPE_PROCESSING_INSTRUCTION or
$type == XML_READER_TYPE_NOTATION) {
push(@av, $reader->localName());
push(@av, $reader->value());
} elsif ($type == XML_READER_TYPE_DOCUMENT or
$type == XML_READER_TYPE_DOCUMENT_FRAGMENT) {
push(@av, $reader->encoding());
}
if ($cur_depth==$start_depth) {
push(@$top, $av);
$prev_depth = $cur_depth;
$kids = undef;
} elsif ($cur_depth > $prev_depth) {
$kids=[];
push(@$prev, $kids);
push(@$kids, $av);
push(@parents, $prev);
$prev_depth = $cur_depth;
} elsif ($cur_depth == $prev_depth) {
push(@$kids, $av) if $kids;
} else {
do {
$prev_depth--;
pop(@parents);
} while ($cur_depth < $prev_depth);
my $p = $parents[-1];
if ($p) {
$prev = $p;
$p = $prev->[-1];
if ($p) {
$kids = $p;
push(@$kids, $av);
}
}
}
$prev = $av;
$ret = $reader->read();
}
}
# print STDERR "$cur_depth, ",$reader->depth(),"\n";
}} while ($ret == 1 && ($cur_depth = $reader->depth()) > ($start_depth - ($read_siblings ? 1 : 0)));
if ($ret == 1) {
if ($reader->depth() == $start_depth &&
$reader->nodeType() == XML_READER_TYPE_END_ELEMENT) {
$reader->read();
}
}
return $top;
}
=head1 OUTPUT FORMAT
The result of parsing a subtree is a Perl array reference C<$node>
contains a node type followed by node data whose interpretation on
further positions in $node depends on the node type, as described
below:
=head2 Any Node
=over 5
=item *
$node->[0] is an integer representing the node type. Use
XML::LibXML::Reader node-tye constants, e.g. XML_READER_TYPE_ELEMENT
for an element node, XML_READER_TYPE_TEXT for text node, etc.
=back
=head2 Document or Document Fragment Nodes
=over 5
=item *
$node->[1] contains the document encoding
=item *
$node->[2] is an array reference containing similar represention of
all the child nodes of the document (fragment).
=back
Note: XML::LibXML::Reader does not document node by default, which
means that calling readSubtreeToPerl on a reader object in its initial
state only parses the first node in the document (which can be the
root element, but also a comment or a processing instruction). Use
XCT_DOCUMENT_ROOT flag to force creating a document node in such case.
=head2 Element nodes
=over 5
=item *
$node->[1] is the local name (UTF-8 encoded character string)
=item *
$node->[2] is the namespace index (see L<NAMESPACES> below)
=item *
$node->[3] is undef if the element has no attributes. Otherwise if
XCT_ATTRIBUTE_ARRAY flag was used, $node->[3] is an array reference of
the form C<[ name1, value1, name2, value2, ....]> of attribute names and
corresponding values. If XCT_ATTRIBUTE_ARRAY flag was not used, then
$node->[3] is a hash reference mapping attribute names to the
corresponding attribute values C<{ name1=>value1, name2=>value2...}>
The flag XCT_KEEP_NS_DECLS controls whether namespace declarations
(xmlns=... or xmlns:prefix=...) are included along with normal
attributes or not.
Note: there is no support for namespaced attributes yet, but the
attribute names are stored as QNames, so one can always use
XCT_KEEP_NS_DECLS to keep track of namespace prefix declarations and
do the resolving manually. Support for namespaced attributes is
planned.
=item *
If XTC_LINE_NUMBERS flag was used, $node->[4] contains the line number
of the element and $node->[5] contains an array reference containing
similar representions of the child nodes of the current node.
=item *
If XTC_LINE_NUMBERS flag was NOT used, $node->[4] contains an array
reference of similar representations of the child nodes of the current
node.
=back
=head2 Text, CDATA, Comment and White-Space Nodes
=over 5
=item *
$node->[1] contains the node value (UTF-8 encoded character string)
=back
=head2 Unparsed Entity, Processing-Instruction, and Notation Nodes
=over 5
=item *
$node->[1] contains the local name (there is no support for
namespaces on these types of nodes yet)
=item *
$node->[2] contains the node value
=back
=head2 Skipping Less-Significant Nodes
White-space (non-significant or significant), processing-instruction
and comment nodes can be completely skipped, using the following
flags:
XCT_IGNORE_WS
XCT_IGNORE_SIGNIFICANT_WS
XCT_IGNORE_PROCESSING_INSTRUCTIONS
XCT_IGNORE_COMMENTS
=head1 NAMESPACES
Namespaces of element nodes are stored in the element node as an
integer. 0 always represents nodes without namespace, all other
namespaces are assigned unique numbers in an increasing order as they
appear. You can pass an empty hash reference to the parsing functions
to obtain the mapping.
=head2 Example
use XML::CompactTree;
use XML::LibXML::Reader;
my $reader = XML::LibXML::Reader->new(location => $ARGV[0]);
my %ns;
my $data = XML::CompactTree::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT, \%ns );
$ns_map[$ns{$_}]=$_ for keys %ns;
my @nodes = ($data);
while (@nodes) {
my $node = shift @nodes;
my $type = $node->[0];
if ($type == XML_READER_TYPE_ELEMENT) {
print "element $node->[1] is from ns $node->[2] '$ns_map[$node->[2]]'\n";
push @nodes, @{$node->[4]}; # queue children
} elsif ($type == XML_READER_TYPE_DOCUMENT) {
push @nodes, @{$node->[2]}; # queue children
}
}
=head1 PLANNED FEATURES
Planned flags:
XCT_USE_QNAMES - use QNames instead of local names for all nodes
XCT_TEXT_AS_STRING - put text nodes into the tree as plain scalars
XCT_PRESERVE_PARENT - add a slot with a weak reference to the parent node
XCT_MERGE_TEXT_NODES - merge adjacent text/cdata nodes together
Features: allow blessing the array refs to default or user-specified
classes; the default classes would provide a very small subset of DOM
methods to retrieve node information, manipulate the tree, and
possibly serialize the parse tree back to XML.
=head1 AUTHOR
Petr Pajas, C<< <pajas@matfyz.cz> >>
=head1 BUGS
Please report any bugs or feature requests to
C<bug-xml-compacttree-xs@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=XML-CompactTree-XS>.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
=head1 COPYRIGHT & LICENSE
Copyright 2008-2009 Petr Pajas, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 SEE ALSO
XML::CompactTree::XS
XML::LibXML::Reader
=cut
1; # End of XML::CompactTree
|