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