XMLDouble.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: XMLDouble.cpp,v 1.16 2001/11/19 21:33:42 peiyongz Exp $
  58.  * $Log: XMLDouble.cpp,v $
  59.  * Revision 1.16  2001/11/19 21:33:42  peiyongz
  60.  * Reorganization: Double/Float
  61.  *
  62.  * Revision 1.15  2001/11/19 17:27:55  peiyongz
  63.  * Boundary Values updated
  64.  *
  65.  * Revision 1.14  2001/10/26 16:37:46  peiyongz
  66.  * Add thread safe code
  67.  *
  68.  * Revision 1.12  2001/09/20 13:11:41  knoaman
  69.  * Regx  + misc. fixes
  70.  *
  71.  * Revision 1.11  2001/09/14 13:57:59  peiyongz
  72.  * exponent is a must if 'E' or 'e' is present.
  73.  *
  74.  * Revision 1.10  2001/08/23 11:54:26  tng
  75.  * Add newline at the end and various typo fixes.
  76.  *
  77.  * Revision 1.9  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.8  2001/08/14 22:10:20  peiyongz
  82.  * new exception message added
  83.  *
  84.  * Revision 1.7  2001/07/31 17:38:16  peiyongz
  85.  * Fix: memory leak by static (boundry) objects
  86.  *
  87.  * Revision 1.6  2001/07/31 13:48:29  peiyongz
  88.  * fValue removed
  89.  *
  90.  * Revision 1.5  2001/07/27 20:43:53  peiyongz
  91.  * copy ctor: to check for special types.
  92.  *
  93.  * Revision 1.4  2001/07/26 18:21:15  peiyongz
  94.  * Boundary Checking
  95.  *
  96.  * Revision 1.3  2001/07/25 19:06:56  peiyongz
  97.  * Fix to Linux compilation error: XMLDouble::LiteralType' is not an aggregate type
  98.  *
  99.  * Revision 1.2  2001/07/24 21:52:27  peiyongz
  100.  * XMLDouble: move fg...String to XMLUni
  101.  *
  102.  * Revision 1.1  2001/07/24 13:58:11  peiyongz
  103.  * XMLDouble and related supporting methods from XMLBigInteger/XMLBigDecimal
  104.  *
  105.  */
  106. // ---------------------------------------------------------------------------
  107. //  Includes
  108. // ---------------------------------------------------------------------------
  109. #include <util/XMLDouble.hpp>
  110. #include <util/PlatformUtils.hpp>
  111. #include <util/XMLRegisterCleanup.hpp>
  112. #include <util/XMLString.hpp>
  113. #include <util/XMLUniDefs.hpp>
  114. #include <util/NumberFormatException.hpp>
  115. //---------
  116. // TODO:
  117. //
  118. //   Double is supposed to hold 64 bit number and currently
  119. //   we have implemented the checking on boundary values, such
  120. //   the maximum/minimum positive/negative number.
  121. //
  122. //   We also need to do roundup/roundoff for extra bit in the
  123. //   lexical representation.
  124. //   In order to do that, we need to store them in a canonical form,
  125. //   like this.
  126. //   [-]?[1-9].[0-9]+[E|e][-]?[0-9]+
  127. //
  128. //   Then we can impose the limit of length after the '.' before 'E'.
  129. //
  130. //---------
  131. // ---------------------------------------------------------------------------
  132. //  local data member
  133. // ---------------------------------------------------------------------------
  134. //
  135. //   2^53 x 2^970  =   2^1023 =  8.9884656743115795386465259539451e+307
  136. //                                +
  137. //                                  8.9884 656743 115795 386465 259539 451
  138. //                                e+307
  139. //
  140. static const XMLCh DBL_MAX_POSITIVE[] =
  141. {
  142.     chPlus,
  143.     chDigit_8, chPeriod,  chDigit_9, chDigit_8, chDigit_8, chDigit_4,
  144.     chDigit_6, chDigit_5, chDigit_6, chDigit_7, chDigit_4, chDigit_3,
  145.     chDigit_1, chDigit_1, chDigit_5, chDigit_7, chDigit_9, chDigit_5,
  146.     chDigit_3, chDigit_8, chDigit_6, chDigit_4, chDigit_6, chDigit_5,
  147.     chDigit_2, chDigit_5, chDigit_9, chDigit_5, chDigit_3, chDigit_9,
  148.     chDigit_4, chDigit_5, chDigit_1, 
  149.     chLatin_E, chPlus,    chDigit_3, chDigit_0, chDigit_7, chNull
  150. };
  151. //
  152. //   2^0  x 2^-1075 =   2^-1075 =  2.4703282292062327208828439643411e-324
  153. //                                 +
  154. //                                  2.4703 282292 062327 208828 439643 411
  155. //                                 e-324
  156. //
  157. static const XMLCh DBL_MIN_POSITIVE[] =
  158. {
  159.     chPlus,
  160.     chDigit_2, chPeriod,  chDigit_4, chDigit_7, chDigit_0, chDigit_3,
  161.     chDigit_2, chDigit_8, chDigit_2, chDigit_2, chDigit_9, chDigit_2,
  162.     chDigit_0, chDigit_6, chDigit_2, chDigit_3, chDigit_2, chDigit_7,
  163.     chDigit_2, chDigit_0, chDigit_8, chDigit_8, chDigit_2, chDigit_8,
  164.     chDigit_4, chDigit_3, chDigit_9, chDigit_6, chDigit_4, chDigit_3,
  165.     chDigit_4, chDigit_1, chDigit_1, 
  166.     chLatin_E, chDash,    chDigit_3, chDigit_2, chDigit_4, chNull
  167. };
  168. static const XMLCh DBL_MAX_NEGATIVE[] =
  169. {
  170.     chDash,
  171.     chDigit_8, chPeriod,  chDigit_9, chDigit_8, chDigit_8, chDigit_4,
  172.     chDigit_6, chDigit_5, chDigit_6, chDigit_7, chDigit_4, chDigit_3,
  173.     chDigit_1, chDigit_1, chDigit_5, chDigit_7, chDigit_9, chDigit_5,
  174.     chDigit_3, chDigit_8, chDigit_6, chDigit_4, chDigit_6, chDigit_5,
  175.     chDigit_2, chDigit_5, chDigit_9, chDigit_5, chDigit_3, chDigit_9,
  176.     chDigit_4, chDigit_5, chDigit_1, 
  177.     chLatin_E, chPlus,    chDigit_3, chDigit_0, chDigit_7, chNull
  178. };
  179. static const XMLCh DBL_MIN_NEGATIVE[] =
  180. {
  181.     chDash,
  182.     chDigit_2, chPeriod,  chDigit_4, chDigit_7, chDigit_0, chDigit_3,
  183.     chDigit_2, chDigit_8, chDigit_2, chDigit_2, chDigit_9, chDigit_2,
  184.     chDigit_0, chDigit_6, chDigit_2, chDigit_3, chDigit_2, chDigit_7,
  185.     chDigit_2, chDigit_0, chDigit_8, chDigit_8, chDigit_2, chDigit_8,
  186.     chDigit_4, chDigit_3, chDigit_9, chDigit_6, chDigit_4, chDigit_3,
  187.     chDigit_4, chDigit_1, chDigit_1, 
  188.     chLatin_E, chDash,    chDigit_3, chDigit_2, chDigit_4, chNull
  189. };
  190. //
  191. // maxNegativeValue < minNegativeValue < 0 < minPositiveValue < maxPositiveValue
  192. // They are all "Inclusive value"
  193. //
  194. static XMLDouble*  maxNegativeValue = 0;
  195. static XMLDouble*  minNegativeValue = 0;
  196. static XMLDouble*  minPositiveValue = 0;
  197. static XMLDouble*  maxPositiveValue = 0;
  198. static XMLMutex* sDoubleMutex = 0;
  199. static XMLRegisterCleanup XMLDoubleCleanup;
  200. // ---------------------------------------------------------------------------
  201. //  ctor/dtor
  202. // ---------------------------------------------------------------------------
  203. XMLDouble::XMLDouble(const XMLCh* const strValue)
  204. :XMLAbstractDoubleFloat()
  205. {
  206.     init(strValue);
  207. }
  208. XMLDouble::~XMLDouble()
  209. {
  210. }
  211. //
  212. //
  213. void XMLDouble::checkBoundary(const XMLCh* const strValue)
  214. {
  215.     if (!sDoubleMutex)
  216.     {
  217.         XMLMutex* tmpMutex = new XMLMutex;
  218.         if (XMLPlatformUtils::compareAndSwap((void**)&sDoubleMutex, tmpMutex, 0))
  219.         {
  220.             // Some other thread beat us to it, so let's clean up ours.
  221.             delete tmpMutex;
  222.         }
  223.         else
  224.         {
  225.             //
  226.             // the thread who creates the mutex succesfully, to
  227.             // initialize the followings
  228.             //
  229.             maxNegativeValue = new XMLDouble(DBL_MAX_NEGATIVE);
  230.             minNegativeValue = new XMLDouble(DBL_MIN_NEGATIVE);
  231.             minPositiveValue = new XMLDouble(DBL_MIN_POSITIVE);
  232.             maxPositiveValue = new XMLDouble(DBL_MAX_POSITIVE);
  233.             // This is the real mutex.  Register it for cleanup at Termination.
  234.             XMLDoubleCleanup.registerCleanup(reinitXMLDouble);
  235.         }
  236.     }
  237.     //
  238.     // by-pass boundary check for boundary value itself
  239.     //
  240.     if (( XMLString::compareString(strValue, DBL_MAX_NEGATIVE) == 0 ) ||
  241.         ( XMLString::compareString(strValue, DBL_MIN_NEGATIVE) == 0 ) ||
  242.         ( XMLString::compareString(strValue, DBL_MIN_POSITIVE) == 0 ) ||
  243.         ( XMLString::compareString(strValue, DBL_MAX_POSITIVE) == 0 )  )
  244.         return;
  245.     //  error: this < maxNegativeValue
  246.     if ( compareValues(this, maxNegativeValue) == -1 )
  247.     {
  248.         ThrowXML2(NumberFormatException
  249.                 , XMLExcepts::XMLNUM_DBL_FLT_maxNeg
  250.                 , strValue
  251.                 , DBL_MAX_NEGATIVE);
  252.     }
  253.     //  error: this > maxPositiveValue
  254.     if ( compareValues(this, maxPositiveValue) ==  1 )
  255.     {
  256.         ThrowXML2(NumberFormatException
  257.                 , XMLExcepts::XMLNUM_DBL_FLT_maxPos
  258.                 , strValue
  259.                 , DBL_MAX_POSITIVE);
  260.     }
  261.     //  minNegativeValue < this < minPositiveValue
  262.     //  value is not be representable
  263.     if (( compareValues(this, minNegativeValue) ==  1 ) &&
  264.          ( compareValues(this, minPositiveValue) == -1 )  )
  265.     {
  266.         ThrowXML3(NumberFormatException
  267.                 , XMLExcepts::XMLNUM_DBL_FLT_minNegPos
  268.                 , strValue
  269.                 , DBL_MIN_NEGATIVE
  270.                 , DBL_MIN_POSITIVE);
  271.     }
  272. }
  273. // -----------------------------------------------------------------------
  274. //  Notification that lazy data has been deleted
  275. // -----------------------------------------------------------------------
  276. void XMLDouble::reinitXMLDouble() {
  277.     delete sDoubleMutex;
  278.     sDoubleMutex = 0;
  279.     delete maxNegativeValue;
  280.     maxNegativeValue = 0;
  281.     delete minNegativeValue;
  282.     minNegativeValue = 0;
  283.     delete minPositiveValue;
  284.     minPositiveValue = 0;
  285.     delete maxPositiveValue;
  286.     maxPositiveValue = 0;
  287. }