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

词法分析

开发平台:

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: DocumentHandler.hpp,v $
  58.  * Revision 1.3  2003/03/07 18:10:06  tng
  59.  * Return a reference instead of void for operator=
  60.  *
  61.  * Revision 1.2  2002/11/04 14:56:25  tng
  62.  * C++ Namespace Support.
  63.  *
  64.  * Revision 1.1.1.1  2002/02/01 22:22:08  peiyongz
  65.  * sane_include
  66.  *
  67.  * Revision 1.6  2000/03/02 19:54:34  roddey
  68.  * This checkin includes many changes done while waiting for the
  69.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  70.  * available elsewhere.
  71.  *
  72.  * Revision 1.5  2000/02/24 20:12:55  abagchi
  73.  * Swat for removing Log from API docs
  74.  *
  75.  * Revision 1.4  2000/02/12 03:31:55  rahulj
  76.  * Removed duplicate CVS Log entries.
  77.  *
  78.  * Revision 1.3  2000/02/12 01:27:19  aruna1
  79.  * Documentation updated
  80.  *
  81.  * Revision 1.2  2000/02/06 07:47:57  rahulj
  82.  * Year 2K copyright swat.
  83.  *
  84.  * Revision 1.1.1.1  1999/11/09 01:07:43  twl
  85.  * Initial checkin
  86.  *
  87.  * Revision 1.2  1999/11/08 20:44:54  rahul
  88.  * Swat for adding in Product name and CVS comment log variable.
  89.  *
  90.  */
  91. #ifndef DOCUMENTHANDLER_HPP
  92. #define DOCUMENTHANDLER_HPP
  93. #include <xercesc/util/XercesDefs.hpp>
  94. XERCES_CPP_NAMESPACE_BEGIN
  95. class AttributeList;
  96. class Locator;
  97. /**
  98.   * Receive notification of general document events.
  99.   *
  100.   * <p>This is the main interface that most SAX applications
  101.   * implement: if the application needs to be informed of basic parsing
  102.   * events, it implements this interface and registers an instance with
  103.   * the SAX parser using the setDocumentHandler method.  The parser
  104.   * uses the instance to report basic document-related events like
  105.   * the start and end of elements and character data.</p>
  106.   *
  107.   * <p>The order of events in this interface is very important, and
  108.   * mirrors the order of information in the document itself.  For
  109.   * example, all of an element's content (character data, processing
  110.   * instructions, and/or subelements) will appear, in order, between
  111.   * the startElement event and the corresponding endElement event.</p>
  112.   *
  113.   * <p>Application writers who do not want to implement the entire
  114.   * interface while can derive a class from HandlerBase, which implements
  115.   * the default functionality; parser writers can instantiate
  116.   * HandlerBase to obtain a default handler.  The application can find
  117.   * the location of any document event using the Locator interface
  118.   * supplied by the Parser through the setDocumentLocator method.</p>
  119.   *
  120.   * @see Parser#setDocumentHandler
  121.   * @see Locator#Locator
  122.   * @see HandlerBase#HandlerBase
  123.   */
  124. class SAX_EXPORT DocumentHandler
  125. {
  126. public:
  127.     /** @name Constructors and Destructor */
  128.     //@{
  129.     /** Default constructor */
  130.     DocumentHandler()
  131.     {
  132.     }
  133.     /** Destructor */
  134.     virtual ~DocumentHandler()
  135.     {
  136.     }
  137.     //@}
  138.     /** @name The virtual document handler interface */
  139.     //@{
  140.    /**
  141.     * Receive notification of character data.
  142.     *
  143.     * <p>The Parser will call this method to report each chunk of
  144.     * character data.  SAX parsers may return all contiguous character
  145.     * data in a single chunk, or they may split it into several
  146.     * chunks; however, all of the characters in any single event
  147.     * must come from the same external entity, so that the Locator
  148.     * provides useful information.</p>
  149.     *
  150.     * <p>The application must not attempt to read from the array
  151.     * outside of the specified range.</p>
  152.     *
  153.     * <p>Note that some parsers will report whitespace using the
  154.     * ignorableWhitespace() method rather than this one (validating
  155.     * parsers must do so).</p>
  156.     *
  157.     * @param chars The characters from the XML document.
  158.     * @param length The number of characters to read from the array.
  159.     * @exception SAXException Any SAX exception, possibly
  160.     *            wrapping another exception.
  161.     * @see #ignorableWhitespace
  162.     * @see Locator#Locator
  163.     */
  164.     virtual void characters
  165.     (
  166.         const   XMLCh* const    chars
  167.         , const unsigned int    length
  168.     ) = 0;
  169.   /**
  170.     * Receive notification of the end of a document.
  171.     *
  172.     * <p>The SAX parser will invoke this method only once, and it will
  173.     * be the last method invoked during the parse.  The parser shall
  174.     * not invoke this method until it has either abandoned parsing
  175.     * (because of an unrecoverable error) or reached the end of
  176.     * input.</p>
  177.     *
  178.     * @exception SAXException Any SAX exception, possibly
  179.     *            wrapping another exception.
  180.     */
  181.     virtual void endDocument () = 0;
  182.   /**
  183.     * Receive notification of the end of an element.
  184.     *
  185.     * <p>The SAX parser will invoke this method at the end of every
  186.     * element in the XML document; there will be a corresponding
  187.     * startElement() event for every endElement() event (even when the
  188.     * element is empty).</p>
  189.     *
  190.     * <p>If the element name has a namespace prefix, the prefix will
  191.     * still be attached to the name.</p>
  192.     *
  193.     * @param name The element type name
  194.     * @exception SAXException Any SAX exception, possibly
  195.     *            wrapping another exception.
  196.     */
  197.     virtual void endElement(const XMLCh* const name) = 0;
  198.   /**
  199.     * Receive notification of ignorable whitespace in element content.
  200.     *
  201.     * <p>Validating Parsers must use this method to report each chunk
  202.     * of ignorable whitespace (see the W3C XML 1.0 recommendation,
  203.     * section 2.10): non-validating parsers may also use this method
  204.     * if they are capable of parsing and using content models.</p>
  205.     *
  206.     * <p>SAX parsers may return all contiguous whitespace in a single
  207.     * chunk, or they may split it into several chunks; however, all of
  208.     * the characters in any single event must come from the same
  209.     * external entity, so that the Locator provides useful
  210.     * information.</p>
  211.     *
  212.     * <p>The application must not attempt to read from the array
  213.     * outside of the specified range.</p>
  214.     *
  215.     * @param chars The characters from the XML document.
  216.     * @param length The number of characters to read from the array.
  217.     * @exception SAXException Any SAX exception, possibly
  218.     *            wrapping another exception.
  219.     * @see #characters
  220.     */
  221.     virtual void ignorableWhitespace
  222.     (
  223.         const   XMLCh* const    chars
  224.         , const unsigned int    length
  225.     ) = 0;
  226.   /**
  227.     * Receive notification of a processing instruction.
  228.     *
  229.     * <p>The Parser will invoke this method once for each processing
  230.     * instruction found: note that processing instructions may occur
  231.     * before or after the main document element.</p>
  232.     *
  233.     * <p>A SAX parser should never report an XML declaration (XML 1.0,
  234.     * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
  235.     * using this method.</p>
  236.     *
  237.     * @param target The processing instruction target.
  238.     * @param data The processing instruction data, or null if
  239.     *        none was supplied.
  240.     * @exception SAXException Any SAX exception, possibly
  241.     *            wrapping another exception.
  242.     */
  243.     virtual void processingInstruction
  244.     (
  245.         const   XMLCh* const    target
  246.         , const XMLCh* const    data
  247.     ) = 0;
  248.     /**
  249.     * Reset the Docuemnt object on its reuse
  250.     *
  251.     * <p>This method helps in reseting the document implementational
  252.     * defaults each time the document is begun.</p>
  253.     *
  254.     */
  255.     virtual void resetDocument() = 0;
  256.   /**
  257.     * Receive an object for locating the origin of SAX document events.
  258.     *
  259.     * SAX parsers are strongly encouraged (though not absolutely
  260.     * required) to supply a locator: if it does so, it must supply
  261.     * the locator to the application by invoking this method before
  262.     * invoking any of the other methods in the DocumentHandler
  263.     * interface.
  264.     *
  265.     * The locator allows the application to determine the end
  266.     * position of any document-related event, even if the parser is
  267.     * not reporting an error.  Typically, the application will
  268.     * use this information for reporting its own errors (such as
  269.     * character content that does not match an application's
  270.     * business rules). The information returned by the locator
  271.     * is probably not sufficient for use with a search engine.
  272.     *
  273.     * Note that the locator will return correct information only
  274.     * during the invocation of the events in this interface. The
  275.     * application should not attempt to use it at any other time.
  276.     *
  277.     * @param locator An object that can return the location of
  278.     *                any SAX document event. The object is only
  279.     *                'on loan' to the client code and they are not
  280.     *                to attempt to delete or modify it in any way!
  281.     *
  282.     * @see Locator#Locator
  283.     */
  284.     virtual void setDocumentLocator(const Locator* const locator) = 0;
  285.   /**
  286.     * Receive notification of the beginning of a document.
  287.     *
  288.     * <p>The SAX parser will invoke this method only once, before any
  289.     * other methods in this interface or in DTDHandler (except for
  290.     * setDocumentLocator).</p>
  291.     *
  292.     * @exception SAXException Any SAX exception, possibly
  293.     *            wrapping another exception.
  294.     */
  295.     virtual void startDocument() = 0;
  296.   /**
  297.     * Receive notification of the beginning of an element.
  298.     *
  299.     * <p>The Parser will invoke this method at the beginning of every
  300.     * element in the XML document; there will be a corresponding
  301.     * endElement() event for every startElement() event (even when the
  302.     * element is empty). All of the element's content will be
  303.     * reported, in order, before the corresponding endElement()
  304.     * event.</p>
  305.     *
  306.     * <p>If the element name has a namespace prefix, the prefix will
  307.     * still be attached.  Note that the attribute list provided will
  308.     * contain only attributes with explicit values (specified or
  309.     * defaulted): #IMPLIED attributes will be omitted.</p>
  310.     *
  311.     * @param name The element type name.
  312.     * @param attrs The attributes attached to the element, if any.
  313.     * @exception SAXException Any SAX exception, possibly
  314.     *            wrapping another exception.
  315.     * @see #endElement
  316.     * @see AttributeList#AttributeList
  317.     */
  318.     virtual void startElement
  319.     (
  320.         const   XMLCh* const    name
  321.         ,       AttributeList&  attrs
  322.     ) = 0;
  323.     //@}
  324. private :
  325.     /* Unimplemented Constructors and operators */
  326.     /* Copy constructor */
  327.     DocumentHandler(const DocumentHandler&);
  328.     /** Assignment operator */
  329.     DocumentHandler& operator=(const DocumentHandler&);
  330. };
  331. XERCES_CPP_NAMESPACE_END
  332. #endif