home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _815f44638fe31fa73e3bd1c02a030bd7 < prev    next >
Text File  |  2000-03-23  |  25KB  |  527 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>XML::Parser::Expat - Lowlevel access to James Clark's expat XML parser</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> XML::Parser::Expat - Lowlevel access to James Clark's expat XML parser</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#methods">METHODS</A></LI>
  26.     <UL>
  27.  
  28.         <LI><A HREF="#xml::parser::expatnb methods">XML::Parser::ExpatNB Methods</A></LI>
  29.     </UL>
  30.  
  31.     <LI><A HREF="#functions">FUNCTIONS</A></LI>
  32.     <LI><A HREF="#authors">AUTHORS</A></LI>
  33. </UL>
  34. <!-- INDEX END -->
  35.  
  36. <HR>
  37. <P>
  38. <H1><A NAME="name">NAME</A></H1>
  39. <P>XML::Parser::Expat - Lowlevel access to James Clark's expat XML parser</P>
  40. <P>
  41. <HR>
  42. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  43. <UL>
  44. <LI>Linux</LI>
  45. <LI>Solaris</LI>
  46. <LI>Windows</LI>
  47. </UL>
  48. <HR>
  49. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  50. <PRE>
  51.  use XML::Parser::Expat;</PRE>
  52. <PRE>
  53.  $parser = new XML::Parser::Expat;
  54.  $parser->setHandlers('Start' => \&sh,
  55.                       'End'   => \&eh,
  56.                       'Char'  => \&ch);
  57.  open(FOO, 'info.xml') or die "Couldn't open";
  58.  $parser->parse(*FOO);
  59.  close(FOO);
  60.  # $parser->parse('<foo id="me"> here <em>we</em> go </foo>');</PRE>
  61. <PRE>
  62.  sub sh
  63.  {
  64.    my ($p, $el, %atts) = @_;
  65.    $p->setHandlers('Char' => \&spec)
  66.      if ($el eq 'special');
  67.    ...
  68.  }</PRE>
  69. <PRE>
  70.  sub eh
  71.  {
  72.    my ($p, $el) = @_;
  73.    $p->setHandlers('Char' => \&ch)  # Special elements won't contain
  74.      if ($el eq 'special');         # other special elements
  75.    ...
  76.  }</PRE>
  77. <P>
  78. <HR>
  79. <H1><A NAME="description">DESCRIPTION</A></H1>
  80. <P>This module provides an interface to James Clark's XML parser, expat. As in
  81. expat, a single instance of the parser can only parse one document. Calls
  82. to parsestring after the first for a given instance will die.</P>
  83. <P>Expat (and XML::Parser::Expat) are event based. As the parser recognizes
  84. parts of the document (say the start or end of an XML element), then any
  85. handlers registered for that type of an event are called with suitable
  86. parameters.</P>
  87. <P>
  88. <HR>
  89. <H1><A NAME="methods">METHODS</A></H1>
  90. <DL>
  91. <DT><STRONG><A NAME="item_new">new</A></STRONG><BR>
  92. <DD>
  93. This is a class method, the constructor for XML::Parser::Expat. Options are
  94. passed as keyword value pairs. The recognized options are:
  95. <UL>
  96. <LI><STRONG><A NAME="item_ProtocolEncoding">ProtocolEncoding</A></STRONG><BR>
  97.  
  98. The protocol encoding name. The default is none. The expat built-in
  99. encodings are: <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, <CODE>UTF-16</CODE>, and <CODE>US-ASCII</CODE>.
  100. Other encodings may be used if they have encoding maps in one of the
  101. directories in the @Encoding_Path list. Setting the protocol encoding
  102. overrides any encoding in the XML declaration.
  103. <P></P>
  104. <LI><STRONG><A NAME="item_Namespaces">Namespaces</A></STRONG><BR>
  105.  
  106. When this option is given with a true value, then the parser does namespace
  107. processing. By default, namespace processing is turned off. When it is
  108. turned on, the parser consumes <EM>xmlns</EM> attributes and strips off prefixes
  109. from element and attributes names where those prefixes have a defined
  110. namespace. A name's namespace can be found using the <A HREF="#namespace">namespace</A> method
  111. and two names can be checked for absolute equality with the <A HREF="#eq_name">eq_name</A>
  112. method.
  113. <P></P>
  114. <LI><STRONG><A NAME="item_NoExpand">NoExpand</A></STRONG><BR>
  115.  
  116. Normally, the parser will try to expand references to entities defined in
  117. the internal subset. If this option is set to a true value, and a default
  118. handler is also set, then the default handler will be called when an
  119. entity reference is seen in text. This has no effect if a default handler
  120. has not been registered, and it has no effect on the expansion of entity
  121. references inside attribute values.
  122. <P></P>
  123. <LI><STRONG><A NAME="item_Stream_Delimiter">Stream_Delimiter</A></STRONG><BR>
  124.  
  125. This option takes a string value. When this string is found alone on a line
  126. while parsing from a stream, then the parse is ended as if it saw an end of
  127. file. The intended use is with a stream of xml documents in a MIME multipart
  128. format. The string should not contain a trailing newline.
  129. <P></P>
  130. <LI><STRONG><A NAME="item_ErrorContext">ErrorContext</A></STRONG><BR>
  131.  
  132. When this option is defined, errors are reported in context. The value
  133. of ErrorContext should be the number of lines to show on either side of
  134. the line in which the error occurred.
  135. <P></P>
  136. <LI><STRONG><A NAME="item_ParseParamEnt">ParseParamEnt</A></STRONG><BR>
  137.  
  138. Unless standalone is set to ``yes'' in the XML declaration, setting this to
  139. a true value allows the external DTD to be read, and parameter entities
  140. to be parsed and expanded.
  141. <P></P>
  142. <LI><STRONG><A NAME="item_Base">Base</A></STRONG><BR>
  143.  
  144. The base to use for relative pathnames or URLs. This can also be done by
  145. using the base method.
  146. <P></P></UL>
  147. <DT><STRONG><A NAME="item_setHandlers">setHandlers(TYPE, HANDLER [, TYPE, HANDLER [...]])</A></STRONG><BR>
  148. <DD>
  149. This method registers handlers for the various events. If no handlers are
  150. registered, then a call to parsestring or parsefile will only determine if
  151. the corresponding XML document is well formed (by returning without error.)
  152. This may be called from within a handler, after the parse has started.
  153. <P>Setting a handler to something that evaluates to false unsets that
  154. handler.</P>
  155. <P>This method returns a list of type, handler pairs corresponding to the
  156. input. The handlers returned are the ones that were in effect before the
  157. call to setHandlers.</P>
  158. <P>The recognized events and the parameters passed to the corresponding
  159. handlers are:</P>
  160. <UL>
  161. <LI><STRONG><A NAME="item_Start">Start        (Parser, Element [, Attr, Val [,...]])</A></STRONG><BR>
  162.  
  163. This event is generated when an XML start tag is recognized. Parser is
  164. an XML::Parser::Expat instance. Element is the name of the XML element that
  165. is opened with the start tag. The Attr & Val pairs are generated for each
  166. attribute in the start tag.
  167. <P></P>
  168. <LI><STRONG><A NAME="item_End">End        (Parser, Element)</A></STRONG><BR>
  169.  
  170. This event is generated when an XML end tag is recognized. Note that
  171. an XML empty tag (<foo/>) generates both a start and an end event.
  172. <P>There is always a lower level start and end handler installed that wrap
  173. the corresponding callbacks. This is to handle the context mechanism.
  174. A consequence of this is that the default handler (see below) will not
  175. see a start tag or end tag unless the default_current method is called.</P>
  176. <P></P>
  177. <LI><STRONG><A NAME="item_Char">Char        (Parser, String)</A></STRONG><BR>
  178.  
  179. This event is generated when non-markup is recognized. The non-markup
  180. sequence of characters is in String. A single non-markup sequence of
  181. characters may generate multiple calls to this handler. Whatever the
  182. encoding of the string in the original document, this is given to the
  183. handler in UTF-8.
  184. <P></P>
  185. <LI><STRONG><A NAME="item_Proc">Proc        (Parser, Target, Data)</A></STRONG><BR>
  186.  
  187. This event is generated when a processing instruction is recognized.
  188. <P></P>
  189. <LI><STRONG><A NAME="item_Comment">Comment        (Parser, String)</A></STRONG><BR>
  190.  
  191. This event is generated when a comment is recognized.
  192. <P></P>
  193. <LI><STRONG><A NAME="item_CdataStart">CdataStart    (Parser)</A></STRONG><BR>
  194.  
  195. This is called at the start of a CDATA section.
  196. <P></P>
  197. <LI><STRONG><A NAME="item_CdataEnd">CdataEnd    (Parser)</A></STRONG><BR>
  198.  
  199. This is called at the end of a CDATA section.
  200. <P></P>
  201. <LI><STRONG><A NAME="item_Default">Default        (Parser, String)</A></STRONG><BR>
  202.  
  203. This is called for any characters that don't have a registered handler.
  204. This includes both characters that are part of markup for which no
  205. events are generated (markup declarations) and characters that
  206. could generate events, but for which no handler has been registered.
  207. <P>Whatever the encoding in the original document, the string is returned to
  208. the handler in UTF-8.</P>
  209. <P></P>
  210. <LI><STRONG><A NAME="item_Unparsed">Unparsed        (Parser, Entity, Base, Sysid, Pubid, Notation)</A></STRONG><BR>
  211.  
  212. This is called for a declaration of an unparsed entity. Entity is the name
  213. of the entity. Base is the base to be used for resolving a relative URI.
  214. Sysid is the system id. Pubid is the public id. Notation is the notation
  215. name. Base and Pubid may be undefined.
  216. <P></P>
  217. <LI><STRONG><A NAME="item_Notation">Notation        (Parser, Notation, Base, Sysid, Pubid)</A></STRONG><BR>
  218.  
  219. This is called for a declaration of notation. Notation is the notation name.
  220. Base is the base to be used for resolving a relative URI. Sysid is the system
  221. id. Pubid is the public id. Base, Sysid, and Pubid may all be undefined.
  222. <P></P>
  223. <LI><STRONG><A NAME="item_ExternEnt">ExternEnt        (Parser, Base, Sysid, Pubid)</A></STRONG><BR>
  224.  
  225. This is called when an external entity is referenced. Base is the base to be
  226. used for resolving a relative URI. Sysid is the system id. Pubid is the public
  227. id. Base, and Pubid may be undefined.
  228. <P>This handler should either return a string, which represents the contents of
  229. the external entity, or return an open filehandle that can be read to obtain
  230. the contents of the external entity, or return undef, which indicates the
  231. external entity couldn't be found and will generate a parse error.</P>
  232. <P>If an open filehandle is returned, it must be returned as either a glob
  233. (*FOO) or as a reference to a glob (e.g. an instance of IO::Handle). The
  234. parser will close the filehandle after using it.</P>
  235. <P></P>
  236. <LI><STRONG><A NAME="item_Entity">Entity            (Parser, Name, Val, Sysid, Pubid, Ndata)</A></STRONG><BR>
  237.  
  238. This is called when an entity is declared. For internal entities, the Val
  239. parameter will contain the value and the remaining three parameters will
  240. be undefined. For external entities, the Val parameter
  241. will be undefined, the Sysid parameter will have the system id, the Pubid
  242. parameter will have the public id if it was provided (it will be undefined
  243. otherwise), the Ndata parameter will contain the notation for unparsed
  244. entities. If this is a parameter entity declaration, then a '%' will be
  245. prefixed to the name.
  246. <P>Note that this handler and the Unparsed handler above overlap. If both are
  247. set, then this handler will not be called for unparsed entities.</P>
  248. <P></P>
  249. <LI><STRONG><A NAME="item_Element">Element            (Parser, Name, Model)</A></STRONG><BR>
  250.  
  251. The element handler is called when an element declaration is found. Name is
  252. the element name, and Model is the content model as a string.
  253. <P></P>
  254. <LI><STRONG><A NAME="item_Attlist">Attlist            (Parser, Elname, Attname, Type, Default, Fixed)</A></STRONG><BR>
  255.  
  256. This handler is called for each attribute in an ATTLIST declaration.
  257. So an ATTLIST declaration that has multiple attributes
  258. will generate multiple calls to this handler. The Elname parameter is the
  259. name of the element with which the attribute is being associated. The Attname
  260. parameter is the name of the attribute. Type is the attribute type, given as
  261. a string. Default is the default value, which will either be ``#REQUIRED'',
  262. ``#IMPLIED'' or a quoted string (i.e. the returned string will begin and end
  263. with a quote character). If Fixed is true, then this is a fixed attribute.
  264. <P></P>
  265. <LI><STRONG><A NAME="item_Doctype">Doctype            (Parser, Name, Sysid, Pubid, Internal)</A></STRONG><BR>
  266.  
  267. This handler is called for DOCTYPE declarations. Name is the document type
  268. name. Sysid is the system id of the document type, if it was provided,
  269. otherwise it's undefined. Pubid is the public id of the document type,
  270. which will be undefined if no public id was given. Internal is the internal
  271. subset, given as a string. If there was no internal subset, it will be
  272. undefined. Internal will contain all whitespace, comments, processing
  273. instructions, and declarations seen in the internal subset. The declarations
  274. will be there whether or not they have been processed by another handler
  275. (except for unparsed entities processed by the Unparsed handler). However,
  276. comments and processing instructions will not appear if they've been processed
  277. by their respective handlers.
  278. <P></P>
  279. <LI><STRONG><A NAME="item_XMLDecl">XMLDecl            (Parser, Version, Encoding, Standalone)</A></STRONG><BR>
  280.  
  281. This handler is called for xml declarations. Version is a string containg
  282. the version. Encoding is either undefined or contains an encoding string.
  283. Standalone will be either true, false, or undefined if the standalone attribute
  284. is yes, no, or not made respectively.
  285. <P></P></UL>
  286. <DT><STRONG><A NAME="item_namespace"><CODE>namespace(name)</CODE></A></STRONG><BR>
  287. <DD>
  288. Return the URI of the namespace that the name belongs to. If the name doesn't
  289. belong to any namespace, an undef is returned. This is only valid on names
  290. received through the Start or End handlers from a single document, or through
  291. a call to the generate_ns_name method. In other words, don't use names
  292. generated from one instance of XML::Parser::Expat with other instances.
  293. <P></P>
  294. <DT><STRONG><A NAME="item_eq_name">eq_name(name1, name2)</A></STRONG><BR>
  295. <DD>
  296. Return true if name1 and name2 are identical (i.e. same name and from
  297. the same namespace.) This is only meaningful if both names were obtained
  298. through the Start or End handlers from a single document, or through
  299. a call to the generate_ns_name method.
  300. <P></P>
  301. <DT><STRONG><A NAME="item_generate_ns_name">generate_ns_name(name, namespace)</A></STRONG><BR>
  302. <DD>
  303. Return a name, associated with a given namespace, good for using with the
  304. above 2 methods. The namespace argument should be the namespace URI, not
  305. a prefix.
  306. <P></P>
  307. <DT><STRONG><A NAME="item_new_ns_prefixes">new_ns_prefixes</A></STRONG><BR>
  308. <DD>
  309. When called from a start tag handler, returns namespace prefixes declared
  310. with this start tag. If called elsewere (or if there were no namespace
  311. prefixes declared), it returns an empty list. Setting of the default
  312. namespace is indicated with '#default' as a prefix.
  313. <P></P>
  314. <DT><STRONG><A NAME="item_expand_ns_prefix"><CODE>expand_ns_prefix(prefix)</CODE></A></STRONG><BR>
  315. <DD>
  316. Return the uri to which the given prefix is currently bound. Returns
  317. undef if the prefix isn't currently bound. Use '#default' to find the
  318. current binding of the default namespace (if any).
  319. <P></P>
  320. <DT><STRONG><A NAME="item_current_ns_prefixes">current_ns_prefixes</A></STRONG><BR>
  321. <DD>
  322. Return a list of currently bound namespace prefixes. The order of the
  323. the prefixes in the list has no meaning. If the default namespace is
  324. currently bound, '#default' appears in the list.
  325. <P></P>
  326. <DT><STRONG><A NAME="item_recognized_string">recognized_string</A></STRONG><BR>
  327. <DD>
  328. Returns the string from the document that was recognized in order to call
  329. the current handler. For instance, when called from a start handler, it
  330. will give us the the start-tag string. The string is encoded in UTF-8.
  331. <P></P>
  332. <DT><STRONG><A NAME="item_original_string">original_string</A></STRONG><BR>
  333. <DD>
  334. Returns the verbatim string from the document that was recognized in
  335. order to call the current handler. The string is in the original document
  336. encoding.
  337. <P></P>
  338. <DT><STRONG><A NAME="item_default_current">default_current</A></STRONG><BR>
  339. <DD>
  340. When called from a handler, causes the sequence of characters that generated
  341. the corresponding event to be sent to the default handler (if one is
  342. registered). Use of this method is deprecated in favor the recognized_string
  343. method, which you can use without installing a default handler.
  344. <P></P>
  345. <DT><STRONG><A NAME="item_xpcroak"><CODE>xpcroak(message)</CODE></A></STRONG><BR>
  346. <DD>
  347. Concatenate onto the given message the current line number within the
  348. XML document plus the message implied by ErrorContext. Then croak with
  349. the formed message.
  350. <P></P>
  351. <DT><STRONG><A NAME="item_xpcarp"><CODE>xpcarp(message)</CODE></A></STRONG><BR>
  352. <DD>
  353. Concatenate onto the given message the current line number within the
  354. XML document plus the message implied by ErrorContext. Then carp with
  355. the formed message.
  356. <P></P>
  357. <DT><STRONG><A NAME="item_current_line">current_line</A></STRONG><BR>
  358. <DD>
  359. Returns the line number of the current position of the parse.
  360. <P></P>
  361. <DT><STRONG><A NAME="item_current_column">current_column</A></STRONG><BR>
  362. <DD>
  363. Returns the column number of the current position of the parse.
  364. <P></P>
  365. <DT><STRONG><A NAME="item_current_byte">current_byte</A></STRONG><BR>
  366. <DD>
  367. Returns the current position of the parse.
  368. <P></P>
  369. <DT><STRONG><A NAME="item_base">base([NEWBASE]);</A></STRONG><BR>
  370. <DD>
  371. Returns the current value of the base for resolving relative URIs. If
  372. NEWBASE is supplied, changes the base to that value.
  373. <P></P>
  374. <DT><STRONG><A NAME="item_context">context</A></STRONG><BR>
  375. <DD>
  376. Returns a list of element names that represent open elements, with the
  377. last one being the innermost. Inside start and end tag handlers, this
  378. will be the tag of the parent element.
  379. <P></P>
  380. <DT><STRONG><A NAME="item_current_element">current_element</A></STRONG><BR>
  381. <DD>
  382. Returns the name of the innermost currently opened element. Inside
  383. start or end handlers, returns the parent of the element associated
  384. with those tags.
  385. <P></P>
  386. <DT><STRONG><A NAME="item_in_element"><CODE>in_element(NAME)</CODE></A></STRONG><BR>
  387. <DD>
  388. Returns true if NAME is equal to the name of the innermost currently opened
  389. element. If namespace processing is being used and you want to check
  390. against a name that may be in a namespace, then use the generate_ns_name
  391. method to create the NAME argument.
  392. <P></P>
  393. <DT><STRONG><A NAME="item_within_element"><CODE>within_element(NAME)</CODE></A></STRONG><BR>
  394. <DD>
  395. Returns the number of times the given name appears in the context list.
  396. If namespace processing is being used and you want to check
  397. against a name that may be in a namespace, then use the generate_ns_name
  398. method to create the NAME argument.
  399. <P></P>
  400. <DT><STRONG><A NAME="item_depth">depth</A></STRONG><BR>
  401. <DD>
  402. Returns the size of the context list.
  403. <P></P>
  404. <DT><STRONG><A NAME="item_element_index">element_index</A></STRONG><BR>
  405. <DD>
  406. Returns an integer that is the depth-first visit order of the current
  407. element. This will be zero outside of the root element. For example,
  408. this will return 1 when called from the start handler for the root element
  409. start tag.
  410. <P></P>
  411. <DT><STRONG><A NAME="item_skip_until"><CODE>skip_until(INDEX)</CODE></A></STRONG><BR>
  412. <DD>
  413. INDEX is an integer that represents an element index. When this method
  414. is called, all handlers are suspended until the start tag for an element
  415. that has an index number equal to INDEX is seen. If a start handler has
  416. been set, then this is the first tag that the start handler will see
  417. after skip_until has been called.
  418. <P></P>
  419. <DT><STRONG><A NAME="item_position_in_context"><CODE>position_in_context(LINES)</CODE></A></STRONG><BR>
  420. <DD>
  421. Returns a string that shows the current parse position. LINES should be
  422. an integer >= 0 that represents the number of lines on either side of the
  423. current parse line to place into the returned string.
  424. <P></P>
  425. <DT><STRONG><A NAME="item_xml_escape">xml_escape(TEXT [, CHAR [, CHAR ...]])</A></STRONG><BR>
  426. <DD>
  427. Returns TEXT with markup characters turned into character entities. Any
  428. additional characters provided as arguments are also turned into character
  429. references where found in TEXT.
  430. <P></P>
  431. <DT><STRONG><A NAME="item_parse">parse (SOURCE)</A></STRONG><BR>
  432. <DD>
  433. The SOURCE parameter should either be a string containing the whole XML
  434. document, or it should be an open IO::Handle. Only a single document
  435. may be parsed for a given instance of XML::Parser::Expat, so this will croak
  436. if it's been called previously for this instance.
  437. <P></P>
  438. <DT><STRONG><A NAME="item_parsestring"><CODE>parsestring(XML_DOC_STRING)</CODE></A></STRONG><BR>
  439. <DD>
  440. Parses the given string as an XML document. Only a single document may be
  441. parsed for a given instance of XML::Parser::Expat, so this will die if either
  442. parsestring or parsefile has been called for this instance previously.
  443. <P>This method is deprecated in favor of the parse method.</P>
  444. <P></P>
  445. <DT><STRONG><A NAME="item_parsefile"><CODE>parsefile(FILENAME)</CODE></A></STRONG><BR>
  446. <DD>
  447. Parses the XML document in the given file. Will die if parsestring or
  448. parsefile has been called previously for this instance.
  449. <P></P>
  450. <DT><STRONG><A NAME="item_is_defaulted"><CODE>is_defaulted(ATTNAME)</CODE></A></STRONG><BR>
  451. <DD>
  452. NO LONGER WORKS. To find out if an attribute is defaulted please use
  453. the specified_attr method.
  454. <P></P>
  455. <DT><STRONG><A NAME="item_specified_attr">specified_attr</A></STRONG><BR>
  456. <DD>
  457. When the start handler receives lists of attributes and values, the
  458. non-defaulted (i.e. explicitly specified) attributes occur in the list
  459. first. This method returns the number of specified items in the list.
  460. So if this number is equal to the length of the list, there were no
  461. defaulted values. Otherwise the number points to the index of the
  462. first defaulted attribute name.
  463. <P></P>
  464. <DT><STRONG><A NAME="item_finish">finish</A></STRONG><BR>
  465. <DD>
  466. Unsets all handlers (including internal ones that set context), but expat
  467. continues parsing to the end of the document or until it finds an error.
  468. It should finish up a lot faster than with the handlers set.
  469. <P></P>
  470. <DT><STRONG><A NAME="item_release">release</A></STRONG><BR>
  471. <DD>
  472. There are data structures used by XML::Parser::Expat that have circular
  473. references. This means that these structures will never be garbage
  474. collected unless these references are explicitly broken. Calling this
  475. method breaks those references (and makes the instance unusable.)
  476. <P>Normally, higher level calls handle this for you, but if you are using
  477. XML::Parser::Expat directly, then it's your responsibility to call it.</P>
  478. <P></P></DL>
  479. <P>
  480. <H2><A NAME="xml::parser::expatnb methods">XML::Parser::ExpatNB Methods</A></H2>
  481. <P>The class XML::Parser::ExpatNB is a subclass of XML::Parser::Expat used
  482. for non-blocking access to the expat library. It does not support the parse,
  483. parsestring, or parsefile methods, but it does have these additional methods:</P>
  484. <DL>
  485. <DT><STRONG><A NAME="item_parse_more"><CODE>parse_more(DATA)</CODE></A></STRONG><BR>
  486. <DD>
  487. Feed expat more text to munch on.
  488. <P></P>
  489. <DT><STRONG><A NAME="item_parse_done">parse_done</A></STRONG><BR>
  490. <DD>
  491. Tell expat that it's gotten the whole document.
  492. <P></P></DL>
  493. <P>
  494. <HR>
  495. <H1><A NAME="functions">FUNCTIONS</A></H1>
  496. <DL>
  497. <DT><STRONG><A NAME="item_load_encoding">XML::Parser::Expat::load_encoding(ENCODING)</A></STRONG><BR>
  498. <DD>
  499. Load an external encoding. ENCODING is either the name of an encoding or
  500. the name of a file. The basename is converted to lowercase and a '.enc'
  501. extension is appended unless there's one already there. Then, unless
  502. it's an absolute pathname (i.e. begins with '/'), the first file by that
  503. name discovered in the @Encoding_Path path list is used.
  504. <P>The encoding in the file is loaded and kept in the %Encoding_Table
  505. table. Earlier encodings of the same name are replaced.</P>
  506. <P>This function is automaticly called by expat when it encounters an encoding
  507. it doesn't know about. Expat shouldn't call this twice for the same
  508. encoding name. The only reason users should use this function is to
  509. explicitly load an encoding not contained in the @Encoding_Path list.</P>
  510. <P></P></DL>
  511. <P>
  512. <HR>
  513. <H1><A NAME="authors">AUTHORS</A></H1>
  514. <P>Larry Wall <<EM><A HREF="mailto:larry@wall.org">larry@wall.org</A></EM>> wrote version 1.0.</P>
  515. <P>Clark Cooper <<EM><A HREF="mailto:coopercc@netheaven.com">coopercc@netheaven.com</A></EM>> picked up support, changed the API
  516. for this version (2.x), provided documentation, and added some standard
  517. package features.</P>
  518. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  519. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  520. <STRONG><P CLASS=block> XML::Parser::Expat - Lowlevel access to James Clark's expat XML parser</P></STRONG>
  521. </TD></TR>
  522. </TABLE>
  523.  
  524. </BODY>
  525.  
  526. </HTML>
  527.