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

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.  * $Log: XMLBigDecimal.cpp,v $
  58.  * Revision 1.8  2001/08/08 18:33:44  peiyongz
  59.  * fix: unresolved symbol warning for 'pow'.
  60.  *
  61.  * Revision 1.7  2001/07/25 19:07:42  peiyongz
  62.  * Fix to AIX compilation error: The function abs must have a prototype.
  63.  *
  64.  * Revision 1.6  2001/07/24 13:58:11  peiyongz
  65.  * XMLDouble and related supporting methods from XMLBigInteger/XMLBigDecimal
  66.  *
  67.  * Revision 1.5  2001/06/07 20:55:21  tng
  68.  * Fix no newline at the end warning.  By Pei Yong Zhang.
  69.  *
  70.  * Revision 1.4  2001/05/18 20:17:55  tng
  71.  * Schema: More exception messages in XMLBigDecimal/XMLBigInteger/DecimalDatatypeValidator.  By Pei Yong Zhang.
  72.  *
  73.  * Revision 1.3  2001/05/18 13:22:54  tng
  74.  * Schema: Exception messages in DatatypeValidator.  By Pei Yong Zhang.
  75.  *
  76.  * Revision 1.2  2001/05/11 13:26:30  tng
  77.  * Copyright update.
  78.  *
  79.  * Revision 1.1  2001/05/10 20:51:20  tng
  80.  * Schema: Add DecimalDatatypeValidator and XMLBigDecimal, XMLBigInteger.  By Pei Yong Zhang.
  81.  *
  82.  */
  83. // ---------------------------------------------------------------------------
  84. //  Includes
  85. // ---------------------------------------------------------------------------
  86. #include <util/XMLBigDecimal.hpp>
  87. #include <util/PlatformUtils.hpp>
  88. #include <util/XMLString.hpp>
  89. #include <util/XMLUniDefs.hpp>
  90. #include <util/NumberFormatException.hpp>
  91. #include <util/TransService.hpp>
  92. #include <util/Janitor.hpp>
  93. /**
  94.  * Constructs a BigDecimal from a string containing an optional (plus | minus)
  95.  * sign followed by a sequence of zero or more decimal digits, optionally
  96.  * followed by a fraction, which consists of a decimal point followed by
  97.  * zero or more decimal digits.  The string must contain at least one
  98.  * digit in the integer or fractional part.  The scale of the resulting
  99.  * BigDecimal will be the number of digits to the right of the decimal
  100.  * point in the string, or 0 if the string contains no decimal point.
  101.  * Any extraneous characters (including whitespace) will result in
  102.  * a NumberFormatException.
  103.  * since parseBigDecimal and XMLBigInteger() may throw exception, 
  104.  * caller of XMLBigDecimal need to catch it.
  105. //
  106. **/
  107. XMLBigDecimal::XMLBigDecimal(const XMLCh* const strValue)
  108. :fIntVal(0)
  109. ,fScale(0)
  110. {
  111.     if (!strValue)
  112.         ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_emptyString);
  113.     XMLCh* ret_value = new XMLCh[XMLString::stringLen(strValue)+1];
  114.     ArrayJanitor<XMLCh> janName(ret_value);
  115.     parseBigDecimal(strValue, ret_value, fScale);
  116.     fIntVal = new XMLBigInteger(ret_value);
  117. }
  118. XMLBigDecimal::XMLBigDecimal(const XMLBigDecimal& toCopy)
  119. :fIntVal(0)
  120. ,fScale(toCopy.getScale())
  121. {
  122.     //invoke XMLBigInteger' copy ctor
  123.     fIntVal = new XMLBigInteger(*(toCopy.getValue()));
  124. }
  125. XMLBigDecimal::XMLBigDecimal(const XMLBigDecimal& toCopy, const int addExponent)
  126. :fIntVal(0)
  127. ,fScale(toCopy.getScale())
  128. {
  129.     //invoke XMLBigInteger' copy ctor
  130.     fIntVal = new XMLBigInteger(*(toCopy.getValue()));
  131.  
  132.     if ( addExponent > 0 )
  133.     {
  134.         if (fScale >= (unsigned int)addExponent)
  135.         {
  136.             fScale -= addExponent;   //decrease scale
  137.         }
  138.         else
  139.         {
  140.             fIntVal->multiply(addExponent - fScale);
  141.             fScale = 0;
  142.         }
  143.     }
  144.     else // addExponent <= 0
  145.     {
  146.         //fScale += abs(addExponent);
  147.         fScale -= addExponent;    //increase scale
  148.     }
  149. }
  150. /***
  151.    *
  152.    *  Leading and trailing whitespaces are allowed, and trimmed
  153.    *
  154.    *  Only one and either of (+,-) after the leading whitespace, before
  155.    *  any other characters are allowed, '+' removed
  156.    *
  157.    *  '.' allowed and removed
  158.    *  return status: void
  159.    *  retBuffer: w/o leading and/or trailing whitespace
  160.    *             w/o '+' and containning one '-' if any
  161.    *             w/o leading zero
  162.    *             w/o '.'
  163.    *
  164.    *  scalevalue: indicate the number of digits, right to
  165.    *              the '.'
  166.    *
  167.    *  see XMLBigInteger::parseBigInteger();
  168.    *      XMLString::textToBin();
  169.    *
  170.    *  "    +000203.456"            "203456"
  171.    *  "    -000203.456"            "-203456"
  172.    *  "    -000.456"               "-456"
  173.    *
  174. ***/
  175. void XMLBigDecimal::parseBigDecimal(const XMLCh* const toConvert
  176.                                   , XMLCh* const retBuffer
  177.                                   , unsigned int & scaleValue)
  178. {
  179.     scaleValue = 0;
  180.     // If no string, then its a failure
  181.     if ((!toConvert) || (!*toConvert))
  182.         ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_emptyString);
  183.     // Scan past any whitespace. If we hit the end, then return failure
  184.     const XMLCh* startPtr = toConvert;
  185.     while (XMLPlatformUtils::fgTransService->isSpace(*startPtr))
  186.         startPtr++;
  187.     if (!*startPtr)
  188.         ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_WSString);
  189.     // Start at the end and work back through any whitespace
  190.     const XMLCh* endPtr = toConvert + XMLString::stringLen(toConvert);
  191.     while (XMLPlatformUtils::fgTransService->isSpace(*(endPtr - 1)))
  192.         endPtr--;
  193.     //
  194.     //  Work through what remains and convert each char to a digit.
  195.     //
  196.     XMLCh* retPtr = retBuffer;
  197.     //
  198.     // '+' or '-' is allowed only at the first position
  199.     //
  200.     if (*startPtr == chDash)
  201.     {       
  202.         *retPtr = chDash;  // copy the '-'
  203.         startPtr++;
  204.         retPtr++;
  205.     }
  206.     else if (*startPtr == chPlus)
  207.         startPtr++;        // skip the '+'
  208.     // Leading zero will be taken care by BigInteger
  209.     bool   dotSignFound = false;
  210.     while (startPtr < endPtr)
  211.     {
  212.         if (*startPtr == chPeriod)
  213.         {
  214.             if (dotSignFound == false)
  215.             {
  216.                 dotSignFound = true;
  217.                 scaleValue = endPtr - startPtr - 1;
  218.                 startPtr++;
  219.                 continue;
  220.             }
  221.             else  // '.' is allowed only once
  222.                 ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_2ManyDecPoint);
  223.         }
  224.         // If not valid decimal digit, then an error
  225.         if ((*startPtr < chDigit_0) || (*startPtr > chDigit_9))
  226.             ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_Inv_chars);
  227.         // copy over
  228.         *retPtr = *startPtr;
  229.         retPtr++;
  230.         startPtr++;
  231.     }
  232.     *retPtr = 0;   //terminated
  233.     return;
  234. }
  235. /**
  236.  * Returns -1, 0 or 1 as lValue is less than, equal to, or greater
  237.  * than rValue.  Two BigDecimals that are equal in value but have a
  238.  * different scale (e.g., 2.0, 2.00) are considered equal by this method.
  239. **/
  240. int XMLBigDecimal::compareValues(const XMLBigDecimal* const lValue
  241.                                , const XMLBigDecimal* const rValue)
  242. {
  243.     if ((!lValue) || (!rValue) )
  244.         ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_null_ptr);
  245.     /* Optimization: would run fine without the next three lines */
  246. int sigDiff = lValue->getSign() - rValue->getSign();
  247. if (sigDiff != 0)
  248.     return (sigDiff > 0 ? 1 : -1);
  249.     //
  250. // If signs match, scale and compare intVals
  251.     // since matchScale will destructively change the scale
  252.     // we make a copy for both
  253.     //
  254.     if (lValue->getScale() != rValue->getScale())
  255.     {
  256.         XMLBigDecimal lTemp = *lValue;
  257.        XMLBigDecimal rTemp = *rValue;
  258.     matchScale(&lTemp, &rTemp);
  259.         return XMLBigInteger::compareValues(lTemp.getValue(), rTemp.getValue());
  260.     }
  261.     return XMLBigInteger::compareValues(lValue->getValue(), rValue->getValue());
  262. }
  263. /*
  264.  * If the scales of lValue and rValue differ, rescale (destructively)
  265.  * the lower-scaled BigDecimal so they match.
  266.  *
  267.  * rescale the lower-scaled will not lose precision.
  268.  *
  269. */
  270. void XMLBigDecimal::matchScale(XMLBigDecimal* const lValue
  271.                              , XMLBigDecimal* const rValue)
  272. {
  273. if (lValue->getScale() < rValue->getScale())
  274.     lValue->reScale(rValue->getScale());
  275. else
  276.     if (lValue->getScale() > rValue->getScale())
  277.     rValue->reScale(lValue->getScale());
  278. }
  279. void XMLBigDecimal::reScale(unsigned int newScale)
  280. {
  281. if (newScale < 0)
  282.         return;
  283. /* Handle the easy cases */
  284. if (newScale == this->getScale())
  285.     return;
  286. else if (newScale > this->getScale())
  287.     {
  288.         fIntVal->multiply(newScale - this->getScale());
  289.         fScale = newScale;
  290.     }
  291. else /* scale < this.scale */
  292.     {
  293.         fIntVal->divide(this->getScale() - newScale);
  294.         fScale = newScale;
  295. }
  296.     return;
  297. }
  298. //
  299. // Add the decimal point as necessary
  300. // The caller needs to de-allocate the memory allocated by this function
  301. // Deallocate the memory allocated by XMLBigInteger
  302. //
  303. XMLCh*  XMLBigDecimal::toString() const
  304. {
  305.     // Retrieve a string (representing the value) from XMLBigInteger
  306.     // the returned buffer --ALWAYS-- contain a leading sign (+|-)
  307.     XMLCh* tmpBuf = fIntVal->toString();
  308.     // if no decimal point
  309.     if ( fScale == 0 )
  310.         return tmpBuf;
  311.     unsigned int strLen = XMLString::stringLen(tmpBuf);
  312.     //
  313.     // Sanity check here, internal error
  314.     // fScale = strLen -> .(+|-)1234 invalid
  315.     // for now, do not insert decimal point and return
  316.     //
  317.     if ( fScale >= strLen )
  318.         return tmpBuf;
  319.     // Add decimal point as needed
  320.     XMLCh* retBuf = new XMLCh[strLen+2];
  321.     XMLString::moveChars(&(retBuf[0]), &(tmpBuf[0]), strLen - fScale);
  322.     retBuf[strLen-fScale] = chPeriod;
  323.     XMLString::moveChars(&(retBuf[strLen-fScale+1]), &(tmpBuf[strLen-fScale]), fScale);
  324.     retBuf[strLen+1] = chNull;
  325.     // De-allocate the memory allocated by XMLBigInteger
  326.     delete[] tmpBuf;
  327.     return retBuf;
  328. }
  329. //
  330. //
  331. //