Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xerces" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache\@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation, and was
* originally based on software copyright (c) 2001, International
* Business Machines, Inc., http://www.ibm.com . For more information
* on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
/*
* $Log$
* Revision 1.5 2003/02/02 23:54:43 peiyongz
* getFormattedString() added to return original and converted value.
*
* Revision 1.4 2003/01/30 21:55:22 tng
* Performance: create getRawData which is similar to toString but return the internal data directly, user is not required to delete the returned memory.
*
* Revision 1.3 2002/11/04 15:22:05 tng
* C++ Namespace Support.
*
* Revision 1.2 2002/08/13 22:11:23 peiyongz
* Fix to Bug#9442
*
* Revision 1.1.1.1 2002/02/01 22:22:14 peiyongz
* sane_include
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
*
* Revision 1.8 2001/08/08 18:33:44 peiyongz
* fix: unresolved symbol warning for 'pow'.
*
* Revision 1.7 2001/07/25 19:07:42 peiyongz
* Fix to AIX compilation error: The function abs must have a prototype.
*
* Revision 1.6 2001/07/24 13:58:11 peiyongz
* XMLDouble and related supporting methods from XMLBigInteger/XMLBigDecimal
*
* Revision 1.5 2001/06/07 20:55:21 tng
* Fix no newline at the end warning. By Pei Yong Zhang.
*
* Revision 1.4 2001/05/18 20:17:55 tng
* Schema: More exception messages in XMLBigDecimal/XMLBigInteger/DecimalDatatypeValidator. By Pei Yong Zhang.
*
* Revision 1.3 2001/05/18 13:22:54 tng
* Schema: Exception messages in DatatypeValidator. By Pei Yong Zhang.
*
* Revision 1.2 2001/05/11 13:26:30 tng
* Copyright update.
*
* Revision 1.1 2001/05/10 20:51:20 tng
* Schema: Add DecimalDatatypeValidator and XMLBigDecimal, XMLBigInteger. By Pei Yong Zhang.
*
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include <xercesc/util/XMLBigDecimal.hpp>
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/XMLString.hpp>
#include <xercesc/util/XMLUniDefs.hpp>
#include <xercesc/util/NumberFormatException.hpp>
#include <xercesc/util/TransService.hpp>
#include <xercesc/util/Janitor.hpp>
/**
* Constructs a BigDecimal from a string containing an optional (plus | minus)
* sign followed by a sequence of zero or more decimal digits, optionally
* followed by a fraction, which consists of a decimal point followed by
* zero or more decimal digits. The string must contain at least one
* digit in the integer or fractional part. The scale of the resulting
* BigDecimal will be the number of digits to the right of the decimal
* point in the string, or 0 if the string contains no decimal point.
* Any extraneous characters (including whitespace) will result in
* a NumberFormatException.
* since parseBigDecimal and XMLBigInteger() may throw exception,
* caller of XMLBigDecimal need to catch it.
//
**/
XMLBigDecimal::XMLBigDecimal(const XMLCh* const strValue)
:fIntVal(0)
,fScale(0)
{
if (!strValue)
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_emptyString);
XMLCh* ret_value = new XMLCh[XMLString::stringLen(strValue)+1];
ArrayJanitor<XMLCh> janName(ret_value);
parseBigDecimal(strValue, ret_value, fScale);
fIntVal = new XMLBigInteger(ret_value);
}
XMLBigDecimal::XMLBigDecimal(const XMLBigDecimal& toCopy)
:fIntVal(0)
,fScale(toCopy.getScale())
{
//invoke XMLBigInteger' copy ctor
fIntVal = new XMLBigInteger(*(toCopy.getValue()));
}
XMLBigDecimal::XMLBigDecimal(const XMLBigDecimal& toCopy, const int addExponent)
:fIntVal(0)
,fScale(toCopy.getScale())
{
//invoke XMLBigInteger' copy ctor
fIntVal = new XMLBigInteger(*(toCopy.getValue()));
if ( addExponent > 0 )
{
if (fScale >= (unsigned int)addExponent)
{
fScale -= addExponent; //decrease scale
}
else
{
fIntVal->multiply(addExponent - fScale);
fScale = 0;
}
}
else // addExponent <= 0
{
//fScale += abs(addExponent);
fScale -= addExponent; //increase scale
}
// KNOWN defect
// We need to adjust the decimal point with respect to the addExponent.
//
// REVISIT:
// Since this ctor is only invoked by AbstractDoubleFloat::compareValues()
// to generate temporaries for comparison and destructed after that,
// no toString() would be applied to these temporaries, and therefore
// this defect does NOT matter, for now.
//
fRawData = XMLString::replicate(toCopy.fRawData);
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
}
/***
*
* Leading and trailing whitespaces are allowed, and trimmed
*
* Only one and either of (+,-) after the leading whitespace, before
* any other characters are allowed, '+' removed
*
* '.' allowed and removed
* return status: void
* retBuffer: w/o leading and/or trailing whitespace
* w/o '+' and containning one '-' if any
* w/o leading zero
* w/o '.'
*
* scalevalue: indicate the number of digits, right to
* the '.'
*
* see XMLBigInteger::parseBigInteger();
* XMLString::textToBin();
*
* " +000203.456" "203456"
* " -000203.456" "-203456"
* " -000.456" "-456"
*
***/
void XMLBigDecimal::parseBigDecimal(const XMLCh* const toConvert
, XMLCh* const retBuffer
, unsigned int & scaleValue)
{
scaleValue = 0;
// If no string, then its a failure
if ((!toConvert) || (!*toConvert))
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_emptyString);
// Scan past any whitespace. If we hit the end, then return failure
const XMLCh* startPtr = toConvert;
while (XMLPlatformUtils::fgTransService->isSpace(*startPtr))
startPtr++;
if (!*startPtr)
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_WSString);
// Start at the end and work back through any whitespace
const XMLCh* endPtr = toConvert + XMLString::stringLen(toConvert);
while (XMLPlatformUtils::fgTransService->isSpace(*(endPtr - 1)))
endPtr--;
//
// Work through what remains and convert each char to a digit.
//
XMLCh* retPtr = retBuffer;
//
// '+' or '-' is allowed only at the first position
//
if (*startPtr == chDash)
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
*retPtr = chDash; // copy the '-'
startPtr++;
retPtr++;
}
else if (*startPtr == chPlus)
startPtr++; // skip the '+'
// Leading zero will be taken care by BigInteger
bool dotSignFound = false;
while (startPtr < endPtr)
{
if (*startPtr == chPeriod)
{
if (dotSignFound == false)
{
dotSignFound = true;
scaleValue = endPtr - startPtr - 1;
startPtr++;
continue;
}
else // '.' is allowed only once
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_2ManyDecPoint);
}
// If not valid decimal digit, then an error
if ((*startPtr < chDigit_0) || (*startPtr > chDigit_9))
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_Inv_chars);
// copy over
*retPtr = *startPtr;
retPtr++;
startPtr++;
}
*retPtr = 0; //terminated
return;
}
/**
* Returns -1, 0 or 1 as lValue is less than, equal to, or greater
* than rValue. Two BigDecimals that are equal in value but have a
* different scale (e.g., 2.0, 2.00) are considered equal by this method.
**/
int XMLBigDecimal::compareValues(const XMLBigDecimal* const lValue
, const XMLBigDecimal* const rValue)
{
if ((!lValue) || (!rValue) )
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_null_ptr);
/* Optimization: would run fine without the next three lines */
int sigDiff = lValue->getSign() - rValue->getSign();
if (sigDiff != 0)
return (sigDiff > 0 ? 1 : -1);
//
// If signs match, scale and compare intVals
// since matchScale will destructively change the scale
// we make a copy for both
//
if (lValue->getScale() != rValue->getScale())
{
XMLBigDecimal lTemp = *lValue;
XMLBigDecimal rTemp = *rValue;
matchScale(&lTemp, &rTemp);
return XMLBigInteger::compareValues(lTemp.getValue(), rTemp.getValue());
}
return XMLBigInteger::compareValues(lValue->getValue(), rValue->getValue());
}
/*
* If the scales of lValue and rValue differ, rescale (destructively)
* the lower-scaled BigDecimal so they match.
*
* rescale the lower-scaled will not lose precision.
*
*/
void XMLBigDecimal::matchScale(XMLBigDecimal* const lValue
, XMLBigDecimal* const rValue)
{
if (lValue->getScale() < rValue->getScale())
lValue->reScale(rValue->getScale());
else
if (lValue->getScale() > rValue->getScale())
rValue->reScale(lValue->getScale());
}
void XMLBigDecimal::reScale(unsigned int newScale)
{
if (newScale < 0)
return;
/* Handle the easy cases */
if (newScale == this->getScale())
return;
else if (newScale > this->getScale())
{
fIntVal->multiply(newScale - this->getScale());
fScale = newScale;
}
else /* scale < this.scale */
{
fIntVal->divide(this->getScale() - newScale);
fScale = newScale;
}
return;
}
XMLCh* XMLBigDecimal::getRawData() const
{
return fRawData;
}
const XMLCh* XMLBigDecimal::getFormattedString() const
{
return fRawData;
}
//
// The caller needs to de-allocate the memory allocated by this function
//
XMLCh* XMLBigDecimal::toString() const
{