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