-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathJsonNumber.cs
317 lines (273 loc) · 9.47 KB
/
JsonNumber.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
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Text.Json.Nodes;
namespace System.Text.Json.JsonDiffPatch
{
internal struct JsonNumber
{
private long? _longValue;
private decimal? _decimalValue;
private double? _doubleValue;
private readonly float? _floatValue;
private bool _isValueRead;
// Keep as field to avoid copy
public readonly JsonElement Element;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(in JsonElement element)
{
Debug.Assert(element.ValueKind is JsonValueKind.Number,
$"Expect JSON element type {JsonValueKind.Number:G}, but found {element.ValueKind:G}.");
Parent = null;
HasElement = true;
Element = element;
_longValue = null;
_decimalValue = null;
_doubleValue = null;
_floatValue = null;
_isValueRead = false;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, int value)
: this(parent)
{
_longValue = Convert.ToInt64(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, long value)
: this(parent)
{
_longValue = value;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, double value)
: this(parent)
{
_doubleValue = value;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, short value)
: this(parent)
{
_longValue = Convert.ToInt64(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, decimal value)
: this(parent)
{
_decimalValue = value;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, byte value)
: this(parent)
{
_longValue = Convert.ToInt64(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, float value)
: this(parent)
{
_floatValue = value;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, uint value)
: this(parent)
{
_longValue = Convert.ToInt64(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, ushort value)
: this(parent)
{
_longValue = Convert.ToInt64(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, ulong value)
: this(parent)
{
_decimalValue = Convert.ToDecimal(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public JsonNumber(JsonValue parent, sbyte value)
: this(parent)
{
_longValue = Convert.ToInt64(value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private JsonNumber(JsonValue parent)
{
Debug.Assert(parent is not null);
Parent = parent;
HasElement = false;
Element = default;
_longValue = null;
_decimalValue = null;
_doubleValue = null;
_floatValue = null;
_isValueRead = true;
}
public JsonValue? Parent { get; }
public bool HasElement { get; }
private long? LongValue
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
CreateValue();
return _longValue;
}
}
private decimal? DecimalValue
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
CreateValue();
return _decimalValue;
}
}
private double? DoubleValue
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
CreateValue();
return _doubleValue;
}
}
private float? FloatValue
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
CreateValue();
return _floatValue;
}
}
private void CreateValue()
{
if (_isValueRead)
{
return;
}
if (HasElement)
{
if (Element.TryGetInt64(out var longValue))
{
_longValue = longValue;
}
else if (Element.TryGetDecimal(out var decimalValue))
{
_decimalValue = decimalValue;
}
else if (Element.TryGetDouble(out var doubleValue))
{
_doubleValue = doubleValue;
}
}
_isValueRead = true;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private decimal GetDecimal() => DecimalValue ?? (LongValue.HasValue
? Convert.ToDecimal(LongValue.Value)
: DoubleValue.HasValue
? Convert.ToDecimal(DoubleValue.Value)
: Convert.ToDecimal(FloatValue!.Value));
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private double GetDouble() => DoubleValue ?? (LongValue.HasValue
? Convert.ToDouble(LongValue.Value)
: Convert.ToDouble(FloatValue!.Value));
public int CompareTo(ref JsonNumber another)
{
if (DecimalValue.HasValue || another.DecimalValue.HasValue)
{
return GetDecimal().CompareTo(another.GetDecimal());
}
if (DoubleValue.HasValue || FloatValue.HasValue ||
another.DoubleValue.HasValue || another.FloatValue.HasValue)
{
return JsonValueComparer.CompareDouble(GetDouble(), another.GetDouble());
}
return LongValue!.Value.CompareTo(another.LongValue!.Value);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool RawTextEquals(ref JsonNumber another)
{
if (!HasElement || HasElement != another.HasElement)
{
return false;
}
return string.Equals(Element.GetRawText(), another.Element.GetRawText());
}
public static bool TryGetJsonNumber(JsonValue jsonValue, out JsonNumber result)
{
if (jsonValue.TryGetValue<JsonElement>(out var element))
{
if (element.ValueKind is JsonValueKind.Number)
{
result = new JsonNumber(element);
return true;
}
}
else
{
if (jsonValue.TryGetValue<int>(out var intValue))
{
result = new JsonNumber(jsonValue, intValue);
return true;
}
if (jsonValue.TryGetValue<long>(out var longValue))
{
result = new JsonNumber(jsonValue, longValue);
return true;
}
if (jsonValue.TryGetValue<double>(out var doubleValue))
{
result = new JsonNumber(jsonValue, doubleValue);
return true;
}
if (jsonValue.TryGetValue<short>(out var shortValue))
{
result = new JsonNumber(jsonValue, shortValue);
return true;
}
if (jsonValue.TryGetValue<decimal>(out var decimalValue))
{
result = new JsonNumber(jsonValue, decimalValue);
return true;
}
if (jsonValue.TryGetValue<byte>(out var byteValue))
{
result = new JsonNumber(jsonValue, byteValue);
return true;
}
if (jsonValue.TryGetValue<float>(out var floatValue))
{
result = new JsonNumber(jsonValue, floatValue);
return true;
}
if (jsonValue.TryGetValue<uint>(out var uintValue))
{
result = new JsonNumber(jsonValue, uintValue);
return true;
}
if (jsonValue.TryGetValue<ushort>(out var ushortValue))
{
result = new JsonNumber(jsonValue, ushortValue);
return true;
}
if (jsonValue.TryGetValue<ulong>(out var ulongValue))
{
result = new JsonNumber(jsonValue, ulongValue);
return true;
}
if (jsonValue.TryGetValue<sbyte>(out var sbyteValue))
{
result = new JsonNumber(jsonValue, sbyteValue);
return true;
}
}
result = default;
return false;
}
}
}