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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 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: ContentHandler.hpp,v $
  58.  * Revision 1.3  2003/03/07 18:10:30  tng
  59.  * Return a reference instead of void for operator=
  60.  *
  61.  * Revision 1.2  2002/11/04 14:55:45  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.1.1.1  2002/02/01 22:22:09  peiyongz
  65.  * sane_include
  66.  *
  67.  * Revision 1.4  2000/12/14 18:50:05  tng
  68.  * Fix API document generation warning: "Warning: end of member group without matching begin"
  69.  *
  70.  * Revision 1.3  2000/08/09 22:19:29  jpolast
  71.  * many conformance & stability changes:
  72.  *   - ContentHandler::resetDocument() removed
  73.  *   - attrs param of ContentHandler::startDocument() made const
  74.  *   - SAXExceptions thrown now have msgs
  75.  *   - removed duplicate function signatures that had 'const'
  76.  *       [ eg: getContentHander() ]
  77.  *   - changed getFeature and getProperty to apply to const objs
  78.  *   - setProperty now takes a void* instead of const void*
  79.  *   - SAX2XMLReaderImpl does not inherit from SAXParser anymore
  80.  *   - Reuse Validator (http://apache.org/xml/features/reuse-validator) implemented
  81.  *   - Features & Properties now read-only during parse
  82.  *
  83.  * Revision 1.2  2000/08/07 18:21:27  jpolast
  84.  * change SAX_EXPORT module to SAX2_EXPORT
  85.  *
  86.  * Revision 1.1  2000/08/02 18:02:34  jpolast
  87.  * initial checkin of sax2 implementation
  88.  * submitted by Simon Fell (simon@fell.com)
  89.  * and Joe Polastre (jpolast@apache.org)
  90.  *
  91.  *
  92.  */
  93. #ifndef CONTENTHANDLER_HPP
  94. #define CONTENTHANDLER_HPP
  95. #include <xercesc/util/XercesDefs.hpp>
  96. XERCES_CPP_NAMESPACE_BEGIN
  97. class Attributes;
  98. class Locator;
  99. /**
  100.   * Receive notification of general document events.
  101.   *
  102.   * <p>This is the main interface that most SAX2 applications
  103.   * implement: if the application needs to be informed of basic parsing
  104.   * events, it implements this interface and registers an instance with
  105.   * the SAX2 parser using the setDocumentHandler method.  The parser
  106.   * uses the instance to report basic document-related events like
  107.   * the start and end of elements and character data.</p>
  108.   *
  109.   * <p>The order of events in this interface is very important, and
  110.   * mirrors the order of information in the document itself.  For
  111.   * example, all of an element's content (character data, processing
  112.   * instructions, and/or subelements) will appear, in order, between
  113.   * the startElement event and the corresponding endElement event.</p>
  114.   *
  115.   * <p>Application writers who do not want to implement the entire
  116.   * interface while can derive a class from Sax2HandlerBase, which implements
  117.   * the default functionality; parser writers can instantiate
  118.   * Sax2HandlerBase to obtain a default handler.  The application can find
  119.   * the location of any document event using the Locator interface
  120.   * supplied by the Parser through the setDocumentLocator method.</p>
  121.   *
  122.   * @see Parser#setDocumentHandler
  123.   * @see Locator#Locator
  124.   * @see Sax2HandlerBase#Sax2HandlerBase
  125.   */
  126. class SAX2_EXPORT ContentHandler
  127. {
  128. public:
  129.     /** @name Constructors and Destructor */
  130.     //@{
  131.     /** Default constructor */
  132.     ContentHandler()
  133.     {
  134.     }
  135.     /** Destructor */
  136.     virtual ~ContentHandler()
  137.     {
  138.     }
  139.     //@}
  140.     /** @name The virtual document handler interface */
  141.     //@{
  142.    /**
  143.     * Receive notification of character data.
  144.     *
  145.     * <p>The Parser will call this method to report each chunk of
  146.     * character data.  SAX parsers may return all contiguous character
  147.     * data in a single chunk, or they may split it into several
  148.     * chunks; however, all of the characters in any single event
  149.     * must come from the same external entity, so that the Locator
  150.     * provides useful information.</p>
  151.     *
  152.     * <p>The application must not attempt to read from the array
  153.     * outside of the specified range.</p>
  154.     *
  155.     * <p>Note that some parsers will report whitespace using the
  156.     * ignorableWhitespace() method rather than this one (validating
  157.     * parsers must do so).</p>
  158.     *
  159.     * @param chars The characters from the XML document.
  160.     * @param length The number of characters to read from the array.
  161.     * @exception SAXException Any SAX exception, possibly
  162.     *            wrapping another exception.
  163.     * @see #ignorableWhitespace
  164.     * @see Locator#Locator
  165.     */
  166.     virtual void characters
  167.     (
  168.         const   XMLCh* const    chars
  169.         , const unsigned int    length
  170.     ) = 0;
  171.   /**
  172.     * Receive notification of the end of a document.
  173.     *
  174.     * <p>The SAX parser will invoke this method only once, and it will
  175.     * be the last method invoked during the parse.  The parser shall
  176.     * not invoke this method until it has either abandoned parsing
  177.     * (because of an unrecoverable error) or reached the end of
  178.     * input.</p>
  179.     *
  180.     * @exception SAXException Any SAX exception, possibly
  181.     *            wrapping another exception.
  182.     */
  183.     virtual void endDocument () = 0;
  184.   /**
  185.     * Receive notification of the end of an element.
  186.     *
  187.     * <p>The SAX parser will invoke this method at the end of every
  188.     * element in the XML document; there will be a corresponding
  189.     * startElement() event for every endElement() event (even when the
  190.     * element is empty).</p>
  191.     *
  192.     * @param uri The URI of the asscioated namespace for this element
  193. * @param localname The local part of the element name
  194. * @param qname The QName of this element
  195.     * @exception SAXException Any SAX exception, possibly
  196.     *            wrapping another exception.
  197.     */
  198.     virtual void endElement
  199. (
  200. const XMLCh* const uri,
  201. const XMLCh* const localname,
  202. const XMLCh* const qname
  203. ) = 0;
  204.   /**
  205.     * Receive notification of ignorable whitespace in element content.
  206.     *
  207.     * <p>Validating Parsers must use this method to report each chunk
  208.     * of ignorable whitespace (see the W3C XML 1.0 recommendation,
  209.     * section 2.10): non-validating parsers may also use this method
  210.     * if they are capable of parsing and using content models.</p>
  211.     *
  212.     * <p>SAX parsers may return all contiguous whitespace in a single
  213.     * chunk, or they may split it into several chunks; however, all of
  214.     * the characters in any single event must come from the same
  215.     * external entity, so that the Locator provides useful
  216.     * information.</p>
  217.     *
  218.     * <p>The application must not attempt to read from the array
  219.     * outside of the specified range.</p>
  220.     *
  221.     * @param chars The characters from the XML document.
  222.     * @param length The number of characters to read from the array.
  223.     * @exception SAXException Any SAX exception, possibly
  224.     *            wrapping another exception.
  225.     * @see #characters
  226.     */
  227.     virtual void ignorableWhitespace
  228.     (
  229.         const   XMLCh* const    chars
  230.         , const unsigned int    length
  231.     ) = 0;
  232.   /**
  233.     * Receive notification of a processing instruction.
  234.     *
  235.     * <p>The Parser will invoke this method once for each processing
  236.     * instruction found: note that processing instructions may occur
  237.     * before or after the main document element.</p>
  238.     *
  239.     * <p>A SAX parser should never report an XML declaration (XML 1.0,
  240.     * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
  241.     * using this method.</p>
  242.     *
  243.     * @param target The processing instruction target.
  244.     * @param data The processing instruction data, or null if
  245.     *        none was supplied.
  246.     * @exception SAXException Any SAX exception, possibly
  247.     *            wrapping another exception.
  248.     */
  249.     virtual void processingInstruction
  250.     (
  251.         const   XMLCh* const    target
  252.         , const XMLCh* const    data
  253.     ) = 0;
  254.   /**
  255.     * Receive an object for locating the origin of SAX document events.
  256.     *
  257.     * SAX parsers are strongly encouraged (though not absolutely
  258.     * required) to supply a locator: if it does so, it must supply
  259.     * the locator to the application by invoking this method before
  260.     * invoking any of the other methods in the DocumentHandler
  261.     * interface.
  262.     *
  263.     * The locator allows the application to determine the end
  264.     * position of any document-related event, even if the parser is
  265.     * not reporting an error.  Typically, the application will
  266.     * use this information for reporting its own errors (such as
  267.     * character content that does not match an application's
  268.     * business rules). The information returned by the locator
  269.     * is probably not sufficient for use with a search engine.
  270.     *
  271.     * Note that the locator will return correct information only
  272.     * during the invocation of the events in this interface. The
  273.     * application should not attempt to use it at any other time.
  274.     *
  275.     * @param locator An object that can return the location of
  276.     *                any SAX document event. The object is only
  277.     *                'on loan' to the client code and they are not
  278.     *                to attempt to delete or modify it in any way!
  279.     *
  280.     * @see Locator#Locator
  281.     */
  282.     virtual void setDocumentLocator(const Locator* const locator) = 0;
  283.   /**
  284.     * Receive notification of the beginning of a document.
  285.     *
  286.     * <p>The SAX parser will invoke this method only once, before any
  287.     * other methods in this interface or in DTDHandler (except for
  288.     * setDocumentLocator).</p>
  289.     *
  290.     * @exception SAXException Any SAX exception, possibly
  291.     *            wrapping another exception.
  292.     */
  293.     virtual void startDocument() = 0;
  294.   /**
  295.     * Receive notification of the beginning of an element.
  296.     *
  297.     * <p>The Parser will invoke this method at the beginning of every
  298.     * element in the XML document; there will be a corresponding
  299.     * endElement() event for every startElement() event (even when the
  300.     * element is empty). All of the element's content will be
  301.     * reported, in order, before the corresponding endElement()
  302.     * event.</p>
  303.     *
  304.     * <p>Note that the attribute list provided will
  305.     * contain only attributes with explicit values (specified or
  306.     * defaulted): #IMPLIED attributes will be omitted.</p>
  307.     *
  308.     * @param uri The URI of the asscioated namespace for this element
  309. * @param localname The local part of the element name
  310. * @param qname The QName of this element
  311.     * @param attrs The attributes attached to the element, if any.
  312.     * @exception SAXException Any SAX exception, possibly
  313.     *            wrapping another exception.
  314.     * @see #endElement
  315.     * @see Attributes#Attributes
  316.     */
  317.     virtual void startElement
  318.     (
  319.         const   XMLCh* const    uri,
  320.         const   XMLCh* const    localname,
  321.         const   XMLCh* const    qname,
  322.         const   Attributes&     attrs
  323.     ) = 0;
  324.   /**
  325.     * Receive notification of the start of an namespace prefix mapping.
  326.     *
  327.     * <p>By default, do nothing.  Application writers may override this
  328.     * method in a subclass to take specific actions at the start of
  329.     * each namespace prefix mapping.</p>
  330.     *
  331.     * @param prefix The namespace prefix used
  332.     * @param uri The namespace URI used.
  333.     * @exception SAXException Any SAX exception, possibly
  334.     *            wrapping another exception.
  335.     */
  336. virtual void startPrefixMapping
  337. (
  338. const XMLCh* const prefix,
  339. const XMLCh* const uri
  340. ) = 0 ;
  341.   /**
  342.     * Receive notification of the end of an namespace prefix mapping.
  343.     *
  344.     * <p>By default, do nothing.  Application writers may override this
  345.     * method in a subclass to take specific actions at the end of
  346.     * each namespace prefix mapping.</p>
  347.     *
  348.     * @param prefix The namespace prefix used
  349.     * @exception SAXException Any SAX exception, possibly
  350.     *            wrapping another exception.
  351.     */
  352. virtual void endPrefixMapping
  353. (
  354. const XMLCh* const prefix
  355. ) = 0 ;
  356.   /**
  357.     * Receive notification of a skipped entity
  358.     *
  359.     * <p>The parser will invoke this method once for each entity
  360. * skipped.  All processors may skip external entities,
  361. * depending on the values of the features:<br>
  362. * http://xml.org/sax/features/external-general-entities<br>
  363. * http://xml.org/sax/features/external-parameter-entities</p>
  364. *
  365. * <p>Note: Xerces (specifically) never skips any entities, regardless
  366. * of the above features.  This function is never called in the
  367. * Xerces implementation of SAX2.</p>
  368.     *
  369. * <p>Introduced with SAX2</p>
  370. *
  371.     * @param name The name of the skipped entity.  If it is a parameter entity,
  372. * the name will begin with %, and if it is the external DTD subset,
  373. * it will be the string [dtd].
  374.     * @exception SAXException Any SAX exception, possibly
  375.     *            wrapping another exception.
  376.     */
  377. virtual void skippedEntity
  378. (
  379. const XMLCh* const name
  380. ) = 0 ;
  381.     //@}
  382. private :
  383.     /* Unimplemented Constructors and operators */
  384.     /* Copy constructor */
  385.     ContentHandler(const ContentHandler&);
  386.     /** Assignment operator */
  387.     ContentHandler& operator=(const ContentHandler&);
  388. };
  389. XERCES_CPP_NAMESPACE_END
  390. #endif