-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathBinaryPrimitives.cs
631 lines (559 loc) · 26.6 KB
/
BinaryPrimitives.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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
namespace System.Buffers.Binary
{
/// <summary>
/// Reads bytes as primitives with specific endianness.
/// </summary>
public static class BinaryPrimitives
{
/// <summary>
/// Reads an System.Int16 from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static short ReadInt16BigEndian(SpanByte source)
{
if (source.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
return (short)(source[0] << 8 | source[1]);
}
/// <summary>
/// Reads an System.Int16 from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static short ReadInt16LittleEndian(SpanByte source)
{
if (source.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
return (short)(source[1] << 8 | source[0]);
}
/// <summary>
/// Reads an System.Int32 from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static int ReadInt32BigEndian(SpanByte source)
{
if (source.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
return (int)(source[0] << 24 | source[1] << 16 | source[2] << 8 | source[3]);
}
/// <summary>
/// Reads an System.Int32 from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static int ReadInt32LittleEndian(SpanByte source)
{
if (source.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
return (int)(source[3] << 24 | source[2] << 16 | source[1] << 8 | source[0]);
}
/// <summary>
/// Reads an System.Int64 from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static long ReadInt64BigEndian(SpanByte source)
{
if (source.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
return (long)source[0] << 56 | (long)source[1] << 48 | (long)source[2] << 40 | (long)source[3] << 32 |
(long)source[4] << 24 | (long)source[5] << 16 | (long)source[6] << 8 | (long)source[7];
}
/// <summary>
/// Reads an System.Int64 from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static long ReadInt64LittleEndian(SpanByte source)
{
if (source.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
return (long)source[7] << 56 | (long)source[6] << 48 | (long)source[5] << 40 | (long)source[4] << 32 |
(long)source[3] << 24 | (long)source[2] << 16 | (long)source[1] << 8 | (long)source[0];
}
/// <summary>
/// Reads a System.UInt16 from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static ushort ReadUInt16BigEndian(SpanByte source)
{
if (source.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
return (ushort)(source[0] << 8 | source[1]);
}
/// <summary>
/// Reads a System.UInt16 from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static ushort ReadUInt16LittleEndian(SpanByte source)
{
if (source.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
return (ushort)(source[1] << 8 | source[0]);
}
/// <summary>
/// Reads a System.UInt32 from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns> The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static uint ReadUInt32BigEndian(SpanByte source)
{
if (source.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
return (uint)(source[0] << 24 | source[1] << 16 | source[2] << 8 | source[3]);
}
/// <summary>
/// Reads a System.UInt32 from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span of bytes to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static uint ReadUInt32LittleEndian(SpanByte source)
{
if (source.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
return (uint)(source[3] << 24 | source[2] << 16 | source[1] << 8 | source[0]);
}
/// <summary>
/// Reads a System.UInt64 from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span of bytes to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static ulong ReadUInt64BigEndian(SpanByte source)
{
if (source.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
return (ulong)source[0] << 56 | (ulong)source[1] << 48 | (ulong)source[2] << 40 | (ulong)source[3] << 32 |
(ulong)source[4] << 24 | (ulong)source[5] << 16 | (ulong)source[6] << 8 | (ulong)source[7];
}
/// <summary>
/// Reads a System.UInt64 from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span of bytes to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static ulong ReadUInt64LittleEndian(SpanByte source)
{
if (source.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
return (ulong)source[7] << 56 | (ulong)source[6] << 48 | (ulong)source[5] << 40 | (ulong)source[4] << 32 |
(ulong)source[3] << 24 | (ulong)source[2] << 16 | (ulong)source[1] << 8 | (ulong)source[0];
}
/// <summary>
/// Reads a <see cref="float"/> from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain a <see cref="float"/>.</exception>
public static float ReadSingleBigEndian(SpanByte source)
{
if (source.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
uint ieee754_bits = ReadUInt32BigEndian(source);
float flt;
unsafe
{
*(IntPtr*)&flt = *(IntPtr*)&ieee754_bits; // https://stackoverflow.com/a/57532166/281337
}
// This assignment is required. Without it, the CLR will continue to use the ieee754_bits value (but only in Release builds).
float converted = flt;
return converted;
}
/// <summary>
/// Reads a <see cref="float"/> from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain a <see cref="float"/>.</exception>
public static float ReadSingleLittleEndian(SpanByte source)
{
if (source.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
uint ieee754_bits = ReadUInt32LittleEndian(source);
float flt;
unsafe
{
*(IntPtr*)&flt = *(IntPtr*)&ieee754_bits; // https://stackoverflow.com/a/57532166/281337
}
// This assignment is required. Without it, the CLR will continue to use the ieee754_bits value (but only in Release builds).
float converted = flt;
return converted;
}
/// <summary>
/// Reads a <see cref="double"/> from the beginning of a read-only span of bytes, as big endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The big endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain a <see cref="double"/>.</exception>
public static double ReadDoubleBigEndian(SpanByte source)
{
if (source.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
long bits = ReadInt64BigEndian(source);
double dbl;
unsafe
{
dbl = *(double*)&bits;
}
return dbl;
}
/// <summary>
/// Reads a <see cref="double"/> from the beginning of a read-only span of bytes, as little endian.
/// </summary>
/// <param name="source">The read-only span to read.</param>
/// <returns>The little endian value.</returns>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain a <see cref="double"/>.</exception>
public static double ReadDoubleLittleEndian(SpanByte source)
{
if (source.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
long bits = ReadInt64LittleEndian(source);
double dbl;
unsafe
{
dbl = *(double*)&bits;
}
return dbl;
}
/// <summary>
/// Writes an System.Int16 into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static void WriteInt16BigEndian(SpanByte destination, short value)
{
if (destination.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
destination[0] = (byte)(value >> 8);
destination[1] = (byte)value;
}
/// <summary>
/// Writes an System.Int16 into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static void WriteInt16LittleEndian(SpanByte destination, short value)
{
if (destination.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
destination[1] = (byte)(value >> 8);
destination[0] = (byte)value;
}
/// <summary>
/// Writes an System.Int32 into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static void WriteInt32BigEndian(SpanByte destination, int value)
{
if (destination.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
destination[0] = (byte)(value >> 24);
destination[1] = (byte)(value >> 16);
destination[2] = (byte)(value >> 8);
destination[3] = (byte)value;
}
/// <summary>
/// Writes an System.Int32 into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static void WriteInt32LittleEndian(SpanByte destination, int value)
{
if (destination.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
destination[3] = (byte)(value >> 24);
destination[2] = (byte)(value >> 16);
destination[1] = (byte)(value >> 8);
destination[0] = (byte)value;
}
/// <summary>
/// Writes an System.Int64 into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static void WriteInt64BigEndian(SpanByte destination, long value)
{
if (destination.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
destination[0] = (byte)(value >> 56);
destination[1] = (byte)(value >> 48);
destination[2] = (byte)(value >> 40);
destination[3] = (byte)(value >> 32);
destination[4] = (byte)(value >> 24);
destination[5] = (byte)(value >> 16);
destination[6] = (byte)(value >> 8);
destination[7] = (byte)value;
}
/// <summary>
/// Writes an System.Int64 into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static void WriteInt64LittleEndian(SpanByte destination, long value)
{
if (destination.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
destination[7] = (byte)(value >> 56);
destination[6] = (byte)(value >> 48);
destination[5] = (byte)(value >> 40);
destination[4] = (byte)(value >> 32);
destination[3] = (byte)(value >> 24);
destination[2] = (byte)(value >> 16);
destination[1] = (byte)(value >> 8);
destination[0] = (byte)value;
}
/// <summary>
/// Writes a System.UInt16 into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static void WriteUInt16BigEndian(SpanByte destination, ushort value)
{
if (destination.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
destination[0] = (byte)(value >> 8);
destination[1] = (byte)value;
}
/// <summary>
/// Writes a System.UInt16 into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int16.</exception>
public static void WriteUInt16LittleEndian(SpanByte destination, ushort value)
{
if (destination.Length < 2)
{
throw new ArgumentOutOfRangeException();
}
destination[1] = (byte)(value >> 8);
destination[0] = (byte)value;
}
/// <summary>
/// Writes a System.UInt32 into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static void WriteUInt32BigEndian(SpanByte destination, uint value)
{
if (destination.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
destination[0] = (byte)(value >> 24);
destination[1] = (byte)(value >> 16);
destination[2] = (byte)(value >> 8);
destination[3] = (byte)value;
}
/// <summary>
/// Writes a System.UInt32 into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int32.</exception>
public static void WriteUInt32LittleEndian(SpanByte destination, uint value)
{
if (destination.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
destination[3] = (byte)(value >> 24);
destination[2] = (byte)(value >> 16);
destination[1] = (byte)(value >> 8);
destination[0] = (byte)value;
}
/// <summary>
/// Writes a System.UInt64 into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static void WriteUInt64BigEndian(SpanByte destination, ulong value)
{
if (destination.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
destination[0] = (byte)(value >> 56);
destination[1] = (byte)(value >> 48);
destination[2] = (byte)(value >> 40);
destination[3] = (byte)(value >> 32);
destination[4] = (byte)(value >> 24);
destination[5] = (byte)(value >> 16);
destination[6] = (byte)(value >> 8);
destination[7] = (byte)value;
}
/// <summary>
/// Writes a System.UInt64 into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Source is too small to contain an System.Int64.</exception>
public static void WriteUInt64LittleEndian(SpanByte destination, ulong value)
{
if (destination.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
destination[7] = (byte)(value >> 56);
destination[6] = (byte)(value >> 48);
destination[5] = (byte)(value >> 40);
destination[4] = (byte)(value >> 32);
destination[3] = (byte)(value >> 24);
destination[2] = (byte)(value >> 16);
destination[1] = (byte)(value >> 8);
destination[0] = (byte)value;
}
/// <summary>
/// Writes a <see cref="float"/> into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Destination is too small to contain a <see cref="float"/>.</exception>
public static void WriteSingleBigEndian(SpanByte destination, float value)
{
if (destination.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
uint ieee754_bits;
unsafe
{
*(IntPtr*)&ieee754_bits = *(IntPtr*)&value; // https://stackoverflow.com/a/57532166/281337
}
// This assignment is needed to prevent the CLR from throwing CLR_E_WRONG_TYPE when the next method performs the bitshifting.
uint converted = ieee754_bits;
WriteUInt32BigEndian(destination, converted);
}
/// <summary>
/// Writes a <see cref="float"/> into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Destination is too small to contain a <see cref="float"/>.</exception>
public static void WriteSingleLittleEndian(SpanByte destination, float value)
{
if (destination.Length < 4)
{
throw new ArgumentOutOfRangeException();
}
uint ieee754_bits;
unsafe
{
*(IntPtr*)&ieee754_bits = *(IntPtr*)&value; // https://stackoverflow.com/a/57532166/281337
}
// This assignment is needed to prevent the CLR from throwing CLR_E_WRONG_TYPE when the next method performs the bitshifting.
uint converted = ieee754_bits;
WriteUInt32LittleEndian(destination, converted);
}
/// <summary>
/// Writes a <see cref="double"/> into a span of bytes, as big endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as big endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Destination is too small to contain a <see cref="double"/>.</exception>
public static void WriteDoubleBigEndian(SpanByte destination, double value)
{
if (destination.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
long bits;
unsafe
{
bits = *(long*)&value;
}
WriteInt64BigEndian(destination, bits);
}
/// <summary>
/// Writes a <see cref="double"/> into a span of bytes, as little endian.
/// </summary>
/// <param name="destination">The span of bytes where the value is to be written, as little endian.</param>
/// <param name="value">The value to write into the span of bytes.</param>
/// <exception cref="ArgumentOutOfRangeException">Destination is too small to contain a <see cref="double"/>.</exception>
public static void WriteDoubleLittleEndian(SpanByte destination, double value)
{
if (destination.Length < 8)
{
throw new ArgumentOutOfRangeException();
}
long bits;
unsafe
{
bits = *(long*)&value;
}
WriteInt64LittleEndian(destination, bits);
}
}
}