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
|
//-----------------------------------------------------------------------
// <copyright file="UnsafeUtilities.cs" company="Sirenix IVS">
// Copyright (c) 2018 Sirenix IVS
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// </copyright>
//-----------------------------------------------------------------------
namespace VRC.Udon.Serialization.OdinSerializer.Utilities.Unsafe
{
using System;
using System.Runtime.InteropServices;
#pragma warning disable 0649 // Field is never assigned to and will have its default value // VRC
/// <summary>
/// Contains utilities for performing common unsafe operations.
/// </summary>
public static class UnsafeUtilities
{
/// <summary>
/// Blindly creates an array of structs from an array of bytes via direct memory copy/blit.
/// </summary>
public static unsafe T[] StructArrayFromBytes<T>(byte[] bytes, int byteLength) where T : struct
{
return StructArrayFromBytes<T>(bytes, 0, 0);
}
/// <summary>
/// Blindly creates an array of structs from an array of bytes via direct memory copy/blit.
/// </summary>
public static unsafe T[] StructArrayFromBytes<T>(byte[] bytes, int byteLength, int byteOffset) where T : struct
{
if (bytes == null)
{
throw new ArgumentNullException("bytes");
}
if (byteLength <= 0)
{
throw new ArgumentException("Byte length must be larger than zero.");
}
if (byteOffset < 0)
{
throw new ArgumentException("Byte offset must be larger than or equal to zero.");
}
int typeSize = Marshal.SizeOf(typeof(T));
if (byteOffset % sizeof(ulong) != 0)
{
throw new ArgumentException("Byte offset must be divisible by " + sizeof(ulong) + " (IE, sizeof(ulong))");
}
if (byteLength + byteOffset >= bytes.Length)
{
throw new ArgumentException("Given byte array of size " + bytes.Length + " is not large enough to copy requested number of bytes " + byteLength + ".");
}
if ((byteLength - byteOffset) % typeSize != 0)
{
throw new ArgumentException("The length in the given byte array (" + bytes.Length + ", and " + (bytes.Length - byteOffset) + " minus byteOffset " + byteOffset + ") to convert to type " + typeof(T).Name + " is not divisible by the size of " + typeof(T).Name + " (" + typeSize + ").");
}
int elementCount = (bytes.Length - byteOffset) / typeSize;
T[] array = new T[elementCount];
MemoryCopy(bytes, array, byteLength, byteOffset, 0);
return array;
}
/// <summary>
/// Blindly copies an array of structs into an array of bytes via direct memory copy/blit.
/// </summary>
public static unsafe byte[] StructArrayToBytes<T>(T[] array) where T : struct
{
byte[] bytes = null;
return StructArrayToBytes(array, ref bytes, 0);
}
/// <summary>
/// Blindly copies an array of structs into an array of bytes via direct memory copy/blit.
/// </summary>
public static unsafe byte[] StructArrayToBytes<T>(T[] array, ref byte[] bytes, int byteOffset) where T : struct
{
if (array == null)
{
throw new ArgumentNullException("array");
}
if (byteOffset < 0)
{
throw new ArgumentException("Byte offset must be larger than or equal to zero.");
}
int typeSize = Marshal.SizeOf(typeof(T));
int byteCount = typeSize * array.Length;
if (bytes == null)
{
bytes = new byte[byteCount + byteOffset];
}
else if (bytes.Length + byteOffset > byteCount)
{
throw new ArgumentException("Byte array must be at least " + (bytes.Length + byteOffset) + " long with the given byteOffset.");
}
MemoryCopy(array, bytes, byteCount, 0, byteOffset);
return bytes;
}
/// <summary>
/// Creates a new string from the contents of a given byte buffer.
/// </summary>
public static unsafe string StringFromBytes(byte[] buffer, int charLength, bool needs16BitSupport)
{
int byteCount = needs16BitSupport ? charLength * 2 : charLength;
if (buffer.Length < byteCount)
{
throw new ArgumentException("Buffer is not large enough to contain the given string; a size of at least " + byteCount + " is required.");
}
GCHandle toHandle = default(GCHandle);
string result = new string(default(char), charLength); // Creaty empty string of required length
try
{
toHandle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
if (needs16BitSupport)
{
if (BitConverter.IsLittleEndian)
{
fixed (char* charPtr1 = result)
{
ushort* fromPtr1 = (ushort*)toHandle.AddrOfPinnedObject().ToPointer();
ushort* toPtr1 = (ushort*)charPtr1;
for (int i = 0; i < byteCount; i += sizeof(ushort))
{
*toPtr1++ = *fromPtr1++;
}
}
}
else
{
fixed (char* charPtr2 = result)
{
byte* fromPtr2 = (byte*)toHandle.AddrOfPinnedObject().ToPointer();
byte* toPtr2 = (byte*)charPtr2;
for (int i = 0; i < byteCount; i += sizeof(ushort))
{
*toPtr2 = *(fromPtr2 + 1);
*(toPtr2 + 1) = *fromPtr2;
fromPtr2 += 2;
toPtr2 += 2;
}
}
}
}
else
{
if (BitConverter.IsLittleEndian)
{
fixed (char* charPtr3 = result)
{
byte* fromPtr3 = (byte*)toHandle.AddrOfPinnedObject().ToPointer();
byte* toPtr3 = (byte*)charPtr3;
for (int i = 0; i < byteCount; i += sizeof(byte))
{
*toPtr3++ = *fromPtr3++;
toPtr3++; // Skip every other string byte
}
}
}
else
{
fixed (char* charPtr4 = result)
{
byte* fromPtr4 = (byte*)toHandle.AddrOfPinnedObject().ToPointer();
byte* toPtr4 = (byte*)charPtr4;
for (int i = 0; i < byteCount; i += sizeof(byte))
{
toPtr4++; // Skip every other string byte
*toPtr4++ = *fromPtr4++;
}
}
}
}
}
finally
{
if (toHandle.IsAllocated)
{
toHandle.Free();
}
}
// Retrieve proper string reference from the intern pool.
// This code removed for now, as the slight decrease in memory use is not considered worth the performance cost of the intern lookup and the potential extra garbage to be collected.
// Might eventually become a global config option, if this is considered necessary.
//result = string.Intern(result);
return result;
}
/// <summary>
/// Writes the contents of a string into a given byte buffer.
/// </summary>
public static unsafe int StringToBytes(byte[] buffer, string value, bool needs16BitSupport)
{
int byteCount = needs16BitSupport ? value.Length * 2 : value.Length;
if (buffer.Length < byteCount)
{
throw new ArgumentException("Buffer is not large enough to contain the given string; a size of at least " + byteCount + " is required.");
}
GCHandle toHandle = default(GCHandle);
try
{
toHandle = GCHandle.Alloc(buffer, GCHandleType.Pinned);
if (needs16BitSupport)
{
if (BitConverter.IsLittleEndian)
{
fixed (char* charPtr1 = value)
{
ushort* fromPtr1 = (ushort*)charPtr1;
ushort* toPtr1 = (ushort*)toHandle.AddrOfPinnedObject().ToPointer();
for (int i = 0; i < byteCount; i += sizeof(ushort))
{
*toPtr1++ = *fromPtr1++;
}
}
}
else
{
fixed (char* charPtr2 = value)
{
byte* fromPtr2 = (byte*)charPtr2;
byte* toPtr2 = (byte*)toHandle.AddrOfPinnedObject().ToPointer();
for (int i = 0; i < byteCount; i += sizeof(ushort))
{
*toPtr2 = *(fromPtr2 + 1);
*(toPtr2 + 1) = *fromPtr2;
fromPtr2 += 2;
toPtr2 += 2;
}
}
}
}
else
{
if (BitConverter.IsLittleEndian)
{
fixed (char* charPtr3 = value)
{
byte* fromPtr3 = (byte*)charPtr3;
byte* toPtr3 = (byte*)toHandle.AddrOfPinnedObject().ToPointer();
for (int i = 0; i < byteCount; i += sizeof(byte))
{
fromPtr3++; // Skip every other string byte
*toPtr3++ = *fromPtr3++;
}
}
}
else
{
fixed (char* charPtr4 = value)
{
byte* fromPtr4 = (byte*)charPtr4;
byte* toPtr4 = (byte*)toHandle.AddrOfPinnedObject().ToPointer();
for (int i = 0; i < byteCount; i += sizeof(byte))
{
*toPtr4++ = *fromPtr4++;
fromPtr4++; // Skip every other string byte
}
}
}
}
}
finally
{
if (toHandle.IsAllocated)
{
toHandle.Free();
}
}
return byteCount;
}
private struct Struct256Bit
{
public decimal d1;
public decimal d2;
}
public static unsafe void MemoryCopy(void* from, void* to, int bytes)
{
byte* end = (byte*)to + bytes;
Struct256Bit* fromBigPtr = (Struct256Bit*)from;
Struct256Bit* toBigPtr = (Struct256Bit*)to;
while ((toBigPtr + 1) <= end)
{
*toBigPtr++ = *fromBigPtr++;
}
byte* fromSmallPtr = (byte*)fromBigPtr;
byte* toSmallPtr = (byte*)toBigPtr;
while (toSmallPtr < end)
{
*toSmallPtr++ = *fromSmallPtr++;
}
}
/// <summary>
/// Blindly mem-copies a given number of bytes from the memory location of one object to another. WARNING: This method is ridiculously dangerous. Only use if you know what you're doing.
/// </summary>
public static unsafe void MemoryCopy(object from, object to, int byteCount, int fromByteOffset, int toByteOffset)
{
GCHandle fromHandle = default(GCHandle);
GCHandle toHandle = default(GCHandle);
if (fromByteOffset % sizeof(ulong) != 0 || toByteOffset % sizeof(ulong) != 0)
{
throw new ArgumentException("Byte offset must be divisible by " + sizeof(ulong) + " (IE, sizeof(ulong))");
}
try
{
int restBytes = byteCount % sizeof(ulong);
int ulongCount = (byteCount - restBytes) / sizeof(ulong);
int fromOffsetCount = fromByteOffset / sizeof(ulong);
int toOffsetCount = toByteOffset / sizeof(ulong);
fromHandle = GCHandle.Alloc(from, GCHandleType.Pinned);
toHandle = GCHandle.Alloc(to, GCHandleType.Pinned);
ulong* fromUlongPtr = (ulong*)fromHandle.AddrOfPinnedObject().ToPointer();
ulong* toUlongPtr = (ulong*)toHandle.AddrOfPinnedObject().ToPointer();
if (fromOffsetCount > 0)
{
fromUlongPtr += fromOffsetCount;
}
if (toOffsetCount > 0)
{
toUlongPtr += toOffsetCount;
}
for (int i = 0; i < ulongCount; i++)
{
*toUlongPtr++ = *fromUlongPtr++;
}
if (restBytes > 0)
{
byte* fromBytePtr = (byte*)fromUlongPtr;
byte* toBytePtr = (byte*)toUlongPtr;
for (int i = 0; i < restBytes; i++)
{
*toBytePtr++ = *fromBytePtr++;
}
}
}
finally
{
if (fromHandle.IsAllocated)
{
fromHandle.Free();
}
if (toHandle.IsAllocated)
{
toHandle.Free();
}
}
}
}
}
|