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

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: XMLFloat.cpp,v 1.13 2001/11/19 21:33:42 peiyongz Exp $
  58.  * $Log: XMLFloat.cpp,v $
  59.  * Revision 1.13  2001/11/19 21:33:42  peiyongz
  60.  * Reorganization: Double/Float
  61.  *
  62.  * Revision 1.12  2001/11/19 17:27:55  peiyongz
  63.  * Boundary Values updated
  64.  *
  65.  * Revision 1.11  2001/10/26 16:37:46  peiyongz
  66.  * Add thread safe code
  67.  *
  68.  * Revision 1.9  2001/09/20 13:11:41  knoaman
  69.  * Regx  + misc. fixes
  70.  *
  71.  * Revision 1.8  2001/09/14 13:57:59  peiyongz
  72.  * exponent is a must if 'E' or 'e' is present.
  73.  *
  74.  * Revision 1.7  2001/08/23 11:54:26  tng
  75.  * Add newline at the end and various typo fixes.
  76.  *
  77.  * Revision 1.6  2001/08/21 15:10:15  peiyongz
  78.  * Bugzilla# 3017: MSVC5.0: C2202: 'compareSpecial' : not all
  79.  * control paths return a value
  80.  *
  81.  * Revision 1.5  2001/08/14 22:10:20  peiyongz
  82.  * new exception message added
  83.  *
  84.  * Revision 1.4  2001/07/31 17:38:16  peiyongz
  85.  * Fix: memory leak by static (boundry) objects
  86.  *
  87.  * Revision 1.3  2001/07/31 13:48:29  peiyongz
  88.  * fValue removed
  89.  *
  90.  * Revision 1.2  2001/07/27 20:43:53  peiyongz
  91.  * copy ctor: to check for special types.
  92.  *
  93.  * Revision 1.1  2001/07/26 20:41:37  peiyongz
  94.  * XMLFloat
  95.  *
  96.  *
  97.  */
  98. // ---------------------------------------------------------------------------
  99. //  Includes
  100. // ---------------------------------------------------------------------------
  101. #include <util/XMLFloat.hpp>
  102. #include <util/PlatformUtils.hpp>
  103. #include <util/XMLRegisterCleanup.hpp>
  104. #include <util/XMLString.hpp>
  105. #include <util/XMLUniDefs.hpp>
  106. #include <util/NumberFormatException.hpp>
  107. // ---------------------------------------------------------------------------
  108. //  local data member
  109. // ---------------------------------------------------------------------------
  110. //
  111. // 2^24 x 2^104 = 2^128 = 3.4028236692093846346337460743177e+38
  112. //                        +
  113. //                        3.4028 236692 093846 346337 460743 177
  114. //                        e+38
  115. //
  116. static const XMLCh FLT_MAX_POSITIVE[] =
  117. {
  118.     chPlus,
  119.     chDigit_3, chPeriod,  chDigit_4, chDigit_0, chDigit_2, chDigit_8,
  120.     chDigit_2, chDigit_3, chDigit_6, chDigit_6, chDigit_9, chDigit_2,
  121.     chDigit_0, chDigit_9, chDigit_3, chDigit_8, chDigit_4, chDigit_6,
  122.     chDigit_3, chDigit_4, chDigit_6, chDigit_3, chDigit_3, chDigit_7,
  123.     chDigit_4, chDigit_6, chDigit_0, chDigit_7, chDigit_4, chDigit_3,
  124.     chDigit_1, chDigit_7, chDigit_7, 
  125.     chLatin_E, chPlus,    chDigit_3, chDigit_8, chNull
  126. };
  127. //
  128. // 2^0 x 2^-149 = 2^-149 = 1.4012984643248170709237295832899e-45
  129. //                         +
  130. //                         1.4012 984643 248170 709237 295832 899
  131. //                         e-45
  132. //
  133. static const XMLCh FLT_MIN_POSITIVE[] =
  134. {
  135.     chPlus,
  136.     chDigit_1, chPeriod,  chDigit_4, chDigit_0, chDigit_1, chDigit_2,
  137.     chDigit_9, chDigit_8, chDigit_4, chDigit_6, chDigit_4, chDigit_3,
  138.     chDigit_2, chDigit_4, chDigit_8, chDigit_1, chDigit_7, chDigit_0,
  139.     chDigit_7, chDigit_0, chDigit_9, chDigit_2, chDigit_3, chDigit_7,
  140.     chDigit_2, chDigit_9, chDigit_5, chDigit_8, chDigit_3, chDigit_2,
  141.     chDigit_8, chDigit_9, chDigit_9, 
  142.     chLatin_E, chDash,    chDigit_4, chDigit_5, chNull
  143. };
  144. static const XMLCh FLT_MAX_NEGATIVE[] =
  145. {
  146.     chDash,
  147.     chDigit_3, chPeriod,  chDigit_4, chDigit_0, chDigit_2, chDigit_8,
  148.     chDigit_2, chDigit_3, chDigit_6, chDigit_6, chDigit_9, chDigit_2,
  149.     chDigit_0, chDigit_9, chDigit_3, chDigit_8, chDigit_4, chDigit_6,
  150.     chDigit_3, chDigit_4, chDigit_6, chDigit_3, chDigit_3, chDigit_7,
  151.     chDigit_4, chDigit_6, chDigit_0, chDigit_7, chDigit_4, chDigit_3,
  152.     chDigit_1, chDigit_7, chDigit_7, 
  153.     chLatin_E, chPlus,    chDigit_3, chDigit_8, chNull
  154. };
  155. static const XMLCh FLT_MIN_NEGATIVE[] =
  156. {
  157.     chDash,
  158.     chDigit_1, chPeriod,  chDigit_4, chDigit_0, chDigit_1, chDigit_2,
  159.     chDigit_9, chDigit_8, chDigit_4, chDigit_6, chDigit_4, chDigit_3,
  160.     chDigit_2, chDigit_4, chDigit_8, chDigit_1, chDigit_7, chDigit_0,
  161.     chDigit_7, chDigit_0, chDigit_9, chDigit_2, chDigit_3, chDigit_7,
  162.     chDigit_2, chDigit_9, chDigit_5, chDigit_8, chDigit_3, chDigit_2,
  163.     chDigit_8, chDigit_9, chDigit_9, 
  164.     chLatin_E, chDash,    chDigit_4, chDigit_5, chNull
  165. };
  166. //
  167. // maxNegativeValue < minNegativeValue < 0 < minPositiveValue < maxPositiveValue
  168. // They are all "Inclusive value"
  169. //
  170. static XMLFloat*  maxNegativeValue = 0;
  171. static XMLFloat*  minNegativeValue = 0;
  172. static XMLFloat*  minPositiveValue = 0;
  173. static XMLFloat*  maxPositiveValue = 0;
  174. static XMLMutex* sFloatMutex = 0;
  175. static XMLRegisterCleanup XMLFloatCleanup;
  176. // ---------------------------------------------------------------------------
  177. //  ctor/dtor
  178. // ---------------------------------------------------------------------------
  179. XMLFloat::XMLFloat(const XMLCh* const strValue)
  180. :XMLAbstractDoubleFloat()
  181. {
  182.     init(strValue);
  183. }
  184. XMLFloat::~XMLFloat()
  185. {
  186. }
  187. //
  188. //
  189. void XMLFloat::checkBoundary(const XMLCh* const strValue)
  190. {
  191.     if (!sFloatMutex)
  192.     {
  193.         XMLMutex* tmpMutex = new XMLMutex;
  194.         if (XMLPlatformUtils::compareAndSwap((void**)&sFloatMutex, tmpMutex, 0))
  195.         {
  196.             // Some other thread beat us to it, so let's clean up ours.
  197.             delete tmpMutex;
  198.         }
  199.         else
  200.         {
  201.             //
  202.             // the thread who creates the mutex succesfully, to
  203.             // initialize the followings
  204.             //
  205.             maxNegativeValue = new XMLFloat(FLT_MAX_NEGATIVE);
  206.             minNegativeValue = new XMLFloat(FLT_MIN_NEGATIVE);
  207.             minPositiveValue = new XMLFloat(FLT_MIN_POSITIVE);
  208.             maxPositiveValue = new XMLFloat(FLT_MAX_POSITIVE);
  209.             // This is the real mutex.  Register it for cleanup at Termination.
  210.             XMLFloatCleanup.registerCleanup(reinitXMLFloat);
  211.         }
  212.     }
  213.     //
  214.     // by-pass boundary check for boundary value itself
  215.     //
  216.     if (( XMLString::compareString(strValue, FLT_MAX_NEGATIVE) == 0 ) ||
  217.         ( XMLString::compareString(strValue, FLT_MIN_NEGATIVE) == 0 ) ||
  218.         ( XMLString::compareString(strValue, FLT_MIN_POSITIVE) == 0 ) ||
  219.         ( XMLString::compareString(strValue, FLT_MAX_POSITIVE) == 0 )  )
  220.         return;
  221.     //  error: this < maxNegativeValue
  222.     if ( compareValues(this, maxNegativeValue) == -1 )
  223.     {
  224.         ThrowXML2(NumberFormatException
  225.                 , XMLExcepts::XMLNUM_DBL_FLT_maxNeg
  226.                 , strValue
  227.                 , FLT_MAX_NEGATIVE);
  228.     }
  229.     //  error: this > maxPositiveValue
  230.     if ( compareValues(this, maxPositiveValue) ==  1 )
  231.     {
  232.         ThrowXML2(NumberFormatException
  233.                 , XMLExcepts::XMLNUM_DBL_FLT_maxPos
  234.                 , strValue
  235.                 , FLT_MAX_POSITIVE);
  236.     }
  237.     //  error: minNegativeValue < this < minPositiveValue
  238.     //  value is not be representable
  239.     if  (( compareValues(this, minNegativeValue) ==  1 ) &&
  240.          ( compareValues(this, minPositiveValue) == -1 )  )
  241.     {
  242.         ThrowXML3(NumberFormatException
  243.                 , XMLExcepts::XMLNUM_DBL_FLT_minNegPos
  244.                 , strValue
  245.                 , FLT_MIN_NEGATIVE
  246.                 , FLT_MIN_POSITIVE);
  247.     }
  248. }
  249. // -----------------------------------------------------------------------
  250. //  Notification that lazy data has been deleted
  251. // -----------------------------------------------------------------------
  252. void XMLFloat::reinitXMLFloat() {
  253.     delete sFloatMutex;
  254.     sFloatMutex = 0;
  255.     delete maxNegativeValue;
  256.     maxNegativeValue = 0;
  257.     delete minNegativeValue;
  258.     minNegativeValue = 0;
  259.     delete minPositiveValue;
  260.     minPositiveValue = 0;
  261.     delete maxPositiveValue;
  262.     maxPositiveValue = 0;
  263. }