FloatDatatypeValidator.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.  * $Id: FloatDatatypeValidator.cpp,v 1.6 2001/10/02 18:59:29 peiyongz Exp $
  58.  * $Log: FloatDatatypeValidator.cpp,v $
  59.  * Revision 1.6  2001/10/02 18:59:29  peiyongz
  60.  * Invalid_Facet_Tag to display the tag name
  61.  *
  62.  * Revision 1.5  2001/10/01 21:03:55  peiyongz
  63.  * DTV Reorganization:derived from AbstractNumericValidator
  64.  *
  65.  * Revision 1.4  2001/09/20 13:11:42  knoaman
  66.  * Regx  + misc. fixes
  67.  *
  68.  * Revision 1.3  2001/08/21 18:42:53  peiyongz
  69.  * Bugzilla# 2816: cleanUp() declared with external linkage and called
  70.  *                          before defined as inline
  71.  *
  72.  * Revision 1.2  2001/08/15 18:08:44  peiyongz
  73.  * Fix to potential leakage in strEnumeration
  74.  *
  75.  * Revision 1.1  2001/07/26 20:42:16  peiyongz
  76.  * FloatDatatypeValidator
  77.  *
  78.  *
  79.  */
  80. // ---------------------------------------------------------------------------
  81. //  Includes
  82. // ---------------------------------------------------------------------------
  83. #include <validators/datatype/FloatDatatypeValidator.hpp>
  84. #include <validators/schema/SchemaSymbols.hpp>
  85. #include <validators/datatype/InvalidDatatypeFacetException.hpp>
  86. #include <validators/datatype/InvalidDatatypeValueException.hpp>
  87. // ---------------------------------------------------------------------------
  88. //  Constructors and Destructor
  89. // ---------------------------------------------------------------------------
  90. FloatDatatypeValidator::FloatDatatypeValidator()
  91. :AbstractNumericValidator(0, 0, 0, DatatypeValidator::Float)
  92. {}
  93. FloatDatatypeValidator::FloatDatatypeValidator(
  94.                           DatatypeValidator*            const baseValidator
  95.                         , RefHashTableOf<KVStringPair>* const facets
  96.                         , RefVectorOf<XMLCh>*           const enums
  97.                         , const int                           finalSet)
  98. :AbstractNumericValidator(baseValidator, facets, finalSet, DatatypeValidator::Float)
  99. {
  100.     init(enums);
  101. }
  102. FloatDatatypeValidator::~FloatDatatypeValidator()
  103. {}
  104. // -----------------------------------------------------------------------
  105. // Compare methods
  106. // -----------------------------------------------------------------------
  107. int FloatDatatypeValidator::compare(const XMLCh* const lValue
  108.                                   , const XMLCh* const rValue)
  109. {
  110.     XMLFloat * lObj = new XMLFloat(lValue);
  111.     Janitor<XMLFloat> jname1(lObj);
  112.     XMLFloat * rObj = new XMLFloat(rValue);
  113.     Janitor<XMLFloat> jname2(rObj);
  114.     return compareValues(lObj, rObj);
  115. }
  116. DatatypeValidator* FloatDatatypeValidator::newInstance(
  117.                                       RefHashTableOf<KVStringPair>* const facets
  118.                                     , RefVectorOf<XMLCh>*           const enums
  119.                                     , const int                           finalSet)
  120. {
  121.     return (DatatypeValidator*) new FloatDatatypeValidator(this, facets, enums, finalSet);
  122. }
  123. // -----------------------------------------------------------------------
  124. // ctor provided to be used by derived classes
  125. // -----------------------------------------------------------------------
  126. FloatDatatypeValidator::FloatDatatypeValidator(DatatypeValidator*            const baseValidator
  127.                                              , RefHashTableOf<KVStringPair>* const facets
  128.                                              , const int                           finalSet
  129.                                              , const ValidatorType                 type)
  130. :AbstractNumericValidator(baseValidator, facets, finalSet, type)
  131. {
  132.     //do not invoke init here !!!
  133. }
  134. void FloatDatatypeValidator::assignAdditionalFacet(const XMLCh* const key
  135.                                                  , const XMLCh* const)
  136. {
  137.     ThrowXML1(InvalidDatatypeFacetException
  138.             , XMLExcepts::FACET_Invalid_Tag
  139.             , key);
  140. }
  141. void FloatDatatypeValidator::inheritAdditionalFacet()
  142. {}
  143. void FloatDatatypeValidator::checkAdditionalFacetConstraints() const
  144. {}
  145. void FloatDatatypeValidator::checkAdditionalFacetConstraintsBase() const
  146. {}
  147. int  FloatDatatypeValidator::compareValues(const XMLNumber* const lValue
  148.                                          , const XMLNumber* const rValue)
  149. {
  150.     return XMLFloat::compareValues((XMLFloat*) lValue, (XMLFloat*) rValue);
  151. }
  152. void  FloatDatatypeValidator::setMaxInclusive(const XMLCh* const value)
  153. {
  154.     fMaxInclusive = new XMLFloat(value);
  155. }
  156. void  FloatDatatypeValidator::setMaxExclusive(const XMLCh* const value)
  157. {
  158.     fMaxExclusive = new XMLFloat(value);
  159. }
  160. void  FloatDatatypeValidator::setMinInclusive(const XMLCh* const value)
  161. {
  162.     fMinInclusive = new XMLFloat(value);
  163. }
  164. void  FloatDatatypeValidator::setMinExclusive(const XMLCh* const value)
  165. {
  166.     fMinExclusive = new XMLFloat(value);
  167. }
  168. void  FloatDatatypeValidator::setEnumeration()
  169. {
  170.     // check 4.3.5.c0 must: enumeration values from the value space of base
  171.     //
  172.     // 1. shall be from base value space
  173.     // 2. shall be from current value space as well ( shall go through boundsCheck() )
  174.     //
  175.     if (!fStrEnumeration)
  176.         return;
  177.     int i = 0;
  178.     int enumLength = fStrEnumeration->size();
  179.     FloatDatatypeValidator *numBase = (FloatDatatypeValidator*) getBaseValidator();
  180.     if (numBase)
  181.     {
  182.         try
  183.         {
  184.             for ( i = 0; i < enumLength; i++)
  185.             {
  186.                 numBase->checkContent(fStrEnumeration->elementAt(i), false);
  187.             }
  188.         }              
  189.         catch (XMLException&)
  190.         {
  191.             ThrowXML1(InvalidDatatypeFacetException
  192.                 , XMLExcepts::FACET_enum_base
  193.                 , fStrEnumeration->elementAt(i));
  194.         }
  195.     }
  196.     // We put the this->checkContent in a separate loop
  197.     // to not block original message with in that method.
  198.     // 
  199.     for ( i = 0; i < enumLength; i++)
  200.     {
  201.         checkContent(fStrEnumeration->elementAt(i), false);
  202.     }              
  203.     fEnumeration = new RefVectorOf<XMLNumber>(enumLength, true);
  204.     fEnumerationInherited = false;
  205.     for ( i = 0; i < enumLength; i++)
  206.     {
  207.         fEnumeration->insertElementAt(new XMLFloat(fStrEnumeration->elementAt(i)), i);
  208.     }              
  209. }
  210. // -----------------------------------------------------------------------
  211. // Abstract interface from AbstractNumericValidator
  212. // -----------------------------------------------------------------------
  213. void FloatDatatypeValidator::checkContent( const XMLCh* const content, bool asBase)
  214. {
  215.     //validate against base validator if any
  216.     FloatDatatypeValidator *pBase = (FloatDatatypeValidator*) this->getBaseValidator();
  217.     if (pBase)
  218.         pBase->checkContent(content, true);
  219.     // we check pattern first
  220.     if ( (getFacetsDefined() & DatatypeValidator::FACET_PATTERN ) != 0 )
  221.     {
  222.         // lazy construction
  223.         if (getRegex() ==0) {
  224.             try {
  225.                 setRegex(new RegularExpression(getPattern(), SchemaSymbols::fgRegEx_XOption));
  226.             }
  227.             catch (XMLException &e)
  228.             {
  229.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::RethrowError, e.getMessage());
  230.             }
  231.         }
  232.         if (getRegex()->matches(content) ==false)
  233.         {
  234.             ThrowXML2(InvalidDatatypeValueException
  235.                     , XMLExcepts::VALUE_NotMatch_Pattern
  236.                     , content
  237.                     , getPattern());
  238.         }
  239.     }
  240.     // if this is a base validator, we only need to check pattern facet
  241.     // all other facet were inherited by the derived type
  242.     if (asBase)
  243.         return;
  244.     try {
  245.         XMLFloat theValue(content);
  246.         XMLFloat *theData = &theValue;
  247.         if (getEnumeration() != 0)
  248.         {
  249.             int i=0;
  250.             int enumLength = getEnumeration()->size();
  251.             for ( ; i < enumLength; i++)
  252.             {
  253.                 if (compareValues(theData, (XMLFloat*) getEnumeration()->elementAt(i))==0)
  254.                     break;
  255.             }
  256.             if (i == enumLength)
  257.                 ThrowXML1(InvalidDatatypeValueException, XMLExcepts::VALUE_NotIn_Enumeration, content);
  258.         }
  259.         boundsCheck(theData);
  260.     }
  261.     catch (XMLException &e)
  262.     {
  263.        ThrowXML1(InvalidDatatypeFacetException, XMLExcepts::RethrowError, e.getMessage());
  264.     }
  265. }
  266. /**
  267.   * End of file FloatDatatypeValidator::cpp
  268.   */