forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNativeSlice.cs
423 lines (349 loc) · 15.4 KB
/
NativeSlice.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
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Unity.Collections.LowLevel.Unsafe;
using UnityEngine.Internal;
namespace Unity.Collections
{
public static class NativeSliceExtensions
{
public static NativeSlice<T> Slice<T>(this NativeArray<T> thisArray) where T : struct
{
return new NativeSlice<T>(thisArray);
}
public static NativeSlice<T> Slice<T>(this NativeArray<T> thisArray, int start) where T : struct
{
return new NativeSlice<T>(thisArray, start);
}
public static NativeSlice<T> Slice<T>(this NativeArray<T> thisArray, int start, int length) where T : struct
{
return new NativeSlice<T>(thisArray, start, length);
}
public static NativeSlice<T> Slice<T>(this NativeSlice<T> thisSlice) where T : struct
{
return thisSlice;
}
public static NativeSlice<T> Slice<T>(this NativeSlice<T> thisSlice, int start) where T : struct
{
return new NativeSlice<T>(thisSlice, start);
}
public static NativeSlice<T> Slice<T>(this NativeSlice<T> thisSlice, int start, int length) where T : struct
{
return new NativeSlice<T>(thisSlice, start, length);
}
}
[StructLayout(LayoutKind.Sequential)]
[NativeContainer]
[NativeContainerSupportsMinMaxWriteRestriction]
[DebuggerDisplay("Length = {Length}")]
[DebuggerTypeProxy(typeof(NativeSliceDebugView<>))]
public unsafe struct NativeSlice<T> : IEnumerable<T>, IEquatable<NativeSlice<T>> where T : struct
{
[NativeDisableUnsafePtrRestriction]
internal byte* m_Buffer;
internal int m_Stride;
internal int m_Length;
internal int m_MinIndex;
internal int m_MaxIndex;
internal AtomicSafetyHandle m_Safety;
public NativeSlice(NativeSlice<T> slice, int start) : this(slice, start, slice.Length - start) {}
public NativeSlice(NativeSlice<T> slice, int start, int length)
{
if (start < 0)
throw new ArgumentOutOfRangeException(nameof(start), $"Slice start {start} < 0.");
if (length < 0)
throw new ArgumentOutOfRangeException(nameof(length), $"Slice length {length} < 0.");
if (start + length > slice.Length)
throw new ArgumentException($"Slice start + length ({start + length}) range must be <= slice.Length ({slice.Length})");
if ((slice.m_MinIndex != 0 || slice.m_MaxIndex != slice.m_Length - 1) && (start < slice.m_MinIndex || slice.m_MaxIndex < start || slice.m_MaxIndex < start + length - 1))
throw new ArgumentException("Slice may not be used on a restricted range slice", nameof(slice));
m_MinIndex = 0;
m_MaxIndex = length - 1;
m_Safety = slice.m_Safety;
m_Stride = slice.m_Stride;
m_Buffer = slice.m_Buffer + m_Stride * start;
m_Length = length;
}
public NativeSlice(NativeArray<T> array) : this(array, 0, array.Length) {}
public NativeSlice(NativeArray<T> array, int start) : this(array, start, array.Length - start) {}
public static implicit operator NativeSlice<T>(NativeArray<T> array)
{
return new NativeSlice<T>(array);
}
public NativeSlice(NativeArray<T> array, int start, int length)
{
if (start < 0)
throw new ArgumentOutOfRangeException(nameof(start), $"Slice start {start} < 0.");
if (length < 0)
throw new ArgumentOutOfRangeException(nameof(length), $"Slice length {length} < 0.");
if (start + length > array.Length)
throw new ArgumentException($"Slice start + length ({start + length}) range must be <= array.Length ({array.Length})");
if ((array.m_MinIndex != 0 || array.m_MaxIndex != array.m_Length - 1) && (start < array.m_MinIndex || array.m_MaxIndex < start || array.m_MaxIndex < start + length - 1))
throw new ArgumentException("Slice may not be used on a restricted range array", nameof(array));
m_MinIndex = 0;
m_MaxIndex = length - 1;
m_Safety = array.m_Safety;
m_Stride = UnsafeUtility.SizeOf<T>();
var ptr = (byte*)array.m_Buffer + m_Stride * start;
m_Buffer = ptr;
m_Length = length;
}
// Keeps stride, changes length
public NativeSlice<U> SliceConvert<U>() where U : struct
{
var sizeofU = UnsafeUtility.SizeOf<U>();
NativeSlice<U> outputSlice;
outputSlice.m_Buffer = m_Buffer;
outputSlice.m_Stride = sizeofU;
outputSlice.m_Length = (m_Length * m_Stride) / sizeofU;
if (m_Stride != UnsafeUtility.SizeOf<T>())
throw new InvalidOperationException("SliceConvert requires that stride matches the size of the source type");
if (m_MinIndex != 0 || m_MaxIndex != m_Length - 1)
throw new InvalidOperationException("SliceConvert may not be used on a restricted range array");
if (m_Stride * m_Length % sizeofU != 0)
throw new InvalidOperationException("SliceConvert requires that Length * sizeof(T) is a multiple of sizeof(U).");
outputSlice.m_MinIndex = 0;
outputSlice.m_MaxIndex = outputSlice.m_Length - 1;
outputSlice.m_Safety = m_Safety;
return outputSlice;
}
// Keeps length, changes stride
public NativeSlice<U> SliceWithStride<U>(int offset) where U : struct
{
NativeSlice<U> outputSlice;
outputSlice.m_Buffer = m_Buffer + offset;
outputSlice.m_Stride = m_Stride;
outputSlice.m_Length = m_Length;
if (offset < 0)
throw new ArgumentOutOfRangeException(nameof(offset), "SliceWithStride offset must be >= 0");
if (offset + UnsafeUtility.SizeOf<U>() > UnsafeUtility.SizeOf<T>())
throw new ArgumentException("SliceWithStride sizeof(U) + offset must be <= sizeof(T)", nameof(offset));
outputSlice.m_MinIndex = m_MinIndex;
outputSlice.m_MaxIndex = m_MaxIndex;
outputSlice.m_Safety = m_Safety;
return outputSlice;
}
public NativeSlice<U> SliceWithStride<U>() where U : struct
{
return SliceWithStride<U>(0);
}
// These are double-whammy excluded to we can elide bounds checks in the Burst disassembly view
[Conditional("ENABLE_UNITY_COLLECTIONS_CHECKS")]
void CheckReadIndex(int index)
{
if (index < m_MinIndex || index > m_MaxIndex)
FailOutOfRangeError(index);
var versionPtr = (int*)m_Safety.versionNode;
if (m_Safety.version != ((*versionPtr) & AtomicSafetyHandle.ReadCheck))
AtomicSafetyHandle.CheckReadAndThrowNoEarlyOut(m_Safety);
}
[Conditional("ENABLE_UNITY_COLLECTIONS_CHECKS")]
void CheckWriteIndex(int index)
{
if (index < m_MinIndex || index > m_MaxIndex)
FailOutOfRangeError(index);
var versionPtr = (int*)m_Safety.versionNode;
if (m_Safety.version != ((*versionPtr) & AtomicSafetyHandle.WriteCheck))
AtomicSafetyHandle.CheckWriteAndThrowNoEarlyOut(m_Safety);
}
public T this[int index]
{
get
{
CheckReadIndex(index);
return UnsafeUtility.ReadArrayElementWithStride<T>(m_Buffer, index, m_Stride);
}
[WriteAccessRequired]
set
{
CheckWriteIndex(index);
UnsafeUtility.WriteArrayElementWithStride(m_Buffer, index, m_Stride, value);
}
}
[Conditional("ENABLE_UNITY_COLLECTIONS_CHECKS")]
private void FailOutOfRangeError(int index)
{
if (index < Length && (m_MinIndex != 0 || m_MaxIndex != Length - 1))
throw new IndexOutOfRangeException(
$"Index {index} is out of restricted IJobParallelFor range [{m_MinIndex}...{m_MaxIndex}] in ReadWriteBuffer.\n" +
"ReadWriteBuffers are restricted to only read & write the element at the job index. " +
"You can use double buffering strategies to avoid race conditions due to " +
"reading & writing in parallel to the same elements from a job.");
throw new IndexOutOfRangeException($"Index {index} is out of range of '{Length}' Length.");
}
[WriteAccessRequired]
public void CopyFrom(NativeSlice<T> slice)
{
if (Length != slice.Length)
throw new ArgumentException($"slice.Length ({slice.Length}) does not match the Length of this instance ({Length}).", nameof(slice));
UnsafeUtility.MemCpyStride(this.GetUnsafePtr(), Stride, slice.GetUnsafeReadOnlyPtr(), slice.Stride, UnsafeUtility.SizeOf<T>(), m_Length);
}
[WriteAccessRequired]
public void CopyFrom(T[] array)
{
if (Length != array.Length)
throw new ArgumentException($"array.Length ({array.Length}) does not match the Length of this instance ({Length}).", nameof(array));
unsafe
{
GCHandle handle = GCHandle.Alloc(array, GCHandleType.Pinned);
IntPtr addr = handle.AddrOfPinnedObject();
var sizeOf = UnsafeUtility.SizeOf<T>();
UnsafeUtility.MemCpyStride(this.GetUnsafePtr(), Stride, (byte*)addr, sizeOf, sizeOf, m_Length);
handle.Free();
}
}
public void CopyTo(NativeArray<T> array)
{
if (Length != array.Length)
throw new ArgumentException($"array.Length ({array.Length}) does not match the Length of this instance ({Length}).", nameof(array));
var sizeOf = UnsafeUtility.SizeOf<T>();
UnsafeUtility.MemCpyStride(array.GetUnsafePtr(), sizeOf, this.GetUnsafeReadOnlyPtr(), Stride, sizeOf, m_Length);
}
public void CopyTo(T[] array)
{
if (Length != array.Length)
throw new ArgumentException($"array.Length ({array.Length}) does not match the Length of this instance ({Length}).", nameof(array));
unsafe
{
GCHandle handle = GCHandle.Alloc(array, GCHandleType.Pinned);
IntPtr addr = handle.AddrOfPinnedObject();
var sizeOf = UnsafeUtility.SizeOf<T>();
UnsafeUtility.MemCpyStride((byte*)addr, sizeOf, this.GetUnsafeReadOnlyPtr(), Stride, sizeOf, m_Length);
handle.Free();
}
}
public T[] ToArray()
{
var array = new T[Length];
CopyTo(array);
return array;
}
public int Stride => m_Stride;
public int Length => m_Length;
public Enumerator GetEnumerator()
{
return new Enumerator(ref this);
}
IEnumerator<T> IEnumerable<T>.GetEnumerator()
{
return new Enumerator(ref this);
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
[ExcludeFromDocs]
public struct Enumerator : IEnumerator<T>
{
NativeSlice<T> m_Array;
int m_Index;
public Enumerator(ref NativeSlice<T> array)
{
m_Array = array;
m_Index = -1;
}
public void Dispose()
{
}
public bool MoveNext()
{
m_Index++;
return m_Index < m_Array.Length;
}
public void Reset()
{
m_Index = -1;
}
// Let NativeSlice indexer check for out of range.
public T Current => m_Array[m_Index];
object IEnumerator.Current => Current;
}
public bool Equals(NativeSlice<T> other)
{
return m_Buffer == other.m_Buffer && m_Stride == other.m_Stride && m_Length == other.m_Length;
}
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
return obj is NativeSlice<T> && Equals((NativeSlice<T>)obj);
}
public override int GetHashCode()
{
unchecked
{
var hashCode = (int)m_Buffer;
hashCode = (hashCode * 397) ^ m_Stride;
hashCode = (hashCode * 397) ^ m_Length;
return hashCode;
}
}
public static bool operator==(NativeSlice<T> left, NativeSlice<T> right)
{
return left.Equals(right);
}
public static bool operator!=(NativeSlice<T> left, NativeSlice<T> right)
{
return !left.Equals(right);
}
}
/// <summary>
/// DebuggerTypeProxy for <see cref="NativeArray{T}"/>
/// </summary>
internal sealed class NativeSliceDebugView<T> where T : struct
{
NativeSlice<T> m_Array;
public NativeSliceDebugView(NativeSlice<T> array)
{
m_Array = array;
}
public T[] Items
{
get { return m_Array.ToArray(); }
}
}
}
namespace Unity.Collections.LowLevel.Unsafe
{
public static class NativeSliceUnsafeUtility
{
public static AtomicSafetyHandle GetAtomicSafetyHandle<T>(NativeSlice<T> slice) where T : struct
{
return slice.m_Safety;
}
public static void SetAtomicSafetyHandle<T>(ref NativeSlice<T> slice, AtomicSafetyHandle safety) where T : struct
{
slice.m_Safety = safety;
}
public static unsafe NativeSlice<T> ConvertExistingDataToNativeSlice<T>(void* dataPointer, int stride, int length) where T : struct
{
if (length < 0)
throw new ArgumentException($"Invalid length of '{length}'. It must be greater than 0.", nameof(length));
if (stride < 0)
throw new ArgumentException($"Invalid stride '{stride}'. It must be greater than 0.", nameof(stride));
var newSlice = new NativeSlice<T>
{
m_Stride = stride,
m_Buffer = (byte*)dataPointer,
m_Length = length,
m_MinIndex = 0,
m_MaxIndex = length - 1,
};
return newSlice;
}
public static unsafe void* GetUnsafePtr<T>(this NativeSlice<T> nativeSlice) where T : struct
{
AtomicSafetyHandle.CheckWriteAndThrow(nativeSlice.m_Safety);
return nativeSlice.m_Buffer;
}
public static unsafe void* GetUnsafeReadOnlyPtr<T>(this NativeSlice<T> nativeSlice) where T : struct
{
AtomicSafetyHandle.CheckReadAndThrow(nativeSlice.m_Safety);
return nativeSlice.m_Buffer;
}
}
}