DOMParser.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:58k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Id: DOMParser.hpp,v 1.31 2001/12/05 22:09:02 tng Exp $
  58.  *
  59.  */
  60. #if !defined(DOMPARSER_HPP)
  61. #define DOMPARSER_HPP
  62. #include <dom/DOM_Document.hpp>
  63. #include <framework/XMLDocumentHandler.hpp>
  64. #include <framework/XMLErrorReporter.hpp>
  65. #include <framework/XMLEntityHandler.hpp>
  66. #include <util/ValueStackOf.hpp>
  67. #include <validators/DTD/DocTypeHandler.hpp>
  68. #include <dom/DOM_DocumentType.hpp>
  69. #include <validators/DTD/DTDElementDecl.hpp>
  70. class EntityResolver;
  71. class ErrorHandler;
  72. class XMLPScanToken;
  73. class XMLScanner;
  74. class XMLValidator;
  75. /**
  76.   * This class implements the Document Object Model (DOM) interface.
  77.   * It should be used by applications which choose to parse and
  78.   * process the XML document using the DOM api's. This implementation
  79.   * also allows the applications to install an error and an entitty
  80.   * handler (useful extensions to the DOM specification).
  81.   *
  82.   * <p>It can be used to instantiate a validating or non-validating
  83.   * parser, by setting a member flag.</p>
  84.   */
  85. class PARSERS_EXPORT DOMParser :
  86.     public XMLDocumentHandler
  87.     , public XMLErrorReporter
  88.     , public XMLEntityHandler
  89.     , public DocTypeHandler
  90. {
  91. public :
  92.     // -----------------------------------------------------------------------
  93.     //  Class types
  94.     // -----------------------------------------------------------------------
  95.     enum ValSchemes
  96.     {
  97.         Val_Never
  98.         , Val_Always
  99.         , Val_Auto
  100.     };
  101.     // -----------------------------------------------------------------------
  102.     //  Constructors and Detructor
  103.     // -----------------------------------------------------------------------
  104.     /** @name Constructors and Destructor */
  105.     //@{
  106.     /** Construct a DOMParser, with an optional validator
  107.       *
  108.       * Constructor with an instance of validator class to use for
  109.       * validation. If you don't provide a validator, a default one will
  110.       * be created for you in the scanner.
  111.       *
  112.       * @param valToAdopt Pointer to the validator instance to use. The
  113.       *                   parser is responsible for freeing the memory.
  114.       */
  115.     DOMParser(XMLValidator* const valToAdopt = 0);
  116.     /**
  117.       * Destructor
  118.       */
  119.     ~DOMParser();
  120.     //@}
  121.     /** Reset the parser
  122.       *
  123.       * This method resets the state of the DOM driver and makes
  124.       * it ready for a fresh parse run.
  125.       */
  126.     void reset();
  127.     // -----------------------------------------------------------------------
  128.     //  Getter methods
  129.     // -----------------------------------------------------------------------
  130.     /** @name Getter methods */
  131.     //@{
  132.     /** Get the DOM document
  133.       *
  134.       * This method returns the DOM_Document object representing the
  135.       * root of the document tree. This object provides the primary
  136.       * access to the document's data.
  137.       *
  138.       * @return The DOM_Document object which represents the entire
  139.       *         XML document.
  140.       */
  141.     DOM_Document getDocument();
  142.     /** Get a pointer to the error handler
  143.       *
  144.       * This method returns the installed error handler. If no handler
  145.       * has been installed, then it will be a zero pointer.
  146.       *
  147.       * @return The pointer to the installed error handler object.
  148.       */
  149.     ErrorHandler* getErrorHandler();
  150.     /** Get a const pointer to the error handler
  151.       *
  152.       * This method returns the installed error handler.  If no handler
  153.       * has been installed, then it will be a zero pointer.
  154.       *
  155.       * @return A const pointer to the installed error handler object.
  156.       */
  157.     const ErrorHandler* getErrorHandler() const;
  158.     /** Get a pointer to the entity resolver
  159.       *
  160.       * This method returns the installed entity resolver.  If no resolver
  161.       * has been installed, then it will be a zero pointer.
  162.       *
  163.       * @return The pointer to the installed entity resolver object.
  164.       */
  165.     EntityResolver* getEntityResolver();
  166.     /** Get a const pointer to the entity resolver
  167.       *
  168.       * This method returns the installed entity resolver. If no resolver
  169.       * has been installed, then it will be a zero pointer.
  170.       *
  171.       * @return A const pointer to the installed entity resolver object.
  172.       */
  173.     const EntityResolver* getEntityResolver() const;
  174.     /** Get a const reference to the underlying scanner
  175.       *
  176.       * This method returns a reference to the underlying scanner object.
  177.       * It allows read only access to data maintained in the scanner.
  178.       *
  179.       * @return A const reference to the underlying scanner object.
  180.       */
  181.     const XMLScanner& getScanner() const;
  182.     /** Get a const reference to the validator
  183.       *
  184.       * This method returns a reference to the parser's installed
  185.       * validator.
  186.       *
  187.       * @return A const reference to the installed validator object.
  188.       */
  189.     const XMLValidator& getValidator() const;
  190.     /**
  191.       * This method returns an enumerated value that indicates the current
  192.       * validation scheme set on this parser.
  193.       *
  194.       * @return The ValSchemes value current set on this parser.
  195.       * @see #setValidationScheme
  196.       */
  197.     ValSchemes getValidationScheme() const;
  198.     /** Get the 'do schema' flag
  199.       *
  200.       * This method returns the state of the parser's schema processing
  201.       * flag.
  202.       *
  203.       * @return true, if the parser is currently configured to
  204.       *         understand schema, false otherwise.
  205.       *
  206.       * @see #setDoSchema
  207.       */
  208.     bool getDoSchema() const;
  209.     /** Get the 'full schema constraint checking' flag
  210.       *
  211.       * This method returns the state of the parser's full schema constraint
  212.       * checking flag.
  213.       *
  214.       * @return true, if the parser is currently configured to
  215.       *         have full schema constraint checking, false otherwise.
  216.       *
  217.       * @see #setValidationSchemaFullChecking
  218.       */
  219.     bool getValidationSchemaFullChecking() const;
  220.     /** Get error count from the last parse operation.
  221.       *
  222.       * This method returns the error count from the last parse
  223.       * operation. Note that this count is actually stored in the
  224.       * scanner, so this method simply returns what the
  225.       * scanner reports.
  226.       *
  227.       * @return number of errors encountered during the latest
  228.       * parse operation.
  229.       *
  230.       */
  231.     int getErrorCount() const;
  232.     /** Get the 'do namespaces' flag
  233.       *
  234.       * This method returns the state of the parser's namespace processing
  235.       * flag.
  236.       *
  237.       * @return true, if the parser is currently configured to
  238.       *         understand namespaces, false otherwise.
  239.       *
  240.       * @see #setDoNamespaces
  241.       */
  242.     bool getDoNamespaces() const;
  243.     /** Get the 'exit on first error' flag
  244.       *
  245.       * This method returns the state of the parser's
  246.       * exit-on-First-Fatal-Error flag. If this flag is true, then the
  247.       * parse will exit the first time it sees any non-wellformed XML or
  248.       * any validity error. The default state is true.
  249.       *
  250.       * @return true, if the parser is currently configured to
  251.       *         exit on the first fatal error, false otherwise.
  252.       *
  253.       * @see #setExitOnFirstFatalError
  254.       */
  255.     bool getExitOnFirstFatalError() const;
  256.     /**
  257.       * This method returns the state of the parser's
  258.       * validation-constraint-fatal flag.
  259.       *
  260.       * @return true, if the parser is currently configured to
  261.       *         set validation constraint errors as fatal, false
  262.       *         otherwise.
  263.       *
  264.       * @see #setValidationContraintFatal
  265.       */
  266.     bool getValidationConstraintFatal() const;
  267.     /** Get the 'include entity references' flag
  268.       *
  269.       * This flag  specifies whether the parser is
  270.       * creating entity reference nodes in the DOM tree being produced.
  271.       * When the 'create' flag is
  272.       * true, the DOM tree will contain entity reference nodes.
  273.       * When the 'create' flag is false, no entity reference nodes
  274.       * are included in the DOM tree.
  275.       * <p>The replacement text
  276.       * of the entity is included in either case, either as a
  277.       * child of the Entity Reference node or in place at the location
  278.       * of the reference.
  279.       *
  280.       * @return  The state of the create entity reference node
  281.       *               flag.
  282.       * @see #setCreateEntityReferenceNodes
  283.       */
  284.     bool  getCreateEntityReferenceNodes()const;
  285.    /** Get the 'include ignorable whitespace' flag.
  286.       *
  287.       * This method returns the state of the parser's include ignorable
  288.       * whitespace flag.
  289.       *
  290.       * @return 'true' if the include ignorable whitespace flag is set on
  291.       *         the parser, 'false' otherwise.
  292.       *
  293.       * @see #setIncludeIgnorableWhitespace
  294.       */
  295.     bool getIncludeIgnorableWhitespace() const;
  296.     /** Get the 'to create MXLDecl node' flag.
  297.       *
  298.       * This method returns the state of the parser's to create XMLDecl
  299.       * DOM Node flag.
  300.       *
  301.       * @return 'true' if the toCreateXMLDeclTypeNode flag is set on
  302.       *         the parser, 'false' otherwise.
  303.       *
  304.       */
  305.     bool getToCreateXMLDeclTypeNode() const;
  306.    /** Get the set of Namespace/SchemaLocation that is specified externaly.
  307.       *
  308.       * This method returns the list of Namespace/SchemaLocation that was
  309.       * specified using setExternalSchemaLocation.
  310.       *
  311.       * The parser owns the returned string, and the memory allocated for
  312.       * the returned string will be destroyed when the parser is deleted.
  313.       *
  314.       * To ensure assessiblity of the returned information after the parser
  315.       * is deleted, callers need to copy and store the returned information
  316.       * somewhere else.
  317.       *
  318.       * @return a pointer to the list of Namespace/SchemaLocation that was
  319.       *         specified externally.  The pointer spans the same life-time as
  320.       *         the parser.  A null pointer is returned if nothing
  321.       *         was specified externally.
  322.       *
  323.       * @see #setExternalSchemaLocation(const XMLCh* const)
  324.       */
  325.     XMLCh* getExternalSchemaLocation() const;
  326.    /** Get the noNamespace SchemaLocation that is specified externaly.
  327.       *
  328.       * This method returns the no target namespace XML Schema Location
  329.       * that was specified using setExternalNoNamespaceSchemaLocation.
  330.       *
  331.       * The parser owns the returned string, and the memory allocated for
  332.       * the returned string will be destroyed when the parser is deleted.
  333.       *
  334.       * To ensure assessiblity of the returned information after the parser
  335.       * is deleted, callers need to copy and store the returned information
  336.       * somewhere else.
  337.       *
  338.       * @return a pointer to the no target namespace Schema Location that was
  339.       *         specified externally.  The pointer spans the same life-time as
  340.       *         the parser.  A null pointer is returned if nothing
  341.       *         was specified externally.
  342.       *
  343.       * @see #setExternalNoNamespaceSchemaLocation(const XMLCh* const)
  344.       */
  345.     XMLCh* getExternalNoNamespaceSchemaLocation() const;
  346.     //@}
  347.     // -----------------------------------------------------------------------
  348.     //  Setter methods
  349.     // -----------------------------------------------------------------------
  350.     /** @name Setter methods */
  351.     //@{
  352.     /** Set the error handler
  353.       *
  354.       * This method allows applications to install their own error handler
  355.       * to trap error and warning messages.
  356.       *
  357.       * <i>Any previously set handler is merely dropped, since the parser
  358.       * does not own them.</i>
  359.       *
  360.       * @param handler  A const pointer to the user supplied error
  361.       *                 handler.
  362.       *
  363.       * @see #getErrorHandler
  364.       */
  365.     void setErrorHandler(ErrorHandler* const handler);
  366.     /** Set the entity resolver
  367.       *
  368.       * This method allows applications to install their own entity
  369.       * resolver. By installing an entity resolver, the applications
  370.       * can trap and potentially redirect references to external
  371.       * entities.
  372.       *
  373.       * <i>Any previously set resolver is merely dropped, since the parser
  374.       * does not own them.</i>
  375.       *
  376.       * @param handler  A const pointer to the user supplied entity
  377.       *                 resolver.
  378.       *
  379.       * @see #getEntityResolver
  380.       */
  381.     void setEntityResolver(EntityResolver* const handler);
  382.     /** Set the 'do namespaces' flag
  383.       *
  384.       * This method allows users to enable or disable the parser's
  385.       * namespace processing. When set to true, parser starts enforcing
  386.       * all the constraints and rules specified by the NameSpace
  387.       * specification.
  388.       *
  389.       * The parser's default state is: false.
  390.       *
  391.       * This flag is ignored by the underlying scanner if the installed
  392.       * validator indicates that namespace constraints should be
  393.       * enforced.
  394.       *
  395.       * @param newState The value specifying whether NameSpace rules should
  396.       *                 be enforced or not.
  397.       *
  398.       * @see #getDoNamespaces
  399.       */
  400.     void setDoNamespaces(const bool newState);
  401.     /** Set the 'exit on first error' flag
  402.       *
  403.       * This method allows users to set the parser's behaviour when it
  404.       * encounters the first fatal error. If set to true, the parser
  405.       * will exit at the first fatal error. If false, then it will
  406.       * report the error and continue processing.
  407.       *
  408.       * The default value is 'true' and the parser exits on the
  409.       * first fatal error.
  410.       *
  411.       * @param newState The value specifying whether the parser should
  412.       *                 continue or exit when it encounters the first
  413.       *                 fatal error.
  414.       *
  415.       * @see #getExitOnFirstFatalError
  416.       */
  417.     void setExitOnFirstFatalError(const bool newState);
  418.     /**
  419.       * This method allows users to set the parser's behaviour when it
  420.       * encounters a validtion constraint error. If set to true, and the
  421.       * the parser is set to exit when it encounter the first fatal error,
  422.       * the parser will exit at the first encounter. If false, then it will
  423.       * report the error and continue processing.
  424.       *
  425.       * <p>The default value is 'false'.</p>
  426.       *
  427.       * @param newState The value specifying whether the parser should
  428.       *                 continue or exit when it encounters a validation
  429.       *                 constraint error.
  430.       *
  431.       * @see #getValidationConstraintFatal
  432.       */
  433.     void setValidationConstraintFatal(const bool newState);
  434.      /** Set the 'include entity references' flag
  435.       *
  436.       * This method allows the user to specify whether the parser should
  437.       * create entity reference nodes in the DOM tree being produced.
  438.       * When the 'create' flag is
  439.       * true, the DOM tree constains entity reference nodes.
  440.       * When the 'create' flag is false, no entity reference nodes
  441.       * are included in the DOM tree.
  442.       * <p>The replacement text
  443.       * of the entity is included in either case, either as a
  444.       * child of the Entity Reference node or in place at the location
  445.       * of the reference.
  446.       *
  447.       * @param create The new state of the create entity reference nodes
  448.       *               flag.
  449.       */
  450.     void setCreateEntityReferenceNodes(const bool create);
  451.    /** Set the 'include ignorable whitespace' flag
  452.       *
  453.       * This method allows the user to specify whether a validating parser
  454.       * should include ignorable whitespaces as text nodes.  It has no effect
  455.       * on non-validating parsers which always include non-markup text.
  456.       * <p>When set to true (also the default), ignorable whitespaces will be
  457.       * added to the DOM tree as text nodes.  The method
  458.       * DOM_Text::isIgnorableWhitespace() will return true for those text
  459.       * nodes only.
  460.       * <p>When set to false, all ignorable whitespace will be discarded and
  461.       * no text node is added to the DOM tree.  Note: applications intended
  462.       * to process the "xml:space" attribute should not set this flag to false.
  463.       * And this flag also overrides any schema datateye whitespace facets,
  464.       * that is, all ignorable whitespace will be discarded even though
  465.       * 'preserve' is set in schema datatype whitespace facets.
  466.       *
  467.       * @param include The new state of the include ignorable whitespace
  468.       *                flag.
  469.       *
  470.       * @see #getIncludeIgnorableWhitespace
  471.       */
  472.     void setIncludeIgnorableWhitespace(const bool include);
  473.     /**
  474.       * This method allows users to set the validation scheme to be used
  475.       * by this parser. The value is one of the ValSchemes enumerated values
  476.       * defined by this class:
  477.       *
  478.       * <br>  Val_Never  - turn off validation
  479.       * <br>  Val_Always - turn on validation
  480.       * <br>  Val_Auto   - turn on validation if any internal/external
  481.       *                  DTD subset have been seen
  482.       *
  483.       * <p>The parser's default state is: Val_Auto.</p>
  484.       *
  485.       * @param newScheme The new validation scheme to use.
  486.       *
  487.       * @see #getValidationScheme
  488.       */
  489.     void setValidationScheme(const ValSchemes newScheme);
  490.     /** Set the 'do schema' flag
  491.       *
  492.       * This method allows users to enable or disable the parser's
  493.       * schema processing. When set to false, parser will not process
  494.       * any schema found.
  495.       *
  496.       * The parser's default state is: false.
  497.       *
  498.       * @param newState The value specifying whether schema support should
  499.       *                 be enforced or not.
  500.       *
  501.       * @see #getDoSchema
  502.       */
  503.     void setDoSchema(const bool newState);
  504.     /**
  505.       * This method allows the user to turn full Schema constraint checking on/off.
  506.       * Only takes effect if Schema validation is enabled.
  507.       * If turned off, partial constraint checking is done.
  508.       *
  509.       * Full schema constraint checking includes those checking that may
  510.       * be time-consuming or memory intensive. Currently, particle unique
  511.       * attribution constraint checking and particle derivation resriction checking
  512.       * are controlled by this option.
  513.       *
  514.       * The parser's default state is: false.
  515.       *
  516.       * @param schemaFullChecking True to turn on full schema constraint checking.
  517.       *
  518.       * @see #getValidationSchemaFullChecking
  519.       */
  520.     void setValidationSchemaFullChecking(const bool schemaFullChecking);
  521.     /**
  522.       * This method allows users to set the toCreateXMLDeclTypeNode flag
  523.       * by this parser. By setting it to 'true' user can have XMLDecl type
  524.       * nodes attached to the DOM tree.
  525.       *
  526.       * <p>The parser's default state is: false </p>
  527.       *
  528.       * @param newState The new to create XMLDecl type node flag
  529.       *
  530.       */
  531.     void setToCreateXMLDeclTypeNode(const bool create);
  532.     /**
  533.       * This method allows the user to specify a list of schemas to use.
  534.       * If the targetNamespace of a schema specified using this method matches
  535.       * the targetNamespace of a schema occuring in the instance document in
  536.       * the schemaLocation attribute, or if the targetNamespace matches the
  537.       * namespace attribute of the "import" element, the schema specified by the
  538.       * user using this method will be used (i.e., the schemaLocation attribute
  539.       * in the instance document or on the "import" element will be effectively ignored).
  540.       *
  541.       * If this method is called more than once, only the last one takes effect.
  542.       *
  543.       * The syntax is the same as for schemaLocation attributes in instance
  544.       * documents: e.g, "http://www.example.com file_name.xsd". The user can
  545.       * specify more than one XML Schema in the list.
  546.       *
  547.       * @param the list of schemas to use
  548.       *
  549.       * @see #getExternalSchemaLocation
  550.       */
  551.     void setExternalSchemaLocation(const XMLCh* const schemaLocation);
  552.     /**
  553.       * This method is same as setExternalSchemaLocation(const XMLCh* const).
  554.       * It takes native char string as parameter
  555.       *
  556.       * @param the list of schemas to use
  557.       *
  558.       * @see #setExternalSchemaLocation(const XMLCh* const)
  559.       */
  560.     void setExternalSchemaLocation(const char* const schemaLocation);
  561.     /**
  562.       * This method allows the user to specify the no target namespace XML
  563.       * Schema Location externally.  If specified, the instance document's
  564.       * noNamespaceSchemaLocation attribute will be effectively ignored.
  565.       *
  566.       * If this method is called more than once, only the last one takes effect.
  567.       *
  568.       * The syntax is the same as for the noNamespaceSchemaLocation attribute
  569.       * that may occur in an instance document: e.g."file_name.xsd".
  570.       *
  571.       * @param the XML Schema Location with no target namespace
  572.       *
  573.       * @see #getExternalNoNamespaceSchemaLocation
  574.       */
  575.     void setExternalNoNamespaceSchemaLocation(const XMLCh* const noNamespaceSchemaLocation);
  576.     /**
  577.       * This method is same as setExternalNoNamespaceSchemaLocation(const XMLCh* const).
  578.       * It takes native char string as parameter
  579.       *
  580.       * @param the XML Schema Location with no target namespace
  581.       *
  582.       * @see #setExternalNoNamespaceSchemaLocation(const XMLCh* const)
  583.       */
  584.     void setExternalNoNamespaceSchemaLocation(const char* const noNamespaceSchemaLocation);
  585.     //@}
  586.     // -----------------------------------------------------------------------
  587.     //  Parsing methods
  588.     // -----------------------------------------------------------------------
  589.     /** @name Parsing methods */
  590.     //@{
  591.     /** Parse via an input source object
  592.       *
  593.       * This method invokes the parsing process on the XML file specified
  594.       * by the InputSource parameter. This API is borrowed from the
  595.       * SAX Parser interface.
  596.       *
  597.       * @param source A const reference to the InputSource object which
  598.       *               points to the XML file to be parsed.
  599.       * @param reuseGrammar The flag indicating whether the existing Grammar
  600.       *                     should be reused or not for this parsing run.
  601.       *                     If true, there cannot be any internal subset.
  602.       * @exception SAXException Any SAX exception, possibly
  603.       *            wrapping another exception.
  604.       * @exception XMLException An exception from the parser or client
  605.       *            handler code.
  606.       * @exception DOM_DOMException A DOM exception as per DOM spec.
  607.       * @see InputSource#InputSource
  608.       * @see #setEntityResolver
  609.       * @see #setErrorHandler
  610.       */
  611.     void parse(const InputSource& source, const bool reuseGrammar = false);
  612.     /** Parse via a file path or URL
  613.       *
  614.       * This method invokes the parsing process on the XML file specified by
  615.       * the Unicode string parameter 'systemId'. This method is borrowed
  616.       * from the SAX Parser interface.
  617.       *
  618.       * @param systemId A const XMLCh pointer to the Unicode string which
  619.       *                 contains the path to the XML file to be parsed.
  620.       * @param reuseGrammar The flag indicating whether the existing Grammar
  621.       *                     should be reused or not for this parsing run.
  622.       *                     If true, there cannot be any internal subset.
  623.       *
  624.       * @exception SAXException Any SAX exception, possibly
  625.       *            wrapping another exception.
  626.       * @exception XMLException An exception from the parser or client
  627.       *            handler code.
  628.       * @exception DOM_DOMException A DOM exception as per DOM spec.
  629.       * @see #parse(InputSource,...)
  630.       */
  631.     void parse(const XMLCh* const systemId, const bool reuseGrammar = false);
  632.     /** Parse via a file path or URL (in the local code page)
  633.       *
  634.       * This method invokes the parsing process on the XML file specified by
  635.       * the native char* string parameter 'systemId'.
  636.       *
  637.       * @param systemId A const char pointer to a native string which
  638.       *                 contains the path to the XML file to be parsed.
  639.       * @param reuseGrammar The flag indicating whether the existing Grammar
  640.       *                     should be reused or not for this parsing run.
  641.       *                     If true, there cannot be any internal subset.
  642.       * @exception SAXException Any SAX exception, possibly
  643.       *            wrapping another exception.
  644.       * @exception XMLException An exception from the parser or client
  645.       *            handler code.
  646.       * @exception DOM_DOMException A DOM exception as per DOM spec.
  647.       * @see #parse(InputSource,...)
  648.       */
  649.     void parse(const char* const systemId, const bool reuseGrammar = false);
  650.     /** Begin a progressive parse operation
  651.       *
  652.       * This method is used to start a progressive parse on a XML file.
  653.       * To continue parsing, subsequent calls must be to the parseNext
  654.       * method.
  655.       *
  656.       * It scans through the prolog and returns a token to be used on
  657.       * subsequent scanNext() calls. If the return value is true, then the
  658.       * token is legal and ready for further use. If it returns false, then
  659.       * the scan of the prolog failed and the token is not going to work on
  660.       * subsequent scanNext() calls.
  661.       *
  662.       * @param systemId A pointer to a Unicode string represting the path
  663.       *                 to the XML file to be parsed.
  664.       * @param toFill   A token maintaing state information to maintain
  665.       *                 internal consistency between invocation of 'parseNext'
  666.       *                 calls.
  667.       * @param reuseGrammar The flag indicating whether the existing Grammar
  668.       *                     should be reused or not for this parsing process.
  669.       *                     If true, there cannot be any internal subset.
  670.       * @return 'true', if successful in parsing the prolog. It indicates the
  671.       *         user can go ahead with parsing the rest of the file. It
  672.       *         returns 'false' to indicate that the parser could not parse
  673.       *         the prolog.
  674.       *
  675.       * @see #parseNext
  676.       * @see #parseFirst(char*,...)
  677.       * @see #parseFirst(InputSource&,...)
  678.       */
  679.     bool parseFirst
  680.     (
  681.         const   XMLCh* const    systemId
  682.         ,       XMLPScanToken&  toFill
  683.         , const bool            reuseGrammar = false
  684.     );
  685.     /** Begin a progressive parse operation
  686.       *
  687.       * This method is used to start a progressive parse on a XML file.
  688.       * To continue parsing, subsequent calls must be to the parseNext
  689.       * method.
  690.       *
  691.       * It scans through the prolog and returns a token to be used on
  692.       * subsequent scanNext() calls. If the return value is true, then the
  693.       * token is legal and ready for further use. If it returns false, then
  694.       * the scan of the prolog failed and the token is not going to work on
  695.       * subsequent scanNext() calls.
  696.       *
  697.       * @param systemId A pointer to a regular native string represting
  698.       *                 the path to the XML file to be parsed.
  699.       * @param toFill   A token maintaing state information to maintain
  700.       *                 internal consistency between invocation of 'parseNext'
  701.       *                 calls.
  702.       * @param reuseGrammar The flag indicating whether the existing Grammar
  703.       *                     should be reused or not for this parsing run.
  704.       *                     If true, there cannot be any internal subset.
  705.       *
  706.       * @return 'true', if successful in parsing the prolog. It indicates the
  707.       *         user can go ahead with parsing the rest of the file. It
  708.       *         returns 'false' to indicate that the parser could not parse
  709.       *         the prolog.
  710.       *
  711.       * @see #parseNext
  712.       * @see #parseFirst(XMLCh*,...)
  713.       * @see #parseFirst(InputSource&,...)
  714.       */
  715.     bool parseFirst
  716.     (
  717.         const   char* const     systemId
  718.         ,       XMLPScanToken&  toFill
  719.         , const bool            reuseGrammar = false
  720.     );
  721.     /** Begin a progressive parse operation
  722.       *
  723.       * This method is used to start a progressive parse on a XML file.
  724.       * To continue parsing, subsequent calls must be to the parseNext
  725.       * method.
  726.       *
  727.       * It scans through the prolog and returns a token to be used on
  728.       * subsequent scanNext() calls. If the return value is true, then the
  729.       * token is legal and ready for further use. If it returns false, then
  730.       * the scan of the prolog failed and the token is not going to work on
  731.       * subsequent scanNext() calls.
  732.       *
  733.       * @param source   A const reference to the InputSource object which
  734.       *                 points to the XML file to be parsed.
  735.       * @param toFill   A token maintaing state information to maintain
  736.       *                 internal consistency between invocation of 'parseNext'
  737.       *                 calls.
  738.       * @param reuseGrammar The flag indicating whether the existing Grammar
  739.       *                     should be reused or not for this parsing process.
  740.       *                     If true, there cannot be any internal subset.
  741.       *
  742.       * @return 'true', if successful in parsing the prolog. It indicates the
  743.       *         user can go ahead with parsing the rest of the file. It
  744.       *         returns 'false' to indicate that the parser could not parse
  745.       *         the prolog.
  746.       *
  747.       * @see #parseNext
  748.       * @see #parseFirst(XMLCh*,...)
  749.       * @see #parseFirst(char*,...)
  750.       */
  751.     bool parseFirst
  752.     (
  753.         const   InputSource&    source
  754.         ,       XMLPScanToken&  toFill
  755.         , const bool            reuseGrammar = false
  756.     );
  757.     /** Continue a progressive parse operation
  758.       *
  759.       * This method is used to continue with progressive parsing of
  760.       * XML files started by a call to 'parseFirst' method.
  761.       *
  762.       * It parses the XML file and stops as soon as it comes across
  763.       * a XML token (as defined in the XML specification).
  764.       *
  765.       * @param token A token maintaing state information to maintain
  766.       *              internal consistency between invocation of 'parseNext'
  767.       *              calls.
  768.       *
  769.       * @return 'true', if successful in parsing the next XML token.
  770.       *         It indicates the user can go ahead with parsing the rest
  771.       *         of the file. It returns 'false' to indicate that the parser
  772.       *         could not find next token as per the XML specification
  773.       *         production rule.
  774.       *
  775.       * @see #parseFirst(XMLCh*,...)
  776.       * @see #parseFirst(char*,...)
  777.       * @see #parseFirst(InputSource&,...)
  778.       */
  779.     bool parseNext(XMLPScanToken& token);
  780.     /** Reset the parser after a progressive parse
  781.       *
  782.       * If a progressive parse loop exits before the end of the document
  783.       * is reached, the parser has no way of knowing this. So it will leave
  784.       * open any files or sockets or memory buffers that were in use at
  785.       * the time that the parse loop exited.
  786.       *
  787.       * The next parse operation will cause these open files and such to
  788.       * be closed, but the next parse operation might occur at some unknown
  789.       * future point. To avoid this problem, you should reset the parser if
  790.       * you exit the loop early.
  791.       *
  792.       * If you exited because of an error, then this cleanup will be done
  793.       * for you. Its only when you exit the file prematurely of your own
  794.       * accord, because you've found what you wanted in the file most
  795.       * likely.
  796.       *
  797.       * @param token A token maintaing state information to maintain
  798.       *              internal consistency between invocation of 'parseNext'
  799.       *              calls.
  800.       *
  801.       * @see #parseFirst(XMLCh*,...)
  802.       * @see #parseFirst(char*,...)
  803.       * @see #parseFirst(InputSource&,...)
  804.       */
  805.     void parseReset(XMLPScanToken& token);
  806.     //@}
  807.     // -----------------------------------------------------------------------
  808.     //  Implementation of the XMLErrorReporter interface.
  809.     // -----------------------------------------------------------------------
  810.     /** @name Implementation of the XMLErrorReporter interface. */
  811.     //@{
  812.     /** Handle errors reported from the parser
  813.       *
  814.       * This method is used to report back errors found while parsing the
  815.       * XML file. This method is also borrowed from the SAX specification.
  816.       * It calls the corresponding user installed Error Handler method:
  817.       * 'fatal', 'error', 'warning' depending on the severity of the error.
  818.       * This classification is defined by the XML specification.
  819.       *
  820.       * @param errCode An integer code for the error.
  821.       * @param msgDomain A const pointer to an Unicode string representing
  822.       *                  the message domain to use.
  823.       * @param errType An enumeration classifying the severity of the error.
  824.       * @param errorText A const pointer to an Unicode string representing
  825.       *                  the text of the error message.
  826.       * @param systemId  A const pointer to an Unicode string representing
  827.       *                  the system id of the XML file where this error
  828.       *                  was discovered.
  829.       * @param publicId  A const pointer to an Unicode string representing
  830.       *                  the public id of the XML file where this error
  831.       *                  was discovered.
  832.       * @param lineNum   The line number where the error occurred.
  833.       * @param colNum    The column number where the error occurred.
  834.       * @see ErrorHandler
  835.       */
  836.     virtual void error
  837.     (
  838.         const   unsigned int                errCode
  839.         , const XMLCh* const                msgDomain
  840.         , const XMLErrorReporter::ErrTypes  errType
  841.         , const XMLCh* const                errorText
  842.         , const XMLCh* const                systemId
  843.         , const XMLCh* const                publicId
  844.         , const unsigned int                lineNum
  845.         , const unsigned int                colNum
  846.     );
  847.     /** Reset any error data before a new parse
  848.      *
  849.       * This method allows the user installed Error Handler callback to
  850.       * 'reset' itself.
  851.       *
  852.       * <b><font color="#FF0000">This method is a no-op for this DOM
  853.       * implementation.</font></b>
  854.       */
  855.     virtual void resetErrors();
  856.     //@}
  857.     // -----------------------------------------------------------------------
  858.     //  Implementation of the XMLEntityHandler interface.
  859.     // -----------------------------------------------------------------------
  860.     /** @name Implementation of the XMLEntityHandler interface. */
  861.     //@{
  862.     /** Handle an end of input source event
  863.       *
  864.       * This method is used to indicate the end of parsing of an external
  865.       * entity file.
  866.       *
  867.       * <b><font color="#FF0000">This method is a no-op for this DOM
  868.       * implementation.</font></b>
  869.       *
  870.       * @param inputSource A const reference to the InputSource object
  871.       *                    which points to the XML file being parsed.
  872.       * @see InputSource
  873.       */
  874.     virtual void endInputSource(const InputSource& inputSource);
  875.     /** Expand a system id
  876.       *
  877.       * This method allows an installed XMLEntityHandler to further
  878.       * process any system id's of enternal entities encountered in
  879.       * the XML file being parsed, such as redirection etc.
  880.       *
  881.       * <b><font color="#FF0000">This method always returns 'false'
  882.       * for this DOM implementation.</font></b>
  883.       *
  884.       * @param systemId  A const pointer to an Unicode string representing
  885.       *                  the system id scanned by the parser.
  886.       * @param toFill    A pointer to a buffer in which the application
  887.       *                  processed system id is stored.
  888.       * @return 'true', if any processing is done, 'false' otherwise.
  889.       */
  890.     virtual bool expandSystemId
  891.     (
  892.         const   XMLCh* const    systemId
  893.         ,       XMLBuffer&      toFill
  894.     );
  895.     /** Reset any entity handler information
  896.       *
  897.       * This method allows the installed XMLEntityHandler to reset
  898.       * itself.
  899.       *
  900.       * <b><font color="#FF0000">This method is a no-op for this DOM
  901.       * implementation.</font></b>
  902.       */
  903.     virtual void resetEntities();
  904.     /** Resolve a public/system id
  905.       *
  906.       * This method allows a user installed entity handler to further
  907.       * process any pointers to external entities. The applications can
  908.       * implement 'redirection' via this callback. This method is also
  909.       * borrowed from the SAX specification.
  910.       *
  911.       * @param publicId A const pointer to a Unicode string representing the
  912.       *                 public id of the entity just parsed.
  913.       * @param systemId A const pointer to a Unicode string representing the
  914.       *                 system id of the entity just parsed.
  915.       * @return The value returned by the user installed resolveEntity
  916.       *         method or NULL otherwise to indicate no processing was done.
  917.       * @see EntityResolver
  918.       */
  919.     virtual InputSource* resolveEntity
  920.     (
  921.         const   XMLCh* const    publicId
  922.         , const XMLCh* const    systemId
  923.     );
  924.     /** Handle a 'start input source' event
  925.       *
  926.       * This method is used to indicate the start of parsing an external
  927.       * entity file.
  928.       *
  929.       * <b><font color="#FF0000">This method is a no-op for this DOM parse
  930.       * implementation.</font></b>
  931.       *
  932.       * @param inputSource A const reference to the InputSource object
  933.       *                    which points to the external entity
  934.       *                    being parsed.
  935.       */
  936.     virtual void startInputSource(const InputSource& inputSource);
  937.     //@}
  938.     // -----------------------------------------------------------------------
  939.     //  Implementation of the XMLDocumentHandler interface.
  940.     // -----------------------------------------------------------------------
  941.     /** @name Implementation of the XMLDocumentHandler interface. */
  942.     //@{
  943.     /** Handle document character events
  944.       *
  945.       * This method is used to report all the characters scanned by the
  946.       * parser. This DOM implementation stores this data in the appropriate
  947.       * DOM node, creating one if necessary.
  948.       *
  949.       * @param chars   A const pointer to a Unicode string representing the
  950.       *                character data.
  951.       * @param length  The length of the Unicode string returned in 'chars'.
  952.       * @param cdataSection  A flag indicating if the characters represent
  953.       *                      content from the CDATA section.
  954.       */
  955.     virtual void docCharacters
  956.     (
  957.         const   XMLCh* const    chars
  958.         , const unsigned int    length
  959.         , const bool            cdataSection
  960.     );
  961.     /** Handle a document comment event
  962.       *
  963.       * This method is used to report any comments scanned by the parser.
  964.       * A new comment node is created which stores this data.
  965.       *
  966.       * @param comment A const pointer to a null terminated Unicode
  967.       *                string representing the comment text.
  968.       */
  969.     virtual void docComment
  970.     (
  971.         const   XMLCh* const    comment
  972.     );
  973.     /** Handle a document PI event
  974.       *
  975.       * This method is used to report any PI scanned by the parser. A new
  976.       * PI node is created and appended as a child of the current node in
  977.       * the tree.
  978.       *
  979.       * @param target A const pointer to a Unicode string representing the
  980.       *               target of the PI declaration.
  981.       * @param data   A const pointer to a Unicode string representing the
  982.       *               data of the PI declaration. See the PI production rule
  983.       *               in the XML specification for details.
  984.       */
  985.     virtual void docPI
  986.     (
  987.         const   XMLCh* const    target
  988.         , const XMLCh* const    data
  989.     );
  990.     /** Handle the end of document event
  991.       *
  992.       * This method is used to indicate the end of the current document.
  993.       */
  994.     virtual void endDocument();
  995.     /** Handle and end of element event
  996.       *
  997.       * This method is used to indicate the end tag of an element. The
  998.       * DOMParse pops the current element off the top of the element
  999.       * stack, and make it the new current element.
  1000.       *
  1001.       * @param elemDecl A const reference to the object containing element
  1002.       *                 declaration information.
  1003.       * @param urlId    An id referring to the namespace prefix, if
  1004.       *                 namespaces setting is switched on.
  1005.       * @param isRoot   A flag indicating whether this element was the
  1006.       *                 root element.
  1007.       */
  1008.     virtual void endElement
  1009.     (
  1010.         const   XMLElementDecl& elemDecl
  1011.         , const unsigned int    urlId
  1012.         , const bool            isRoot
  1013.     );
  1014.     /** Handle and end of entity reference event
  1015.       *
  1016.       * This method is used to indicate that an end of an entity reference
  1017.       * was just scanned.
  1018.       *
  1019.       * @param entDecl A const reference to the object containing the
  1020.       *                entity declaration information.
  1021.       */
  1022.     virtual void endEntityReference
  1023.     (
  1024.         const   XMLEntityDecl&  entDecl
  1025.     );
  1026.     /** Handle an ignorable whitespace vent
  1027.       *
  1028.       * This method is used to report all the whitespace characters, which
  1029.       * are determined to be 'ignorable'. This distinction between characters
  1030.       * is only made, if validation is enabled.
  1031.       *
  1032.       * Any whitespace before content is ignored. If the current node is
  1033.       * already of type DOM_Node::TEXT_NODE, then these whitespaces are
  1034.       * appended, otherwise a new Text node is created which stores this
  1035.       * data. Essentially all contiguous ignorable characters are collected
  1036.       * in one node.
  1037.       *
  1038.       * @param chars   A const pointer to a Unicode string representing the
  1039.       *                ignorable whitespace character data.
  1040.       * @param length  The length of the Unicode string 'chars'.
  1041.       * @param cdataSection  A flag indicating if the characters represent
  1042.       *                      content from the CDATA section.
  1043.       */
  1044.     virtual void ignorableWhitespace
  1045.     (
  1046.         const   XMLCh* const    chars
  1047.         , const unsigned int    length
  1048.         , const bool            cdataSection
  1049.     );
  1050.     /** Handle a document reset event
  1051.       *
  1052.       * This method allows the user installed Document Handler to 'reset'
  1053.       * itself, freeing all the memory resources. The scanner calls this
  1054.       * method before starting a new parse event.
  1055.       */
  1056.     virtual void resetDocument();
  1057.     /** Handle a start document event
  1058.       *
  1059.       * This method is used to report the start of the parsing process.
  1060.       */
  1061.     virtual void startDocument();
  1062.     /** Handle a start element event
  1063.       *
  1064.       * This method is used to report the start of an element. It is
  1065.       * called at the end of the element, by which time all attributes
  1066.       * specified are also parsed. A new DOM Element node is created
  1067.       * along with as many attribute nodes as required. This new element
  1068.       * is added appended as a child of the current node in the tree, and
  1069.       * then replaces it as the current node (if the isEmpty flag is false.)
  1070.       *
  1071.       * @param elemDecl A const reference to the object containing element
  1072.       *                 declaration information.
  1073.       * @param urlId    An id referring to the namespace prefix, if
  1074.       *                 namespaces setting is switched on.
  1075.       * @param elemPrefix A const pointer to a Unicode string containing
  1076.       *                 the namespace prefix for this element. Applicable
  1077.       *                 only when namespace processing is enabled.
  1078.       * @param attrList A const reference to the object containing the
  1079.       *                 list of attributes just scanned for this element.
  1080.       * @param attrCount A count of number of attributes in the list
  1081.       *                 specified by the parameter 'attrList'.
  1082.       * @param isEmpty  A flag indicating whether this is an empty element
  1083.       *                 or not. If empty, then no endElement() call will
  1084.       *                 be made.
  1085.       * @param isRoot   A flag indicating whether this element was the
  1086.       *                 root element.
  1087.       * @see DocumentHandler#startElement
  1088.       */
  1089.     virtual void startElement
  1090.     (
  1091.         const   XMLElementDecl&         elemDecl
  1092.         , const unsigned int            urlId
  1093.         , const XMLCh* const            elemPrefix
  1094.         , const RefVectorOf<XMLAttr>&   attrList
  1095.         , const unsigned int            attrCount
  1096.         , const bool                    isEmpty
  1097.         , const bool                    isRoot
  1098.     );
  1099.     /** Handle a start entity reference event
  1100.       *
  1101.       * This method is used to indicate the start of an entity reference.
  1102.       * If the expand entity reference flag is true, then a new
  1103.       * DOM Entity reference node is created.
  1104.       *
  1105.       * @param entDecl A const reference to the object containing the
  1106.       *                entity declaration information.
  1107.       */
  1108.     virtual void startEntityReference
  1109.     (
  1110.         const   XMLEntityDecl&  entDecl
  1111.     );
  1112.     /** Handle an XMLDecl event
  1113.       *
  1114.       * This method is used to report the XML decl scanned by the parser.
  1115.       * Refer to the XML specification to see the meaning of parameters.
  1116.       *
  1117.       * <b><font color="#FF0000">This method is a no-op for this DOM
  1118.       * implementation.</font></b>
  1119.       *
  1120.       * @param versionStr A const pointer to a Unicode string representing
  1121.       *                   version string value.
  1122.       * @param encodingStr A const pointer to a Unicode string representing
  1123.       *                    the encoding string value.
  1124.       * @param standaloneStr A const pointer to a Unicode string
  1125.       *                      representing the standalone string value.
  1126.       * @param actualEncodingStr A const pointer to a Unicode string
  1127.       *                          representing the actual encoding string
  1128.       *                          value.
  1129.       */
  1130.     virtual void XMLDecl
  1131.     (
  1132.         const   XMLCh* const    versionStr
  1133.         , const XMLCh* const    encodingStr
  1134.         , const XMLCh* const    standaloneStr
  1135.         , const XMLCh* const    actualEncStr
  1136.     );
  1137.     //@}
  1138.     /** @name Deprecated Methods */
  1139.     //@{
  1140.     /** Set the 'expand entity references' flag
  1141.       *
  1142.       * DEPRECATED.  USE setCreateEntityReferenceNodes instead.
  1143.       * This method allows the user to specify whether the parser should
  1144.       * expand all entity reference nodes. When the 'do expansion' flag is
  1145.       * true, the DOM tree does not have any entity reference nodes. It is
  1146.       * replaced by the sub-tree representing the replacement text of the
  1147.       * entity. When the 'do expansion' flag is false, the DOM tree
  1148.       * contains an extra entity reference node, whose children is the
  1149.       * sub tree of the replacement text.
  1150.       *
  1151.       * @param expand The new state of the expand entity reference
  1152.       *               flag.
  1153.       */
  1154.     void setExpandEntityReferences(const bool expand);
  1155.     /** Get the 'expand entity references' flag.
  1156.       * DEPRECATED Use getCreateEntityReferenceNodes() instead.
  1157.       *
  1158.       * This method returns the state of the parser's expand entity
  1159.       * references flag.
  1160.       *
  1161.       * @return 'true' if the expand entity reference flag is set on
  1162.       *         the parser, 'false' otherwise.
  1163.       *
  1164.       * @see #setExpandEntityReferences
  1165.       */
  1166.     bool getExpandEntityReferences() const;
  1167.     /**
  1168.       * DEPRECATED Use getValidationScheme() instead
  1169.       *
  1170.       * This method returns the state of the parser's validation
  1171.       * handling flag which controls whether validation checks
  1172.       * are enforced or not.
  1173.       *
  1174.       * @return true, if the parser is currently configured to
  1175.       *         do validation, false otherwise.
  1176.       *
  1177.       * @see #setDoValidation
  1178.       * @see #getValidationScheme
  1179.       */
  1180.     bool getDoValidation() const;
  1181.     /**
  1182.       * DEPRECATED Use setValidationScheme(const ValSchemes newScheme) instead
  1183.       *
  1184.       * This method allows users to enable or disable the parser's validation
  1185.       * checks.
  1186.       *
  1187.       * <p>By default, the parser does not to any validation. The default
  1188.       * value is false.</p>
  1189.       *
  1190.       * @param newState The value specifying whether the parser should
  1191.       *                 do validity checks or not against the DTD in the
  1192.       *                 input XML document.
  1193.       *
  1194.       * @see #getDoValidation
  1195.       * @see #setValidationScheme
  1196.       */
  1197.     void setDoValidation(const bool newState);
  1198.     /**
  1199.       * Deprecated doctypehandler interfaces
  1200.       */
  1201. virtual void attDef
  1202.     (
  1203.         const   DTDElementDecl&     elemDecl
  1204.         , const DTDAttDef&          attDef
  1205.         , const bool                ignoring
  1206.     );
  1207.     virtual void doctypeComment
  1208.     (
  1209.         const   XMLCh* const    comment
  1210.     );
  1211.     virtual void doctypeDecl
  1212.     (
  1213.         const   DTDElementDecl& elemDecl
  1214.         , const XMLCh* const    publicId
  1215.         , const XMLCh* const    systemId
  1216.         , const bool            hasIntSubset
  1217.     );
  1218.     virtual void doctypePI
  1219.     (
  1220.         const   XMLCh* const    target
  1221.         , const XMLCh* const    data
  1222.     );
  1223.     virtual void doctypeWhitespace
  1224.     (
  1225.         const   XMLCh* const    chars
  1226.         , const unsigned int    length
  1227.     );
  1228.     virtual void elementDecl
  1229.     (
  1230.         const   DTDElementDecl& decl
  1231.         , const bool            isIgnored
  1232.     );
  1233.     virtual void endAttList
  1234.     (
  1235.         const   DTDElementDecl& elemDecl
  1236.     );
  1237.     virtual void endIntSubset();
  1238.     virtual void endExtSubset();
  1239.     virtual void entityDecl
  1240.     (
  1241.         const   DTDEntityDecl&  entityDecl
  1242.         , const bool            isPEDecl
  1243.         , const bool            isIgnored
  1244.     );
  1245.     virtual void resetDocType();
  1246.     virtual void notationDecl
  1247.     (
  1248.         const   XMLNotationDecl&    notDecl
  1249.         , const bool                isIgnored
  1250.     );
  1251.     virtual void startAttList
  1252.     (
  1253.         const   DTDElementDecl& elemDecl
  1254.     );
  1255.     virtual void startIntSubset();
  1256.     virtual void startExtSubset();
  1257.     virtual void TextDecl
  1258.     (
  1259.         const   XMLCh* const    versionStr
  1260.         , const XMLCh* const    encodingStr
  1261.     );
  1262.     //@}
  1263. protected :
  1264.     // -----------------------------------------------------------------------
  1265.     //  Protected getter methods
  1266.     // -----------------------------------------------------------------------
  1267.     /** @name Protected getter methods */
  1268.     //@{
  1269.     /** Get the current DOM node
  1270.       *
  1271.       * This provides derived classes with access to the current node, i.e.
  1272.       * the node to which new nodes are being added.
  1273.       */
  1274.     DOM_Node getCurrentNode();
  1275.     //@}
  1276.     // -----------------------------------------------------------------------
  1277.     //  Protected setter methods
  1278.     // -----------------------------------------------------------------------
  1279.     /** @name Protected setter methods */
  1280.     //@{
  1281.     /** Set the current DOM node
  1282.       *
  1283.       * This method sets the current node maintained inside the parser to
  1284.       * the one specified.
  1285.       *
  1286.       * @param toSet The DOM node which will be the current node.
  1287.       */
  1288.     void setCurrentNode(DOM_Node toSet);
  1289.     /** Set the document node
  1290.       *
  1291.       * This method sets the DOM Document node to the one specified.
  1292.       *
  1293.       * @param toSet The new DOM Document node for this XML document.
  1294.       */
  1295.     void setDocument(DOM_Document toSet);
  1296.     //@}
  1297. private :
  1298.     // -----------------------------------------------------------------------
  1299.     //  Private data members
  1300.     //
  1301.     //  fCurrentNode
  1302.     //  fCurrentParent
  1303.     //      Used to track the current node during nested element events. Since
  1304.     //      the tree must be built from a set of disjoint callbacks, we need
  1305.     //      these to keep up with where we currently are.
  1306.     //
  1307.     //  fDocument
  1308.     //      The root document object, filled with the document contents.
  1309.     //
  1310.     //  fEntityResolver
  1311.     //      The installed SAX entity resolver, if any. Null if none.
  1312.     //
  1313.     //  fErrorHandler
  1314.     //      The installed SAX error handler, if any. Null if none.
  1315.     //
  1316.     //  fCreateEntityReferenceNode
  1317.     //      Indicates whether entity reference nodes should be created.
  1318.     //
  1319.     //  fIncludeIgnorableWhitespace
  1320.     //      Indicates whether ignorable whiltespace should be added to
  1321.     //      the DOM tree for validating parsers.
  1322.     //
  1323.     //  fNodeStack
  1324.     //      Used to track previous parent nodes during nested element events.
  1325.     //
  1326.     //  fParseInProgress
  1327.     //      Used to prevent multiple entrance to the parser while its doing
  1328.     //      a parse.
  1329.     //
  1330.     //  fScanner
  1331.     //      The scanner used for this parser. This is created during the
  1332.     //      constructor.
  1333.     //
  1334.     //  fWithinElement
  1335.     //      A flag to indicate that the parser is within at least one level
  1336.     //      of element processing.
  1337.     //
  1338.     //  fDocumentType
  1339.     //      Used to store and update the documentType variable information
  1340.     //      in fDocument
  1341.     //
  1342.     //  fToCreateXMLDecTypeNode
  1343.     //      A flag to create a DOM_XMLDecl node in the ODM tree if it exists
  1344.     //      This is an extension to xerces implementation
  1345.     //
  1346.     // -----------------------------------------------------------------------
  1347.     DOM_Node                fCurrentParent;
  1348.     DOM_Node                fCurrentNode;
  1349.     DOM_Document            fDocument;
  1350.     EntityResolver*         fEntityResolver;
  1351.     ErrorHandler*           fErrorHandler;
  1352.     bool                    fCreateEntityReferenceNodes;
  1353.     bool                    fIncludeIgnorableWhitespace;
  1354.     ValueStackOf<DOM_Node>* fNodeStack;
  1355.     bool                    fParseInProgress;
  1356.     XMLScanner*             fScanner;
  1357.     bool                    fWithinElement;
  1358.     DocumentTypeImpl*       fDocumentType;
  1359.     bool                    fToCreateXMLDeclTypeNode;
  1360. };
  1361. // ---------------------------------------------------------------------------
  1362. //  DOMParser: Handlers for the XMLEntityHandler interface
  1363. // ---------------------------------------------------------------------------
  1364. inline void DOMParser::endInputSource(const InputSource&)
  1365. {
  1366.     // The DOM entity resolver doesn't handle this
  1367. }
  1368. inline bool DOMParser::expandSystemId(const XMLCh* const, XMLBuffer&)
  1369. {
  1370.     // The DOM entity resolver doesn't handle this
  1371.     return false;
  1372. }
  1373. inline void DOMParser::resetEntities()
  1374. {
  1375.     // Nothing to do on this one
  1376. }
  1377. inline void DOMParser::startInputSource(const InputSource&)
  1378. {
  1379.     // The DOM entity resolver doesn't handle this
  1380. }
  1381. // ---------------------------------------------------------------------------
  1382. //  DOMParser: Getter methods
  1383. // ---------------------------------------------------------------------------
  1384. inline DOM_Document DOMParser::getDocument()
  1385. {
  1386.     return fDocument;
  1387. }
  1388. inline ErrorHandler* DOMParser::getErrorHandler()
  1389. {
  1390.     return fErrorHandler;
  1391. }
  1392. inline const ErrorHandler* DOMParser::getErrorHandler() const
  1393. {
  1394.     return fErrorHandler;
  1395. }
  1396. inline EntityResolver* DOMParser::getEntityResolver()
  1397. {
  1398.     return fEntityResolver;
  1399. }
  1400. inline const EntityResolver* DOMParser::getEntityResolver() const
  1401. {
  1402.     return fEntityResolver;
  1403. }
  1404. inline bool DOMParser::getExpandEntityReferences() const
  1405. {
  1406.     return fCreateEntityReferenceNodes;
  1407. }
  1408. inline bool DOMParser::getCreateEntityReferenceNodes() const
  1409. {
  1410.     return fCreateEntityReferenceNodes;
  1411. }
  1412. inline bool DOMParser::getIncludeIgnorableWhitespace() const
  1413. {
  1414.     return fIncludeIgnorableWhitespace;
  1415. }
  1416. inline const XMLScanner& DOMParser::getScanner() const
  1417. {
  1418.     return *fScanner;
  1419. }
  1420. inline bool DOMParser::getToCreateXMLDeclTypeNode() const
  1421. {
  1422.     return fToCreateXMLDeclTypeNode;
  1423. }
  1424. // ---------------------------------------------------------------------------
  1425. //  DOMParser: Setter methods
  1426. // ---------------------------------------------------------------------------
  1427. inline void DOMParser::setExpandEntityReferences(const bool expand)
  1428. {
  1429.     fCreateEntityReferenceNodes = expand;
  1430. }
  1431. inline void DOMParser::setCreateEntityReferenceNodes(const bool create)
  1432. {
  1433.     fCreateEntityReferenceNodes = create;
  1434. }
  1435. inline void DOMParser::setIncludeIgnorableWhitespace(const bool include)
  1436. {
  1437.     fIncludeIgnorableWhitespace = include;
  1438. }
  1439. inline void DOMParser::setToCreateXMLDeclTypeNode(const bool create)
  1440. {
  1441.     fToCreateXMLDeclTypeNode = create;
  1442. }
  1443. // ---------------------------------------------------------------------------
  1444. //  DOMParser: Protected getter methods
  1445. // ---------------------------------------------------------------------------
  1446. inline DOM_Node DOMParser::getCurrentNode()
  1447. {
  1448.     return fCurrentNode;
  1449. }
  1450. // ---------------------------------------------------------------------------
  1451. //  DOMParser: Protected setter methods
  1452. // ---------------------------------------------------------------------------
  1453. inline void DOMParser::setCurrentNode(DOM_Node toSet)
  1454. {
  1455.     fCurrentNode = toSet;
  1456. }
  1457. inline void DOMParser::setDocument(DOM_Document toSet)
  1458. {
  1459.     fDocument = toSet;
  1460. }
  1461. #endif