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

词法分析

开发平台:

Visual 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  2003/05/18 14:02:07  knoaman
  59.  * Memory manager implementation: pass per instance manager.
  60.  *
  61.  * Revision 1.5  2003/05/16 21:43:21  knoaman
  62.  * Memory manager implementation: Modify constructors to pass in the memory manager.
  63.  *
  64.  * Revision 1.4  2003/02/06 13:51:55  gareth
  65.  * fixed bug with multiple attributes being validated by the same union type.
  66.  *
  67.  * Revision 1.3  2003/01/29 19:47:16  gareth
  68.  * added DOMTypeInfo and some PSVI methods
  69.  *
  70.  * Revision 1.2  2002/11/04 14:49:41  tng
  71.  * C++ Namespace Support.
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:22:46  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.6  2001/08/10 12:34:25  knoaman
  77.  * Fix compilation error.
  78.  *
  79.  * Revision 1.5  2001/08/09 15:23:16  knoaman
  80.  * add support for <anyAttribute> declaration.
  81.  *
  82.  * Revision 1.4  2001/07/31 15:26:54  knoaman
  83.  * Added support for <attributeGroup>.
  84.  *
  85.  * Revision 1.3  2001/05/11 17:17:41  tng
  86.  * Schema: DatatypeValidator fixes.  By Pei Yong Zhang.
  87.  *
  88.  * Revision 1.2  2001/05/11 13:27:34  tng
  89.  * Copyright update.
  90.  *
  91.  * Revision 1.1  2001/02/27 18:48:22  tng
  92.  * Schema: Add SchemaAttDef, SchemaElementDecl, SchemaAttDefList.
  93.  *
  94.  */
  95. #if !defined(SCHEMAATTDEF_HPP)
  96. #define SCHEMAATTDEF_HPP
  97. #include <xercesc/util/XMLString.hpp>
  98. #include <xercesc/framework/XMLAttDef.hpp>
  99. #include <xercesc/util/ValueVectorOf.hpp>
  100. #include <xercesc/validators/datatype/DatatypeValidator.hpp>
  101. #include <xercesc/validators/datatype/UnionDatatypeValidator.hpp>
  102. #include <xercesc/validators/schema/PSVIDefs.hpp>
  103. XERCES_CPP_NAMESPACE_BEGIN
  104. class DatatypeValidator;
  105. class QName;
  106. //
  107. //  This class is a derivative of the core XMLAttDef class. This class adds
  108. //  any Schema specific data members and provides Schema specific implementations
  109. //  of any underlying attribute def virtual methods.
  110. //
  111. class VALIDATORS_EXPORT SchemaAttDef : public XMLAttDef
  112. {
  113. public :
  114.     // -----------------------------------------------------------------------
  115.     //  Constructors and Destructors
  116.     // -----------------------------------------------------------------------
  117.     SchemaAttDef(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
  118.     SchemaAttDef
  119.     (
  120.           const XMLCh* const           prefix
  121.         , const XMLCh* const           localPart
  122.         , const int                    uriId
  123.         , const XMLAttDef::AttTypes    type = CData
  124.         , const XMLAttDef::DefAttTypes defType = Implied
  125.         , MemoryManager* const         manager = XMLPlatformUtils::fgMemoryManager
  126.     );
  127.     SchemaAttDef
  128.     (
  129.           const XMLCh* const           prefix
  130.         , const XMLCh* const           localPart
  131.         , const int                    uriId
  132.         , const XMLCh* const           attValue
  133.         , const XMLAttDef::AttTypes    type
  134.         , const XMLAttDef::DefAttTypes defType
  135.         , const XMLCh* const           enumValues = 0
  136.         , MemoryManager* const         manager = XMLPlatformUtils::fgMemoryManager
  137.     );
  138.     SchemaAttDef
  139.     (
  140.           const SchemaAttDef*                   other
  141.     );
  142.     virtual ~SchemaAttDef();
  143.     // -----------------------------------------------------------------------
  144.     //  Implementation of the XMLAttDef interface
  145.     // -----------------------------------------------------------------------
  146.     virtual const XMLCh* getFullName() const;
  147.     virtual void reset();
  148.     // ----------------------------------------------------------------------
  149.     // Partial implementation of PSVI
  150.     // The values these methods return are only accurate until the DOMAttr
  151.     // is created that uses the values. After this a celan up method is called
  152.     // and the SchemaAttDef may be used again.
  153.     // note that some of this information has dependancies. For example,
  154.     // if something is not valid then the information returned by the other 
  155.     // calls may be meaningless
  156.     // See http://www.w3.org/TR/xmlschema-1/ for detailed information
  157.     // ----------------------------------------------------------------------
  158.     /** 
  159.      * The appropriate case among the following:
  160.      * 1 If it was strictly assessed, then the appropriate case among the following:
  161.      * 1.1 If it was valid as defined by Attribute Locally Valid (3.2.4), then valid;
  162.      * 1.2 otherwise invalid.
  163.      * 2 otherwise notKnown.
  164.      */
  165.     PSVIDefs::Validity getValidity() const;
  166.     /**
  167.      * The appropriate case among the following:
  168.      * 1 If it was strictly assessed, then full;
  169.      * 2 otherwise none.
  170.      */
  171.     PSVIDefs::Validation getValidationAttempted() const;
  172.     /**
  173.      * @return the complexity. Always simple for attrs
  174.      */
  175.     PSVIDefs::Complexity getTypeType() const;
  176.     /**
  177.      * The target namespace of the type definition.
  178.      */
  179.     const XMLCh* getTypeUri() const;
  180.     /**
  181.      * The {name} of the type definition, if it is not absent. 
  182.      */
  183.     const XMLCh* getTypeName() const;
  184.     /**
  185.      * true if the {name} of the type definition is absent, otherwise false.
  186.      */
  187.     bool getTypeAnonymous() const;
  188.     /**
  189.      * If this method returns true and validity is VALID then the next three 
  190.      * produce accurate results
  191.      * @return true if the element is validated using a union type
  192.      */
  193.     bool isTypeDefinitionUnion() const;
  194.     /**
  195.      * The {target namespace} of the actual member type definition.
  196.      */
  197.     const XMLCh* getMemberTypeUri() const;
  198.     /**
  199.      * @return true if the {name} of the actual member type definition is absent, otherwise false.
  200.      */
  201.     bool getMemberTypeAnonymous() const;
  202.     /**
  203.      * @return the {name} of the actual member type definition, if it is not absent. 
  204.      */
  205.     const XMLCh* getMemberTypeName() const;
  206.     virtual const XMLCh* getDOMTypeInfoUri() const;
  207.     virtual const XMLCh* getDOMTypeInfoName() const;
  208.     
  209.     
  210.     // -----------------------------------------------------------------------
  211.     //  Getter methods
  212.     // -----------------------------------------------------------------------
  213.     unsigned int getElemId() const;
  214.     QName* getAttName() const;
  215.     DatatypeValidator* getDatatypeValidator() const;
  216.     ValueVectorOf<unsigned int>* getNamespaceList() const;
  217.     // -----------------------------------------------------------------------
  218.     //  Setter methods
  219.     // -----------------------------------------------------------------------
  220.     void setElemId(const unsigned int newId);
  221.     void setAttName
  222.     (
  223.         const XMLCh* const        prefix
  224.        ,const XMLCh* const        localPart
  225.        ,const int                 uriId = -1
  226.     );
  227.     void setDatatypeValidator(DatatypeValidator* newDatatypeValidator);
  228.     void setAnyDatatypeValidator(DatatypeValidator* newDatatypeValidator);
  229.     void setMembertypeValidator(const DatatypeValidator* newDatatypeValidator);
  230.     void setNamespaceList(const ValueVectorOf<unsigned int>* const toSet);
  231.     void resetNamespaceList();
  232.     void setValidity(PSVIDefs::Validity valid);
  233.     void setValidationAttempted(PSVIDefs::Validation validation);
  234. private :
  235.     // -----------------------------------------------------------------------
  236.     //  Private data members
  237.     //
  238.     //  fElemId
  239.     //      This is the id of the element (the id is into the element decl
  240.     //      pool) of the element this attribute def said it belonged to.
  241.     //      This is used later to link back to the element, mostly for
  242.     //      validation purposes.
  243.     //
  244.     //  fAttName
  245.     //      This is the name of the attribute.
  246.     //
  247.     //  fDatatypeValidator
  248.     //      The DatatypeValidator used to validate this attribute type.
  249.     //
  250.     //  fAnyDatatypeValidator
  251.     //      Tempory storage for the DatatypeValidator used to validate an any
  252.     //
  253.     //  fMemberTypeValidator
  254.     //      Tempory storage used when the validator being used is of union type.
  255.     //      This stores the actual member validator used to validate.
  256.     //
  257.     //  fNamespaceList
  258.     //      The list of namespace values for a wildcard attribute
  259.     //
  260.     //  fValidity
  261.     //      After this attr has been validated this is its validity
  262.     //
  263.     //  fValidation
  264.     //      The type of validation that happened to this attr
  265.     //
  266.     // -----------------------------------------------------------------------
  267.     unsigned int                 fElemId;
  268.     QName*                       fAttName;
  269.     DatatypeValidator*           fDatatypeValidator;
  270.     DatatypeValidator*           fAnyDatatypeValidator;
  271.     const DatatypeValidator*     fMemberTypeValidator;
  272.     ValueVectorOf<unsigned int>* fNamespaceList;
  273.     PSVIDefs::Validity           fValidity;
  274.     PSVIDefs::Validation         fValidation;
  275. };
  276. // ---------------------------------------------------------------------------
  277. //  SchemaAttDef: Getter methods
  278. // ---------------------------------------------------------------------------
  279. inline unsigned int SchemaAttDef::getElemId() const
  280. {
  281.     return fElemId;
  282. }
  283. inline QName* SchemaAttDef::getAttName() const
  284. {
  285.     return fAttName;
  286. }
  287. inline DatatypeValidator* SchemaAttDef::getDatatypeValidator() const
  288. {
  289.     return fDatatypeValidator;
  290. }
  291. inline void SchemaAttDef::setValidity(PSVIDefs::Validity valid) {
  292.     fValidity = valid;
  293. }
  294. inline void SchemaAttDef::setValidationAttempted(PSVIDefs::Validation validation) {
  295.     fValidation = validation;
  296. }
  297. inline const XMLCh* SchemaAttDef::getTypeName() const {
  298.     if(fAnyDatatypeValidator) 
  299.         return fAnyDatatypeValidator->getTypeLocalName();
  300.     else if(fDatatypeValidator)
  301.         return fDatatypeValidator->getTypeLocalName();
  302.     //its anySimpleType if we have not done validation on it
  303.     if(getValidationAttempted() == PSVIDefs::NONE)
  304.         return SchemaSymbols::fgDT_ANYSIMPLETYPE;
  305.     return 0;
  306. }
  307. inline PSVIDefs::Complexity SchemaAttDef::getTypeType() const {
  308.     return PSVIDefs::SIMPLE;
  309. }
  310. inline const XMLCh* SchemaAttDef::getTypeUri() const {
  311.     if(fAnyDatatypeValidator) 
  312.         return fAnyDatatypeValidator->getTypeUri();
  313.     else if(fDatatypeValidator) 
  314.         return fDatatypeValidator->getTypeUri();
  315.     //its anySimpleType if we have not done validation on it
  316.     if(getValidationAttempted() == PSVIDefs::NONE)
  317.         return SchemaSymbols::fgURI_SCHEMAFORSCHEMA;
  318.     return 0;
  319. }
  320. inline const XMLCh* SchemaAttDef::getMemberTypeName() const {
  321.     if(fMemberTypeValidator) 
  322.         return fMemberTypeValidator->getTypeLocalName();
  323.     return 0;
  324. }
  325. inline const XMLCh* SchemaAttDef::getMemberTypeUri() const {
  326.     if(fMemberTypeValidator) 
  327.         return fMemberTypeValidator->getTypeUri();
  328.     return 0;
  329. }
  330. inline PSVIDefs::Validity SchemaAttDef::getValidity() const {
  331.     return fValidity;
  332. }
  333. inline PSVIDefs::Validation SchemaAttDef::getValidationAttempted() const {
  334.     return fValidation;
  335. }
  336. inline const XMLCh* SchemaAttDef::getDOMTypeInfoName() const {
  337.     if(fValidity != PSVIDefs::VALID)
  338.         return SchemaSymbols::fgDT_ANYSIMPLETYPE;
  339.     if(getTypeAnonymous() || getMemberTypeAnonymous())
  340.         return 0;
  341.     if(fMemberTypeValidator)
  342.         return getMemberTypeName();
  343.     return getTypeName();
  344. }
  345. inline const XMLCh* SchemaAttDef::getDOMTypeInfoUri() const {
  346.     if(fValidity != PSVIDefs::VALID)
  347.         return SchemaSymbols::fgURI_SCHEMAFORSCHEMA;
  348.     if(getTypeAnonymous() || getMemberTypeAnonymous())
  349.         return 0;
  350.     if(fMemberTypeValidator)
  351.         return getMemberTypeUri();
  352.     return getTypeUri();
  353. }
  354. inline bool SchemaAttDef::getTypeAnonymous() const {
  355.     if(fAnyDatatypeValidator) 
  356.         return fAnyDatatypeValidator->getAnonymous();
  357.     else if(fDatatypeValidator)
  358.         return fDatatypeValidator->getAnonymous();
  359.     return false;
  360. }
  361. inline bool SchemaAttDef::getMemberTypeAnonymous() const {
  362.     if(fMemberTypeValidator) 
  363.         return fMemberTypeValidator->getAnonymous();
  364.     return false;
  365. }
  366. inline bool SchemaAttDef::isTypeDefinitionUnion() const {
  367.    if(fAnyDatatypeValidator && fAnyDatatypeValidator->getType() == DatatypeValidator::Union ||
  368.       fDatatypeValidator && fDatatypeValidator->getType() == DatatypeValidator::Union)
  369.        return true;
  370.     return false;
  371. }
  372. inline ValueVectorOf<unsigned int>*
  373. SchemaAttDef::getNamespaceList() const {
  374.     return fNamespaceList;
  375. }
  376. // ---------------------------------------------------------------------------
  377. //  SchemaAttDef: Setter methods
  378. // ---------------------------------------------------------------------------
  379. inline void SchemaAttDef::setElemId(const unsigned int newId)
  380. {
  381.     fElemId = newId;
  382. }
  383. inline void SchemaAttDef::setDatatypeValidator(DatatypeValidator* newDatatypeValidator)
  384. {
  385.     fDatatypeValidator = newDatatypeValidator;
  386. }
  387. inline void SchemaAttDef::setAnyDatatypeValidator(DatatypeValidator* newDatatypeValidator)
  388. {
  389.     fAnyDatatypeValidator = newDatatypeValidator;
  390. }
  391. inline void SchemaAttDef::setMembertypeValidator(const DatatypeValidator* newDatatypeValidator)
  392. {
  393.     fMemberTypeValidator = newDatatypeValidator;
  394. }
  395. inline void SchemaAttDef::resetNamespaceList() {
  396.     if (fNamespaceList && fNamespaceList->size()) {
  397.         fNamespaceList->removeAllElements();
  398.     }
  399. }
  400. inline void SchemaAttDef::setNamespaceList(const ValueVectorOf<unsigned int>* const toSet) {
  401.     if (toSet && toSet->size()) {
  402.         if (fNamespaceList) {
  403.             *fNamespaceList = *toSet;
  404.         }
  405.         else {
  406.             fNamespaceList = new (getMemoryManager()) ValueVectorOf<unsigned int>(*toSet);
  407.         }
  408.     }
  409.     else  {
  410.         resetNamespaceList();
  411.     }
  412. }
  413. inline void SchemaAttDef::reset() {
  414.     if(fAnyDatatypeValidator && fAnyDatatypeValidator->getType() == DatatypeValidator::Union)
  415.         ((UnionDatatypeValidator *)fAnyDatatypeValidator)->reset();
  416.     else if(fDatatypeValidator && fDatatypeValidator->getType() == DatatypeValidator::Union)
  417.         ((UnionDatatypeValidator *)fDatatypeValidator)->reset();
  418.     fAnyDatatypeValidator = 0;
  419.     fMemberTypeValidator = 0;
  420.     fValidity = PSVIDefs::UNKNOWN;
  421.     fValidation = PSVIDefs::NONE;    
  422. }
  423. XERCES_CPP_NAMESPACE_END
  424. #endif