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

词法分析

开发平台:

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: ErrorHandler.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/04/27 19:33:15  rahulj
  68.  * Included <util/XercesDefs.hpp> as suggested by David N Bertoni.
  69.  *
  70.  * Revision 1.5  2000/02/24 20:12:55  abagchi
  71.  * Swat for removing Log from API docs
  72.  *
  73.  * Revision 1.4  2000/02/12 03:31:55  rahulj
  74.  * Removed duplicate CVS Log entries.
  75.  *
  76.  * Revision 1.3  2000/02/12 01:27:19  aruna1
  77.  * Documentation updated
  78.  *
  79.  * Revision 1.2  2000/02/06 07:47:57  rahulj
  80.  * Year 2K copyright swat.
  81.  *
  82.  * Revision 1.1.1.1  1999/11/09 01:07:45  twl
  83.  * Initial checkin
  84.  *
  85.  * Revision 1.2  1999/11/08 20:45:00  rahul
  86.  * Swat for adding in Product name and CVS comment log variable.
  87.  *
  88.  */
  89. #ifndef ERRORHANDLER_HPP
  90. #define ERRORHANDLER_HPP
  91. #include <xercesc/util/XercesDefs.hpp>
  92. XERCES_CPP_NAMESPACE_BEGIN
  93. class SAXParseException;
  94. /**
  95.   * Basic interface for SAX error handlers.
  96.   *
  97.   * <p>If a SAX application needs to implement customized error
  98.   * handling, it must implement this interface and then register an
  99.   * instance with the SAX parser using the parser's setErrorHandler
  100.   * method.  The parser will then report all errors and warnings
  101.   * through this interface.</p>
  102.   *
  103.   * <p> The parser shall use this interface instead of throwing an
  104.   * exception: it is up to the application whether to throw an
  105.   * exception for different types of errors and warnings.  Note,
  106.   * however, that there is no requirement that the parser continue to
  107.   * provide useful information after a call to fatalError (in other
  108.   * words, a SAX driver class could catch an exception and report a
  109.   * fatalError).</p>
  110.   *
  111.   * <p>The HandlerBase class provides a default implementation of this
  112.   * interface, ignoring warnings and recoverable errors and throwing a
  113.   * SAXParseException for fatal errors.  An application may extend
  114.   * that class rather than implementing the complete interface
  115.   * itself.</p>
  116.   *
  117.   * @see Parser#setErrorHandler
  118.   * @see SAXParseException#SAXParseException
  119.   * @see HandlerBase#HandlerBase
  120.   */
  121. class SAX_EXPORT ErrorHandler
  122. {
  123. public:
  124.     /** @name Constructors and Destructor */
  125.     //@{
  126.     /** Default constructor */
  127.     ErrorHandler()
  128.     {
  129.     }
  130.     /** Desctructor */
  131.     virtual ~ErrorHandler()
  132.     {
  133.     }
  134.     //@}
  135.     /** @name The error handler interface */
  136.     //@{
  137.    /**
  138.     * Receive notification of a warning.
  139.     *
  140.     * <p>SAX parsers will use this method to report conditions that
  141.     * are not errors or fatal errors as defined by the XML 1.0
  142.     * recommendation.  The default behaviour is to take no action.</p>
  143.     *
  144.     * <p>The SAX parser must continue to provide normal parsing events
  145.     * after invoking this method: it should still be possible for the
  146.     * application to process the document through to the end.</p>
  147.     *
  148.     * @param exception The warning information encapsulated in a
  149.     *                  SAX parse exception.
  150.     * @exception SAXException Any SAX exception, possibly
  151.     *            wrapping another exception.
  152.     * @see SAXParseException#SAXParseException
  153.     */
  154.     virtual void warning(const SAXParseException& exception) = 0;
  155.   /**
  156.     * Receive notification of a recoverable error.
  157.     *
  158.     * <p>This corresponds to the definition of "error" in section 1.2
  159.     * of the W3C XML 1.0 Recommendation.  For example, a validating
  160.     * parser would use this callback to report the violation of a
  161.     * validity constraint.  The default behaviour is to take no
  162.     * action.</p>
  163.     *
  164.     * <p>The SAX parser must continue to provide normal parsing events
  165.     * after invoking this method: it should still be possible for the
  166.     * application to process the document through to the end.  If the
  167.     * application cannot do so, then the parser should report a fatal
  168.     * error even if the XML 1.0 recommendation does not require it to
  169.     * do so.</p>
  170.     *
  171.     * @param exception The error information encapsulated in a
  172.     *                  SAX parse exception.
  173.     * @exception SAXException Any SAX exception, possibly
  174.     *            wrapping another exception.
  175.     * @see SAXParseException#SAXParseException
  176.     */
  177.     virtual void error(const SAXParseException& exception) = 0;
  178.   /**
  179.     * Receive notification of a non-recoverable error.
  180.     *
  181.     * <p>This corresponds to the definition of "fatal error" in
  182.     * section 1.2 of the W3C XML 1.0 Recommendation.  For example, a
  183.     * parser would use this callback to report the violation of a
  184.     * well-formedness constraint.</p>
  185.     *
  186.     * <p>The application must assume that the document is unusable
  187.     * after the parser has invoked this method, and should continue
  188.     * (if at all) only for the sake of collecting addition error
  189.     * messages: in fact, SAX parsers are free to stop reporting any
  190.     * other events once this method has been invoked.</p>
  191.     *
  192.     * @param exception The error information encapsulated in a
  193.     *                  SAX parse exception.
  194.     * @exception SAXException Any SAX exception, possibly
  195.     *            wrapping another exception.
  196.     * @see SAXParseException#SAXParseException
  197.     */
  198.     virtual void fatalError(const SAXParseException& exception) = 0;
  199.     /**
  200.     * Reset the Error handler object on its reuse
  201.     *
  202.     * <p>This method helps in reseting the Error handler object
  203.     * implementational defaults each time the Error handler is begun.</p>
  204.     *
  205.     */
  206.     virtual void resetErrors() = 0;
  207.     //@}
  208. private :
  209.     /* Unimplemented constructors and operators */
  210.     /* Copy constructor */
  211.     ErrorHandler(const ErrorHandler&);
  212.     /* Assignment operator */
  213.     ErrorHandler& operator=(const ErrorHandler&);
  214. };
  215. XERCES_CPP_NAMESPACE_END
  216. #endif