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

词法分析

开发平台:

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: BooleanDatatypeValidator.cpp,v $
  58.  * Revision 1.8  2003/05/16 06:01:57  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.7  2003/05/15 18:53:26  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.6  2002/12/18 14:17:55  gareth
  65.  * Fix to bug #13438. When you eant a vector that calls delete[] on its members you should use RefArrayVectorOf.
  66.  *
  67.  * Revision 1.5  2002/11/04 14:53:28  tng
  68.  * C++ Namespace Support.
  69.  *
  70.  * Revision 1.4  2002/09/24 19:44:40  tng
  71.  * Performance: use XMLString::equals instead of XMLString::compareString
  72.  *
  73.  * Revision 1.3  2002/08/23 20:16:50  tng
  74.  * Memory leak fix: enums is not deleted if an error occurred.
  75.  *
  76.  * Revision 1.2  2002/02/14 15:17:31  peiyongz
  77.  * getEnumString()
  78.  *
  79.  * Revision 1.1.1.1  2002/02/01 22:22:40  peiyongz
  80.  * sane_include
  81.  *
  82.  * Revision 1.7  2001/10/02 18:59:29  peiyongz
  83.  * Invalid_Facet_Tag to display the tag name
  84.  *
  85.  * Revision 1.6  2001/06/22 16:26:01  peiyongz
  86.  * fix: redefinition of SIZE
  87.  *
  88.  * Revision 1.5  2001/05/29 19:49:33  tng
  89.  * Schema: Constraint Checking Fix in datatypeValidators.  By Pei Yong Zhang.
  90.  *
  91.  * Revision 1.4  2001/05/28 21:11:17  tng
  92.  * Schema: Various DatatypeValidator fix.  By Pei Yong Zhang
  93.  *
  94.  * Revision 1.3  2001/05/18 13:36:44  tng
  95.  * Schema: Catch RegularExpression exception and NumberFormatException
  96.  *
  97.  * Revision 1.2  2001/05/11 13:27:26  tng
  98.  * Copyright update.
  99.  *
  100.  * Revision 1.1  2001/05/09 18:43:35  tng
  101.  * Add StringDatatypeValidator and BooleanDatatypeValidator.  By Pei Yong Zhang.
  102.  *
  103.  */
  104. // ---------------------------------------------------------------------------
  105. //  Includes
  106. // ---------------------------------------------------------------------------
  107. #include <xercesc/validators/datatype/BooleanDatatypeValidator.hpp>
  108. #include <xercesc/validators/schema/SchemaSymbols.hpp>
  109. #include <xercesc/validators/datatype/InvalidDatatypeFacetException.hpp>
  110. #include <xercesc/validators/datatype/InvalidDatatypeValueException.hpp>
  111. XERCES_CPP_NAMESPACE_BEGIN
  112. const int   ARRAYSIZE = 4;
  113. const XMLCh fgValueSpace[][32] =
  114. {
  115.     { chLatin_f, chLatin_a, chLatin_l, chLatin_s, chLatin_e, chNull },
  116.     { chLatin_t, chLatin_r, chLatin_u, chLatin_e, chNull },
  117.     { chDigit_0, chNull },
  118.     { chDigit_1, chNull }
  119. };
  120. // ---------------------------------------------------------------------------
  121. //  Constructors and Destructor
  122. // ---------------------------------------------------------------------------
  123. BooleanDatatypeValidator::BooleanDatatypeValidator(
  124.                           DatatypeValidator*            const baseValidator
  125.                         , RefHashTableOf<KVStringPair>* const facets
  126.                         , RefArrayVectorOf<XMLCh>*      const enums
  127.                         , const int                           finalSet
  128.                         , MemoryManager* const                manager)
  129. :DatatypeValidator(baseValidator, facets, finalSet, DatatypeValidator::Boolean, manager)
  130. {
  131.     // Set Facets if any defined
  132.     if ( facets )
  133.     {
  134.         // Boolean shall NOT have enumeration
  135.         if (enums) {
  136.             delete enums;
  137.             ThrowXML1(InvalidDatatypeFacetException
  138.                     , XMLExcepts::FACET_Invalid_Tag
  139.                     , "enumeration");
  140.         }
  141.         XMLCh* key;
  142.         XMLCh* value;
  143.         RefHashTableOfEnumerator<KVStringPair> e(facets);
  144.         while (e.hasMoreElements())
  145.         {
  146.             KVStringPair pair = e.nextElement();
  147.             key = pair.getKey();
  148.             value = pair.getValue();
  149.             if (XMLString::equals(key, SchemaSymbols::fgELT_PATTERN))
  150.             {
  151.                 setPattern(value);
  152.                 setFacetsDefined(DatatypeValidator::FACET_PATTERN);
  153.             }
  154.             else
  155.             {
  156.                 ThrowXML1(InvalidDatatypeFacetException
  157.                         , XMLExcepts::FACET_Invalid_Tag
  158.                         , key);
  159.             }
  160.         }
  161.     }// End of facet setting
  162. }
  163. void BooleanDatatypeValidator::checkContent( const XMLCh* const content, bool asBase)
  164. {
  165.     //validate against base validator if any
  166.     BooleanDatatypeValidator *pBaseValidator = (BooleanDatatypeValidator*) this->getBaseValidator();
  167.     if (pBaseValidator !=0)
  168.         pBaseValidator->checkContent(content, true);
  169.     // we check pattern first
  170.     if ( (getFacetsDefined() & DatatypeValidator::FACET_PATTERN ) != 0 )
  171.     {
  172.         // lazy construction
  173.         if (getRegex() ==0) {
  174.             try {
  175.                 setRegex(new (fMemoryManager) RegularExpression(getPattern(), SchemaSymbols::fgRegEx_XOption, fMemoryManager));
  176.             }
  177.             catch (XMLException &e)
  178.             {
  179.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::RethrowError, e.getMessage());
  180.             }
  181.         }
  182.         if (getRegex()->matches(content) ==false)
  183.         {
  184.             ThrowXML2(InvalidDatatypeValueException
  185.                     , XMLExcepts::VALUE_NotMatch_Pattern
  186.                     , content
  187.                     , getPattern());
  188.         }
  189.     }
  190.     // if this is a base validator, we only need to check pattern facet
  191.     // all other facet were inherited by the derived type
  192.     if (asBase)
  193.         return;
  194.     int   i = 0;
  195.     for ( ; i < ARRAYSIZE; i++ )
  196.     {
  197.         if ( XMLString::equals(content, fgValueSpace[i]))
  198.             break;
  199.     }
  200.     if (i == ARRAYSIZE)
  201.         ThrowXML(InvalidDatatypeValueException, XMLExcepts::CM_UnaryOpHadBinType);
  202.         //Not valid boolean type
  203. }
  204. int BooleanDatatypeValidator::compare(const XMLCh* const lValue
  205.                                     , const XMLCh* const rValue)
  206. {
  207.     // need to check by bool semantics
  208.     // 1 == true
  209.     // 0 == false
  210.     if (XMLString::equals(lValue, fgValueSpace[0])||
  211.         XMLString::equals(lValue, fgValueSpace[2]))
  212.     {
  213.         if (XMLString::equals(rValue, fgValueSpace[0]) ||
  214.             XMLString::equals(rValue, fgValueSpace[2]))
  215.             return 0;
  216.     }
  217.     else
  218.     if (XMLString::equals(lValue, fgValueSpace[1]) ||
  219.         XMLString::equals(lValue, fgValueSpace[3]))
  220.     {
  221.         if (XMLString::equals(rValue, fgValueSpace[1]) ||
  222.             XMLString::equals(rValue, fgValueSpace[3]))
  223.             return 0;
  224.     }
  225.     return 1;
  226. }
  227. const RefArrayVectorOf<XMLCh>* BooleanDatatypeValidator::getEnumString() const
  228. {
  229. return 0;
  230. }
  231. XERCES_CPP_NAMESPACE_END
  232. /**
  233.   * End of file BooleanDatatypeValidator.cpp
  234.   */