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

词法分析

开发平台:

Visual C++

  1. #ifndef DOMInputSource_HEADER_GUARD_
  2. #define DOMInputSource_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.  * $Id: DOMInputSource.hpp,v 1.9 2003/03/07 19:59:05 tng Exp $
  60.  */
  61. #include <xercesc/util/XercesDefs.hpp>
  62. XERCES_CPP_NAMESPACE_BEGIN
  63. class BinInputStream;
  64. /**
  65.   * This interface represents a single input source for an XML entity.
  66.   *
  67.   * <p>This interface allows an application to encapsulate information about
  68.   * an input source in a single object, which may include a public identifier,
  69.   * a system identifier, a byte stream (possibly with a specified encoding),
  70.   * and/or a character stream.</p>
  71.   *
  72.   * <p>There are two places that the application will deliver this input source
  73.   * to the parser: as the argument to the parse method, or as the return value
  74.   * of the DOMEntityResolver.resolveEntity method.</p>
  75.   *
  76.   * <p>The DOMBuilder will use the DOMInputSource object to determine how to
  77.   * read XML input. If there is a character stream available, the parser will
  78.   * read that stream directly; if not, the parser will use a byte stream, if
  79.   * available; if neither a character stream nor a byte stream is available,
  80.   * the parser will attempt to open a URI connection to the resource identified
  81.   * by the system identifier.</p>
  82.   *
  83.   * <p>A DOMInputSource object belongs to the application: the parser shall
  84.   * never modify it in any way (it may modify a copy if necessary).</p>
  85.   *
  86.   * @see DOMBuilder#parse
  87.   * @see DOMEntityResolver#resolveEntity
  88.   * @since DOM Level 3
  89.   */
  90. class CDOM_EXPORT DOMInputSource
  91. {
  92. protected:
  93.     // -----------------------------------------------------------------------
  94.     //  Hidden constructors
  95.     // -----------------------------------------------------------------------
  96.     /** @name Hidden constructors */
  97.     //@{    
  98.     DOMInputSource() {};
  99.     //@}
  100. private:
  101.     // -----------------------------------------------------------------------
  102.     // Unimplemented constructors and operators
  103.     // -----------------------------------------------------------------------
  104.     /** @name Unimplemented constructors and operators */
  105.     //@{
  106.     DOMInputSource(const DOMInputSource &);
  107.     DOMInputSource & operator = (const DOMInputSource &);
  108.     //@}
  109. public:
  110.     // -----------------------------------------------------------------------
  111.     //  All constructors are hidden, just the destructor is available
  112.     // -----------------------------------------------------------------------
  113.     /** @name Destructor */
  114.     //@{
  115.     /**
  116.      * Destructor
  117.      *
  118.      */
  119.     virtual ~DOMInputSource() {};
  120.     //@}
  121.     // -----------------------------------------------------------------------
  122.     //  Virtual DOMInputSource interface
  123.     // -----------------------------------------------------------------------
  124.     /** @name Functions introduced in DOM Level 3 */
  125.     //@{
  126.     // -----------------------------------------------------------------------
  127.     //  Getter methods
  128.     // -----------------------------------------------------------------------
  129.     /**
  130.      * An input source can be set to force the parser to assume a particular
  131.      * encoding for the data that input source reprsents, via the setEncoding()
  132.      * method. This method returns name of the encoding that is to be forced.
  133.      * If the encoding has never been forced, it returns a null pointer.
  134.      *
  135.      * <p><b>"Experimental - subject to change"</b></p>
  136.      *
  137.      * @return The forced encoding, or null if none was supplied.
  138.      * @see #setEncoding
  139.      * @since DOM Level 3
  140.      */
  141.     virtual const XMLCh* getEncoding() const = 0;
  142.     /**
  143.      * Get the public identifier for this input source.
  144.      *
  145.      * <p><b>"Experimental - subject to change"</b></p>
  146.      *
  147.      * @return The public identifier, or null if none was supplied.
  148.      * @see #setPublicId
  149.      * @since DOM Level 3
  150.      */
  151.     virtual const XMLCh* getPublicId() const = 0;
  152.     /**
  153.      * Get the system identifier for this input source.
  154.      *
  155.      * <p><b>"Experimental - subject to change"</b></p>
  156.      *
  157.      * <p>If the system ID is a URL, it will be fully resolved.</p>
  158.      *
  159.      * @return The system identifier.
  160.      * @see #setSystemId
  161.      * @since DOM Level 3
  162.      */
  163.     virtual const XMLCh* getSystemId() const = 0;
  164.     /**
  165.      * Get the base URI to be used for resolving relative URIs to absolute
  166.      * URIs. If the baseURI is itself a relative URI, the behavior is
  167.      * implementation dependent.
  168.      *
  169.      * <p><b>"Experimental - subject to change"</b></p>
  170.      *
  171.      * @return The base URI.
  172.      * @see #setBaseURI
  173.      * @since DOM Level 3
  174.      */
  175.     virtual const XMLCh* getBaseURI() const = 0;
  176.     // -----------------------------------------------------------------------
  177.     //  Setter methods
  178.     // -----------------------------------------------------------------------
  179.     /**
  180.      * Set the encoding which will be required for use with the XML text read
  181.      * via a stream opened by this input source.
  182.      *
  183.      * <p>This is usually not set, allowing the encoding to be sensed in the
  184.      * usual XML way. However, in some cases, the encoding in the file is known
  185.      * to be incorrect because of intermediate transcoding, for instance
  186.      * encapsulation within a MIME document.
  187.      *
  188.      * <p><b>"Experimental - subject to change"</b></p>
  189.      *
  190.      * @param encodingStr The name of the encoding to force.
  191.      * @since DOM Level 3
  192.      */
  193.     virtual void setEncoding(const XMLCh* const encodingStr) = 0;
  194.     /**
  195.      * Set the public identifier for this input source.
  196.      *
  197.      * <p>The public identifier is always optional: if the application writer
  198.      * includes one, it will be provided as part of the location information.</p>
  199.      *
  200.      * <p><b>"Experimental - subject to change"</b></p>
  201.      *
  202.      * @param publicId The public identifier as a string.
  203.      * @see #getPublicId
  204.      * @since DOM Level 3
  205.      */
  206.     virtual void setPublicId(const XMLCh* const publicId) = 0;
  207.     /**
  208.      * Set the system identifier for this input source.
  209.      *
  210.      * <p>The system id is always required. The public id may be used to map
  211.      * to another system id, but the system id must always be present as a fall
  212.      * back.</p>
  213.      *
  214.      * <p>If the system ID is a URL, it must be fully resolved.</p>
  215.      *
  216.      * <p><b>"Experimental - subject to change"</b></p>
  217.      *
  218.      * @param systemId The system identifier as a string.
  219.      * @see #getSystemId
  220.      * @since DOM Level 3
  221.      */
  222.     virtual void setSystemId(const XMLCh* const systemId) = 0;
  223.     /**
  224.      * Set the base URI to be used for resolving relative URIs to absolute
  225.      * URIs. If the baseURI is itself a relative URI, the behavior is
  226.      * implementation dependent.
  227.      *
  228.      * <p><b>"Experimental - subject to change"</b></p>
  229.      *
  230.      * @param baseURI The base URI.
  231.      * @see #getBaseURI
  232.      * @since DOM Level 3
  233.      */
  234.     virtual void setBaseURI(const XMLCh* const baseURI) = 0;
  235.     //@}
  236.     // -----------------------------------------------------------------------
  237.     //  Non-standard Extension
  238.     // -----------------------------------------------------------------------
  239.     /** @name Non-standard Extension */
  240.     //@{
  241.     /**
  242.      * Makes the byte stream for this input source.
  243.      *
  244.      * <p>The derived class must create and return a binary input stream of an
  245.      * appropriate type for its kind of data source. The returned stream must
  246.      * be dynamically allocated and becomes the parser's property.
  247.      * </p>
  248.      *
  249.      * <p><b>"Experimental - subject to change"</b></p>
  250.      *
  251.      * @see BinInputStream
  252.      */
  253.     virtual BinInputStream* makeStream() const = 0;
  254.     /**
  255.      * Indicates if the parser should issue fatal error if this input source
  256.      * is not found.  If set to false, the parser issue warning message instead.
  257.      *
  258.      * <p><b>"Experimental - subject to change"</b></p>
  259.      *
  260.      * @param  flag True if the parser should issue fatal error if this input source is not found.
  261.      *               If set to false, the parser issue warning message instead.  (Default: true)
  262.      *
  263.      * @see #getIssueFatalErrorIfNotFound
  264.      */
  265.     virtual void setIssueFatalErrorIfNotFound(const bool flag) = 0;
  266.     /**
  267.      * Get the flag that indicates if the parser should issue fatal error if this input source
  268.      * is not found.
  269.      *
  270.      * <p><b>"Experimental - subject to change"</b></p>
  271.      *
  272.      * @return True if the parser should issue fatal error if this input source is not found.
  273.      *         False if the parser issue warning message instead.
  274.      * @see #setIssueFatalErrorIfNotFound
  275.      */
  276.     virtual const bool getIssueFatalErrorIfNotFound() const = 0;
  277.     /**
  278.      * Called to indicate that this DOMInputSource is no longer in use
  279.      * and that the implementation may relinquish any resources associated with it.
  280.      *
  281.      * Access to a released object will lead to unexpected result.
  282.      */
  283.     virtual void              release() = 0;
  284.     //@}
  285. };
  286. XERCES_CPP_NAMESPACE_END
  287. #endif