SAX2XMLReader.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:41k
源码类别:

词法分析

开发平台:

Visual 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.  * $Log: SAX2XMLReader.hpp,v $
  58.  * Revision 1.10  2003/03/07 18:10:30  tng
  59.  * Return a reference instead of void for operator=
  60.  *
  61.  * Revision 1.9  2003/01/09 19:07:27  tng
  62.  * [Bug 15802] Add "const" qualifier to getURIText.
  63.  *
  64.  * Revision 1.8  2002/12/23 15:23:18  knoaman
  65.  * Added a public api to various parsers to return the src offset within the input
  66.  * source.
  67.  *
  68.  * Revision 1.7  2002/11/04 14:55:45  tng
  69.  * C++ Namespace Support.
  70.  *
  71.  * Revision 1.6  2002/07/11 18:29:09  knoaman
  72.  * Grammar caching/preparsing - initial implementation.
  73.  *
  74.  * Revision 1.5  2002/07/04 15:35:44  tng
  75.  * API Documentation typo fix.
  76.  *
  77.  * Revision 1.4  2002/06/27 18:46:53  tng
  78.  * API Documentation Update.
  79.  *
  80.  * Revision 1.3  2002/06/17 15:39:49  tng
  81.  * To be consistent, SAX2 is updated with:
  82.  * 1. the progressive parse methods should use the fReuseGrammar flag set from setFeature instead of using parameter
  83.  * 2. add feature "http://apache.org/xml/features/continue-after-fatal-error", and users should use setFeature instead of setExitOnFirstFatalError
  84.  * 3. add feature "http://apache.org/xml/features/validation-error-as-fatal", and users should use setFeature instead of setValidationConstraintFatal
  85.  *
  86.  * Revision 1.2  2002/05/30 16:22:53  tng
  87.  * Add feature to optionally ignore external DTD.
  88.  *
  89.  * Revision 1.1.1.1  2002/02/01 22:22:09  peiyongz
  90.  * sane_include
  91.  *
  92.  * Revision 1.18  2002/01/28 18:45:40  knoaman
  93.  * Update documentation for SAX2 feature 'namespace-prefixes'.
  94.  *
  95.  * Revision 1.17  2002/01/28 17:08:33  knoaman
  96.  * SAX2-ext's DeclHandler support.
  97.  *
  98.  * Revision 1.16  2002/01/18 16:31:26  tng
  99.  * Break program.xml which takes too long to load, into program-sax.xml, program-sax2.xml, program-dom.xml, program-idom.xml.
  100.  *
  101.  * Revision 1.15  2002/01/02 15:36:54  tng
  102.  * Some documentation update.
  103.  *
  104.  * Revision 1.14  2001/11/20 18:51:44  tng
  105.  * Schema: schemaLocation and noNamespaceSchemaLocation to be specified outside the instance document.  New methods setExternalSchemaLocation and setExternalNoNamespaceSchemaLocation are added (for SAX2, two new properties are added).
  106.  *
  107.  * Revision 1.13  2001/11/14 14:15:59  tng
  108.  * Update SAX2 feature documentation.
  109.  *
  110.  * Revision 1.12  2001/09/12 13:03:43  tng
  111.  * [Bug 3155] SAX2 does not offer progressive parse.
  112.  *
  113.  * Revision 1.11  2001/08/01 19:11:02  tng
  114.  * Add full schema constraint checking flag to the samples and the parser.
  115.  *
  116.  * Revision 1.10  2001/06/27 17:40:16  knoaman
  117.  * Fix for bug #2353.
  118.  *
  119.  * Revision 1.9  2001/06/19 16:44:31  tng
  120.  * Add installAdvDocHandler to SAX2XMLReader as the code is there already.
  121.  *
  122.  * Revision 1.8  2001/06/04 21:03:07  jberry
  123.  * Add pure virtual getErrorCount to SAX2XMLReader interface.
  124.  *
  125.  * Revision 1.7  2001/05/11 13:26:25  tng
  126.  * Copyright update.
  127.  *
  128.  * Revision 1.6  2001/02/15 15:56:31  tng
  129.  * Schema: Add setSchemaValidation and getSchemaValidation for DOMParser and SAXParser.
  130.  * Add feature "http://apache.org/xml/features/validation/schema" for SAX2XMLReader.
  131.  * New data field  fSchemaValidation in XMLScanner as the flag.
  132.  *
  133.  * Revision 1.5  2001/01/12 21:22:00  tng
  134.  * Documentation Enhancement: Add list of SAX2 feature strings that are supported.
  135.  *
  136.  * Revision 1.4  2000/12/22 15:17:04  tng
  137.  * SAX2-ext's LexicalHandler support added by David Bertoni.
  138.  *
  139.  * Revision 1.3  2000/08/09 22:19:29  jpolast
  140.  * many conformance & stability changes:
  141.  *   - ContentHandler::resetDocument() removed
  142.  *   - attrs param of ContentHandler::startDocument() made const
  143.  *   - SAXExceptions thrown now have msgs
  144.  *   - removed duplicate function signatures that had 'const'
  145.  *       [ eg: getContentHander() ]
  146.  *   - changed getFeature and getProperty to apply to const objs
  147.  *   - setProperty now takes a void* instead of const void*
  148.  *   - SAX2XMLReaderImpl does not inherit from SAXParser anymore
  149.  *   - Reuse Validator (http://apache.org/xml/features/reuse-validator) implemented
  150.  *   - Features & Properties now read-only during parse
  151.  *
  152.  * Revision 1.2  2000/08/07 18:21:27  jpolast
  153.  * change SAX_EXPORT module to SAX2_EXPORT
  154.  *
  155.  * Revision 1.1  2000/08/02 18:02:35  jpolast
  156.  * initial checkin of sax2 implementation
  157.  * submitted by Simon Fell (simon@fell.com)
  158.  * and Joe Polastre (jpolast@apache.org)
  159.  *
  160.  *
  161.  */
  162. #ifndef SAX2XMLReader_HPP
  163. #define SAX2XMLReader_HPP
  164. #include <xercesc/util/XercesDefs.hpp>
  165. #include <xercesc/util/XMLUniDefs.hpp>
  166. #include <xercesc/framework/XMLValidator.hpp>
  167. #include <xercesc/framework/XMLPScanToken.hpp>
  168. XERCES_CPP_NAMESPACE_BEGIN
  169. class ContentHandler ;
  170. class DTDHandler;
  171. class EntityResolver;
  172. class ErrorHandler;
  173. class InputSource;
  174. class LexicalHandler;
  175. class DeclHandler;
  176. class XMLDocumentHandler;
  177. class Grammar;
  178. class SAX2_EXPORT SAX2XMLReader
  179. {
  180. public:
  181.     // -----------------------------------------------------------------------
  182.     //  Class types
  183.     // -----------------------------------------------------------------------
  184.     /** @name Public constants */
  185.     //@{
  186.     /** ValScheme enum used in setValidationScheme
  187.       *    Val_Never:  Do not report validation errors.
  188.       *    Val_Always: The parser will always report validation errors.
  189.       *    Val_Auto:   The parser will report validation errors only if a grammar is specified.
  190.       *
  191.       * @see #setValidationScheme
  192.       */
  193.     enum ValSchemes
  194.     {
  195.         Val_Never
  196.         , Val_Always
  197.         , Val_Auto
  198.     };
  199.     //@}
  200.     // -----------------------------------------------------------------------
  201.     //  Constructors and Destructor
  202.     // -----------------------------------------------------------------------
  203.     /** @name Constructors and Destructor */
  204.     //@{
  205.     /** The default constructor */
  206.     SAX2XMLReader()
  207.     {
  208.     }
  209.     /** The destructor */
  210.     virtual ~SAX2XMLReader()
  211.     {
  212.     }
  213.     //@}
  214.     //-----------------------------------------------------------------------
  215.     // The XMLReader interface
  216.     //-----------------------------------------------------------------------
  217.     /** @name Implementation of SAX 2.0 XMLReader interface's. */
  218.     //@{
  219.     /**
  220.       * This method returns the installed content handler.
  221.       *
  222.       * @return A pointer to the installed content handler object.
  223.       */
  224.     virtual ContentHandler* getContentHandler() const = 0 ;
  225.     /**
  226.       * This method returns the installed DTD handler.
  227.       *
  228.       * @return A pointer to the installed DTD handler object.
  229.       */
  230.     virtual DTDHandler* getDTDHandler() const = 0;
  231.     /**
  232.       * This method returns the installed entity resolver.
  233.       *
  234.       * @return A pointer to the installed entity resolver object.
  235.       */
  236.     virtual EntityResolver* getEntityResolver() const = 0 ;
  237.     /**
  238.       * This method returns the installed error handler.
  239.       *
  240.       * @return A pointer to the installed error handler object.
  241.       */
  242.     virtual ErrorHandler* getErrorHandler() const = 0 ;
  243. /**
  244.      * Query the current state of any feature in a SAX2 XMLReader.
  245.   *
  246.   * @param name The unique identifier (URI) of the feature being set.
  247.   * @return The current state of the feature.
  248.      * @exception SAXNotRecognizedException If the requested feature is not known.
  249.   */
  250. virtual bool getFeature(const XMLCh* const name) const = 0;
  251. /**
  252.      * Query the current value of a property in a SAX2 XMLReader.
  253.      *
  254.      * The parser owns the returned pointer.  The memory allocated for
  255.      * the returned pointer will be destroyed when the parser is deleted.
  256.      *
  257.      * To ensure assessiblity of the returned information after the parser
  258.      * is deleted, callers need to copy and store the returned information
  259.      * somewhere else; otherwise you may get unexpected result.  Since the returned
  260.      * pointer is a generic void pointer, see
  261.      * http://xml.apache.org/xerces-c/program-sax2.html#SAX2Properties to learn
  262.      * exactly what type of property value each property returns for replication.
  263.      *
  264.      * @param name The unique identifier (URI) of the property being set.
  265.      * @return     The current value of the property.  The pointer spans the same
  266.      *             life-time as the parser.  A null pointer is returned if nothing
  267.      *             was specified externally.
  268.      * @exception  SAXNotRecognizedException If the requested property is not known.
  269.      */
  270. virtual void* getProperty(const XMLCh* const name) const = 0 ;
  271.   /**
  272.     * Allow an application to register a document event handler.
  273.     *
  274.     * If the application does not register a document handler, all
  275.     * document events reported by the SAX parser will be silently
  276.     * ignored (this is the default behaviour implemented by
  277.     * HandlerBase).
  278.     *
  279.     * Applications may register a new or different handler in the
  280.     * middle of a parse, and the SAX parser must begin using the new
  281.     * handler immediately.
  282.     *
  283.     * @param handler The document handler.
  284.     * @see DocumentHandler#DocumentHandler
  285.     * @see HandlerBase#HandlerBase
  286.     */
  287.     virtual void setContentHandler(ContentHandler* const handler) = 0;
  288.   /**
  289.     * Allow an application to register a DTD event handler.
  290.     *
  291.     * If the application does not register a DTD handler, all DTD
  292.     * events reported by the SAX parser will be silently ignored (this
  293.     * is the default behaviour implemented by HandlerBase).
  294.     *
  295.     * Applications may register a new or different handler in the middle
  296.     * of a parse, and the SAX parser must begin using the new handler
  297.     * immediately.
  298.     *
  299.     * @param handler The DTD handler.
  300.     * @see DTDHandler#DTDHandler
  301.     * @see HandlerBase#HandlerBase
  302.     */
  303.     virtual void setDTDHandler(DTDHandler* const handler) = 0;
  304.   /**
  305.     * Allow an application to register a custom entity resolver.
  306.     *
  307.     * If the application does not register an entity resolver, the
  308.     * SAX parser will resolve system identifiers and open connections
  309.     * to entities itself (this is the default behaviour implemented in
  310.     * DefaultHandler).
  311.     *
  312.     * Applications may register a new or different entity resolver
  313.     * in the middle of a parse, and the SAX parser must begin using
  314.     * the new resolver immediately.
  315.     *
  316.     * @param resolver The object for resolving entities.
  317.     * @see EntityResolver#EntityResolver
  318.     * @see DefaultHandler#DefaultHandler
  319.     */
  320.     virtual void setEntityResolver(EntityResolver* const resolver) = 0;
  321.   /**
  322.     * Allow an application to register an error event handler.
  323.     *
  324.     * If the application does not register an error event handler,
  325.     * all error events reported by the SAX parser will be silently
  326.     * ignored, except for fatalError, which will throw a SAXException
  327.     * (this is the default behaviour implemented by HandlerBase).
  328.     *
  329.     * Applications may register a new or different handler in the
  330.     * middle of a parse, and the SAX parser must begin using the new
  331.     * handler immediately.
  332.     *
  333.     * @param handler The error handler.
  334.     * @see ErrorHandler#ErrorHandler
  335.     * @see SAXException#SAXException
  336.     * @see HandlerBase#HandlerBase
  337.     */
  338.     virtual void setErrorHandler(ErrorHandler* const handler) = 0;
  339.   /**
  340.     * Set the state of any feature in a SAX2 XMLReader.
  341.     * Supported features in SAX2 for xerces-c are:
  342.     * <br>(See http://xml.apache.org/xerces-c/program-sax2.html#SAX2Features for detail description).
  343.     *
  344.     * <br>http://xml.org/sax/features/validation (default: true)
  345.     * <br>http://xml.org/sax/features/namespaces (default: true)
  346.     * <br>http://xml.org/sax/features/namespace-prefixes (default: false)
  347.     * <br>http://apache.org/xml/features/validation/dynamic (default: false)
  348.     * <br>http://apache.org/xml/features/validation/reuse-grammar (default: false)
  349.     * <br>http://apache.org/xml/features/validation/schema (default: true)
  350.     * <br>http://apache.org/xml/features/validation/schema-full-checking (default: false)
  351.     * <br>http://apache.org/xml/features/nonvalidating/load-external-dtd (default: true)
  352.     * <br>http://apache.org/xml/features/continue-after-fatal-error (default: false)
  353.     * <br>http://apache.org/xml/features/validation-error-as-fatal (default: false)
  354.     * <br>http://apache.org/xml/features/validation/reuse-validator (Deprecated) (default: false)
  355.     *
  356.     * @param name The unique identifier (URI) of the feature.
  357.     * @param value The requested state of the feature (true or false).
  358.     * @exception SAXNotRecognizedException If the requested feature is not known.
  359.     * @exception SAXNotSupportedException Feature modification is not supported during parse
  360.     *
  361.     */
  362. virtual void setFeature(const XMLCh* const name, const bool value) = 0;
  363.   /**
  364.     * Set the value of any property in a SAX2 XMLReader.
  365.     * Supported properties in SAX2 for xerces-c are:
  366.     * <br>(See http://xml.apache.org/xerces-c/program-sax2.html#SAX2Properties for detail description).
  367.     *
  368.     * <br>http://apache.org/xml/properties/schema/external-schemaLocation
  369.     * <br>http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation.
  370.     *
  371.     * It takes a void pointer as the property value.  Application is required to initialize this void
  372.     * pointer to a correct type.  See http://xml.apache.org/xerces-c/program-sax2.html#SAX2Properties
  373.     * to learn exactly what type of property value each property expects for processing.
  374.     * Passing a void pointer that was initialized with a wrong type will lead to unexpected result.
  375.     * If the same property is set more than once, the last one takes effect.
  376.     *
  377.     * @param name The unique identifier (URI) of the property being set.
  378.     * @param value The requested value for the property.  See
  379.     *            http://xml.apache.org/xerces-c/program-sax2.html#SAX2Properties to learn
  380.     *            exactly what type of property value each property expects for processing.
  381.     *            Passing a void pointer that was initialized with a wrong type will lead
  382.     *            to unexpected result.
  383.     * @exception SAXNotRecognizedException If the requested property is not known.
  384.     * @exception SAXNotSupportedException Property modification is not supported during parse
  385.     */
  386. virtual void setProperty(const XMLCh* const name, void* value) = 0 ;
  387.   /**
  388.     * Parse an XML document.
  389.     *
  390.     * The application can use this method to instruct the SAX parser
  391.     * to begin parsing an XML document from any valid input
  392.     * source (a character stream, a byte stream, or a URI).
  393.     *
  394.     * Applications may not invoke this method while a parse is in
  395.     * progress (they should create a new Parser instead for each
  396.     * additional XML document).  Once a parse is complete, an
  397.     * application may reuse the same Parser object, possibly with a
  398.     * different input source.
  399.     *
  400.     * @param source The input source for the top-level of the
  401.     *               XML document.
  402.     * @exception SAXException Any SAX exception, possibly
  403.     *            wrapping another exception.
  404.     * @exception XMLException An exception from the parser or client
  405.     *            handler code.
  406.     * @see InputSource#InputSource
  407.     * @see #setEntityResolver
  408.     * @see #setDTDHandler
  409.     * @see #setDocumentHandler
  410.     * @see #setErrorHandler
  411.     */
  412.     virtual void parse
  413.     (
  414.         const   InputSource&    source
  415.     ) = 0;
  416.   /**
  417.     * Parse an XML document from a system identifier (URI).
  418.     *
  419.     * This method is a shortcut for the common case of reading a
  420.     * document from a system identifier.  It is the exact equivalent
  421.     * of the following:
  422.     *
  423.     * parse(new URLInputSource(systemId));
  424.     *
  425.     * If the system identifier is a URL, it must be fully resolved
  426.     * by the application before it is passed to the parser.
  427.     *
  428.     * @param systemId The system identifier (URI).
  429.     * @exception SAXException Any SAX exception, possibly
  430.     *            wrapping another exception.
  431.     * @exception XMLException An exception from the parser or client
  432.     *            handler code.
  433.     * @see #parse(InputSource)
  434.     */
  435.     virtual void parse
  436.     (
  437.         const   XMLCh* const    systemId
  438.     ) = 0;
  439.   /**
  440.     * Parse an XML document from a system identifier (URI).
  441.     *
  442.     * This method is a shortcut for the common case of reading a
  443.     * document from a system identifier.  It is the exact equivalent
  444.     * of the following:
  445.     *
  446.     * parse(new URLInputSource(systemId));
  447.     *
  448.     * If the system identifier is a URL, it must be fully resolved
  449.     * by the application before it is passed to the parser.
  450.     *
  451.     * @param systemId The system identifier (URI).
  452.     * @exception SAXException Any SAX exception, possibly
  453.     *            wrapping another exception.
  454.     * @exception XMLException An exception from the parser or client
  455.     *            handler code.
  456.     * @see #parse(InputSource)
  457.     */
  458.     virtual void parse
  459.     (
  460.         const   char* const     systemId
  461.     ) = 0;
  462.     //@}
  463.     // -----------------------------------------------------------------------
  464.     //  SAX 2.0-ext
  465.     // -----------------------------------------------------------------------
  466.     /** @name SAX 2.0-ext */
  467.     //@{
  468.     /**
  469.       * This method returns the installed declaration handler.
  470.       *
  471.       * @return A pointer to the installed declaration handler object.
  472.       */
  473.     virtual DeclHandler* getDeclarationHandler() const = 0 ;
  474. /**
  475.       * This method returns the installed lexical handler.
  476.       *
  477.       * @return A pointer to the installed lexical handler object.
  478.       */
  479.     virtual LexicalHandler* getLexicalHandler() const = 0 ;
  480.    /**
  481.     * Allow an application to register a declaration event handler.
  482.     *
  483.     * If the application does not register a declaration handler,
  484.     * all events reported by the SAX parser will be silently
  485.     * ignored. (this is the default behaviour implemented by DefaultHandler).
  486.     *
  487.     * Applications may register a new or different handler in the
  488.     * middle of a parse, and the SAX parser must begin using the new
  489.     * handler immediately.
  490.     *
  491.     * @param handler The DTD declaration handler.
  492.     * @see DeclHandler#DeclHandler
  493.     * @see SAXException#SAXException
  494.     * @see DefaultHandler#DefaultHandler
  495.     */
  496.     virtual void setDeclarationHandler(DeclHandler* const handler) = 0;
  497.    /**
  498.     * Allow an application to register a lexical event handler.
  499.     *
  500.     * If the application does not register a lexical handler,
  501.     * all events reported by the SAX parser will be silently
  502.     * ignored. (this is the default behaviour implemented by HandlerBase).
  503.     *
  504.     * Applications may register a new or different handler in the
  505.     * middle of a parse, and the SAX parser must begin using the new
  506.     * handler immediately.
  507.     *
  508.     * @param handler The error handler.
  509.     * @see LexicalHandler#LexicalHandler
  510.     * @see SAXException#SAXException
  511.     * @see HandlerBase#HandlerBase
  512.     */
  513.     virtual void setLexicalHandler(LexicalHandler* const handler) = 0;
  514.     //@}
  515.     // -----------------------------------------------------------------------
  516.     //  Getter Methods
  517.     // -----------------------------------------------------------------------
  518.     /** @name Getter Methods (Xerces-C specific) */
  519.     //@{
  520.     /**
  521.   * This method is used to get the current validator.
  522.   *
  523.   * <b>SAX2XMLReader assumes responsibility for the validator.  It will be
  524.   * deleted when the XMLReader is destroyed.</b>
  525.   *
  526.   * @return A pointer to the validator.  An application should not deleted
  527.   * the object returned.
  528.   *
  529.   */
  530. virtual XMLValidator* getValidator() const = 0;
  531.     /** Get error count from the last parse operation.
  532.       *
  533.       * This method returns the error count from the last parse
  534.       * operation. Note that this count is actually stored in the
  535.       * scanner, so this method simply returns what the
  536.       * scanner reports.
  537.       *
  538.       * @return number of errors encountered during the latest
  539.       * parse operation.
  540.       */
  541.     virtual int getErrorCount() const = 0 ;
  542.     /**
  543.       * This method returns the state of the parser's
  544.       * exit-on-First-Fatal-Error flag.
  545.       *
  546.       * <p>Or you can query the feature "http://apache.org/xml/features/continue-after-fatal-error"
  547.       * which indicates the opposite state.</p>
  548.       *
  549.       * @return true, if the parser is currently configured to
  550.       *         exit on the first fatal error, false otherwise.
  551.       *
  552.       * @see #setExitOnFirstFatalError
  553.       * @see #getFeature
  554.       */
  555.     virtual bool getExitOnFirstFatalError() const = 0;
  556.     /**
  557.       * This method returns the state of the parser's
  558.       * validation-constraint-fatal flag.
  559.       *
  560.       * <p>Or you can query the feature "http://apache.org/xml/features/validation-error-as-fatal"
  561.       * which means the same thing.
  562.       *
  563.       * @return true, if the parser is currently configured to
  564.       *         set validation constraint errors as fatal, false
  565.       *         otherwise.
  566.       *
  567.       * @see #setValidationContraintFatal
  568.       * @see #getFeature
  569.       */
  570.     virtual bool getValidationConstraintFatal() const = 0;
  571.     /**
  572.       * Retrieve the grammar that is associated with the specified namespace key
  573.       *
  574.       * @param  nameSpaceKey Namespace key
  575.       * @return Grammar associated with the Namespace key.
  576.       */
  577.     virtual Grammar* getGrammar(const XMLCh* const nameSpaceKey) = 0;
  578.     /**
  579.       * Retrieve the grammar where the root element is declared.
  580.       *
  581.       * @return Grammar where root element declared
  582.       */
  583.     virtual Grammar* getRootGrammar() = 0;
  584.     /**
  585.       * Returns the string corresponding to a URI id from the URI string pool.
  586.       *
  587.       * @param uriId id of the string in the URI string pool.
  588.       * @return URI string corresponding to the URI id.
  589.       */
  590.     virtual const XMLCh* getURIText(unsigned int uriId) const = 0;
  591.     /**
  592.       * Returns the current src offset within the input source.
  593.       *
  594.       * @return offset within the input source
  595.       */
  596.     virtual unsigned int getSrcOffset() const = 0;
  597.     //@}
  598.     // -----------------------------------------------------------------------
  599.     //  Setter Methods
  600.     // -----------------------------------------------------------------------
  601.     /** @name Setter Methods (Xerces-C specific) */
  602.     //@{
  603.     /**
  604.   * This method is used to set a validator.
  605.   *
  606.   * <b>SAX2XMLReader assumes responsibility for the validator.  It will be
  607.   * deleted when the XMLReader is destroyed.</b>
  608.   *
  609.   * @param valueToAdopt A pointer to the validator that the reader should use.
  610.   *
  611.   */
  612. virtual void setValidator(XMLValidator* valueToAdopt) = 0;
  613.     /**
  614.       * This method allows users to set the parser's behaviour when it
  615.       * encounters the first fatal error. If set to true, the parser
  616.       * will exit at the first fatal error. If false, then it will
  617.       * report the error and continue processing.
  618.       *
  619.       * <p>The default value is 'true' and the parser exits on the
  620.       * first fatal error.</p>
  621.       *
  622.       * <p>Or you can set the feature "http://apache.org/xml/features/continue-after-fatal-error"
  623.       * which has the opposite behaviour.</p>
  624.       *
  625.       * <p>If both the feature above and this function are used, the latter takes effect.</p>
  626.       *
  627.       * @param newState The value specifying whether the parser should
  628.       *                 continue or exit when it encounters the first
  629.       *                 fatal error.
  630.       *
  631.       * @see #getExitOnFirstFatalError
  632.       * @see #setFeature
  633.       */
  634.     virtual void setExitOnFirstFatalError(const bool newState) = 0;
  635.     /**
  636.       * This method allows users to set the parser's behaviour when it
  637.       * encounters a validtion constraint error. If set to true, and the
  638.       * the parser will treat validation error as fatal and will exit depends on the
  639.       * state of "getExitOnFirstFatalError". If false, then it will
  640.       * report the error and continue processing.
  641.       *
  642.       * Note: setting this true does not mean the validation error will be printed with
  643.       * the word "Fatal Error".   It is still printed as "Error", but the parser
  644.       * will exit if "setExitOnFirstFatalError" is set to true.
  645.       *
  646.       * <p>The default value is 'false'.</p>
  647.       *
  648.       * <p>Or you can set the feature "http://apache.org/xml/features/validation-error-as-fatal"
  649.       * which means the same thing.</p>
  650.       *
  651.       * <p>If both the feature above and this function are used, the latter takes effect.</p>
  652.       *
  653.       * @param newState If true, the parser will exit if "setExitOnFirstFatalError"
  654.       *                 is set to true.
  655.       *
  656.       * @see #getValidationConstraintFatal
  657.       * @see #setExitOnFirstFatalError
  658.       * @see #setFeature
  659.       */
  660.     virtual void setValidationConstraintFatal(const bool newState) = 0;
  661.     //@}
  662.     // -----------------------------------------------------------------------
  663.     //  Progressive scan methods
  664.     // -----------------------------------------------------------------------
  665.     /** @name Progressive scan methods */
  666.     //@{
  667.     /** Begin a progressive parse operation
  668.       *
  669.       * This method is used to start a progressive parse on a XML file.
  670.       * To continue parsing, subsequent calls must be to the parseNext
  671.       * method.
  672.       *
  673.       * It scans through the prolog and returns a token to be used on
  674.       * subsequent scanNext() calls. If the return value is true, then the
  675.       * token is legal and ready for further use. If it returns false, then
  676.       * the scan of the prolog failed and the token is not going to work on
  677.       * subsequent scanNext() calls.
  678.       *
  679.       * @param systemId A pointer to a Unicode string represting the path
  680.       *                 to the XML file to be parsed.
  681.       * @param toFill   A token maintaing state information to maintain
  682.       *                 internal consistency between invocation of 'parseNext'
  683.       *                 calls.
  684.       *
  685.       * @return 'true', if successful in parsing the prolog. It indicates the
  686.       *         user can go ahead with parsing the rest of the file. It
  687.       *         returns 'false' to indicate that the parser could parse the
  688.       *         prolog (which means the token will not be valid.)
  689.       *
  690.       * @see #parseNext
  691.       * @see #parseFirst(char*,...)
  692.       * @see #parseFirst(InputSource&,...)
  693.       */
  694.     virtual bool parseFirst
  695.     (
  696.         const   XMLCh* const    systemId
  697.         ,       XMLPScanToken&  toFill
  698.     ) = 0;
  699.     /** Begin a progressive parse operation
  700.       *
  701.       * This method is used to start a progressive parse on a XML file.
  702.       * To continue parsing, subsequent calls must be to the parseNext
  703.       * method.
  704.       *
  705.       * It scans through the prolog and returns a token to be used on
  706.       * subsequent scanNext() calls. If the return value is true, then the
  707.       * token is legal and ready for further use. If it returns false, then
  708.       * the scan of the prolog failed and the token is not going to work on
  709.       * subsequent scanNext() calls.
  710.       *
  711.       * @param systemId A pointer to a regular native string represting
  712.       *                 the path to the XML file to be parsed.
  713.       * @param toFill   A token maintaing state information to maintain
  714.       *                 internal consIstency between invocation of 'parseNext'
  715.       *                 calls.
  716.       *
  717.       * @return 'true', if successful in parsing the prolog. It indicates the
  718.       *         user can go ahead with parsing the rest of the file. It
  719.       *         returns 'false' to indicate that the parser could not parse
  720.       *         the prolog.
  721.       *
  722.       * @see #parseNext
  723.       * @see #parseFirst(XMLCh*,...)
  724.       * @see #parseFirst(InputSource&,...)
  725.       */
  726.     virtual bool parseFirst
  727.     (
  728.         const   char* const     systemId
  729.         ,       XMLPScanToken&  toFill
  730.     ) = 0;
  731.     /** Begin a progressive parse operation
  732.       *
  733.       * This method is used to start a progressive parse on a XML file.
  734.       * To continue parsing, subsequent calls must be to the parseNext
  735.       * method.
  736.       *
  737.       * It scans through the prolog and returns a token to be used on
  738.       * subsequent scanNext() calls. If the return value is true, then the
  739.       * token is legal and ready for further use. If it returns false, then
  740.       * the scan of the prolog failed and the token is not going to work on
  741.       * subsequent scanNext() calls.
  742.       *
  743.       * @param source   A const reference to the InputSource object which
  744.       *                 points to the XML file to be parsed.
  745.       * @param toFill   A token maintaing state information to maintain
  746.       *                 internal consistency between invocation of 'parseNext'
  747.       *                 calls.
  748.       *
  749.       * @return 'true', if successful in parsing the prolog. It indicates the
  750.       *         user can go ahead with parsing the rest of the file. It
  751.       *         returns 'false' to indicate that the parser could not parse
  752.       *         the prolog.
  753.       *
  754.       * @see #parseNext
  755.       * @see #parseFirst(XMLCh*,...)
  756.       * @see #parseFirst(char*,...)
  757.       */
  758.     virtual bool parseFirst
  759.     (
  760.         const   InputSource&    source
  761.         ,       XMLPScanToken&  toFill
  762.     ) = 0;
  763.     /** Continue a progressive parse operation
  764.       *
  765.       * This method is used to continue with progressive parsing of
  766.       * XML files started by a call to 'parseFirst' method.
  767.       *
  768.       * It parses the XML file and stops as soon as it comes across
  769.       * a XML token (as defined in the XML specification). Relevant
  770.       * callback handlers are invoked as required by the SAX
  771.       * specification.
  772.       *
  773.       * @param token A token maintaing state information to maintain
  774.       *              internal consistency between invocation of 'parseNext'
  775.       *              calls.
  776.       *
  777.       * @return 'true', if successful in parsing the next XML token.
  778.       *         It indicates the user can go ahead with parsing the rest
  779.       *         of the file. It returns 'false' to indicate that the parser
  780.       *         could not find next token as per the XML specification
  781.       *         production rule.
  782.       *
  783.       * @see #parseFirst(XMLCh*,...)
  784.       * @see #parseFirst(char*,...)
  785.       * @see #parseFirst(InputSource&,...)
  786.       */
  787.     virtual bool parseNext(XMLPScanToken& token) = 0;
  788.     /** Reset the parser after a progressive parse
  789.       *
  790.       * If a progressive parse loop exits before the end of the document
  791.       * is reached, the parser has no way of knowing this. So it will leave
  792.       * open any files or sockets or memory buffers that were in use at
  793.       * the time that the parse loop exited.
  794.       *
  795.       * The next parse operation will cause these open files and such to
  796.       * be closed, but the next parse operation might occur at some unknown
  797.       * future point. To avoid this problem, you should reset the parser if
  798.       * you exit the loop early.
  799.       *
  800.       * If you exited because of an error, then this cleanup will be done
  801.       * for you. Its only when you exit the file prematurely of your own
  802.       * accord, because you've found what you wanted in the file most
  803.       * likely.
  804.       *
  805.       * @param token A token maintaing state information to maintain
  806.       *              internal consistency between invocation of 'parseNext'
  807.       *              calls.
  808.       */
  809.     virtual void parseReset(XMLPScanToken& token) = 0;
  810.     //@}
  811.     // -----------------------------------------------------------------------
  812.     //  Grammar preparsing interface
  813.     // -----------------------------------------------------------------------
  814.     /** @name Grammar preparsing interface's. */
  815.     //@{
  816.     /**
  817.       * Preparse schema grammar (XML Schema, DTD, etc.) via an input source
  818.       * object.
  819.       *
  820.       * This method invokes the preparsing process on a schema grammar XML
  821.       * file specified by the SAX InputSource parameter. If the 'toCache' flag
  822.       * is enabled, the parser will cache the grammars for re-use. If a grammar
  823.       * key is found in the pool, no caching of any grammar will take place.
  824.       *
  825.       * <p><b>"Experimental - subject to change"</b></p>
  826.       *
  827.       * @param source A const reference to the SAX InputSource object which
  828.       *               points to the schema grammar file to be preparsed.
  829.       * @param grammarType The grammar type (Schema or DTD).
  830.       * @param toCache If <code>true</code>, we cache the preparsed grammar,
  831.       *                otherwise, no chaching. Default is <code>false</code>.
  832.       * @return The preparsed schema grammar object (SchemaGrammar or
  833.       *         DTDGrammar). That grammar object is owned by the parser.
  834.       *
  835.       * @exception SAXException Any SAX exception, possibly
  836.       *            wrapping another exception.
  837.       * @exception XMLException An exception from the parser or client
  838.       *            handler code.
  839.       * @exception DOMException A DOM exception as per DOM spec.
  840.       *
  841.       * @see InputSource#InputSource
  842.       */
  843.     virtual Grammar* loadGrammar(const InputSource& source,
  844.                                  const short grammarType,
  845.                                  const bool toCache = false) = 0;
  846.     /**
  847.       * Preparse schema grammar (XML Schema, DTD, etc.) via a file path or URL
  848.       *
  849.       * This method invokes the preparsing process on a schema grammar XML
  850.       * file specified by the file path parameter. If the 'toCache' flag
  851.       * is enabled, the parser will cache the grammars for re-use. If a grammar
  852.       * key is found in the pool, no caching of any grammar will take place.
  853.       *
  854.       * <p><b>"Experimental - subject to change"</b></p>
  855.       *
  856.       * @param systemId A const XMLCh pointer to the Unicode string which
  857.       *                 contains the path to the XML grammar file to be
  858.       *                 preparsed.
  859.       * @param grammarType The grammar type (Schema or DTD).
  860.       * @param toCache If <code>true</code>, we cache the preparsed grammar,
  861.       *                otherwise, no chaching. Default is <code>false</code>.
  862.       * @return The preparsed schema grammar object (SchemaGrammar or
  863.       *         DTDGrammar). That grammar object is owned by the parser.
  864.       *
  865.       * @exception SAXException Any SAX exception, possibly
  866.       *            wrapping another exception.
  867.       * @exception XMLException An exception from the parser or client
  868.       *            handler code.
  869.       * @exception DOMException A DOM exception as per DOM spec.
  870.       */
  871.     virtual Grammar* loadGrammar(const XMLCh* const systemId,
  872.                                  const short grammarType,
  873.                                  const bool toCache = false) = 0;
  874.     /**
  875.       * Preparse schema grammar (XML Schema, DTD, etc.) via a file path or URL
  876.       *
  877.       * This method invokes the preparsing process on a schema grammar XML
  878.       * file specified by the file path parameter. If the 'toCache' flag
  879.       * is enabled, the parser will cache the grammars for re-use. If a grammar
  880.       * key is found in the pool, no caching of any grammar will take place.
  881.       *
  882.       * <p><b>"Experimental - subject to change"</b></p>
  883.       *
  884.       * @param systemId A const char pointer to a native string which contains
  885.       *                 the path to the XML grammar file to be preparsed.
  886.       * @param grammarType The grammar type (Schema or DTD).
  887.       * @param toCache If <code>true</code>, we cache the preparsed grammar,
  888.       *                otherwise, no chaching. Default is <code>false</code>.
  889.       * @return The preparsed schema grammar object (SchemaGrammar or
  890.       *         DTDGrammar). That grammar object is owned by the parser.
  891.       *
  892.       * @exception SAXException Any SAX exception, possibly
  893.       *            wrapping another exception.
  894.       * @exception XMLException An exception from the parser or client
  895.       *            handler code.
  896.       * @exception DOMException A DOM exception as per DOM spec.
  897.       */
  898.     virtual Grammar* loadGrammar(const char* const systemId,
  899.                                  const short grammarType,
  900.                                  const bool toCache = false) = 0;
  901.     /**
  902.       * Clear the cached grammar pool
  903.       */
  904.     virtual void resetCachedGrammarPool() = 0;
  905.     //@}
  906.     // -----------------------------------------------------------------------
  907.     //  Advanced document handler list maintenance methods
  908.     // -----------------------------------------------------------------------
  909.     /** @name Advanced document handler list maintenance methods */
  910.     //@{
  911.     /**
  912.       * This method installs the specified 'advanced' document callback
  913.       * handler, thereby allowing the user to customize the processing,
  914.       * if they choose to do so. Any number of advanced callback handlers
  915.       * maybe installed.
  916.       *
  917.       * <p>The methods in the advanced callback interface represent
  918.       * Xerces-C extensions. There is no specification for this interface.</p>
  919.       *
  920.       * @param toInstall A pointer to the users advanced callback handler.
  921.       *
  922.       * @see #removeAdvDocHandler
  923.       */
  924.     virtual void installAdvDocHandler(XMLDocumentHandler* const toInstall) = 0;
  925.     /**
  926.       * This method removes the 'advanced' document handler callback from
  927.       * the underlying parser scanner. If no handler is installed, advanced
  928.       * callbacks are not invoked by the scanner.
  929.       * @param toRemove A pointer to the advanced callback handler which
  930.       *                 should be removed.
  931.       *
  932.       * @see #installAdvDocHandler
  933.       */
  934.     virtual bool removeAdvDocHandler(XMLDocumentHandler* const toRemove) = 0;
  935.     //@}
  936. private :
  937.     /* The copy constructor, you cannot call this directly */
  938.     SAX2XMLReader(const SAX2XMLReader&);
  939.     /* The assignment operator, you cannot call this directly */
  940.     SAX2XMLReader& operator=(const SAX2XMLReader&);
  941. };
  942. XERCES_CPP_NAMESPACE_END
  943. #endif