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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMImplementationLS_HEADER_GUARD_
  2. #define DOMImplementationLS_HEADER_GUARD_
  3. /*
  4.  * The Apache Software License, Version 1.1
  5.  *
  6.  * Copyright (c) 2002 The Apache Software Foundation.  All rights
  7.  * reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  *
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in
  18.  *    the documentation and/or other materials provided with the
  19.  *    distribution.
  20.  *
  21.  * 3. The end-user documentation included with the redistribution,
  22.  *    if any, must include the following acknowledgment:
  23.  *       "This product includes software developed by the
  24.  *        Apache Software Foundation (http://www.apache.org/)."
  25.  *    Alternately, this acknowledgment may appear in the software itself,
  26.  *    if and wherever such third-party acknowledgments normally appear.
  27.  *
  28.  * 4. The names "Xerces" and "Apache Software Foundation" must
  29.  *    not be used to endorse or promote products derived from this
  30.  *    software without prior written permission. For written
  31.  *    permission, please contact apache@apache.org.
  32.  *
  33.  * 5. Products derived from this software may not be called "Apache",
  34.  *    nor may "Apache" appear in their name, without prior written
  35.  *    permission of the Apache Software Foundation.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  * ====================================================================
  50.  *
  51.  * This software consists of voluntary contributions made by many
  52.  * individuals on behalf of the Apache Software Foundation, and was
  53.  * originally based on software copyright (c) 1999, International
  54.  * Business Machines, Inc., http://www.ibm.com .  For more information
  55.  * on the Apache Software Foundation, please see
  56.  * <http://www.apache.org/>.
  57.  */
  58. /*
  59.  * $Log: DOMImplementationLS.hpp,v $
  60.  * Revision 1.8  2003/05/15 18:25:53  knoaman
  61.  * Partial implementation of the configurable memory manager.
  62.  *
  63.  * Revision 1.7  2003/03/07 19:59:05  tng
  64.  * [Bug 11692] Unimplement the hidden constructors and assignment operator to remove warnings from gcc.
  65.  *
  66.  * Revision 1.6  2002/11/04 15:09:24  tng
  67.  * C++ Namespace Support.
  68.  *
  69.  * Revision 1.5  2002/08/22 15:04:57  tng
  70.  * Remove unused parameter variables in inline functions.
  71.  *
  72.  * Revision 1.4  2002/06/06 20:53:06  tng
  73.  * Documentation Fix: Update the API Documentation for DOM headers
  74.  *
  75.  * Revision 1.3  2002/05/30 19:24:48  knoaman
  76.  * documentation update
  77.  *
  78.  * Revision 1.2  2002/05/30 16:39:06  knoaman
  79.  * DOM L3 LS.
  80.  *
  81.  * Revision 1.1  2002/05/29 21:28:02  knoaman
  82.  * DOM L3 LS: DOMInputSource, DOMEntityResolver, DOMImplementationLS and DOMBuilder
  83.  *
  84.  */
  85. #include <xercesc/util/PlatformUtils.hpp>
  86. XERCES_CPP_NAMESPACE_BEGIN
  87. class DOMBuilder;
  88. class DOMWriter;
  89. class DOMInputSource;
  90. class MemoryManager;
  91. /**
  92.   * <p><code>DOMImplementationLS</code> contains the factory methods for
  93.   * creating objects that implement the <code>DOMBuilder</code> (parser) and
  94.   * <code>DOMWriter</code> (serializer) interfaces.</p>
  95.   *
  96.   * <p>An object that implements DOMImplementationLS is obtained by doing a
  97.   * binding specific cast from DOMImplementation to DOMImplementationLS.
  98.   * Implementations supporting the Load and Save feature must implement the
  99.   * DOMImplementationLS interface on whatever object implements the
  100.   * DOMImplementation interface.</p>
  101.   *
  102.   * @since DOM Level 3
  103.   */
  104. class CDOM_EXPORT DOMImplementationLS
  105. {
  106. protected:
  107.     // -----------------------------------------------------------------------
  108.     //  Hidden constructors
  109.     // -----------------------------------------------------------------------
  110.     /** @name Hidden constructors */
  111.     //@{    
  112.     DOMImplementationLS() {};
  113.     //@}
  114. private:
  115.     // -----------------------------------------------------------------------
  116.     // Unimplemented constructors and operators
  117.     // -----------------------------------------------------------------------
  118.     /** @name Unimplemented constructors and operators */
  119.     //@{
  120.     DOMImplementationLS(const DOMImplementationLS &);
  121.     DOMImplementationLS & operator = (const DOMImplementationLS &);
  122.     //@}
  123. public:
  124.     // -----------------------------------------------------------------------
  125.     //  All constructors are hidden, just the destructor is available
  126.     // -----------------------------------------------------------------------
  127.     /** @name Destructor */
  128.     //@{
  129.     /**
  130.      * Destructor
  131.      *
  132.      */
  133.     virtual ~DOMImplementationLS() {};
  134.     //@}
  135.     // -----------------------------------------------------------------------
  136.     //  Public constants
  137.     // -----------------------------------------------------------------------
  138.     /** @name Public constants */
  139.     //@{
  140.     /**
  141.      * Create a synchronous or an asynchronous <code>DOMBuilder</code>.
  142.      * @see createDOMBuilder(const short mode, const XMLCh* const schemaType)
  143.      * @since DOM Level 3
  144.      *
  145.      */
  146.     enum
  147.     {
  148.         MODE_SYNCHRONOUS = 1,
  149.         MODE_ASYNCHRONOUS = 2
  150.     };
  151.     //@}
  152.     // -----------------------------------------------------------------------
  153.     // Virtual DOMImplementation LS interface
  154.     // -----------------------------------------------------------------------
  155.     /** @name Functions introduced in DOM Level 3 */
  156.     //@{
  157.     // -----------------------------------------------------------------------
  158.     //  Factory create methods
  159.     // -----------------------------------------------------------------------
  160.     /**
  161.      * Create a new DOMBuilder. The newly constructed parser may then be
  162.      * configured by means of its setFeature method, and used to parse
  163.      * documents by means of its parse method.
  164.      *
  165.      * <p><b>"Experimental - subject to change"</b></p>
  166.      *
  167.      * @param mode The mode argument is either <code>MODE_SYNCHRONOUS</code> or
  168.      * <code>MODE_ASYNCHRONOUS</code>, if mode is <code>MODE_SYNCHRONOUS</code>
  169.      * then the <code>DOMBuilder</code> that is created will operate in
  170.      * synchronous mode, if it's <code>MODE_ASYNCHRONOUS</code> then the
  171.      * <code>DOMBuilder</code> that is created will operate in asynchronous
  172.      * mode.
  173.      * @param schemaType An absolute URI representing the type of the schema
  174.      * language used during the load of a DOMDocument using the newly created
  175.      * <code>DOMBuilder</code>. Note that no lexical checking is done on the
  176.      * absolute URI. In order to create a DOMBuilder for any kind of schema
  177.      * types (i.e. the DOMBuilder will be free to use any schema found), use
  178.      * the value <code>null</code>.
  179.      * @return The newly created <code>DOMBuilder<code> object. This
  180.      * <code>DOMBuilder</code> is either synchronous or asynchronous depending
  181.      * on the value of the <code>mode<code> argument.
  182.      * @exception DOMException NOT_SUPPORTED_ERR: Raised if the requested mode
  183.      * or schema type is not supported.
  184.      *
  185.      * @see DOMBuilder
  186.      * @since DOM Level 3
  187.      */
  188.     virtual DOMBuilder* createDOMBuilder(const short mode,
  189.                                          const XMLCh* const schemaType,
  190.                                          MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) = 0;
  191.     /**
  192.      * Create a new DOMWriter. DOMWriters are used to serialize a DOM tree
  193.      * back into an XML document.
  194.      *
  195.      * <p><b>"Experimental - subject to change"</b></p>
  196.      *
  197.      * @return The newly created <code>DOMWriter<code> object.
  198.      *
  199.      * @see DOMWriter
  200.      * @since DOM Level 3
  201.      */
  202.     virtual DOMWriter* createDOMWriter(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) = 0;
  203.     /**
  204.      * Create a new "empty" DOMInputSource.
  205.      *
  206.      * <p><b>"Experimental - subject to change"</b></p>
  207.      *
  208.      * @return The newly created <code>DOMInputSource<code> object.
  209.      * @exception DOMException NOT_SUPPORTED_ERR: Raised if this function is not
  210.      * supported by implementation
  211.      *
  212.      * @see DOMInputSource
  213.      * @since DOM Level 3
  214.      */
  215.     virtual DOMInputSource* createDOMInputSource() = 0;
  216.     //@}
  217. };
  218. XERCES_CPP_NAMESPACE_END
  219. #endif