BooleanDatatypeValidator.cpp
上传用户: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: BooleanDatatypeValidator.cpp,v $
  58.  * Revision 1.7  2001/10/02 18:59:29  peiyongz
  59.  * Invalid_Facet_Tag to display the tag name
  60.  *
  61.  * Revision 1.6  2001/06/22 16:26:01  peiyongz
  62.  * fix: redefinition of SIZE
  63.  *
  64.  * Revision 1.5  2001/05/29 19:49:33  tng
  65.  * Schema: Constraint Checking Fix in datatypeValidators.  By Pei Yong Zhang.
  66.  *
  67.  * Revision 1.4  2001/05/28 21:11:17  tng
  68.  * Schema: Various DatatypeValidator fix.  By Pei Yong Zhang
  69.  *
  70.  * Revision 1.3  2001/05/18 13:36:44  tng
  71.  * Schema: Catch RegularExpression exception and NumberFormatException
  72.  *
  73.  * Revision 1.2  2001/05/11 13:27:26  tng
  74.  * Copyright update.
  75.  *
  76.  * Revision 1.1  2001/05/09 18:43:35  tng
  77.  * Add StringDatatypeValidator and BooleanDatatypeValidator.  By Pei Yong Zhang.
  78.  *
  79.  */
  80. // ---------------------------------------------------------------------------
  81. //  Includes
  82. // ---------------------------------------------------------------------------
  83. #include <validators/datatype/BooleanDatatypeValidator.hpp>
  84. #include <validators/schema/SchemaSymbols.hpp>
  85. #include <validators/datatype/InvalidDatatypeFacetException.hpp>
  86. #include <validators/datatype/InvalidDatatypeValueException.hpp>
  87. const int   ARRAYSIZE = 4;
  88. const XMLCh fgValueSpace[][32] =
  89. {
  90.     { chLatin_f, chLatin_a, chLatin_l, chLatin_s, chLatin_e, chNull },
  91.     { chLatin_t, chLatin_r, chLatin_u, chLatin_e, chNull },
  92.     { chDigit_0, chNull },
  93.     { chDigit_1, chNull }
  94. };
  95. // ---------------------------------------------------------------------------
  96. //  Constructors and Destructor
  97. // ---------------------------------------------------------------------------
  98. BooleanDatatypeValidator::BooleanDatatypeValidator(
  99.                           DatatypeValidator*            const baseValidator
  100.                         , RefHashTableOf<KVStringPair>* const facets
  101.                         , RefVectorOf<XMLCh>*           const enums
  102.                         , const int                           finalSet)
  103. :DatatypeValidator(baseValidator, facets, finalSet, DatatypeValidator::Boolean)
  104. {
  105.     // Set Facets if any defined
  106.     if ( facets )
  107.     {
  108.         // Boolean shall NOT have enumeration
  109.         if (enums)
  110.             ThrowXML1(InvalidDatatypeFacetException
  111.                     , XMLExcepts::FACET_Invalid_Tag
  112.                     , "enumeration");
  113.     
  114.         XMLCh* key;
  115.         XMLCh* value;
  116.         RefHashTableOfEnumerator<KVStringPair> e(facets);
  117.         while (e.hasMoreElements())
  118.         {
  119.             KVStringPair pair = e.nextElement();
  120.             key = pair.getKey();
  121.             value = pair.getValue();
  122.             if (XMLString::compareString(key, SchemaSymbols::fgELT_PATTERN)==0)
  123.             {
  124.                 setPattern(value);
  125.                 setFacetsDefined(DatatypeValidator::FACET_PATTERN);
  126.             }
  127.             else
  128.             {
  129.                 ThrowXML1(InvalidDatatypeFacetException
  130.                         , XMLExcepts::FACET_Invalid_Tag
  131.                         , key);
  132.             }
  133.         }
  134.     }// End of facet setting
  135. }
  136. void BooleanDatatypeValidator::checkContent( const XMLCh* const content, bool asBase)
  137. {
  138.     //validate against base validator if any
  139.     BooleanDatatypeValidator *pBaseValidator = (BooleanDatatypeValidator*) this->getBaseValidator();
  140.     if (pBaseValidator !=0)
  141.         pBaseValidator->checkContent(content, true);
  142.     // we check pattern first
  143.     if ( (getFacetsDefined() & DatatypeValidator::FACET_PATTERN ) != 0 )
  144.     {
  145.         // lazy construction
  146.         if (getRegex() ==0) {
  147.             try {         
  148.                 setRegex(new RegularExpression(getPattern(), SchemaSymbols::fgRegEx_XOption));
  149.             }
  150.             catch (XMLException &e)
  151.             {
  152.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::RethrowError, e.getMessage());
  153.             }
  154.         }
  155.         if (getRegex()->matches(content) ==false)
  156.         {
  157.             ThrowXML2(InvalidDatatypeValueException
  158.                     , XMLExcepts::VALUE_NotMatch_Pattern
  159.                     , content
  160.                     , getPattern());
  161.         }
  162.     }
  163.     // if this is a base validator, we only need to check pattern facet
  164.     // all other facet were inherited by the derived type
  165.     if (asBase)
  166.         return;
  167.     int   i = 0;
  168.     for ( ; i < ARRAYSIZE; i++ )
  169.     {
  170.         if ( XMLString::compareString(content, fgValueSpace[i]) ==0 )
  171.             break;
  172.     }
  173.     if (i == ARRAYSIZE)
  174.         ThrowXML(InvalidDatatypeValueException, XMLExcepts::CM_UnaryOpHadBinType);
  175.         //Not valid boolean type
  176. }
  177. int BooleanDatatypeValidator::compare(const XMLCh* const lValue
  178.                                     , const XMLCh* const rValue)
  179. {
  180.     // need to check by bool semantics
  181.     // 1 == true
  182.     // 0 == false
  183.     if (( XMLString::compareString(lValue, fgValueSpace[0]) ==0 ) ||
  184.         ( XMLString::compareString(lValue, fgValueSpace[2]) ==0 ) )
  185.     {
  186.         if (( XMLString::compareString(rValue, fgValueSpace[0]) ==0 ) ||
  187.             ( XMLString::compareString(rValue, fgValueSpace[2]) ==0 ) )
  188.             return 0;
  189.     }
  190.     else
  191.     if (( XMLString::compareString(lValue, fgValueSpace[1]) ==0 ) ||
  192.         ( XMLString::compareString(lValue, fgValueSpace[3]) ==0 ) )
  193.     {
  194.         if (( XMLString::compareString(rValue, fgValueSpace[1]) ==0 ) ||
  195.             ( XMLString::compareString(rValue, fgValueSpace[3]) ==0 ) )
  196.             return 0;
  197.     }
  198.     return 1;
  199. }
  200. /**
  201.   * End of file BooleanDatatypeValidator.cpp
  202.   */