/usr/share/perl5/XML/Handler/BuildDOM.pm is in libxml-dom-perl 1.44-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 | package XML::Handler::BuildDOM;
use strict;
use XML::DOM;
#
# TODO:
# - add support for parameter entity references
# - expand API: insert Elements in the tree or stuff into DocType etc.
sub new
{
my ($class, %args) = @_;
bless \%args, $class;
}
#-------- PerlSAX Handler methods ------------------------------
sub start_document # was Init
{
my $self = shift;
# Define Document if it's not set & not obtainable from Element or DocType
$self->{Document} ||=
(defined $self->{Element} ? $self->{Element}->getOwnerDocument : undef)
|| (defined $self->{DocType} ? $self->{DocType}->getOwnerDocument : undef)
|| new XML::DOM::Document();
$self->{Element} ||= $self->{Document};
unless (defined $self->{DocType})
{
$self->{DocType} = $self->{Document}->getDoctype
if defined $self->{Document};
unless (defined $self->{Doctype})
{
#?? should be $doc->createDocType for extensibility!
$self->{DocType} = new XML::DOM::DocumentType ($self->{Document});
$self->{Document}->setDoctype ($self->{DocType});
}
}
# Prepare for document prolog
$self->{InProlog} = 1;
# We haven't passed the root element yet
$self->{EndDoc} = 0;
undef $self->{LastText};
}
sub end_document # was Final
{
my $self = shift;
unless ($self->{SawDocType})
{
my $doctype = $self->{Document}->removeDoctype;
$doctype->dispose;
#?? do we always want to destroy the Doctype?
}
$self->{Document};
}
sub characters # was Char
{
my $self = $_[0];
my $str = $_[1]->{Data};
if ($self->{InCDATA} && $self->{KeepCDATA})
{
undef $self->{LastText};
# Merge text with previous node if possible
$self->{Element}->addCDATA ($str);
}
else
{
# Merge text with previous node if possible
# Used to be: $expat->{DOM_Element}->addText ($str);
if ($self->{LastText})
{
$self->{LastText}->appendData ($str);
}
else
{
$self->{LastText} = $self->{Document}->createTextNode ($str);
$self->{Element}->appendChild ($self->{LastText});
}
}
}
sub start_element # was Start
{
my ($self, $hash) = @_;
my $elem = $hash->{Name};
my $attr = $hash->{Attributes};
my $parent = $self->{Element};
my $doc = $self->{Document};
if ($parent == $doc)
{
# End of document prolog, i.e. start of first Element
$self->{InProlog} = 0;
}
undef $self->{LastText};
my $node = $doc->createElement ($elem);
$self->{Element} = $node;
$parent->appendChild ($node);
my $i = 0;
my $n = scalar keys %$attr;
return unless $n;
if (exists $hash->{AttributeOrder})
{
my $defaulted = $hash->{Defaulted};
my @order = @{ $hash->{AttributeOrder} };
# Specified attributes
for (my $i = 0; $i < $defaulted; $i++)
{
my $a = $order[$i];
my $att = $doc->createAttribute ($a, $attr->{$a}, 1);
$node->setAttributeNode ($att);
}
# Defaulted attributes
for (my $i = $defaulted; $i < @order; $i++)
{
my $a = $order[$i];
my $att = $doc->createAttribute ($elem, $attr->{$a}, 0);
$node->setAttributeNode ($att);
}
}
else
{
# We're assuming that all attributes were specified (1)
for my $a (keys %$attr)
{
my $att = $doc->createAttribute ($a, $attr->{$a}, 1);
$node->setAttributeNode ($att);
}
}
}
sub end_element
{
my $self = shift;
$self->{Element} = $self->{Element}->getParentNode;
undef $self->{LastText};
# Check for end of root element
$self->{EndDoc} = 1 if ($self->{Element} == $self->{Document});
}
sub entity_reference # was Default
{
my $self = $_[0];
my $name = $_[1]->{Name};
$self->{Element}->appendChild (
$self->{Document}->createEntityReference ($name));
undef $self->{LastText};
}
sub start_cdata
{
my $self = shift;
$self->{InCDATA} = 1;
}
sub end_cdata
{
my $self = shift;
$self->{InCDATA} = 0;
}
sub comment
{
my $self = $_[0];
local $XML::DOM::IgnoreReadOnly = 1;
undef $self->{LastText};
my $comment = $self->{Document}->createComment ($_[1]->{Data});
$self->{Element}->appendChild ($comment);
}
sub doctype_decl
{
my ($self, $hash) = @_;
$self->{DocType}->setParams ($hash->{Name}, $hash->{SystemId},
$hash->{PublicId}, $hash->{Internal});
$self->{SawDocType} = 1;
}
sub attlist_decl
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
$self->{DocType}->addAttDef ($hash->{ElementName},
$hash->{AttributeName},
$hash->{Type},
$hash->{Default},
$hash->{Fixed});
}
sub xml_decl
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
undef $self->{LastText};
$self->{Document}->setXMLDecl (new XML::DOM::XMLDecl ($self->{Document},
$hash->{Version},
$hash->{Encoding},
$hash->{Standalone}));
}
sub entity_decl
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
# Parameter Entities names are passed starting with '%'
my $parameter = 0;
#?? parameter entities currently not supported by PerlSAX!
undef $self->{LastText};
$self->{DocType}->addEntity ($parameter, $hash->{Name}, $hash->{Value},
$hash->{SystemId}, $hash->{PublicId},
$hash->{Notation});
}
# Unparsed is called when it encounters e.g:
#
# <!ENTITY logo SYSTEM "http://server/logo.gif" NDATA gif>
#
sub unparsed_decl
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
# same as regular ENTITY, as far as DOM is concerned
$self->entity_decl ($hash);
}
sub element_decl
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
undef $self->{LastText};
$self->{DocType}->addElementDecl ($hash->{Name}, $hash->{Model});
}
sub notation_decl
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
undef $self->{LastText};
$self->{DocType}->addNotation ($hash->{Name}, $hash->{Base},
$hash->{SystemId}, $hash->{PublicId});
}
sub processing_instruction
{
my ($self, $hash) = @_;
local $XML::DOM::IgnoreReadOnly = 1;
undef $self->{LastText};
$self->{Element}->appendChild (new XML::DOM::ProcessingInstruction
($self->{Document}, $hash->{Target}, $hash->{Data}));
}
return 1;
__END__
=head1 NAME
XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures
=head1 SYNOPSIS
use XML::Handler::BuildDOM;
use XML::Parser::PerlSAX;
my $handler = new XML::Handler::BuildDOM (KeepCDATA => 1);
my $parser = new XML::Parser::PerlSAX (Handler => $handler);
my $doc = $parser->parsefile ("file.xml");
=head1 DESCRIPTION
XML::Handler::BuildDOM creates L<XML::DOM> document structures
(i.e. L<XML::DOM::Document>) from PerlSAX events.
This class used to be called L<XML::PerlSAX::DOM> prior to libxml-enno 1.0.1.
=head2 CONSTRUCTOR OPTIONS
The XML::Handler::BuildDOM constructor supports the following options:
=over 4
=item * KeepCDATA => 1
If set to 0 (default), CDATASections will be converted to regular text.
=item * Document => $doc
If undefined, start_document will extract it from Element or DocType (if set),
otherwise it will create a new XML::DOM::Document.
=item * Element => $elem
If undefined, it is set to Document. This will be the insertion point (or parent)
for the nodes defined by the following callbacks.
=item * DocType => $doctype
If undefined, start_document will extract it from Document (if possible).
Otherwise it adds a new XML::DOM::DocumentType to the Document.
=back
|