forked from CosmosOS/Cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneralIntegerImpl.cs
423 lines (342 loc) · 10.8 KB
/
GeneralIntegerImpl.cs
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
using System;
using System.Globalization;
using System.Text;
using IL2CPU.API;
namespace Cosmos.IL2CPU.IL.CustomImplementations.System
{
[Plug(Target = typeof(sbyte))]
public static class Int8Impl
{
public static string ToString(ref sbyte aThis)
{
bool bNegative = false;
sbyte aValue = aThis;
if (aValue < 0)
{
bNegative = true;
aValue *= -1;
}
return GeneralIntegerImplByUInt64.ToString((UInt64)aValue, bNegative);
}
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out sbyte result)
{
// Todo, consider how to implemente style and provider
throw new NotImplementedException();
//return TryParse(s, out result);
}
public static bool TryParse(string s, out sbyte result)
{
bool bCanParse = false;
result = 0;
try
{
result = Parse(s);
bCanParse = true;
}
catch(Exception)
{
// Something wrong
}
return bCanParse;
}
public static sbyte Parse(string s)
{
Int64 result = GeneralIntegerImplByUInt64.ParseSignedInteger(s);
if (result > sbyte.MaxValue || result < sbyte.MinValue)
{
throw new OverflowException();
}
return (sbyte)result;
}
}
[Plug(Target = typeof(byte))]
public static class UInt8Impl
{
public static string ToString(ref byte aThis)
{
byte aValue = aThis;
return GeneralIntegerImplByUInt64.ToString((UInt64)aValue, false);
}
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out byte result)
{
// Todo, consider how to implemente style and provider
// Exponent, "1E0", "1e3"...
// Decimal point "1.0", "3.5"
throw new NotImplementedException();
//return TryParse(s, out result);
}
public static bool TryParse(string s, out byte result)
{
bool bCanParse = false;
result = 0;
try
{
result = Parse(s);
bCanParse = true;
}
catch (Exception)
{
// Something wrong
}
return bCanParse;
}
public static byte Parse(string s)
{
UInt64 result = GeneralIntegerImplByUInt64.ParseUnsignedInteger(s);
if (result > byte.MaxValue)
{
throw new OverflowException();
}
return (byte)result;
}
}
[Plug(Target = typeof(short))]
public static class Int16Impl
{
public static string ToString(ref short aThis)
{
bool bNegative = false;
short aValue = aThis;
if (aValue < 0)
{
bNegative = true;
aValue *= -1;
}
return GeneralIntegerImplByUInt64.ToString((UInt64)aValue, bNegative);
}
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out short result)
{
// Todo, consider how to implemente style and provider
throw new NotImplementedException();
//return TryParse(s, out result);
}
public static bool TryParse(string s, out short result)
{
bool bCanParse = false;
result = 0;
try
{
result = Parse(s);
bCanParse = true;
}
catch (Exception)
{
// Something wrong
}
return bCanParse;
}
public static short Parse(string s)
{
Int64 result = GeneralIntegerImplByUInt64.ParseSignedInteger(s);
if (result > short.MaxValue || result < short.MinValue)
{
throw new OverflowException();
}
return (short)result;
}
}
[Plug(Target = typeof(ushort))]
public static class UInt16Impl
{
public static string ToString(ref ushort aThis)
{
ushort aValue = aThis;
return GeneralIntegerImplByUInt64.ToString((UInt64)aValue, false);
}
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out ushort result)
{
// Todo, consider how to implemente style and provider
throw new NotImplementedException();
//return TryParse(s, out result);
}
public static bool TryParse(string s, out ushort result)
{
bool bCanParse = false;
result = 0;
try
{
result = Parse(s);
bCanParse = true;
}
catch (Exception)
{
// Something wrong
}
return bCanParse;
}
public static ushort Parse(string s)
{
UInt64 result = GeneralIntegerImplByUInt64.ParseUnsignedInteger(s);
if (result > ushort.MaxValue)
{
throw new OverflowException();
}
return (ushort)result;
}
}
[Plug(Target = typeof(int))]
public static class Int32Impl
{
public static string ToString(ref int aThis)
{
bool bNegative = false;
int aValue = aThis;
if (aValue < 0)
{
bNegative = true;
aValue *= -1;
}
return GeneralIntegerImplByUInt64.ToString((UInt64)aValue, bNegative);
}
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out short result)
{
// Todo, consider how to implemente style and provider
throw new NotImplementedException();
//return TryParse(s, out result);
}
public static bool TryParse(string s, out int result)
{
bool bCanParse = false;
result = 0;
try
{
result = Parse(s);
bCanParse = true;
}
catch (Exception)
{
// Something wrong
}
return bCanParse;
}
public static int Parse(string s)
{
Int64 result = GeneralIntegerImplByUInt64.ParseSignedInteger(s);
if (result > int.MaxValue || result < int.MinValue)
{
throw new OverflowException();
}
return (int)result;
}
}
[Plug(Target = typeof(uint))]
public static class UInt32Impl
{
public static string ToString(ref uint aThis)
{
uint aValue = aThis;
return GeneralIntegerImplByUInt64.ToString((UInt64)aValue, false);
}
public static bool TryParse(string s, NumberStyles style, IFormatProvider provider, out uint result)
{
// Todo, consider how to implemente style and provider
throw new NotImplementedException();
//return TryParse(s, out result);
}
public static bool TryParse(string s, out uint result)
{
bool bCanParse = false;
result = 0;
try
{
result = Parse(s);
bCanParse = true;
}
catch (Exception)
{
// Something wrong
}
return bCanParse;
}
public static uint Parse(string s)
{
UInt64 result = GeneralIntegerImplByUInt64.ParseUnsignedInteger(s);
if (result > uint.MaxValue)
{
throw new OverflowException();
}
return (uint)result;
}
}
internal static class GeneralIntegerImplByUInt64
{
internal static Int64 ParseSignedInteger(string s)
{
bool bNegative;
Int64 result = (Int64)ParseInteger(s, out bNegative);
if (bNegative)
result *= -1;
return result;
}
internal static UInt64 ParseUnsignedInteger(string s)
{
bool bNegative;
UInt64 result = ParseInteger(s, out bNegative);
if (bNegative && result != 0)
{
throw new OverflowException();
}
return result;
}
/// <summary>
/// ParseInteger
/// Sole algorithm implementation of "integer Parse(string)"
/// </summary>
/// <param name="s"></param>
/// <param name="bNegative"></param>
/// <returns></returns>
private static UInt64 ParseInteger(string s, out bool bNegative)
{
UInt64 result = 0;
int nParseStartPos = 0;
bNegative = false;
if (s.Length >= 1)
{
if (s[0] == '+')
{
nParseStartPos = 1;
}
else if (s[0] == '-')
{
nParseStartPos = 1;
bNegative = true;
}
}
for (int i = nParseStartPos; i < s.Length; i++)
{
sbyte ind = (sbyte)(s[i] - '0');
if (ind < 0 || ind > 9)
{
throw new FormatException("Digit " + s[i] + " not found");
}
result = (result * 10) + (UInt64)ind;
}
return result;
}
/// <summary>
/// ToString
/// Sole algorithm implementation of "string ToString(integer)"
/// </summary>
/// <param name="aValue"></param>
/// <param name="bIsNegative"></param>
/// <returns></returns>
internal static string ToString(UInt64 aValue, bool bIsNegative)
{
char[] xResultChars = new char[21]; // 64 bit UInteger convert to string, with sign symble, max length is 21.
int xCurrentPos = xResultChars.Length - 1;
while (aValue > 0)
{
byte xPos = (byte)(aValue % 10);
aValue /= 10;
xResultChars[xCurrentPos] = (char)('0' + xPos);
xCurrentPos -= 1;
}
if (bIsNegative)
{
xResultChars[xCurrentPos] = '-';
xCurrentPos -= 1;
}
return new String(xResultChars, xCurrentPos + 1, xResultChars.Length - xCurrentPos - 1);
}
}
}