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

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001-2003 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.9  2003/05/16 06:01:53  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.8  2003/05/15 19:07:46  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.7  2003/04/29 18:13:36  peiyongz
  65.  * cut link to XMLBigInteger, patch from Khaled Noaman
  66.  *
  67.  * Revision 1.6  2003/02/25 17:24:18  peiyongz
  68.  * Schema Errata: E2-44 totalDigits/fractDigits
  69.  *
  70.  * Revision 1.5  2003/02/02 23:54:43  peiyongz
  71.  * getFormattedString() added to return original and converted value.
  72.  *
  73.  * Revision 1.4  2003/01/30 21:55:22  tng
  74.  * Performance: create getRawData which is similar to toString but return the internal data directly, user is not required to delete the returned memory.
  75.  *
  76.  * Revision 1.3  2002/11/04 15:22:05  tng
  77.  * C++ Namespace Support.
  78.  *
  79.  * Revision 1.2  2002/08/13 22:11:23  peiyongz
  80.  * Fix to Bug#9442
  81.  *
  82.  * Revision 1.1.1.1  2002/02/01 22:22:14  peiyongz
  83.  * sane_include
  84.  *
  85.  * Revision 1.8  2001/08/08 18:33:44  peiyongz
  86.  * fix: unresolved symbol warning for 'pow'.
  87.  *
  88.  * Revision 1.7  2001/07/25 19:07:42  peiyongz
  89.  * Fix to AIX compilation error: The function abs must have a prototype.
  90.  *
  91.  * Revision 1.6  2001/07/24 13:58:11  peiyongz
  92.  * XMLDouble and related supporting methods from XMLBigInteger/XMLBigDecimal
  93.  *
  94.  * Revision 1.5  2001/06/07 20:55:21  tng
  95.  * Fix no newline at the end warning.  By Pei Yong Zhang.
  96.  *
  97.  * Revision 1.4  2001/05/18 20:17:55  tng
  98.  * Schema: More exception messages in XMLBigDecimal/XMLBigInteger/DecimalDatatypeValidator.  By Pei Yong Zhang.
  99.  *
  100.  * Revision 1.3  2001/05/18 13:22:54  tng
  101.  * Schema: Exception messages in DatatypeValidator.  By Pei Yong Zhang.
  102.  *
  103.  * Revision 1.2  2001/05/11 13:26:30  tng
  104.  * Copyright update.
  105.  *
  106.  * Revision 1.1  2001/05/10 20:51:20  tng
  107.  * Schema: Add DecimalDatatypeValidator and XMLBigDecimal, XMLBigInteger.  By Pei Yong Zhang.
  108.  *
  109.  */
  110. // ---------------------------------------------------------------------------
  111. //  Includes
  112. // ---------------------------------------------------------------------------
  113. #include <xercesc/util/XMLBigDecimal.hpp>
  114. #include <xercesc/util/PlatformUtils.hpp>
  115. #include <xercesc/util/TransService.hpp>
  116. #include <xercesc/util/NumberFormatException.hpp>
  117. #include <xercesc/util/XMLUniDefs.hpp>
  118. XERCES_CPP_NAMESPACE_BEGIN
  119. /**
  120.  * Constructs a BigDecimal from a string containing an optional (plus | minus)
  121.  * sign followed by a sequence of zero or more decimal digits, optionally
  122.  * followed by a fraction, which consists of a decimal point followed by
  123.  * zero or more decimal digits.  The string must contain at least one
  124.  * digit in the integer or fractional part.  The scale of the resulting
  125.  * BigDecimal will be the number of digits to the right of the decimal
  126.  * point in the string, or 0 if the string contains no decimal point.
  127.  * Any extraneous characters (including whitespace) will result in
  128.  * a NumberFormatException.
  129.  * since parseBigDecimal()  may throw exception,
  130.  * caller of XMLBigDecimal need to catch it.
  131. //
  132. **/
  133. XMLBigDecimal::XMLBigDecimal(const XMLCh* const strValue,
  134.                              MemoryManager* const manager)
  135. : fSign(0)
  136. , fTotalDigits(0)
  137. , fScale(0)
  138. , fIntVal(0)
  139. , fRawData(0)
  140. , fMemoryManager(manager)
  141. {
  142.     if ((!strValue) || (!*strValue))
  143.         ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_emptyString);
  144.     try
  145.     {
  146.         parseBigDecimal(strValue);
  147.         fRawData = XMLString::replicate(strValue, fMemoryManager);
  148.     }
  149.     catch(...)
  150.     {
  151.         cleanUp();
  152.         throw;
  153.     }
  154. }
  155. XMLBigDecimal::~XMLBigDecimal()
  156. {
  157.     cleanUp();
  158. }
  159. void XMLBigDecimal::cleanUp()
  160. {
  161.     if (fIntVal)
  162.         fMemoryManager->deallocate(fIntVal); //delete [] fIntVal;
  163.     if (fRawData)
  164.         fMemoryManager->deallocate(fRawData); //XMLString::release(&fRawData);
  165. }
  166. void XMLBigDecimal::parseBigDecimal(const XMLCh* const toConvert)
  167. {
  168.     // Scan past any whitespace. If we hit the end, then return failure
  169.     const XMLCh* startPtr = toConvert;
  170.     while (XMLPlatformUtils::fgTransService->isSpace(*startPtr))
  171.         startPtr++;
  172.     if (!*startPtr)
  173.         ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_WSString);
  174.     // Start at the end and work back through any whitespace
  175.     const XMLCh* endPtr = toConvert + XMLString::stringLen(toConvert);
  176.     while (XMLPlatformUtils::fgTransService->isSpace(*(endPtr - 1)))
  177.         endPtr--;
  178.     // '+' or '-' is allowed only at the first position
  179.     fSign = 1;
  180.     if (*startPtr == chDash)
  181.     {
  182.         fSign = -1;
  183.         startPtr++;
  184.     }
  185.     else if (*startPtr == chPlus)
  186.     {
  187.         startPtr++;        // skip the '+'
  188.     }
  189.     // remove leading zeros
  190.     while (*startPtr == chDigit_0)
  191.         startPtr++;
  192.     // containning zero, only zero, nothing but zero
  193.     // it is a zero, indeed
  194.     if (!*startPtr)
  195.     {
  196.         fSign = 0;
  197.         fIntVal = (XMLCh*) fMemoryManager->allocate(sizeof(XMLCh)); //new XMLCh[1];
  198.         fIntVal[0] = chNull;
  199.         return;
  200.     }
  201.     fIntVal = (XMLCh*) fMemoryManager->allocate
  202.     (
  203.         (endPtr - startPtr + 1) * sizeof(XMLCh)
  204.     ); //new XMLCh[endPtr - startPtr + 1];
  205.     XMLCh* retPtr = fIntVal;
  206.     // Scan data
  207.     bool   dotSignFound = false;
  208.     while (startPtr < endPtr)
  209.     {
  210.         if (*startPtr == chPeriod)
  211.         {
  212.             if (dotSignFound == false)
  213.             {
  214.                 dotSignFound = true;
  215.                 fScale = endPtr - startPtr - 1;
  216.                 startPtr++;
  217.                 continue;
  218.             }
  219.             else  // '.' is allowed only once
  220.                 ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_2ManyDecPoint);
  221.         }
  222.         // If not valid decimal digit, then an error
  223.         if ((*startPtr < chDigit_0) || (*startPtr > chDigit_9))
  224.             ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_Inv_chars);
  225.         // copy over
  226.         *retPtr++ = *startPtr++;
  227.         fTotalDigits++;
  228.     }
  229.     /***
  230.     E2-44 totalDigits
  231.      ... by restricting it to numbers that are expressible as i