-
Notifications
You must be signed in to change notification settings - Fork 0
/
numeral.cpp
430 lines (378 loc) · 8.95 KB
/
numeral.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
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
253
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
#include "numeral.h"
#include <float.h>
#include <math.h>
#include <QDebug>
static bool isNan(double x)
{
#if defined(_MSC_VER)
return (_isnan(x) != 0);
#else
return (isnan(x) != 0);
#endif
}
//******************************************************************************************************
/*!
*\class NumeralFormat
*/
//******************************************************************************************************
NumeralFormat::NumeralFormat()
{
clear();
}
NumeralFormat::NumeralFormat(const QString &st)
{
setFormatString(st);
}
NumeralFormat::NumeralFormat(bool sign, bool thousandSeparate, int precision, bool extraPrecision, bool percent)
{
clear();
setSign(sign);
setThousandSeparate(thousandSeparate);
setPrecision(precision);
setExtraPrecision(extraPrecision);
setPercent(percent);
}
bool NumeralFormat::operator == (const NumeralFormat &another)
{
return
(m_sign == another.m_sign) &&
(m_thousandSeparate == another.m_thousandSeparate) &&
(m_precision == another.m_precision) &&
(m_extraPrecision == another.m_extraPrecision) &&
(m_percent == another.m_percent);
}
bool NumeralFormat::operator != (const NumeralFormat &another)
{
return !(operator ==(another));
}
void NumeralFormat::clear()
{
m_sign = false;
m_thousandSeparate = true;
m_precision = 0;
m_extraPrecision = true;
m_percent = false;
}
void NumeralFormat::setFormatString(const QString &st)
{
clear();
QStringRef remainSt(&st);
remainSt = remainSt.trimmed();
parse(remainSt);
}
QString NumeralFormat::formatString() const
{
QStringList result;
if (m_sign)
{
result << "+";
}
if (!m_thousandSeparate)
{
result << "0";
}
else
{
result << "0,0";
}
if (m_precision > 0)
{
result << ".";
for (int i = 0; i < m_precision; i++)
{
result << "0";
}
}
if (m_extraPrecision)
{
result << "*";
}
if (m_percent)
{
result << "%";
}
return result.join("");
}
void NumeralFormat::setSign(bool value)
{
m_sign = value;
}
bool NumeralFormat::sign() const
{
return m_sign;
}
void NumeralFormat::setThousandSeparate(bool value)
{
m_thousandSeparate = value;
}
bool NumeralFormat::thousandSeparate() const
{
return m_thousandSeparate;
}
void NumeralFormat::setPrecision(int value)
{
m_precision = value;
}
int NumeralFormat::precision() const
{
return m_precision;
}
void NumeralFormat::setExtraPrecision(bool value)
{
m_extraPrecision = value;
}
bool NumeralFormat::extraPrecision() const
{
return m_extraPrecision;
}
void NumeralFormat::setPercent(bool value)
{
m_percent = value;
}
bool NumeralFormat::percent() const
{
return m_percent;
}
void NumeralFormat::parse(const QStringRef &st)
{
QStringRef remainSt = st;
// Sign
if (remainSt.startsWith('+'))
{
m_sign = true;
remainSt = remainSt.mid(1);
}
else
{
m_sign = false;
}
// Percent
if (remainSt.endsWith('%'))
{
m_percent = true;
remainSt = remainSt.left(remainSt.length()-1);
}
else
{
m_percent = false;
}
// Extra precision
if (remainSt.endsWith('*'))
{
m_extraPrecision = true;
remainSt = remainSt.left(remainSt.length()-1);
}
else
{
m_extraPrecision = false;
}
// Split integer and fractional parts
int dotIndex = remainSt.indexOf('.');
if (dotIndex < 0)
{
// Integer part only
parseIntegerPart(remainSt);
}
else
{
parseIntegerPart(remainSt.left(dotIndex));
parseFractionalPart(remainSt.mid(dotIndex + 1));
}
}
void NumeralFormat::parseIntegerPart(const QStringRef &st)
{
m_thousandSeparate = st.contains(",");
}
void NumeralFormat::parseFractionalPart(const QStringRef &st)
{
m_precision = st.count('0');
}
//******************************************************************************************************
/*!
*\class Numeral
*/
//******************************************************************************************************
QLocale *Numeral::m_defaultLocale = NULL;
QString *Numeral::m_defaultNanStub = NULL;
Numeral::Numeral()
: m_numberFormat()
, m_locale(defaultLocale())
, m_nanStub(defaultNanStub())
{
m_locale.setNumberOptions(QLocale::OmitGroupSeparator);
}
Numeral::Numeral(const NumeralFormat &format)
: m_numberFormat(format)
, m_locale(defaultLocale())
, m_nanStub(defaultNanStub())
{
m_locale.setNumberOptions(QLocale::OmitGroupSeparator);
}
Numeral::Numeral(const NumeralFormat &format, const QLocale &locale)
: m_numberFormat(format)
, m_locale(locale)
, m_nanStub(defaultNanStub())
{
m_locale.setNumberOptions(QLocale::OmitGroupSeparator);
}
void Numeral::setNumberFormat(const NumeralFormat &value)
{
m_numberFormat = value;
}
NumeralFormat Numeral::numberFormat() const
{
return m_numberFormat;
}
void Numeral::setlocale(const QLocale &value)
{
m_locale = value;
m_locale.setNumberOptions(QLocale::OmitGroupSeparator);
}
QLocale Numeral::locale() const
{
return m_locale;
}
void Numeral::setNanStub(const QString &value)
{
m_nanStub = value;
}
QString Numeral::nanStub() const
{
return m_nanStub;
}
void Numeral::setDefaultLocale(const QLocale &value)
{
createDefaultLocaleIfNeeded();
*m_defaultLocale = value;
}
QLocale Numeral::defaultLocale()
{
createDefaultLocaleIfNeeded();
return *m_defaultLocale;
}
void Numeral::setDefaultNanStub(const QString &value)
{
createDefaultNanStubIfNeeded();
*m_defaultNanStub = value;
}
QString Numeral::defaultNanStub()
{
createDefaultNanStubIfNeeded();
return *m_defaultNanStub;
}
QString Numeral::toString(double number) const
{
if (isNan(number))
{
return m_nanStub;
}
else
{
double cnumber = (m_numberFormat.percent())? number*100.0 : number;
QString result = initialFormat(fabs(cnumber));
result = decorateTrimmingZeros(result);
result = decorateThousandSeparator(result);
result = decorateSign(result, cnumber);
if (m_numberFormat.percent())
{
result = result + m_locale.percent();
}
return result;
}
}
QString Numeral::format(double number, const NumeralFormat &numberFormat)
{
Numeral n(numberFormat);
return n.toString(number);
}
QString Numeral::decorateSign(const QString &formattedNumber, double number) const
{
QString sign;
bool isNegative = (number < -DBL_EPSILON);
bool isPositive = (number > +DBL_EPSILON);
if (isNegative)
{
sign = m_locale.negativeSign();
}
else if ((isPositive) && (m_numberFormat.sign()))
{
sign = m_locale.positiveSign();
}
return sign + formattedNumber;
}
QString Numeral::decorateThousandSeparator(const QString &formattedNumber) const
{
if (!m_numberFormat.thousandSeparate())
{
return formattedNumber;
}
else
{
QString result = formattedNumber;
int startPosition = result.indexOf(QRegExp("[0-9]"));
if (startPosition >= 0)
{
int endPosition = result.indexOf(m_locale.decimalPoint());
if (endPosition < 0)
{
endPosition = result.length();
}
for (int i = endPosition - 3; i >= startPosition + 1; i -= 3)
{
result.insert(i, m_locale.groupSeparator());
}
}
return result;
}
}
QString Numeral::decorateTrimmingZeros(const QString &formattedNumber) const
{
QString result = formattedNumber;
if (m_numberFormat.extraPrecision())
{
int decimalIndex = result.indexOf(m_locale.decimalPoint());
if (decimalIndex >= 0)
{
int stopIndex = decimalIndex + m_numberFormat.precision();
int truncateAfterIndex = stopIndex;
for (int i = result.length()-1; i >= stopIndex; i--)
{
if (result[i] != '0')
{
truncateAfterIndex = i;
break;
}
}
if (truncateAfterIndex == decimalIndex)
{
// chop off decimal splitter too
truncateAfterIndex--;
}
result = result.left(truncateAfterIndex+1);
}
}
return result;
}
QString Numeral::initialFormat(double positiveNumber) const
{
int precision = 6;
if (!m_numberFormat.extraPrecision())
{
precision = m_numberFormat.precision();
}
return m_locale.toString(positiveNumber + DBL_EPSILON, 'f', qMax(precision, 0));
}
void Numeral::createDefaultLocaleIfNeeded()
{
if (m_defaultLocale == NULL)
{
m_defaultLocale = new QLocale;
}
}
void Numeral::createDefaultNanStubIfNeeded()
{
if (m_defaultNanStub == NULL)
{
m_defaultNanStub = new QString;
}
}