StringDatatypeValidator.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:11k
源码类别:

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: StringDatatypeValidator.cpp,v $
  58.  * Revision 1.17  2001/10/09 20:54:35  peiyongz
  59.  * init(): take 1 arg.
  60.  *
  61.  * Revision 1.16  2001/09/27 13:51:25  peiyongz
  62.  * DTV Reorganization: ctor/init created to be used by derived class
  63.  *
  64.  * Revision 1.15  2001/09/25 15:58:14  peiyongz
  65.  * Check baseValidator in assignAdditinoalFacet() and inheritAdditionalFacet()
  66.  *
  67.  * Revision 1.14  2001/09/24 15:31:13  peiyongz
  68.  * DTV Reorganization: inherit from AbstractStringValidator
  69.  *
  70.  * Revision 1.12  2001/08/21 18:42:53  peiyongz
  71.  * Bugzilla# 2816: cleanUp() declared with external linkage and called
  72.  *                          before defined as inline
  73.  *
  74.  * Revision 1.11  2001/06/20 17:56:09  peiyongz
  75.  * support for "fixed" option on constrainning facets
  76.  *
  77.  * Revision 1.10  2001/05/29 19:49:36  tng
  78.  * Schema: Constraint Checking Fix in datatypeValidators.  By Pei Yong Zhang.
  79.  *
  80.  * Revision 1.9  2001/05/28 21:11:18  tng
  81.  * Schema: Various DatatypeValidator fix.  By Pei Yong Zhang
  82.  *
  83.  * Revision 1.8  2001/05/23 16:05:11  tng
  84.  * Schema: NormalizedString fix.  By Pei Yong Zhang.
  85.  *
  86.  * Revision 1.7  2001/05/23 15:45:25  tng
  87.  * Schema: NormalizedString fix.  By Pei Yong Zhang.
  88.  *
  89.  * Revision 1.6  2001/05/18 13:36:48  tng
  90.  * Schema: Catch RegularExpression exception and NumberFormatException
  91.  *
  92.  * Revision 1.5  2001/05/18 13:23:51  tng
  93.  * Schema: Exception messages in DatatypeValidator.  By Pei Yong Zhang.
  94.  *
  95.  * Revision 1.4  2001/05/16 14:33:40  tng
  96.  * Schema Constraint checking fix.
  97.  *
  98.  * Revision 1.3  2001/05/11 17:17:28  tng
  99.  * Schema: DatatypeValidator fixes.  By Pei Yong Zhang.
  100.  *
  101.  * Revision 1.2  2001/05/11 13:27:29  tng
  102.  * Copyright update.
  103.  *
  104.  * Revision 1.1  2001/05/09 18:43:42  tng
  105.  * Add StringDatatypeValidator and BooleanDatatypeValidator.  By Pei Yong Zhang.
  106.  *
  107.  */
  108. // ---------------------------------------------------------------------------
  109. //  Includes
  110. // ---------------------------------------------------------------------------
  111. #include <validators/datatype/StringDatatypeValidator.hpp>
  112. #include <validators/schema/SchemaSymbols.hpp>
  113. #include <validators/datatype/InvalidDatatypeFacetException.hpp>
  114. #include <validators/datatype/InvalidDatatypeValueException.hpp>
  115. static const int BUF_LEN = 64;
  116. static XMLCh value1[BUF_LEN+1];
  117. static XMLCh value2[BUF_LEN+1];
  118. // ---------------------------------------------------------------------------
  119. //  Constructors and Destructor
  120. // ---------------------------------------------------------------------------
  121. StringDatatypeValidator::StringDatatypeValidator()
  122. :AbstractStringValidator(0, 0, 0, DatatypeValidator::String)
  123. ,fWhiteSpace(DatatypeValidator::PRESERVE)
  124. {}
  125. StringDatatypeValidator::StringDatatypeValidator(
  126.                           DatatypeValidator*            const baseValidator
  127.                         , RefHashTableOf<KVStringPair>* const facets
  128.                         , RefVectorOf<XMLCh>*           const enums
  129.                         , const int                           finalSet)
  130. :AbstractStringValidator(baseValidator, facets, finalSet, DatatypeValidator::String)
  131. ,fWhiteSpace(DatatypeValidator::PRESERVE)
  132. {
  133.     init(enums);
  134. }
  135. StringDatatypeValidator::~StringDatatypeValidator()
  136. {}
  137. DatatypeValidator* StringDatatypeValidator::newInstance(
  138.                                       RefHashTableOf<KVStringPair>* const facets
  139.                                     , RefVectorOf<XMLCh>*           const enums
  140.                                     , const int                           finalSet)
  141. {
  142.     return (DatatypeValidator*) new StringDatatypeValidator(this, facets, enums, finalSet);
  143. }
  144. StringDatatypeValidator::StringDatatypeValidator(
  145.                           DatatypeValidator*            const baseValidator
  146.                         , RefHashTableOf<KVStringPair>* const facets
  147.                         , const int                           finalSet
  148.                         , const ValidatorType                 type)
  149. :AbstractStringValidator(baseValidator, facets, finalSet, type)
  150. ,fWhiteSpace(DatatypeValidator::PRESERVE)
  151. {
  152.     // do not invoke init() here!!!
  153. }
  154. short StringDatatypeValidator::getWSFacet() const 
  155. {
  156.     return fWhiteSpace;
  157. }
  158. // ---------------------------------------------------------------------------
  159. //  Utilities
  160. // ---------------------------------------------------------------------------
  161. void StringDatatypeValidator::assignAdditionalFacet(const XMLCh* const key
  162.                                                   , const XMLCh* const value)
  163. {
  164.     if (XMLString::compareString(key, SchemaSymbols::fgELT_WHITESPACE)==0)
  165.     {
  166.         // whiteSpace = preserve | replace | collapse
  167.         if (XMLString::compareString(value, SchemaSymbols::fgWS_PRESERVE) == 0)
  168.             setWhiteSpace(DatatypeValidator::PRESERVE);
  169.         else if (XMLString::compareString(value, SchemaSymbols::fgWS_REPLACE) == 0)
  170.             setWhiteSpace(DatatypeValidator::REPLACE);
  171.         else if (XMLString::compareString(value, SchemaSymbols::fgWS_COLLAPSE) == 0)
  172.             setWhiteSpace(DatatypeValidator::COLLAPSE);
  173.         else
  174.             ThrowXML1(InvalidDatatypeFacetException, XMLExcepts::FACET_Invalid_WS, value);
  175.         //("whiteSpace value '" + ws + "' must be one of 'preserve', 'replace', 'collapse'.");
  176.         setFacetsDefined(DatatypeValidator::FACET_WHITESPACE);
  177.     }
  178.     else
  179.     {
  180.         ThrowXML1(InvalidDatatypeFacetException
  181.                 , XMLExcepts::FACET_Invalid_Tag
  182.                 , key);
  183.     }
  184. }
  185. void StringDatatypeValidator::inheritAdditionalFacet()
  186. {
  187.     StringDatatypeValidator *pBaseValidator = (StringDatatypeValidator*) getBaseValidator();
  188.     if (!pBaseValidator)
  189.         return;
  190.     // inherit whitespace
  191.     if (((pBaseValidator->getFacetsDefined() & DatatypeValidator::FACET_WHITESPACE) !=0) &&
  192.         ((getFacetsDefined() & DatatypeValidator::FACET_WHITESPACE) == 0))
  193.     {
  194.         setWhiteSpace(getBaseValidator()->getWSFacet());
  195.         setFacetsDefined(DatatypeValidator::FACET_WHITESPACE);
  196.     }
  197. }
  198. void StringDatatypeValidator::checkAdditionalFacetConstraints() const
  199. {
  200.     StringDatatypeValidator *pBaseValidator = (StringDatatypeValidator*) getBaseValidator();
  201.     if (!pBaseValidator)
  202.         return;
  203.    
  204.     short    thisWSFacet = getWSFacet();
  205.     short    baseWSFacet = pBaseValidator->getWSFacet();
  206.     // check 4.3.6.c1 error: whitespace
  207.     if (((getFacetsDefined() & DatatypeValidator::FACET_WHITESPACE) != 0) &&
  208.         ((pBaseValidator->getFacetsDefined() & DatatypeValidator::FACET_WHITESPACE) != 0 ))
  209.     {
  210.         if ((baseWSFacet == DatatypeValidator::COLLAPSE) &&
  211.             ((thisWSFacet == DatatypeValidator::PRESERVE) ||
  212.              (thisWSFacet == DatatypeValidator::REPLACE)))
  213.              ThrowXML(InvalidDatatypeFacetException, XMLExcepts::FACET_WS_collapse);
  214.         if ((baseWSFacet == DatatypeValidator::REPLACE) &&
  215.             (thisWSFacet == DatatypeValidator::PRESERVE))
  216.             ThrowXML(InvalidDatatypeFacetException, XMLExcepts::FACET_WS_replace);
  217.         if (((pBaseValidator->getFixed() & DatatypeValidator::FACET_WHITESPACE) !=0) &&
  218.             ( thisWSFacet != baseWSFacet))
  219.         {
  220.             ThrowXML2(InvalidDatatypeFacetException
  221.                         , XMLExcepts::FACET_whitespace_base_fixed
  222.                         , getWSstring(thisWSFacet)
  223.                         , getWSstring(baseWSFacet));
  224.         }
  225.     }
  226. }
  227. void StringDatatypeValidator::checkAdditionalFacet(const XMLCh* const content) const
  228. {    
  229.     //
  230.     // check WhiteSpace
  231.     //
  232.     if ((getFacetsDefined() & DatatypeValidator::FACET_WHITESPACE) != 0 )
  233.     {
  234.         if ( getWSFacet() == DatatypeValidator::REPLACE )
  235.         {
  236.             if (!XMLString::isWSReplaced(content))
  237.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::VALUE_WS_replaced, content);
  238.         }
  239.         else if ( getWSFacet() == DatatypeValidator::COLLAPSE )
  240.         {
  241.             if (!XMLString::isWSCollapsed(content))
  242.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::VALUE_WS_collapsed, content);
  243.         }
  244.     }
  245. }
  246. void StringDatatypeValidator::checkValueSpace(const XMLCh* const content)
  247. {}
  248. int StringDatatypeValidator::getLength(const XMLCh* const content) const
  249. {
  250.     return XMLString::stringLen(content);
  251. }
  252. /**
  253.   * End of file StringDatatypeValidator.cpp
  254.   */