DatatypeValidator.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: DatatypeValidator.cpp,v $
  58.  * Revision 1.6  2003/05/15 18:53:26  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.5  2003/01/29 19:52:32  gareth
  62.  * PSVI API additions.
  63.  *
  64.  * Revision 1.4  2002/12/19 14:03:10  gareth
  65.  * get/set methods to see if the represented type is anonymous. Patch by Peter Volchek.
  66.  *
  67.  * Revision 1.3  2002/11/04 14:53:28  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.2  2002/10/15 18:04:31  knoaman
  71.  * Bug [13485]: incorrect return from getWSstring
  72.  *
  73.  * Revision 1.1.1.1  2002/02/01 22:22:40  peiyongz
  74.  * sane_include
  75.  *
  76.  * Revision 1.7  2001/06/20 17:56:56  peiyongz
  77.  * support for "fixed" option on constrainning facets
  78.  *
  79.  * Revision 1.6  2001/05/11 21:51:09  knoaman
  80.  * Schema updates and fixes.
  81.  *
  82.  * Revision 1.5  2001/05/11 13:27:27  tng
  83.  * Copyright update.
  84.  *
  85.  * Revision 1.4  2001/05/09 18:43:38  tng
  86.  * Add StringDatatypeValidator and BooleanDatatypeValidator.  By Pei Yong Zhang.
  87.  *
  88.  * Revision 1.3  2001/05/03 21:09:52  tng
  89.  * Schema: DatatypeValidator Update.  By Pei Yong Zhang.
  90.  *
  91.  * Revision 1.2  2001/05/03 19:17:43  knoaman
  92.  * TraverseSchema Part II.
  93.  *
  94.  * Revision 1.1  2001/03/21 21:39:13  knoaman
  95.  * Schema symbols and Datatype validator part I
  96.  *
  97.  */
  98. // ---------------------------------------------------------------------------
  99. //  Includes
  100. // ---------------------------------------------------------------------------
  101. #include <xercesc/validators/datatype/DatatypeValidator.hpp>
  102. #include <xercesc/framework/MemoryManager.hpp>
  103. XERCES_CPP_NAMESPACE_BEGIN
  104. // ---------------------------------------------------------------------------
  105. //  DatatypeValidator: Constructors and Destructor
  106. // ---------------------------------------------------------------------------
  107. DatatypeValidator::DatatypeValidator(DatatypeValidator* const baseValidator,
  108.                                      RefHashTableOf<KVStringPair>* const facets,
  109.                                      const int finalSet,
  110.                                      const ValidatorType type,
  111.                                      MemoryManager* const manager)
  112.     : fMemoryManager(manager)
  113.     , fAnonymous(false)
  114.     , fFinalSet(finalSet)
  115.     , fFacetsDefined(0)
  116.     , fFixed(0)
  117.     , fType(type)
  118.     , fBaseValidator(baseValidator)
  119.     , fFacets(facets)
  120.     , fPattern(0)
  121.     , fRegex(0)
  122.     , fTypeLocalName(XMLUni::fgZeroLenString)
  123.     , fTypeName(0)
  124.     , fTypeUri(XMLUni::fgZeroLenString)
  125. {
  126. }
  127. DatatypeValidator::~DatatypeValidator()
  128. {
  129. cleanUp();
  130. }
  131. const XMLCh* DatatypeValidator::getWSstring(const short theType) const
  132. {
  133.     switch (theType)
  134.     {
  135.     case PRESERVE:
  136.          return SchemaSymbols::fgWS_PRESERVE;
  137.     case REPLACE:
  138.          return SchemaSymbols::fgWS_REPLACE;
  139.     case COLLAPSE:
  140.          return SchemaSymbols::fgWS_COLLAPSE;
  141.     default:
  142.          return SchemaSymbols::fgWS_PRESERVE;
  143.     }
  144. }
  145. void DatatypeValidator::setTypeName(const XMLCh* const name, const XMLCh* const uri)
  146. {
  147.     if (fTypeName) {
  148.         fMemoryManager->deallocate(fTypeName);
  149.         fTypeName = 0;
  150.     }
  151.     if (name || uri) {
  152.         unsigned int nameLen = XMLString::stringLen(name);
  153.         unsigned int uriLen = XMLString::stringLen(uri);
  154.         fTypeName = (XMLCh*) fMemoryManager->allocate
  155.         (
  156.             (nameLen + uriLen + 2)*sizeof(XMLCh)
  157.         );
  158.         fTypeUri = fTypeName;
  159.         fTypeLocalName = &fTypeName[uriLen+1];
  160.         if (uri)
  161. XMLString::moveChars(fTypeName, uri, uriLen+1);
  162.         else
  163. fTypeName[0] = chNull;
  164.         if (name)
  165.             XMLString::moveChars(&fTypeName[uriLen+1], name, nameLen+1);
  166.         else
  167.             fTypeName[uriLen+1] = chNull;
  168.     }
  169.     else
  170.     {
  171.         fTypeUri = fTypeLocalName = XMLUni::fgZeroLenString;
  172.     }
  173. }
  174. void DatatypeValidator::setTypeName(const XMLCh* const typeName)
  175. {
  176.     if (fTypeName)
  177.     {
  178.         fMemoryManager->deallocate(fTypeName);
  179.         fTypeName = 0;
  180.     }
  181.     if (typeName)
  182.     {
  183.         unsigned int nameLen = XMLString::stringLen(typeName);
  184.         int commaOffset = XMLString::indexOf(typeName, chComma);
  185.         fTypeName = (XMLCh*) fMemoryManager->allocate
  186.         (
  187.             (nameLen + 1) * sizeof(XMLCh)
  188.         );
  189.     XMLString::moveChars(fTypeName, typeName, nameLen+1);
  190.         if ( commaOffset == -1) {
  191.             fTypeUri = SchemaSymbols::fgURI_SCHEMAFORSCHEMA;
  192.             fTypeLocalName = fTypeName;
  193.         }
  194.         else {
  195.             fTypeUri = fTypeName;
  196.             fTypeLocalName = &fTypeName[commaOffset+1];
  197.             fTypeName[commaOffset] = chNull;
  198.         }
  199.     }
  200.     else
  201.     {
  202.         fTypeUri = fTypeLocalName = XMLUni::fgZeroLenString;
  203.     }
  204. }
  205. // ---------------------------------------------------------------------------
  206. //  DatatypeValidator: CleanUp methods
  207. // ---------------------------------------------------------------------------
  208. void DatatypeValidator::cleanUp() {
  209. delete fFacets;
  210.     delete fRegex;
  211.     if (fPattern)
  212.         fMemoryManager->deallocate(fPattern);//delete [] fPattern;
  213.     if (fTypeName)
  214.         fMemoryManager->deallocate(fTypeName);
  215. }
  216. XERCES_CPP_NAMESPACE_END
  217. /**
  218.   * End of file DatatypeValidator.cpp
  219.   */