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

词法分析

开发平台:

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