-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathTimeSeriesValue.cs
528 lines (466 loc) · 16.8 KB
/
TimeSeriesValue.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Runtime.CompilerServices;
using System.Text;
namespace Azure.IoT.TimeSeriesInsights
{
/// <summary>
/// A variant type that represents a Time Series value that is retrieved when executing Query requests.
/// </summary>
public readonly struct TimeSeriesValue
{
private static readonly object s_nullInt32 = new();
private static readonly object s_nullDouble = new();
private static readonly object s_nullBoolean = new();
private static readonly object s_nullDateTimeOffset = new();
private static readonly object s_nullTimeSpan = new();
private readonly long _i64;
private readonly object _obj;
/// <summary>
/// Get the type of the variant.
/// </summary>
public Type Type
{
get
{
if (_obj.GetType() == typeof(string))
return typeof(string);
if (_obj.GetType() == typeof(byte[]))
return typeof(string);
if (_obj.GetType() == typeof(DateTimeOffset))
return typeof(DateTimeOffset);
if (_obj.GetType() == typeof(object))
{
if (_obj == s_nullInt32)
return typeof(int?);
if (_obj == s_nullDouble)
return typeof(double?);
if (_obj == s_nullBoolean)
return typeof(bool?);
if (_obj == s_nullDateTimeOffset)
return typeof(DateTimeOffset?);
}
return (Type)_obj;
}
}
#region Int32
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The integer to represent the variant type.</param>
public TimeSeriesValue(int value)
{
_obj = typeof(int);
_i64 = value;
}
/// <summary>
/// An integer implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The integer to cast.</param>
public static implicit operator TimeSeriesValue(int value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to an integer.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator int(TimeSeriesValue variant)
{
if (!variant._obj.Equals(typeof(int)))
throw new InvalidCastException();
return (int)variant._i64;
}
#endregion
#region Nullable<Int32>
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The integer to represent the variant type.</param>
public TimeSeriesValue(int? value)
{
if (value.HasValue)
{
_obj = typeof(int?);
_i64 = value.Value;
}
else
{
_obj = s_nullInt32;
_i64 = default;
}
}
/// <summary>
/// A nullable integer implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The integer to cast.</param>
public static implicit operator TimeSeriesValue(int? value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to an integer.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator int?(TimeSeriesValue variant)
{
if (variant._obj == s_nullInt32)
return null;
if (variant._obj.Equals(typeof(int?)))
return (int)variant._i64;
throw new InvalidCastException();
}
#endregion
#region Double
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The double to represent the variant type.</param>
public TimeSeriesValue(double value)
{
_obj = typeof(double);
_i64 = Unsafe.As<double, long>(ref value);
}
/// <summary>
/// A double implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The double to cast.</param>
public static implicit operator TimeSeriesValue(double value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a double.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator double(TimeSeriesValue variant)
{
if (!variant._obj.Equals(typeof(double)))
throw new InvalidCastException();
var representation = variant._i64;
return Unsafe.As<long, double>(ref representation);
}
#endregion
#region Nullable<Double>
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The double to cast.</param>
public TimeSeriesValue(double? value)
{
if (value.HasValue)
{
_obj = typeof(double?);
double v = value.Value;
_i64 = Unsafe.As<double, long>(ref v);
}
else
{
_obj = s_nullDouble;
_i64 = default;
}
}
/// <summary>
/// A double implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The double to cast.</param>
public static implicit operator TimeSeriesValue(double? value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a double.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator double?(TimeSeriesValue variant)
{
if (variant._obj == s_nullDouble)
return null;
if (variant._obj.Equals(typeof(double?)))
{
var representation = variant._i64;
return Unsafe.As<long, double>(ref representation);
}
throw new InvalidCastException();
}
#endregion
#region Boolean
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The boolean to represent the variant type.</param>
public TimeSeriesValue(bool value)
{
_obj = typeof(bool);
_i64 = value ? 1 : 0;
}
/// <summary>
/// A boolean implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The boolean to cast.</param>
public static implicit operator TimeSeriesValue(bool value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a boolean.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator bool(TimeSeriesValue variant)
{
if (!variant._obj.Equals(typeof(bool)))
throw new InvalidCastException();
return variant._i64 == 1;
}
#endregion
#region Nullable<Boolean>
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The boolean to represent the variant type.</param>
public TimeSeriesValue(bool? value)
{
if (value.HasValue)
{
_obj = typeof(bool?);
_i64 = value.Value ? 1 : 0;
}
else
{
_obj = s_nullBoolean;
_i64 = default;
}
}
/// <summary>
/// A boolean implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The boolean to cast.</param>
public static implicit operator TimeSeriesValue(bool? value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a boolean.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator bool?(TimeSeriesValue variant)
{
if (variant._obj == s_nullBoolean)
return null;
if (variant._obj.Equals(typeof(bool?)))
return variant._i64 == 1;
throw new InvalidCastException();
}
#endregion
#region DateTimeOffset
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The DateTimeOffset to represent the variant type.</param>
public TimeSeriesValue(DateTimeOffset value)
{
if (value.Offset.Ticks == 0)
{
_i64 = value.Ticks;
_obj = typeof(DateTimeOffset);
}
else
{
_obj = value;
_i64 = 0;
}
}
/// <summary>
/// A DateTimeOffset implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The DateTimeOffset to cast.</param>
public static implicit operator TimeSeriesValue(DateTimeOffset value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a DateTimeOffset.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator DateTimeOffset(TimeSeriesValue variant)
{
if (variant._obj.Equals(typeof(DateTimeOffset)))
{
return new DateTimeOffset(variant._i64, TimeSpan.Zero);
}
if (variant._obj is DateTimeOffset dto)
{
return dto;
}
throw new InvalidCastException();
}
#endregion
#region Nullable<DateTimeOffset>
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The DateTimeOffset to represent the variant type.</param>
public TimeSeriesValue(DateTimeOffset? value)
{
if (value.HasValue)
{
if (value.Value.Offset.Ticks == 0)
{
_i64 = value.Value.Ticks;
_obj = typeof(DateTimeOffset?);
}
else
{
_i64 = 0;
_obj = value.Value;
}
}
else
{
_obj = s_nullDateTimeOffset;
_i64 = default;
}
}
/// <summary>
/// A DateTimeOffset implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The DateTimeOffset to cast.</param>
public static implicit operator TimeSeriesValue(DateTimeOffset? value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a DateTimeOffset.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator DateTimeOffset?(TimeSeriesValue variant)
{
if (variant._obj == s_nullDateTimeOffset)
return null;
if (variant._obj.Equals(typeof(DateTimeOffset?)))
return new DateTimeOffset(variant._i64, TimeSpan.Zero);
if (variant._obj is DateTimeOffset dto)
return dto;
throw new InvalidCastException();
}
#endregion
#region TimeSpan
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The TimeSpan to represent the variant type.</param>
public TimeSeriesValue(TimeSpan value)
{
_obj = typeof(TimeSpan);
_i64 = value.Ticks;
}
/// <summary>
/// A TimeSpan implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The TimeSpan to cast.</param>
public static implicit operator TimeSeriesValue(TimeSpan value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a TimeSpan.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator TimeSpan(TimeSeriesValue variant)
{
if (!variant._obj.Equals(typeof(TimeSpan)))
throw new InvalidCastException();
return new TimeSpan(variant._i64);
}
#endregion
#region Nullable<TimeSpan>
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The TimeSpan to represent the variant type.</param>
public TimeSeriesValue(TimeSpan? value)
{
if (value.HasValue)
{
_obj = typeof(TimeSpan?);
_i64 = value.Value.Ticks;
}
else
{
_obj = s_nullTimeSpan;
_i64 = default;
}
}
/// <summary>
/// A TimeSpan implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The TimeSpan to cast.</param>
public static implicit operator TimeSeriesValue(TimeSpan? value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a TimeSpan.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator TimeSpan?(TimeSeriesValue variant)
{
if (variant._obj == s_nullTimeSpan)
return null;
if (variant._obj.Equals(typeof(TimeSpan?)))
{
return new TimeSpan(variant._i64);
}
throw new InvalidCastException();
}
#endregion
#region String
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="value">The string to represent the variant type.</param>
public TimeSeriesValue(string value)
{
_obj = value;
_i64 = default;
}
/// <summary>
/// A string implicit cast operation to a TimeSeriesValue.
/// </summary>
/// <param name="value">The string to cast.</param>
public static implicit operator TimeSeriesValue(string value)
{
return new TimeSeriesValue(value);
}
/// <summary>
/// Initializes a new instance of the <see cref="TimeSeriesValue"/> struct.
/// </summary>
/// <param name="utf8"></param>
/// <param name="index"></param>
/// <param name="count"></param>
public TimeSeriesValue(byte[] utf8, int index, int count)
{
_obj = utf8;
_i64 = index << 32 | count;
}
/// <summary>
/// An TimeSeriesValue explicit cast operation to a string.
/// </summary>
/// <param name="variant">The variant to cast.</param>
public static explicit operator string(TimeSeriesValue variant)
{
string str = variant._obj as string;
if (str != null)
return str;
byte[] utf8 = variant._obj as byte[];
if (utf8 != null)
{
var decoded = Encoding.UTF8.GetString(utf8, (int)(variant._i64 << 32), (int)variant._i64);
return decoded;
}
throw new InvalidCastException();
}
#endregion
}
}