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

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.  * $Log: SchemaAttDef.hpp,v $
  58.  * Revision 1.6  2001/08/10 12:34:25  knoaman
  59.  * Fix compilation error.
  60.  *
  61.  * Revision 1.5  2001/08/09 15:23:16  knoaman
  62.  * add support for <anyAttribute> declaration.
  63.  *
  64.  * Revision 1.4  2001/07/31 15:26:54  knoaman
  65.  * Added support for <attributeGroup>.
  66.  *
  67.  * Revision 1.3  2001/05/11 17:17:41  tng
  68.  * Schema: DatatypeValidator fixes.  By Pei Yong Zhang.
  69.  *
  70.  * Revision 1.2  2001/05/11 13:27:34  tng
  71.  * Copyright update.
  72.  *
  73.  * Revision 1.1  2001/02/27 18:48:22  tng
  74.  * Schema: Add SchemaAttDef, SchemaElementDecl, SchemaAttDefList.
  75.  *
  76.  */
  77. #if !defined(SCHEMAATTDEF_HPP)
  78. #define SCHEMAATTDEF_HPP
  79. #include <util/XMLString.hpp>
  80. #include <framework/XMLAttDef.hpp>
  81. #include <util/ValueVectorOf.hpp>
  82. class DatatypeValidator;
  83. class QName;
  84. //
  85. //  This class is a derivative of the core XMLAttDef class. This class adds
  86. //  any Schema specific data members and provides Schema specific implementations
  87. //  of any underlying attribute def virtual methods.
  88. //
  89. class VALIDATORS_EXPORT SchemaAttDef : public XMLAttDef
  90. {
  91. public :
  92.     // -----------------------------------------------------------------------
  93.     //  Constructors and Destructors
  94.     // -----------------------------------------------------------------------
  95.     SchemaAttDef();
  96.     SchemaAttDef
  97.     (
  98.           const XMLCh* const                     prefix
  99.         , const XMLCh* const                     localPart
  100.         , const int                              uriId
  101.         , const XMLAttDef::AttTypes              type = CData
  102.         , const XMLAttDef::DefAttTypes           defType = Implied
  103.     );
  104.     SchemaAttDef
  105.     (
  106.           const XMLCh* const                     prefix
  107.         , const XMLCh* const                     localPart
  108.         , const int                              uriId
  109.         , const XMLCh* const                     attValue
  110.         , const XMLAttDef::AttTypes              type
  111.         , const XMLAttDef::DefAttTypes           defType
  112.         , const XMLCh* const                     enumValues = 0
  113.     );
  114.     SchemaAttDef
  115.     (
  116.           const SchemaAttDef*                   other
  117.     );
  118.     virtual ~SchemaAttDef();
  119.     // -----------------------------------------------------------------------
  120.     //  Implementation of the XMLAttDef interface
  121.     // -----------------------------------------------------------------------
  122.     virtual const XMLCh* getFullName() const;
  123.     // -----------------------------------------------------------------------
  124.     //  Getter methods
  125.     // -----------------------------------------------------------------------
  126.     unsigned int getElemId() const;
  127.     QName* getAttName() const;
  128.     DatatypeValidator* getDatatypeValidator() const;
  129.     ValueVectorOf<unsigned int>* getNamespaceList() const;
  130.     // -----------------------------------------------------------------------
  131.     //  Setter methods
  132.     // -----------------------------------------------------------------------
  133.     void setElemId(const unsigned int newId);
  134.     void setAttName
  135.     (
  136.         const XMLCh* const        prefix
  137.        ,const XMLCh* const        localPart
  138.        ,const int                 uriId = -1
  139.     );
  140.     void setDatatypeValidator(DatatypeValidator* newDatatypeValidator);
  141.     void setNamespaceList(const ValueVectorOf<unsigned int>* const toSet);
  142.     void resetNamespaceList();
  143. private :
  144.     // -----------------------------------------------------------------------
  145.     //  Private data members
  146.     //
  147.     //  fElemId
  148.     //      This is the id of the element (the id is into the element decl
  149.     //      pool) of the element this attribute def said it belonged to.
  150.     //      This is used later to link back to the element, mostly for
  151.     //      validation purposes.
  152.     //
  153.     //  fAttName
  154.     //      This is the name of the attribute.
  155.     //
  156.     //  fDatatypeValidator
  157.     //      The DatatypeValidator used to validate this attribute type.
  158.     //
  159.     //  fNamespaceList
  160.     //      The list of namespace values for a wildcard attribute
  161.     //
  162.     // -----------------------------------------------------------------------
  163.     unsigned int                 fElemId;
  164.     QName*                       fAttName;
  165.     DatatypeValidator*           fDatatypeValidator;
  166.     ValueVectorOf<unsigned int>* fNamespaceList;
  167. };
  168. // ---------------------------------------------------------------------------
  169. //  SchemaAttDef: Getter methods
  170. // ---------------------------------------------------------------------------
  171. inline unsigned int SchemaAttDef::getElemId() const
  172. {
  173.     return fElemId;
  174. }
  175. inline QName* SchemaAttDef::getAttName() const
  176. {
  177.     return fAttName;
  178. }
  179. inline DatatypeValidator* SchemaAttDef::getDatatypeValidator() const
  180. {
  181.     return fDatatypeValidator;
  182. }
  183. inline ValueVectorOf<unsigned int>*
  184. SchemaAttDef::getNamespaceList() const {
  185.     return fNamespaceList;
  186. }
  187. // ---------------------------------------------------------------------------
  188. //  SchemaAttDef: Setter methods
  189. // ---------------------------------------------------------------------------
  190. inline void SchemaAttDef::setElemId(const unsigned int newId)
  191. {
  192.     fElemId = newId;
  193. }
  194. inline void SchemaAttDef::setDatatypeValidator(DatatypeValidator* newDatatypeValidator)
  195. {
  196.     fDatatypeValidator = newDatatypeValidator;
  197. }
  198. inline void SchemaAttDef::resetNamespaceList() {
  199.     if (fNamespaceList && fNamespaceList->size()) {
  200.         fNamespaceList->removeAllElements();
  201.     }
  202. }
  203. inline void SchemaAttDef::setNamespaceList(const ValueVectorOf<unsigned int>* const toSet) {
  204.     if (toSet && toSet->size()) {
  205.         if (fNamespaceList) {
  206.             *fNamespaceList = *toSet;
  207.         }
  208.         else {
  209.             fNamespaceList = new ValueVectorOf<unsigned int>(*toSet);
  210.         }
  211.     }
  212.     else  {
  213.         resetNamespaceList();
  214.     }
  215. }
  216. #endif