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

xml/soap/webservice

开发平台:

C/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: HandlerBase.hpp,v $
  58.  * Revision 1.6  2000/03/02 19:54:35  roddey
  59.  * This checkin includes many changes done while waiting for the
  60.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  61.  * available elsewhere.
  62.  *
  63.  * Revision 1.5  2000/02/24 20:12:55  abagchi
  64.  * Swat for removing Log from API docs
  65.  *
  66.  * Revision 1.4  2000/02/12 03:31:55  rahulj
  67.  * Removed duplicate CVS Log entries.
  68.  *
  69.  * Revision 1.3  2000/02/12 01:27:19  aruna1
  70.  * Documentation updated
  71.  *
  72.  * Revision 1.2  2000/02/06 07:47:57  rahulj
  73.  * Year 2K copyright swat.
  74.  *
  75.  * Revision 1.1.1.1  1999/11/09 01:07:45  twl
  76.  * Initial checkin
  77.  *
  78.  * Revision 1.2  1999/11/08 20:45:00  rahul
  79.  * Swat for adding in Product name and CVS comment log variable.
  80.  *
  81.  */
  82. #ifndef HANDLERBASE_HPP
  83. #define HANDLERBASE_HPP
  84. #include <sax/DocumentHandler.hpp>
  85. #include <sax/DTDHandler.hpp>
  86. #include <sax/EntityResolver.hpp>
  87. #include <sax/ErrorHandler.hpp>
  88. #include <sax/SAXParseException.hpp>
  89. class Locator;
  90. class AttributeList;
  91. /**
  92.   * Default base class for handlers.
  93.   *
  94.   * <p>This class implements the default behaviour for four SAX
  95.   * interfaces: EntityResolver, DTDHandler, DocumentHandler,
  96.   * and ErrorHandler.</p>
  97.   *
  98.   * <p>Application writers can extend this class when they need to
  99.   * implement only part of an interface; parser writers can
  100.   * instantiate this class to provide default handlers when the
  101.   * application has not supplied its own.</p>
  102.   *
  103.   * <p>Note that the use of this class is optional.</p>
  104.   *
  105.   * @see EntityResolver#EntityResolver
  106.   * @see DTDHandler#DTDHandler
  107.   * @see DocumentHandler#DocumentHandler
  108.   * @see ErrorHandler#ErrorHandler
  109.   */
  110. class SAX_EXPORT HandlerBase :
  111.     public EntityResolver, public DTDHandler, public DocumentHandler
  112.     , public ErrorHandler
  113. {
  114. public:
  115.     /** @name Default handlers for the DocumentHandler interface */
  116.     //@{
  117.   /**
  118.     * Receive notification of character data inside an element.
  119.     *
  120.     * <p>By default, do nothing.  Application writers may override this
  121.     * method to take specific actions for each chunk of character data
  122.     * (such as adding the data to a node or buffer, or printing it to
  123.     * a file).</p>
  124.     *
  125.     * @param chars The characters.
  126.     * @param length The number of characters to use from the
  127.     *               character array.
  128.     * @exception SAXException Any SAX exception, possibly
  129.     *            wrapping another exception.
  130.     * @see DocumentHandler#characters
  131.     */
  132.     virtual void characters
  133.     (
  134.         const   XMLCh* const    chars
  135.         , const unsigned int    length
  136.     );
  137.   /**
  138.     * Receive notification of the end of the document.
  139.     *
  140.     * <p>By default, do nothing.  Application writers may override this
  141.     * method in a subclass to take specific actions at the beginning
  142.     * of a document (such as finalising a tree or closing an output
  143.     * file).</p>
  144.     *
  145.     * @exception SAXException Any SAX exception, possibly
  146.     *            wrapping another exception.
  147.     * @see DocumentHandler#endDocument
  148.     */
  149.     virtual void endDocument();
  150.   /**
  151.     * Receive notification of the end of an element.
  152.     *
  153.     * <p>By default, do nothing.  Application writers may override this
  154.     * method in a subclass to take specific actions at the end of
  155.     * each element (such as finalising a tree node or writing
  156.     * output to a file).</p>
  157.     *
  158.     * @param name The element type name.
  159.     * @exception SAXException Any SAX exception, possibly
  160.     *            wrapping another exception.
  161.     * @see DocumentHandler#endElement
  162.     */
  163.     virtual void endElement(const XMLCh* const name);
  164.   /**
  165.     * Receive notification of ignorable whitespace in element content.
  166.     *
  167.     * <p>By default, do nothing.  Application writers may override this
  168.     * method to take specific actions for each chunk of ignorable
  169.     * whitespace (such as adding data to a node or buffer, or printing
  170.     * it to a file).</p>
  171.     *
  172.     * @param chars The whitespace characters.
  173.     * @param length The number of characters to use from the
  174.     *               character array.
  175.     * @exception SAXException Any SAX exception, possibly
  176.     *            wrapping another exception.
  177.     * @see DocumentHandler#ignorableWhitespace
  178.     */
  179.     virtual void ignorableWhitespace
  180.     (
  181.         const   XMLCh* const    chars
  182.         , const unsigned int    length
  183.     );
  184.   /**
  185.     * Receive notification of a processing instruction.
  186.     *
  187.     * <p>By default, do nothing.  Application writers may override this
  188.     * method in a subclass to take specific actions for each
  189.     * processing instruction, such as setting status variables or
  190.     * invoking other methods.</p>
  191.     *
  192.     * @param target The processing instruction target.
  193.     * @param data The processing instruction data, or null if
  194.     *             none is supplied.
  195.     * @exception SAXException Any SAX exception, possibly
  196.     *            wrapping another exception.
  197.     * @see DocumentHandler#processingInstruction
  198.     */
  199.     virtual void processingInstruction
  200.     (
  201.         const   XMLCh* const    target
  202.         , const XMLCh* const    data
  203.     );
  204.     /**
  205.     * Reset the Docuemnt object on its reuse
  206.     *
  207.     * @see DocumentHandler#resetDocument
  208.     */
  209.     virtual void resetDocument();
  210.     //@}
  211.     /** @name Default implementation of DocumentHandler interface */
  212.     //@{
  213.   /**
  214.     * Receive a Locator object for document events.
  215.     *
  216.     * <p>By default, do nothing.  Application writers may override this
  217.     * method in a subclass if they wish to store the locator for use
  218.     * with other document events.</p>
  219.     *
  220.     * @param locator A locator for all SAX document events.
  221.     * @see DocumentHandler#setDocumentLocator
  222.     * @see Locator
  223.     */
  224.     virtual void setDocumentLocator(const Locator* const locator);
  225.   /**
  226.     * Receive notification of the beginning of the document.
  227.     *
  228.     * <p>By default, do nothing.  Application writers may override this
  229.     * method in a subclass to take specific actions at the beginning
  230.     * of a document (such as allocating the root node of a tree or
  231.     * creating an output file).</p>
  232.     *
  233.     * @exception SAXException Any SAX exception, possibly
  234.     *            wrapping another exception.
  235.     * @see DocumentHandler#startDocument
  236.     */
  237.     virtual void startDocument();
  238.   /**
  239.     * Receive notification of the start of an element.
  240.     *
  241.     * <p>By default, do nothing.  Application writers may override this
  242.     * method in a subclass to take specific actions at the start of
  243.     * each element (such as allocating a new tree node or writing
  244.     * output to a file).</p>
  245.     *
  246.     * @param name The element type name.
  247.     * @param attributes The specified or defaulted attributes.
  248.     * @exception SAXException Any SAX exception, possibly
  249.     *            wrapping another exception.
  250.     * @see DocumentHandler#startElement
  251.     */
  252.     virtual void startElement
  253.     (
  254.         const   XMLCh* const    name
  255.         ,       AttributeList&  attributes
  256.     );
  257.     //@}
  258.     /** @name Default implementation of the EntityResolver interface. */
  259.     //@{
  260.   /**
  261.     * Resolve an external entity.
  262.     *
  263.     * <p>Always return null, so that the parser will use the system
  264.     * identifier provided in the XML document.  This method implements
  265.     * the SAX default behaviour: application writers can override it
  266.     * in a subclass to do special translations such as catalog lookups
  267.     * or URI redirection.</p>
  268.     *
  269.     * @param publicId The public identifer, or null if none is
  270.     *                 available.
  271.     * @param systemId The system identifier provided in the XML 
  272.     *                 document.
  273.     * @return The new input source, or null to require the
  274.     *         default behaviour.
  275.     * @exception SAXException Any SAX exception, possibly
  276.     *            wrapping another exception.
  277.     * @see EntityResolver#resolveEntity
  278.     */
  279.     virtual InputSource* resolveEntity
  280.     (
  281.         const   XMLCh* const    publicId
  282.         , const XMLCh* const    systemId
  283.     );
  284.     //@}
  285.     /** @name Default implementation of the ErrorHandler interface */
  286.     //@{
  287.    /**
  288.     * Receive notification of a recoverable parser error.
  289.     *
  290.     * <p>The default implementation does nothing.  Application writers
  291.     * may override this method in a subclass to take specific actions
  292.     * for each error, such as inserting the message in a log file or
  293.     * printing it to the console.</p>
  294.     *
  295.     * @param exception The warning information encoded as an exception.
  296.     * @exception SAXException Any SAX exception, possibly
  297.     *            wrapping another exception.
  298.     * @see ErrorHandler#warning
  299.     * @see SAXParseException#SAXParseException
  300.     */
  301.     virtual void error(const SAXParseException& exception);
  302.   /**
  303.     * Report a fatal XML parsing error.
  304.     *
  305.     * <p>The default implementation throws a SAXParseException.
  306.     * Application writers may override this method in a subclass if
  307.     * they need to take specific actions for each fatal error (such as
  308.     * collecting all of the errors into a single report): in any case,
  309.     * the application must stop all regular processing when this
  310.     * method is invoked, since the document is no longer reliable, and
  311.     * the parser may no longer report parsing events.</p>
  312.     *
  313.     * @param e The error information encoded as an exception.
  314.     * @exception SAXException Any SAX exception, possibly
  315.     *            wrapping another exception.
  316.     * @see ErrorHandler#fatalError
  317.     * @see SAXParseException#SAXParseException
  318.     */
  319.     virtual void fatalError(const SAXParseException& exception);
  320.   /**
  321.     * Receive notification of a parser warning.
  322.     *
  323.     * <p>The default implementation does nothing.  Application writers
  324.     * may override this method in a subclass to take specific actions
  325.     * for each warning, such as inserting the message in a log file or
  326.     * printing it to the console.</p>
  327.     *
  328.     * @param e The warning information encoded as an exception.
  329.     * @exception SAXException Any SAX exception, possibly
  330.     *            wrapping another exception.
  331.     * @see ErrorHandler#warning
  332.     * @see SAXParseException#SAXParseException
  333.     */
  334.     virtual void warning(const SAXParseException& exception);
  335.     /**
  336.     * Reset the Error handler object on its reuse
  337.     *
  338.     * @see ErrorHandler#resetErrors
  339.     */
  340.     virtual void resetErrors();
  341.     //@}
  342.     /** @name Default implementation of DTDHandler interface. */
  343.     //@{
  344.   /**
  345.     * Receive notification of a notation declaration.
  346.     *
  347.     * <p>By default, do nothing.  Application writers may override this
  348.     * method in a subclass if they wish to keep track of the notations
  349.     * declared in a document.</p>
  350.     *
  351.     * @param name The notation name.
  352.     * @param publicId The notation public identifier, or null if not
  353.     *                 available.
  354.     * @param systemId The notation system identifier.
  355.     * @see DTDHandler#notationDecl
  356.     */
  357.     virtual void notationDecl
  358.     (
  359.         const   XMLCh* const    name
  360.         , const XMLCh* const    publicId
  361.         , const XMLCh* const    systemId
  362.     );
  363.     /**
  364.     * Reset the DTD object on its reuse
  365.     *
  366.     * @see DTDHandler#resetDocType
  367.     */
  368.     virtual void resetDocType();
  369.   /**
  370.     * Receive notification of an unparsed entity declaration.
  371.     *
  372.     * <p>By default, do nothing.  Application writers may override this
  373.     * method in a subclass to keep track of the unparsed entities
  374.     * declared in a document.</p>
  375.     *
  376.     * @param name The entity name.
  377.     * @param publicId The entity public identifier, or null if not
  378.     *                 available.
  379.     * @param systemId The entity system identifier.
  380.     * @param notationName The name of the associated notation.
  381.     * @see DTDHandler#unparsedEntityDecl
  382.     */
  383.     virtual void unparsedEntityDecl
  384.     (
  385.         const   XMLCh* const    name
  386.         , const XMLCh* const    publicId
  387.         , const XMLCh* const    systemId
  388.         , const XMLCh* const    notationName
  389.     );
  390.     //@}
  391. };
  392. // ---------------------------------------------------------------------------
  393. //  HandlerBase: Inline default implementations
  394. // ---------------------------------------------------------------------------
  395. inline void HandlerBase::characters(const   XMLCh* const    chars
  396.                                     , const unsigned int    length)
  397. {
  398. }
  399. inline void HandlerBase::endDocument()
  400. {
  401. }
  402. inline void HandlerBase::endElement(const XMLCh* const name)
  403. {
  404. }
  405. inline void HandlerBase::error(const SAXParseException& exception)
  406. {
  407. }
  408. inline void HandlerBase::fatalError(const SAXParseException& exception)
  409. {
  410.     throw exception;
  411. }
  412. inline void
  413. HandlerBase::ignorableWhitespace(   const   XMLCh* const chars
  414.                                     , const unsigned int length)
  415. {
  416. }
  417. inline void HandlerBase::notationDecl(  const   XMLCh* const name
  418.                                         , const XMLCh* const publicId
  419.                                         , const XMLCh* const systemId)
  420. {
  421. }
  422. inline void
  423. HandlerBase::processingInstruction( const   XMLCh* const target
  424.                                     , const XMLCh* const data)
  425. {
  426. }
  427. inline void HandlerBase::resetErrors()
  428. {
  429. }
  430. inline void HandlerBase::resetDocument()
  431. {
  432. }
  433. inline void HandlerBase::resetDocType()
  434. {
  435. }
  436. inline InputSource*
  437. HandlerBase::resolveEntity( const   XMLCh* const publicId
  438.                             , const XMLCh* const systemId)
  439. {
  440.     return 0;
  441. }
  442. inline void
  443. HandlerBase::unparsedEntityDecl(const   XMLCh* const name
  444.                                 , const XMLCh* const publicId
  445.                                 , const XMLCh* const systemId
  446.                                 , const XMLCh* const notationName)
  447. {
  448. }
  449. inline void HandlerBase::setDocumentLocator(const Locator* const locator)
  450. {
  451. }
  452. inline void HandlerBase::startDocument()
  453. {
  454. }
  455. inline void
  456. HandlerBase::startElement(  const   XMLCh* const    name
  457.                             ,       AttributeList&  attributes)
  458. {
  459. }
  460. inline void HandlerBase::warning(const SAXParseException& exception)
  461. {
  462. }
  463. #endif