/usr/share/perl5/WebKDC/XmlDoc.pm is in libwebkdc-perl 4.7.0-4.
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 | # Manipulate a document composed of WebKDC::XmlElement objects.
#
# Written by Roland Schemers
# Copyright 2002, 2009, 2012, 2013
# The Board of Trustees of the Leland Stanford Junior University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
package WebKDC::XmlDoc;
use strict;
use warnings;
use Carp qw(croak);
use WebKDC::XmlElement;
our $VERSION;
# This version matches the version of WebAuth with which this module was
# released, but with two digits for the minor and patch versions.
BEGIN {
$VERSION = '4.0700';
}
# Create a new, empty document.
sub new {
my ($type) = @_;
my $self = {};
bless ($self, $type);
return $self;
}
# Start a new document element. Takes the name of the element, an optional
# hash of attributes, and optional content for the attribute. If the document
# is currently empty, this will become the root element of the document.
sub start {
my ($self, $name, $attrs, $content) = @_;
my $element = WebKDC::XmlElement->new;
$element->name ($name);
if (defined $attrs) {
$element->attrs ($attrs);
}
if (defined $content) {
$element->content ($content);
}
if (defined $self->{root}) {
my $parent = $self->current;
$parent->add_child ($element);
} else {
$self->{root} = $element;
}
push (@{ $self->{stack} }, $element);
return $self;
}
# Return the current open element.
sub current {
my ($self) = @_;
my $s = $self->{stack};
my $e = @{ $s }[$#{ $s }] || croak ('not in an element');
return $e;
}
# Close the currently open element. Note that if this is called for the root
# element, no further elements can be added to the document. Takes the
# optional name of the element to close. If given, an exception will be
# raised if the current open element does not match the element given.
sub end {
my ($self, $name) = @_;
my $e = $self->current;
if (defined $name) {
my $real = $e->name;
if ($name ne $real) {
croak ("name mismatch in end: expecting $name, saw $real");
}
}
pop @{ $self->{stack} };
return $self;
}
# Add an element with possible attributes and content and then immediately end
# it. This is a shortcut for a start() and end() sequence when no nested
# elements are present.
sub add {
my ($self, $name, $attrs, $text) = @_;
return $self->start ($name, $attrs, $text)->end;
}
# Return the root element of a document.
sub root {
my ($self) = @_;
return $self->{root};
}
1;
__END__
=for stopwords
WebKDC WebAuth ATTRS Allbery
=head1 NAME
WebKDC::XmlDoc - Manipulate a document of WebKDC::XmlElement objects
=head1 SYNOPSIS
use WebKDC::XmlDoc;
my $doc = WebKDC::XmlDoc->new;
$doc->start ('root');
$doc->start ('child', { key => 'value' }, 'some content');
$doc->add ('subchild, 'more content');
print $doc->current->name, "\n";
$doc->end;
$doc->end;
print $doc->root->name, "\n";
=head1 DESCRIPTION
A WebKDC::XmlDoc represents an XML document as a tree of
WebKDC::XmlElement objects. It is used internally by the WebKDC module to
create and parse XML documents when talking to a WebAuth WebKDC.
A (non-empty) document has a root element and a stack of open elements.
It is assembled by starting an element (with start(), possibly including
attributes and content), manipulating that element if necessary, and then
ending the element, done recursively. Once an element has been ended,
there is no way using this interface to further change it, although it can
be retrieved by getting the root of the tree with root() and then walking
the tree. add() is an optimization that combines start() and end() and is
more efficient if an element has no child elements.
Most manipulation of this document is done via the WebKDC::XmlElement
methods, which allow parsing an XML document into this format, finding
children of a particular element, and converting a document to its XML
representation. This module only defines the top-level structure and the
methods that have to be called on the document as a whole rather than on
an individual element.
=head1 CLASS METHODS
=over 4
=item new ()
Create a new, empty document. This document will have no root. The first
element added with start() or add() will become the root of the document.
=back
=head1 INSTANCE METHODS
=over 4
=item add (NAME[, ATTRS[, CONTENT]])
Add a new element with name NAME as a child of the current element and
immediately close it, equivalent to start() followed immediately by end().
Optional attributes (which should be an anonymous hash of names and
values) and content (which should be a string) may be provided. To
provide CONTENT without ATTRS, pass C<{}> as ATTRS. Returns the
WebKDC::XmlDoc object.
If the document is empty, the new element becomes the root.
=item current ()
Returns the current element as a WebKDC::XmlElement object. The current
element is the most recent element opened by start() and not yet closed
with end().
=item end ([NAME])
End the current element. If the optional NAME parameter is given, throw
an exception and take no action if the current open element is not named
NAME. Returns the WebKDC::XmlDoc object.
=item root ()
Returns the root WebKDC::XmlElement object of the document or undef if
the document is empty. To convert the entire document to XML, use:
my $xml = $doc->root->to_string;
(which uses the to_string() method of WebKDC::XmlElement).
=item start (NAME[, ATTRS[, CONTENT]])
Add a new element with name NAME as a child of the current element and
make the new element the current element (so subsequent elements added by
start() or add() will be children of it) until the next end(). Optional
attributes (which should be an anonymous hash of names and values) and
content (which should be a string) may be provided. To provide CONTENT
without ATTRS, pass C<{}> as ATTRS. Returns the WebKDC::XmlDoc object.
If the document is empty, the new element becomes the root.
=back
=head1 AUTHOR
Roland Schemers and Russ Allbery <eagle@eyrie.org>
=head1 SEE ALSO
WebKDC(3), WebKDC::XmlElement(3)
This module is part of WebAuth. The current version is available from
L<http://webauth.stanford.edu/>.
=cut
|