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

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: XMLDocumentHandler.hpp,v $
  58.   * Revision 1.8  2000/03/02 19:54:24  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.7  2000/02/24 20:00:23  abagchi
  64.   * Swat for removing Log from API docs
  65.   *
  66.   * Revision 1.6  2000/02/16 20:29:20  aruna1
  67.   * API Doc++ summary changes in
  68.   *
  69.   * Revision 1.5  2000/02/16 19:48:56  roddey
  70.   * More documentation updates
  71.   *
  72.   * Revision 1.4  2000/02/15 01:21:30  roddey
  73.   * Some initial documentation improvements. More to come...
  74.   *
  75.   * Revision 1.3  2000/02/09 19:47:27  abagchi
  76.   * Added docs for startElement
  77.   *
  78.   * Revision 1.2  2000/02/06 07:47:48  rahulj
  79.   * Year 2K copyright swat.
  80.   *
  81.   * Revision 1.1.1.1  1999/11/09 01:08:31  twl
  82.   * Initial checkin
  83.   *
  84.   * Revision 1.3  1999/11/08 20:44:37  rahul
  85.   * Swat for adding in Product name and CVS comment log variable.
  86.   *
  87.   */
  88. #if !defined(XMLDOCUMENTHANDLER_HPP)
  89. #define XMLDOCUMENTHANDLER_HPP
  90. #include <util/XercesDefs.hpp>
  91. #include <util/RefVectorOf.hpp>
  92. #include <framework/XMLAttr.hpp>
  93. class XMLElementDecl;
  94. class XMLEntityDecl;
  95. /**
  96.   * This abstract class provides the interface for the scanner to return
  97.   * XML document information up to the parser as it scans through the
  98.   * document. 
  99.   * 
  100.   * The interface is very similar to org.sax.DocumentHandler, but
  101.   * has some extra methods required to get all the data out.
  102.   */
  103. class XMLPARSER_EXPORT XMLDocumentHandler
  104. {
  105. public:
  106.     // -----------------------------------------------------------------------
  107.     //  Constructors are hidden, just the virtual destructor is exposed
  108.     // -----------------------------------------------------------------------
  109.     /** @name Destructor */
  110.     //@{
  111.     virtual ~XMLDocumentHandler()
  112.     {
  113.     }
  114.     //@}
  115.     /** @name The document handler interface */
  116.     //@{
  117.     /** Receive notification of character data.
  118.       *
  119.       * <p>The scanner will call this method to report each chunk of
  120.       * character data. The scanner may return all contiguous character
  121.       * data in a single chunk, or they may split it into several
  122.       * chunks; however, all of the characters in any single event
  123.       * will come from the same external entity, so that the Locator
  124.       * provides useful information.</p>
  125.       *
  126.       * <p>The parser must not attempt to read from the array
  127.       * outside of the specified range.</p>
  128.       *
  129.       * @param  chars           The content (characters) between markup from the XML
  130.       *                         document.
  131.       * @param  length          The number of characters to read from the array.
  132.       * @param  cdataSection    Indicates that this data is inside a CDATA
  133.       *                         section.
  134.       * @see #ignorableWhitespace 
  135.       * @see Locator
  136.       */
  137.     virtual void docCharacters
  138.     (
  139.         const   XMLCh* const    chars
  140.         , const unsigned int    length
  141.         , const bool            cdataSection
  142.     ) = 0;
  143.     /** Receive notification of comments in the XML content being parsed.
  144.       *
  145.       * This scanner will call this method for any comments found in the
  146.       * content of the document.
  147.       *
  148.       * @param comment The text of the comment.
  149.       */
  150.     virtual void docComment
  151.     (
  152.         const   XMLCh* const    comment
  153.     ) = 0;
  154.     /** Receive notification of PI's parsed in the XML content.
  155.       *
  156.       * The scanner will call this method for any PIs it finds within the
  157.       * content of the document.
  158.       *
  159.       * @param  target  The name of the PI.
  160.       * @param  data    The body of the PI. This may be an empty string since
  161.       *                 the body is optional.
  162.       */
  163.     virtual void docPI
  164.     (
  165.         const   XMLCh* const    target
  166.         , const XMLCh* const    data
  167.     ) = 0;
  168.     /** Receive notification after the scanner has parsed the end of the
  169.       * document.
  170.       *
  171.       * The scanner will call this method when the current document has been
  172.       * fully parsed. The handler may use this opportunity to do something with
  173.       * the data, clean up temporary data, etc...
  174.       */
  175.     virtual void endDocument() = 0;
  176.     /** Receive notification of the end of an element.
  177.       *
  178.       * This method is called when scanner encounters the end of element tag.
  179.       * There will be a corresponding startElement() event for every
  180.       * endElement() event, but not necessarily the other way around. For
  181.       * empty tags, there is only a startElement() call.
  182.       *
  183.       * @param  elementDecl The name of the element whose end tag was just
  184.       *                     parsed.
  185.       * @param  uriId       The ID of the URI in the URI pool (only valid if 
  186.       *                     name spaces is enabled)
  187.       * @param  isRoot      Indicates if this is the root element.
  188.       */
  189.     virtual void endElement
  190.     (
  191.         const   XMLElementDecl& elemDecl
  192.         , const unsigned int    uriId
  193.         , const bool            isRoot
  194.     ) = 0;
  195.     /** Receive notification when a referenced entity's content ends
  196.       *
  197.       * This method is called when scanner encounters the end of an entity
  198.       * reference.
  199.       *
  200.       * @param  entityName  The name of the entity reference just scanned.
  201.       */
  202.     virtual void endEntityReference
  203.     (
  204.         const   XMLEntityDecl&  entDecl
  205.     ) = 0;
  206.     /** Receive notification of ignorable whitespace in element content.
  207.       *
  208.       * <p>Validating Parsers must use this method to report each chunk
  209.       * of ignorable whitespace (see the W3C XML 1.0 recommendation,
  210.       * section 2.10): non-validating parsers may also use this method
  211.       * if they are capable of parsing and using content models.</p>
  212.       *
  213.       * <p>The scanner may return all contiguous whitespace in a single
  214.       * chunk, or it may split it into several chunks; however, all of
  215.       * the characters in any single event will come from the same
  216.       * external entity, so that the Locator provides useful
  217.       * information.</p>
  218.       *
  219.       * <p>The parser must not attempt to read from the array
  220.       * outside of the specified range.</p>
  221.       *
  222.       * @param  chars       The whitespace characters from the XML document.
  223.       * @param  length      The number of characters to read from the array.
  224.       * @param  cdataSection Indicates that this data is inside a CDATA
  225.       *                     section.
  226.       * @see #characters
  227.       */
  228.     virtual void ignorableWhitespace
  229.     (
  230.         const   XMLCh* const    chars
  231.         , const unsigned int    length
  232.         , const bool            cdataSection
  233.     ) = 0;
  234.     /** Reset the document handler's state, if required
  235.       *
  236.       * This method is used to give the registered document handler a
  237.       * chance to reset itself. Its called by the scanner at the start of
  238.       * every parse.
  239.       */
  240.     virtual void resetDocument() = 0;
  241.     /** Receive notification of the start of a new document
  242.       *
  243.       * This method is the first callback called the scanner at the
  244.       * start of every parse. This is before any content is parsed.
  245.       */
  246.     virtual void startDocument() = 0;
  247.     /** Receive notification of a new start tag
  248.       *
  249.       * This method is called when scanner encounters the start of an element tag.
  250.       * All elements must always have a startElement() tag. Empty tags will
  251.       * only have the startElement() tag and no endElement() tag.
  252.       *
  253.       * @param  elementDecl The name of the element whose start tag was just
  254.       *                     parsed.
  255.       * @param  uriId       The ID of the URI in the URI pool (only valid if 
  256.       *                     name spaces is enabled)
  257.       * @param  prefixName  The string representing the prefix name
  258.       * @param  attrList    List of attributes in the element
  259.       * @param  attrCount   Count of the attributes in the element
  260.       * @param  isEmpty     Indicates if the element is empty, in which case
  261.       *                     you should not expect an endElement() event.
  262.       * @param  isRoot      Indicates if this is the root element.
  263.       */
  264.     virtual void startElement
  265.     (
  266.         const   XMLElementDecl&         elemDecl
  267.         , const unsigned int            uriId
  268.         , const XMLCh* const            prefixName
  269.         , const RefVectorOf<XMLAttr>&   attrList
  270.         , const unsigned int            attrCount
  271.         , const bool                    isEmpty
  272.         , const bool                    isRoot
  273.     ) = 0;
  274.     /** Receive notification when the scanner hits an entity reference.
  275.       *
  276.       * This is currently useful only to DOM parser configurations as SAX
  277.       * does not provide any api to return this information.
  278.       *
  279.       * @param  entityName  The name of the entity that was referenced.
  280.       */
  281.     virtual void startEntityReference(const XMLEntityDecl& entDecl) = 0;
  282.     /** Receive notification of an XML declaration
  283.       *
  284.       * Currently neither DOM nor SAX provide API's to return back this
  285.       * information.
  286.       *
  287.       * @param  versionStr      The value of the <code>version</code> attribute
  288.       *                         of the XML decl.
  289.       * @param  encodingStr     The value of the <code>encoding</code> attribute
  290.       *                         of the XML decl.
  291.       * @param  standaloneStr   The value of the <code>standalone</code>
  292.       *                         attribute of the XML decl.
  293.       * @param  autoEncodingStr The encoding string auto-detected by the
  294.       *                         scanner. In absence of any 'encoding' attribute in the
  295.       *                         XML decl, the XML standard specifies how a parser can
  296.       *                         auto-detect. If there is no <code>encodingStr</code>
  297.       *                         this is what will be used to try to decode the file.
  298.       */
  299.     virtual void XMLDecl
  300.     (
  301.         const   XMLCh* const    versionStr
  302.         , const XMLCh* const    encodingStr
  303.         , const XMLCh* const    standaloneStr
  304.         , const XMLCh* const    autoEncodingStr
  305.     ) = 0;
  306.     //@}
  307. protected :
  308.     // -----------------------------------------------------------------------
  309.     //  Hidden Constructors
  310.     // -----------------------------------------------------------------------
  311.     XMLDocumentHandler()
  312.     {
  313.     }
  314. private:
  315.     // -----------------------------------------------------------------------
  316.     //  Unimplemented constructors and operators
  317.     // -----------------------------------------------------------------------
  318.     XMLDocumentHandler(const XMLDocumentHandler&);
  319.     void operator=(const XMLDocumentHandler&);
  320. };
  321. #endif