EndianConverter.cs
14.1 KB
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
using System;
using System.Net;
namespace UniJSON
{
public static class EndianConverter
{
#if false
/*
#region Converter
/// <summary>
/// Read Uint16 From NetworkBytesOrder to HostBytesOrder
/// </summary>
/// <param name="bytes"></param>
/// <returns></returns>
public static UInt16 N2H_UInt16(this ArraySegment<Byte> self)
{
if (BitConverter.IsLittleEndian)
{
return (UInt16)(self.Get(0) << 8 | self.Get(1));
}
else
{
return BitConverter.ToUInt16(self.Array, self.Offset);
}
}
public static UInt32 N2H_UInt32(this ArraySegment<Byte> self)
{
if (BitConverter.IsLittleEndian)
{
return (UInt32)(self.Get(0) << 24 | self.Get(1) << 16 | self.Get(2) << 8 | self.Get(3));
}
else
{
return BitConverter.ToUInt32(self.Array, self.Offset);
}
}
public static UInt64 N2H_UInt64(this ArraySegment<Byte> self)
{
var uvalue = BitConverter.ToUInt64(self.Array, self.Offset);
if (BitConverter.IsLittleEndian)
{
ulong swapped =
((0x00000000000000FF) & (uvalue >> 56)
| (0x000000000000FF00) & (uvalue >> 40)
| (0x0000000000FF0000) & (uvalue >> 24)
| (0x00000000FF000000) & (uvalue >> 8)
| (0x000000FF00000000) & (uvalue << 8)
| (0x0000FF0000000000) & (uvalue << 24)
| (0x00FF000000000000) & (uvalue << 40)
| (0xFF00000000000000) & (uvalue << 56));
return swapped;
}
else
{
return uvalue;
}
}
public static Int16 N2H_Int16(this ArraySegment<Byte> self)
{
if (BitConverter.IsLittleEndian)
{
return (Int16)(self.Get(0) << 8 | self.Get(1));
}
else
{
return BitConverter.ToInt16(self.Array, self.Offset);
}
}
public static Int32 N2H_Int32(this ArraySegment<Byte> self)
{
if (BitConverter.IsLittleEndian)
{
return (Int32)(self.Get(0) << 24 | self.Get(1) << 16 | self.Get(2) << 8 | self.Get(3));
}
else
{
return BitConverter.ToInt32(self.Array, self.Offset);
}
}
public static Int64 N2H_Int64(this ArraySegment<Byte> self)
{
var value = BitConverter.ToUInt64(self.Array, self.Offset);
if (BitConverter.IsLittleEndian)
{
ulong swapped =
((0x00000000000000FF) & (value >> 56)
| (0x000000000000FF00) & (value >> 40)
| (0x0000000000FF0000) & (value >> 24)
| (0x00000000FF000000) & (value >> 8)
| (0x000000FF00000000) & (value << 8)
| (0x0000FF0000000000) & (value << 24)
| (0x00FF000000000000) & (value << 40)
| (0xFF00000000000000) & (value << 56));
return (long)swapped;
}
else
{
return (long)value;
}
}
public static Single N2H_Single(this ArraySegment<Byte> self)
{
if (BitConverter.IsLittleEndian)
{
return BitConverter.ToSingle(self.TakeReversedArray(4), 0);
}
else
{
return BitConverter.ToSingle(self.Array, self.Offset);
}
}
public static Double N2H_Double(this ArraySegment<Byte> self)
{
return BitConverter.Int64BitsToDouble(self.N2H_Int64());
}
public static void N2H_CopyTo(this ArraySegment<Byte> self, Byte[] buffer, int elementSize)
{
if (buffer.Length < self.Count) throw new ArgumentException();
for (int i = 0; i < self.Count; i += elementSize)
{
for (int j = 0; j < elementSize; ++j)
{
buffer[i + j] = self.Get(i + elementSize - 1 - j);
}
}
}
public static void N2H_CopyTo(this ArraySegment<Byte> self, Array result, Byte[] buffer)
{
if (BitConverter.IsLittleEndian)
{
if (buffer.Length < self.Count)
{
throw new ArgumentException();
}
self.N2H_CopyTo(buffer, Marshal.SizeOf(result.GetType().GetElementType()));
Buffer.BlockCopy(buffer, 0, result, 0, self.Count);
}
else
{
Buffer.BlockCopy(self.Array, self.Offset, result, 0, self.Count);
}
}
#endregion
*/
#else
#region Signed
public static Int16 NetworkByteWordToSignedNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.WordValue
{
Byte0 = bytes.Get(1),
Byte1 = bytes.Get(0),
};
return value.Signed;
}
else
{
// Network to Big
var value = new ByteUnion.WordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
};
return value.Signed;
}
}
public static Int32 NetworkByteDWordToSignedNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.DWordValue
{
Byte0 = bytes.Get(3),
Byte1 = bytes.Get(2),
Byte2 = bytes.Get(1),
Byte3 = bytes.Get(0),
};
return value.Signed;
}
else
{
// Network to Big
var value = new ByteUnion.DWordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
Byte2 = bytes.Get(2),
Byte3 = bytes.Get(3),
};
return value.Signed;
}
}
public static Int64 NetworkByteQWordToSignedNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.QWordValue
{
Byte0 = bytes.Get(7),
Byte1 = bytes.Get(6),
Byte2 = bytes.Get(5),
Byte3 = bytes.Get(4),
Byte4 = bytes.Get(3),
Byte5 = bytes.Get(2),
Byte6 = bytes.Get(1),
Byte7 = bytes.Get(0),
};
return value.Signed;
}
else
{
// Network to Big
var value = new ByteUnion.QWordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
Byte2 = bytes.Get(2),
Byte3 = bytes.Get(3),
Byte4 = bytes.Get(4),
Byte5 = bytes.Get(5),
Byte6 = bytes.Get(6),
Byte7 = bytes.Get(7),
};
return value.Signed;
}
}
#endregion
#region Unsigned
public static UInt16 NetworkByteWordToUnsignedNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.WordValue
{
Byte0 = bytes.Get(1),
Byte1 = bytes.Get(0),
};
return value.Unsigned;
}
else
{
// Network to Big
var value = new ByteUnion.WordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
};
return value.Unsigned;
}
}
public static UInt32 NetworkByteDWordToUnsignedNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.DWordValue
{
Byte0 = bytes.Get(3),
Byte1 = bytes.Get(2),
Byte2 = bytes.Get(1),
Byte3 = bytes.Get(0),
};
return value.Unsigned;
}
else
{
// Network to Big
var value = new ByteUnion.DWordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
Byte2 = bytes.Get(2),
Byte3 = bytes.Get(3),
};
return value.Unsigned;
}
}
public static UInt64 NetworkByteQWordToUnsignedNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.QWordValue
{
Byte0 = bytes.Get(7),
Byte1 = bytes.Get(6),
Byte2 = bytes.Get(5),
Byte3 = bytes.Get(4),
Byte4 = bytes.Get(3),
Byte5 = bytes.Get(2),
Byte6 = bytes.Get(1),
Byte7 = bytes.Get(0),
};
return value.Unsigned;
}
else
{
// Network to Big
var value = new ByteUnion.QWordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
Byte2 = bytes.Get(2),
Byte3 = bytes.Get(3),
Byte4 = bytes.Get(4),
Byte5 = bytes.Get(5),
Byte6 = bytes.Get(6),
Byte7 = bytes.Get(7),
};
return value.Unsigned;
}
}
#endregion
#region Floating
public static Single NetworkByteDWordToFloatNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.DWordValue
{
Byte0 = bytes.Get(3),
Byte1 = bytes.Get(2),
Byte2 = bytes.Get(1),
Byte3 = bytes.Get(0),
};
return value.Float;
}
else
{
// Network to Big
var value = new ByteUnion.DWordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
Byte2 = bytes.Get(2),
Byte3 = bytes.Get(3),
};
return value.Float;
}
}
public static Double NetworkByteQWordToFloatNativeByteOrder(ArraySegment<Byte> bytes)
{
if (BitConverter.IsLittleEndian)
{
// Network to Little
var value = new ByteUnion.QWordValue
{
Byte0 = bytes.Get(7),
Byte1 = bytes.Get(6),
Byte2 = bytes.Get(5),
Byte3 = bytes.Get(4),
Byte4 = bytes.Get(3),
Byte5 = bytes.Get(2),
Byte6 = bytes.Get(1),
Byte7 = bytes.Get(0),
};
return value.Float;
}
else
{
// Network to Big
var value = new ByteUnion.QWordValue
{
Byte0 = bytes.Get(0),
Byte1 = bytes.Get(1),
Byte2 = bytes.Get(2),
Byte3 = bytes.Get(3),
Byte4 = bytes.Get(4),
Byte5 = bytes.Get(5),
Byte6 = bytes.Get(6),
Byte7 = bytes.Get(7),
};
return value.Float;
}
}
#endregion
#endif
public static Int16 ToNetworkByteOrder(this Int16 value)
{
return ByteUnion.WordValue.Create(value).HostToNetworkOrder().Signed;
}
public static UInt16 ToNetworkByteOrder(this UInt16 value)
{
return ByteUnion.WordValue.Create(value).HostToNetworkOrder().Unsigned;
}
public static Int32 ToNetworkByteOrder(this Int32 value)
{
return ByteUnion.DWordValue.Create(value).HostToNetworkOrder().Signed;
}
public static UInt32 ToNetworkByteOrder(this UInt32 value)
{
return ByteUnion.DWordValue.Create(value).HostToNetworkOrder().Unsigned;
}
public static Single ToNetworkByteOrder(this Single value)
{
return ByteUnion.DWordValue.Create(value).HostToNetworkOrder().Float;
}
public static Int64 ToNetworkByteOrder(this Int64 value)
{
return ByteUnion.QWordValue.Create(value).HostToNetworkOrder().Signed;
}
public static UInt64 ToNetworkByteOrder(this UInt64 value)
{
return ByteUnion.QWordValue.Create(value).HostToNetworkOrder().Unsigned;
}
public static Double ToNetworkByteOrder(this Double value)
{
return ByteUnion.QWordValue.Create(value).HostToNetworkOrder().Float;
}
}
}