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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 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.  * $Id: GeneralAttributeCheck.hpp,v 1.9 2001/11/19 18:26:31 knoaman Exp $
  58.  */
  59. #if !defined(GENERALATTRIBUTECHECK_HPP)
  60. #define GENERALATTRIBUTECHECK_HPP
  61. /** 
  62.   * A general purpose class to check for valid values of attributes, as well
  63.   * as check for proper association with corresponding schema elements.
  64.   */
  65. // ---------------------------------------------------------------------------
  66. //  Includes
  67. // ---------------------------------------------------------------------------
  68. #include <util/RefVectorOf.hpp>
  69. #include <util/RefHashTableOf.hpp>
  70. #include <util/RefHash2KeysTableOf.hpp>
  71. #include <dom/DOM_Element.hpp>
  72. #include <validators/datatype/IDDatatypeValidator.hpp>
  73. // ---------------------------------------------------------------------------
  74. //  Forward declaration
  75. // ---------------------------------------------------------------------------
  76. class TraverseSchema;
  77. class AttributeInfo {
  78. public:
  79.     // -----------------------------------------------------------------------
  80.     //  Constructor/Destructor
  81.     // -----------------------------------------------------------------------
  82.     AttributeInfo(const XMLCh* const name, const short defaultOption,
  83.                   const XMLCh* const defaultValue, const short dvIndex);
  84.     ~AttributeInfo();
  85.     // -----------------------------------------------------------------------
  86.     //  Getter methods
  87.     // -----------------------------------------------------------------------
  88.     short  getDefaultOption() const;
  89.     short  getValidatorIndex() const;
  90.     XMLCh* getName() const;
  91.     XMLCh* getDefaultValue() const;
  92. private:
  93.     // -----------------------------------------------------------------------
  94.     //  CleanUp methods
  95.     // -----------------------------------------------------------------------
  96.     void cleanUp();
  97.     // -----------------------------------------------------------------------
  98.     //  Private data members
  99.     // -----------------------------------------------------------------------
  100.     short  fDefaultOption;
  101.     short  fValidatorIndex;
  102.     XMLCh* fName;
  103.     XMLCh* fDefaultValue;
  104. };
  105. // ---------------------------------------------------------------------------
  106. //  local type declaration
  107. // ---------------------------------------------------------------------------
  108. typedef RefVectorOf<AttributeInfo> RefVectorOfAttributeInfo;
  109. class VALIDATORS_EXPORT GeneralAttributeCheck
  110. {
  111. public:
  112.     // -----------------------------------------------------------------------
  113.     //  Constructor/Destructor
  114.     // -----------------------------------------------------------------------
  115.     GeneralAttributeCheck();
  116.     ~GeneralAttributeCheck();
  117.     // -----------------------------------------------------------------------
  118.     //  Public Constants
  119.     // -----------------------------------------------------------------------
  120.     static const unsigned short GlobalContext;
  121.     static const unsigned short LocalContext;
  122.     // -----------------------------------------------------------------------
  123.     //  Setter methods
  124.     // -----------------------------------------------------------------------
  125.     void setIDRefList(RefHashTableOf<XMLRefInfo>* const refList);
  126.     // -----------------------------------------------------------------------
  127.     //  Validation methods
  128.     // -----------------------------------------------------------------------
  129.     void checkAttributes(const DOM_Element& elem,
  130.                          const unsigned short elemContext,
  131.                          TraverseSchema* const schema);
  132.     // -----------------------------------------------------------------------
  133.     //  Notification that lazy data has been deleted
  134.     // -----------------------------------------------------------------------
  135. static void reinitGeneralAttCheck();
  136. private:
  137.     // -----------------------------------------------------------------------
  138.     //  Unimplemented constructors and operators
  139.     // -----------------------------------------------------------------------
  140.     GeneralAttributeCheck(const GeneralAttributeCheck&);
  141.     void operator=(const GeneralAttributeCheck&);
  142.     // -----------------------------------------------------------------------
  143.     //  Setup methods
  144.     // -----------------------------------------------------------------------
  145.     void setUpAttributes();
  146.     void setUpValidators();
  147.     void mapElements();
  148.     // -----------------------------------------------------------------------
  149.     //  Validation methods
  150.     // -----------------------------------------------------------------------
  151.     void validate(const XMLCh* const attName, const XMLCh* const attValue,
  152.                   const short dvIndex, TraverseSchema* const schema);
  153.     // -----------------------------------------------------------------------
  154.     //  Private Constants
  155.     // -----------------------------------------------------------------------
  156.     // attributes 
  157.     enum {
  158.         Att_Abstract_D,                // starts with 0
  159.         Att_Attribute_FD_D,
  160.         Att_Base_R,
  161.         Att_Base_N,
  162.         Att_Block_N,
  163.         Att_Block1_N,
  164.         Att_Block_D_D,
  165.         Att_Default_N,
  166.         Att_Element_FD_D,
  167.         Att_Final_N,
  168.         Att_Final1_N,
  169.         Att_Final_D_D,
  170.         Att_Fixed_N,
  171.         Att_Fixed_D,
  172.         Att_Form_N,
  173.         Att_ID_N,
  174.         Att_ItemType_N,
  175.         Att_MaxOccurs_D,
  176.         Att_MaxOccurs1_D,
  177.         Att_Member_T_N,
  178.         Att_MinOccurs_D,
  179.         Att_MinOccurs1_D,
  180.         Att_Mixed_D,
  181.         Att_Mixed_N,
  182.         Att_Name_R,
  183.         Att_Namespace_D,
  184.         Att_Namespace_N,
  185.         Att_Nillable_D,
  186.         Att_Process_C_D,
  187.         Att_Public_R,
  188.         Att_Ref_R,
  189.         Att_Refer_R,
  190.         Att_Schema_L_R,
  191.         Att_Schema_L_N,
  192.         Att_Source_N,
  193.         Att_Substitution_G_N,
  194.         Att_System_N,
  195.         Att_Target_N_N,
  196.         Att_Type_N,
  197.         Att_Use_D,
  198.         Att_Value_NNI_N,
  199.         Att_Value_STR_N,
  200.         Att_Value_WS_N,
  201.         Att_Version_N,
  202.         Att_XPath_R,
  203.         Att_XPath1_R,
  204.         Att_Count
  205.     };
  206.     // direct value compare
  207.     enum {
  208.         DT_Block = -1,
  209.         DT_Block1 = -2,
  210.         DT_Final = -3,
  211.         DT_Final1 = -4,
  212.         DT_Form = -5,
  213.         DT_MaxOccurs = -6,
  214.         DT_MaxOccurs1 = -7,
  215.         DT_MemberTypes = -8,
  216.         DT_MinOccurs1 = -9,
  217.         DT_Namespace = -10,
  218.         DT_ProcessContents = -11,
  219.         DT_Public = -12,
  220.         DT_Use = -13,
  221.         DT_WhiteSpace = -14,
  222.         DT_ID = -15
  223.     };
  224.     // datatype validators
  225.     enum {
  226.         DT_String,
  227.         DT_Token,
  228.         DT_AnyURI,
  229.         DT_NonNegInt,
  230.         DT_QName,
  231.         DT_Boolean,
  232.         // add XPath
  233.         DT_Count
  234.     };
  235.     // element context prefixes
  236.     enum {
  237.         globalPrefix,
  238.         localNamePrefix,
  239.         localRefPrefix
  240.     };
  241.     // optional vs. required attribute 
  242.     enum { 
  243.         Att_Required,
  244.         Att_Optional_Default,
  245.         Att_Optional_NoDefault
  246.     };
  247.     // -----------------------------------------------------------------------
  248.     //  Private data members
  249.     // -----------------------------------------------------------------------
  250.     static AttributeInfo**                                fAttributes;
  251.     static DatatypeValidator**                            fValidators;
  252.     static RefHash2KeysTableOf<RefVectorOfAttributeInfo>* fElementMap;
  253.     IDDatatypeValidator                                   fIDValidator;
  254.     RefHashTableOf<XMLRefInfo>*                           fIDRefList;
  255. };
  256. // ---------------------------------------------------------------------------
  257. //  AttributeInfo: Getter methods
  258. // ---------------------------------------------------------------------------
  259. inline short AttributeInfo::getDefaultOption() const {
  260.     return fDefaultOption;
  261. }
  262. inline short AttributeInfo::getValidatorIndex() const {
  263.     return fValidatorIndex;
  264. }
  265. inline XMLCh* AttributeInfo::getName() const {
  266.     return fName;
  267. }
  268. inline XMLCh* AttributeInfo::getDefaultValue() const {
  269.     return fDefaultValue;
  270. }
  271. // ---------------------------------------------------------------------------
  272. //  AttributeInfo: CleanUp methods
  273. // ---------------------------------------------------------------------------
  274. inline void AttributeInfo::cleanUp() {
  275.     delete [] fName;
  276.     delete [] fDefaultValue;
  277. }
  278. // ---------------------------------------------------------------------------
  279. //  GeneralAttributeCheck: Setter methods
  280. // ---------------------------------------------------------------------------
  281. inline void
  282. GeneralAttributeCheck::setIDRefList(RefHashTableOf<XMLRefInfo>* const refList) {
  283.     fIDRefList = refList;
  284. }
  285. #endif
  286. /**
  287.   * End of file GeneralAttributeCheck.hpp
  288.   */