SYNOPSIS

 use XML::SAX2Perl;

 $sax2perl = XML::SAX2Perl(Handler => $my_handler);
 $sax->setDocumentHandler($sax2perl);

DESCRIPTION

\*(C`XML::SAX2Perl\*(C' is a \s-1SAX\s0 filter that translates Java/CORBA style \s-1SAX\s0 methods to Perl style method calls. This man page summarizes the specific options, handlers, and properties supported by \*(C`XML::SAX2Perl\*(C'; please refer to the Perl \s-1SAX\s0 standard \*(C`XML::SAX\*(C' for general usage information.

METHODS

new

Creates a new parser object. Default options for parsing, described below, are passed as key-value pairs or as a single hash. Options may be changed directly in the parser object unless stated otherwise. Options passed to `\*(C`parse()\*(C'' override the default options in the parser object for the duration of the parse.

parse

Parses a document. Options, described below, are passed as key-value pairs or as a single hash. Options passed to `\*(C`parse()\*(C'' override default options in the parser object.

location

Returns the location as a hash: ColumnNumber The column number of the parse. LineNumber The line number of the parse. PublicId A string containing the public identifier, or undef if none is available. SystemId A string containing the system identifier, or undef if none is available.

\s-1SAX\s0 DocumentHandler Methods

The following methods are DocumentHandler methods that the \s-1SAX\s0 1.0 parser will call and \*(C`XML::SAX2Perl\*(C' will translate to Perl \s-1SAX\s0 methods calls. See \s-1SAX\s0 1.0 for details. setDocumentLocator(locator) startDocument() endDocument() startElement(name, atts) endElement(name) characters(ch, start, length) ignorableWhitespace(ch, start, length) processingInstruction(target, data)

OPTIONS

The following options are supported by \*(C`XML::SAX2Perl\*(C':

Handler default handler to receive events DocumentHandler handler to receive document events DTDHandler handler to receive DTD events ErrorHandler handler to receive error events EntityResolver handler to resolve entities Locale locale to provide localisation for errors Source hash containing the input source for parsing

If no handlers are provided then all events will be silently ignored, except for `\*(C`fatal_error()\*(C'' which will cause a `\*(C`die()\*(C'' to be called after calling `\*(C`end_document()\*(C''.

If a single string argument is passed to the `\*(C`parse()\*(C'' method, it is treated as if a `\*(C`Source\*(C'' option was given with a `\*(C`String\*(C'' parameter.

The `\*(C`Source\*(C'' hash may contain the following parameters:

ByteStream The raw byte stream (file handle) containing the document. String A string containing the document. SystemId The system identifier (URI) of the document. PublicId The public identifier. Encoding A string describing the character encoding.

If more than one of `\*(C`ByteStream\*(C'', `\*(C`String\*(C'', or `\*(C`SystemId\*(C'', then preference is given first to `\*(C`ByteStream\*(C'', then `\*(C`String\*(C'', then `\*(C`SystemId\*(C''.

HANDLERS

The following handlers and properties are supported by \*(C`XML::SAX2Perl\*(C':

DocumentHandler methods

start_document

Receive notification of the beginning of a document. Locator An object that can return the location of any SAX document event.

end_document

Receive notification of the end of a document. No properties defined.

start_element

Receive notification of the beginning of an element. Name The element type name. Attributes Attributes attached to the element, if any. \s-1ALPHA\s0 \s-1WARNING:\s0 The `\*(C`Attributes\*(C'' value is not translated from the \s-1SAX\s0 1.0 value, so it will contain an AttributeList object.

end_element

Receive notification of the end of an element. Name The element type name.

characters

Receive notification of character data. Data The characters from the XML document.

ignorable_whitespace

Receive notification of ignorable whitespace in element content. Data The characters from the XML document.

processing_instruction

Receive notification of a processing instruction. Target The processing instruction target. Data The processing instruction data, if any.

AUTHOR

Ken MacLeod <[email protected]>

RELATED TO XML::SAX2Perl…

perl\|(1), XML::Perl2SAX\|(3).

Extensible Markup Language (XML) <http://www.w3c.org/XML/> Simple API for XML (SAX) <http://www.megginson.com/SAX/>