Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DecimalFormatter.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4003b91adfa6ef24d9d58d7e1947b7dda61f7e50 (plain)
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
//
// System.DecimalFormatter.cs
//
// Author:
//   Martin Weindel (martin.weindel@t-online.de)
//
// (C) Martin Weindel, Derek Holden  dholden@draper.com
//

//
// Internal class for formatting decimal numbers. 

using System.Globalization;
using System.Text;
using S = System;  // only used for switching test implementation

namespace System 
{

    internal sealed class DecimalFormatter 
    {

        private static bool ParseFormat (string format, out char specifier,  out int precision)
        {		 		 
            precision = -1;
            specifier = '\0';
		    
            int length = format.Length;
            if (length < 1 || length > 3)
                return false;
		    
            char[] chars = format.ToCharArray ();
            specifier = Char.ToUpper(chars[0]);

            if (length == 1) 
                return true;
		    
            if (length == 2) 
            {
                if (chars[1] < '0' || chars[1] > '9')
                    return false;
			    
                precision = chars[1] - '0';
            } 
            else 
            {
                if (chars[1] < '0' || chars[2] < '0' || chars[1] > '9' || chars[2] > '9')
                    return false;
			    
                precision = (chars[1] - '0') * 10 + (chars[2] - '0');
            }
		    
            return true;
        }	 

        public static string NumberToString(string format, NumberFormatInfo nfi, S.Decimal value)
        {
            char specifier;
            int precision;
            if (!DecimalFormatter.ParseFormat(format, out specifier, out precision)) 
            {
                throw new FormatException (Locale.GetText ("The specified format is invalid"));
            }

            int digits = -1;
            int decimals = 0;
            // first calculate number of digits or decimals needed for format
            switch (specifier)
            {
                case 'C':
                    decimals = (precision >= 0) ? precision : nfi.CurrencyDecimalDigits;
                    break;
                case 'F': goto case 'N'; 
                case 'N':
                    decimals = (precision >= 0) ? precision : nfi.NumberDecimalDigits;
                    break;
                case 'G':
                    digits = (precision >= 0) ? precision : 0;
                    break;
                case 'E': 
                    digits = (precision >= 0) ? precision+1 : 7;
                    break;
                case 'P': 
                    decimals = (precision >= 0) ? precision+2 : nfi.PercentDecimalDigits+2;
                    break;
                case 'Z':
                    digits = 0;
                    break;
            }

            // get digit string
            const int bufSize = 40;
            int decPos = 0, sign = 0;
#if !MSTEST
            char[] buf = new char[bufSize];
            if (S.Decimal.decimal2string(ref value, digits, decimals, buf, bufSize, out decPos, out sign) != 0) 
            {
                throw new FormatException(); // should never happen 
            }

		string TempString = new String(buf);
		TempString = TempString.Trim(new char[] {(char)0x0});
		StringBuilder sb = new StringBuilder(TempString, TempString.Length);
#else
            StringBuilder sb = new StringBuilder(bufSize);
            if (S.Decimal.decimal2string(ref value, digits, decimals, sb, bufSize, out decPos, out sign) != 0) 
            {
                throw new FormatException(); // should never happen 
            }
#endif

	    if (sb.ToString () == String.Empty && decPos > 0 && sign == 0)
		    sb.Append ('0');

            // now build the format
            switch (specifier)
            {
                case 'C': return FormatCurrency(nfi, sb, decimals, decPos, sign);
                case 'N': return FormatNumber(nfi, sb, decimals, decPos, sign);
                case 'F': return FormatFixedPoint(nfi, sb, decimals, decPos, sign);
                case 'G': return FormatGeneral(nfi, sb, digits, decPos, sign, format[0]);
                case 'E': return FormatExponential(nfi, sb, digits, decPos, sign, format[0], true);
                case 'P': return FormatPercent(nfi, sb, decimals, decPos, sign);
                case 'Z': return FormatNormalized(nfi, sb, digits, decPos, sign);
                default: 
                    throw new FormatException (Locale.GetText ("The specified format is invalid"));
            }
        }

        private static string FormatFixedPoint(NumberFormatInfo nfi, StringBuilder sb, 
            int decimals, int decPos, int sign)
        {
            if (decimals > 0)
            {
                sb.Insert((decPos <= 0) ? 1 : decPos, nfi.NumberDecimalSeparator);
            }

            if (sign != 0) 
            {
                sb.Insert(0, nfi.NegativeSign);
            }

            return sb.ToString();
        }

        private static string FormatExponential(NumberFormatInfo nfi, StringBuilder sb, 
            int digits, int decPos, int sign, char echar, bool exp3flag)
        {
            // insert decimal separator
            if (digits > 1 || (digits == 0 && sb.Length > 1)) 
            {
                sb.Insert(1, nfi.NumberDecimalSeparator);
            }

            // insert sign
            if (sign != 0)
            {
                sb.Insert(0, nfi.NegativeSign);
            }

            // append exponent
            sb.Append(echar);
            decPos--;
            sb.Append((decPos >= 0) ? nfi.PositiveSign : nfi.NegativeSign);
            if (decPos < 0) decPos *= -1;
            if (exp3flag) sb.Append('0');
            sb.Append((char)('0' + decPos/10));
            sb.Append((char)('0' + decPos%10));

            return sb.ToString();
        }

        private static string FormatGeneral(NumberFormatInfo nfi, StringBuilder sb, 
            int digits, int decPos, int sign, char gchar)
        {
            int dig = digits;
            bool bFix = (digits == 0 && decPos >= -3) || (digits >= decPos && decPos >= -3 && digits != 0);

            // remove trailing digits
            while (sb.Length > 1 && (sb.Length > decPos || !bFix) && sb[sb.Length-1] == '0')
            {
                sb.Remove(sb.Length-1, 1);
                if (dig != 0) dig--;
            }

            if (bFix)
            {
                while (decPos <= 0) 
                {
                    sb.Insert(0, '0');
                    if (dig != 0 && decPos != 0) dig++;
                    decPos++;
                }
                return FormatFixedPoint(nfi, sb, sb.Length - decPos, decPos, sign);
            }
            else
            {
                return FormatExponential(nfi, sb, dig, decPos, sign, (char)(gchar-2), false);
            }
        }

        private static string FormatGroupAndDec(StringBuilder sb, int decimals, int decPos, 
            int[] groupSizes, string groupSeparator, string decSeparator)
        {
            int offset = 0;

            // Groups
            if (decPos > 0) 
            {
                if (groupSizes != null) 
                {
                    int lastSize = 0;
                    int digitCount = 0;
                    for (int i = 0; i < groupSizes.GetLength(0); i++) 
                    {
                        int size = groupSizes[i];
                        if (size > 0) 
                        {
                            digitCount += size;
                            if (digitCount < decPos) 
                            {
                                sb.Insert(decPos - digitCount, groupSeparator);
                                offset += groupSeparator.Length;
                            }
                        }
                        lastSize = size;
                    }

                    if (lastSize > 0) 
                    {
                        while (true) 
                        {
                            digitCount +=lastSize;
                            if (digitCount >= decPos) break;
                            sb.Insert(decPos - digitCount, groupSeparator);
                            offset += groupSeparator.Length;
                        }
                    }
                }
            }

            if (decimals > 0)
            {
                sb.Insert(offset + ((decPos <= 0) ? 1 : decPos), decSeparator);
            }

            return sb.ToString();
        }

        private static string FormatNumber(NumberFormatInfo nfi, StringBuilder sb, 
            int decimals, int decPos, int sign)
        {
            string s = FormatGroupAndDec(sb, decimals, decPos,
                nfi.NumberGroupSizes, nfi.NumberGroupSeparator, nfi.NumberDecimalSeparator);

            // sign
            if (sign != 0) 
            {
                switch (nfi.NumberNegativePattern)
                {
                    case 0:
                        return "(" + s + ")";
                    case 1:
                        return nfi.NegativeSign + s;
                    case 2:
                        return nfi.NegativeSign + " " + s;
                    case 3:
                        return s + nfi.NegativeSign;
                    case 4:
                        return s + " " + nfi.NegativeSign;
                    default:
                        throw new ArgumentException(Locale.GetText ("Invalid NumberNegativePattern"));
                }
            } 
            else 
            {
                return s;
            }
        }

        private static string FormatCurrency(NumberFormatInfo nfi, StringBuilder sb, 
            int decimals, int decPos, int sign)
        {
            string s = FormatGroupAndDec(sb, decimals, decPos,
                nfi.CurrencyGroupSizes, nfi.CurrencyGroupSeparator, nfi.CurrencyDecimalSeparator);

            if (sign != 0) 
            { // negative
                switch (nfi.CurrencyNegativePattern) 
                {
                    case 0:
                        return "(" + nfi.CurrencySymbol + s + ")";
                    case 1:
                        return nfi.NegativeSign + nfi.CurrencySymbol + s;
                    case 2:
                        return nfi.CurrencySymbol + nfi.NegativeSign + s;
                    case 3:
                        return nfi.CurrencySymbol + s + nfi.NegativeSign;
                    case 4:
                        return "(" + s + nfi.CurrencySymbol + ")";
                    case 5:
                        return nfi.NegativeSign + s + nfi.CurrencySymbol;
                    case 6:
                        return s + nfi.NegativeSign + nfi.CurrencySymbol;
                    case 7:
                        return s + nfi.CurrencySymbol + nfi.NegativeSign;
                    case 8:
                        return nfi.NegativeSign + s + " " + nfi.CurrencySymbol;
                    case 9:
                        return nfi.NegativeSign + nfi.CurrencySymbol + " " + s;
                    case 10:
                        return s + " " + nfi.CurrencySymbol + nfi.NegativeSign;
                    case 11:
                        return nfi.CurrencySymbol + " " + s + nfi.NegativeSign;
                    case 12:
                        return nfi.CurrencySymbol + " " + nfi.NegativeSign + s;
                    case 13:
                        return s + nfi.NegativeSign + " " + nfi.CurrencySymbol;
                    case 14:
                        return "(" + nfi.CurrencySymbol + " " + s + ")";
                    case 15:
                        return "(" + s + " " + nfi.CurrencySymbol + ")";
                    default:
                        throw new ArgumentException(Locale.GetText ("Invalid CurrencyNegativePattern"));
                }
            }
            else 
            {
                switch (nfi.CurrencyPositivePattern) 
                {
                    case 0:
                        return nfi.CurrencySymbol + s;
                    case 1:
                        return s + nfi.CurrencySymbol;
                    case 2:
                        return nfi.CurrencySymbol + " " + s;
                    case 3:
                        return s + " " + nfi.CurrencySymbol;
                    default:
                        throw new ArgumentException(Locale.GetText ("Invalid CurrencyPositivePattern"));
                }
            }
        }

        private static string FormatPercent(NumberFormatInfo nfi, StringBuilder sb, 
            int decimals, int decPos, int sign)
        {
            string s = FormatGroupAndDec(sb, decimals, decPos+2, 
                nfi.PercentGroupSizes, nfi.PercentGroupSeparator, nfi.PercentDecimalSeparator);

            if (sign != 0) 
            { // negative
                switch (nfi.PercentNegativePattern) 
                {
                    case 0:
                        return nfi.NegativeSign + s + " " + nfi.PercentSymbol;
                    case 1:
                        return nfi.NegativeSign + s + nfi.PercentSymbol;
                    case 2:
                        return nfi.NegativeSign + nfi.PercentSymbol + s;
                    default:
                        throw new ArgumentException(Locale.GetText ("Invalid PercentNegativePattern"));
                }
            }
            else 
            {
                switch (nfi.PercentPositivePattern) 
                {
                    case 0:
                        return s + " " + nfi.PercentSymbol;
                    case 1:
                        return s + nfi.PercentSymbol;
                    case 2:
                        return nfi.PercentSymbol + s;
                    default:
                        throw new ArgumentException("Invalid PercentPositivePattern");
                }
            }
        }

	[MonoTODO]
        private static string FormatNormalized(NumberFormatInfo nfi, StringBuilder sb, 
            int digits, int decPos, int sign)
        {
            //LAMESPEC: how should this format look like ? Is this a fixed point format ?
	    throw new NotImplementedException ();
        }
    }
}