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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2003 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) 2001, 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. //  This file is part of the internal implementation of the C++ XML DOM.
  58. //  It should NOT be included or used directly by application programs.
  59. //
  60. //  Applications should include the file <xercesc/dom/DOM.hpp> for the entire
  61. //  DOM API, or xercesc/dom/DOM*.hpp for individual DOM classes, where the class
  62. //  name is substituded for the *.
  63. //
  64. #if !defined(DOMCONFIGURATIONIMPL_HPP)
  65. #define DOMCONFIGURATIONIMPL_HPP
  66. //------------------------------------------------------------------------------------
  67. //  Includes
  68. //------------------------------------------------------------------------------------
  69. #include <xercesc/dom/DOMConfiguration.hpp>
  70. #include <xercesc/dom/DOMErrorHandler.hpp>
  71. #include <xercesc/util/XMLString.hpp>
  72. XERCES_CPP_NAMESPACE_BEGIN
  73. class DOMDocumentImpl;
  74. class CDOM_EXPORT DOMConfigurationImpl : public DOMConfiguration
  75. {
  76. protected:
  77.     //unimplemented
  78.     DOMConfigurationImpl(const DOMConfiguration &) {};
  79.     DOMConfigurationImpl & operator = (const DOMConfiguration &) {return *this;};
  80. public:
  81.     //-----------------------------------------------------------------------------------
  82.     //  Constructor
  83.     //-----------------------------------------------------------------------------------
  84.     DOMConfigurationImpl();
  85.     ~DOMConfigurationImpl();
  86.     
  87.     enum DOMConfigurationFeature {
  88.         FEATURE_CANONICAL_FORM                = 0x0001,
  89.         FEATURE_CDATA_SECTIONS                = 0x0002,
  90.         FEATURE_COMMENTS                      = 0x0004,
  91.         FEATURE_DATATYPE_NORMALIZATION        = 0x0008,
  92.         FEATURE_DISCARD_DEFAULT_CONTENT       = 0x0010, 
  93.         FEATURE_ENTITIES                      = 0x0020,  
  94.         FEATURE_INFOSET                       = 0x0040, 
  95.         FEATURE_NAMESPACES                    = 0x0080, 
  96.         FEATURE_NAMESPACE_DECLARATIONS        = 0x0100, 
  97.         FEATURE_NORMALIZE_CHARACTERS          = 0x0200, 
  98.         FEATURE_SPLIT_CDATA_SECTIONS          = 0x0400, 
  99.         FEATURE_VALIDATE                      = 0x0800, 
  100.         FEATURE_VALIDATE_IF_SCHEMA            = 0x1000, 
  101.         FEATURE_WHITESPACE_IN_ELEMENT_CONTENT = 0x2000
  102.     };
  103.     unsigned short featureValues;
  104.     // -----------------------------------------------------------------------
  105.     //  Setter methods
  106.     // -----------------------------------------------------------------------
  107.     void setParameter(const XMLCh* name, const void* value);
  108.     // -----------------------------------------------------------------------
  109.     //  Getter methods
  110.     // -----------------------------------------------------------------------
  111.     
  112.     const void* getParameter(const XMLCh* name) const;
  113.                                         
  114.     // -----------------------------------------------------------------------
  115.     //  Query methods
  116.     // -----------------------------------------------------------------------
  117.     bool canSetParameter(const XMLCh* name, const void* value) const;
  118.     // ---------------------------------------------------------------------------
  119.     // Impl specific methods
  120.     // ---------------------------------------------------------------------------
  121.     
  122.     /* specific get and set methods for non-boolean parameters
  123.      * */
  124.     DOMErrorHandler* getErrorHandler() const;
  125.     const XMLCh* getSchemaType() const;
  126.     const XMLCh* getSchemaLocation() const;
  127.     void setErrorHandler(DOMErrorHandler *erHandler);
  128.     void setSchemaType(const XMLCh* st);
  129.     void setSchemaLocation(const XMLCh* sl);
  130.     
  131.     // --------------------------------------
  132.     // static consts names 
  133.     // --------------------------------------
  134.     static const XMLCh fgCANONICAL_FORM[];
  135.     static const XMLCh fgCDATA_SECTIONS[];
  136.     static const XMLCh fgCOMMENTS[];
  137.     static const XMLCh fgDATATYPE_NORMALIZATION[];
  138.     static const XMLCh fgDISCARD_DEFAULT_CONTENT[];
  139.     static const XMLCh fgENTITIES[];
  140.     static const XMLCh fgINFOSET[];
  141.     static const XMLCh fgNAMESPACES[];
  142.     static const XMLCh fgNAMESPACE_DECLARATIONS[];
  143.     static const XMLCh fgNORMALIZE_CHARACTERS[];
  144.     static const XMLCh fgSPLIT_CDATA_SECTIONS[];
  145.     static const XMLCh fgVALIDATE[];
  146.     static const XMLCh fgVALIDATE_IF_SCHEMA[];
  147.     static const XMLCh fgWHITESPACE_IN_ELEMENT_CONTENT[];
  148.     static const XMLCh fgERROR_HANDLER[];
  149.     static const XMLCh fgSCHEMA_TYPE[];
  150.     static const XMLCh fgSCHEMA_LOCATION[];
  151.     // The default values for the boolean parameters
  152.     // from CANONICAL_FORM to WHITESPACE_IN_ELEMENT_CONTENT
  153.     // 10010110010110 = 0x2596
  154.     static const unsigned short fDEFAULT_VALUES;
  155.     
  156. private:
  157.     // implements a simple map between the name and its enum value
  158.     DOMConfigurationFeature getFeatureFlag(const XMLCh* name) const;
  159.     // the error handler
  160.     DOMErrorHandler* fErrorHandler;
  161.     
  162.     // the schema type
  163.     const XMLCh* fSchemaType;
  164.     
  165.     // the schema location
  166.     const XMLCh* fSchemaLocation;
  167.     const bool* fFalse;
  168.     const bool* fTrue;
  169. };
  170. XERCES_CPP_NAMESPACE_END
  171. #endif
  172. /**
  173.  * End of file DOMConfigurationImpl.hpp
  174.  */