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

词法分析

开发平台:

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.cpp,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:45  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.4  2001/08/09 15:23:16  knoaman
  77.  * add support for <anyAttribute> declaration.
  78.  *
  79.  * Revision 1.3  2001/07/31 15:26:54  knoaman
  80.  * Added support for <attributeGroup>.
  81.  *
  82.  * Revision 1.2  2001/05/11 13:27:33  tng
  83.  * Copyright update.
  84.  *
  85.  * Revision 1.1  2001/02/27 18:48:22  tng
  86.  * Schema: Add SchemaAttDef, SchemaElementDecl, SchemaAttDefList.
  87.  *
  88.  */
  89. // ---------------------------------------------------------------------------
  90. //  Includes
  91. // ---------------------------------------------------------------------------
  92. #include <xercesc/framework/XMLElementDecl.hpp>
  93. #include <xercesc/validators/schema/SchemaAttDef.hpp>
  94. XERCES_CPP_NAMESPACE_BEGIN
  95. // ---------------------------------------------------------------------------
  96. //  SchemaAttDef: Implementation of the XMLAttDef interface
  97. // ---------------------------------------------------------------------------
  98. const XMLCh* SchemaAttDef::getFullName() const
  99. {
  100.    return fAttName->getRawName();
  101. }
  102. // ---------------------------------------------------------------------------
  103. //  SchemaAttDef: Constructors and Destructor
  104. // ---------------------------------------------------------------------------
  105. SchemaAttDef::SchemaAttDef(MemoryManager* const manager) :
  106.     XMLAttDef(XMLAttDef::CData, XMLAttDef::Implied, manager)
  107.     , fElemId(XMLElementDecl::fgInvalidElemId)
  108.     , fAttName(0)
  109.     , fDatatypeValidator(0)
  110.     , fAnyDatatypeValidator(0)
  111.     , fMemberTypeValidator(0)
  112.     , fNamespaceList(0)
  113.     , fValidity(PSVIDefs::UNKNOWN)
  114.     , fValidation(PSVIDefs::NONE)
  115. {
  116. }
  117. SchemaAttDef::SchemaAttDef( const XMLCh* const           prefix
  118.                           , const XMLCh* const           localPart
  119.                           , const int                    uriId
  120.                           , const XMLAttDef::AttTypes    type
  121.                           , const XMLAttDef::DefAttTypes defType
  122.                           , MemoryManager* const         manager) :
  123.     XMLAttDef(type, defType, manager)
  124.     , fElemId(XMLElementDecl::fgInvalidElemId)
  125.     , fDatatypeValidator(0)
  126.     , fMemberTypeValidator(0)
  127.     , fAnyDatatypeValidator(0)
  128.     , fNamespaceList(0)
  129.     , fValidity(PSVIDefs::UNKNOWN)
  130.     , fValidation(PSVIDefs::NONE)
  131. {
  132.     fAttName = new (manager) QName(prefix, localPart, uriId, manager);
  133. }
  134. SchemaAttDef::SchemaAttDef( const XMLCh* const           prefix
  135.                           , const XMLCh* const           localPart
  136.                           , const int                    uriId
  137.                           , const XMLCh* const           attValue
  138.                           , const XMLAttDef::AttTypes    type
  139.                           , const XMLAttDef::DefAttTypes defType
  140.                           , const XMLCh* const           enumValues
  141.                           , MemoryManager* const         manager) :
  142.     XMLAttDef(attValue, type, defType, enumValues, manager)
  143.     , fElemId(XMLElementDecl::fgInvalidElemId)
  144.     , fDatatypeValidator(0)
  145.     , fAnyDatatypeValidator(0)
  146.     , fMemberTypeValidator(0)
  147.     , fNamespaceList(0)
  148.     , fValidity(PSVIDefs::UNKNOWN)
  149.     , fValidation(PSVIDefs::NONE)
  150. {
  151.     fAttName = new (manager) QName(prefix, localPart, uriId, manager);
  152. }
  153. SchemaAttDef::SchemaAttDef(const SchemaAttDef* other) :
  154.     XMLAttDef(other->getValue(), other->getType(),
  155.               other->getDefaultType(), other->getEnumeration(),
  156.               other->getMemoryManager())
  157.     , fElemId(XMLElementDecl::fgInvalidElemId)
  158.     , fAttName(0)
  159.     , fDatatypeValidator(other->fDatatypeValidator)
  160.     , fAnyDatatypeValidator(other->fAnyDatatypeValidator)
  161.     , fMemberTypeValidator(other->fMemberTypeValidator)
  162.     , fNamespaceList(0)
  163.     , fValidity(other->fValidity)
  164.     , fValidation(other->fValidation)
  165. {
  166.     QName* otherName = other->getAttName();
  167.     fAttName = new (getMemoryManager()) QName(otherName->getPrefix(),
  168.                          otherName->getLocalPart(), otherName->getURI(),
  169.                          getMemoryManager());
  170.     if (other->fNamespaceList && other->fNamespaceList->size()) {
  171.         fNamespaceList = new (getMemoryManager()) ValueVectorOf<unsigned int>(*(other->fNamespaceList));
  172.     }
  173. }
  174. SchemaAttDef::~SchemaAttDef()
  175. {
  176.    delete fAttName;
  177.    delete fNamespaceList;
  178. }
  179. // ---------------------------------------------------------------------------
  180. //  SchemaAttDef: Setter methods
  181. // ---------------------------------------------------------------------------
  182. void SchemaAttDef::setAttName(const XMLCh* const        prefix
  183.                             , const XMLCh* const        localPart
  184.                             , const int                 uriId )
  185. {
  186.    fAttName->setName(prefix, localPart, uriId);
  187. }
  188. XERCES_CPP_NAMESPACE_END