forked from bytecodealliance/wit-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAsyncSupport.cs
More file actions
331 lines (280 loc) · 8.44 KB
/
AsyncSupport.cs
File metadata and controls
331 lines (280 loc) · 8.44 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
/**
* Helpers for the async support.
*/
public enum CallbackCode
{
Exit = 0,
Yield = 1,
}
public partial class WaitableSet(int handle) : IDisposable
{
public int Handle { get; } = handle;
void Dispose(bool _disposing)
{
AsyncSupport.WaitableSetDrop(this);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
~WaitableSet()
{
Dispose(false);
}
}
public static class AsyncSupport
{
private static class Interop
{
[global::System.Runtime.InteropServices.DllImportAttribute("$root", EntryPoint = "[waitable-set-new]"), global::System.Runtime.InteropServices.WasmImportLinkageAttribute]
internal static extern int WaitableSetNew();
[global::System.Runtime.InteropServices.DllImportAttribute("$root", EntryPoint = "[waitable-join]"), global::System.Runtime.InteropServices.WasmImportLinkageAttribute]
internal static extern void WaitableJoin(int waitable, int set);
[global::System.Runtime.InteropServices.DllImportAttribute("$root", EntryPoint = "[waitable-set-wait]"), global::System.Runtime.InteropServices.WasmImportLinkageAttribute]
internal static unsafe extern int WaitableSetWait(int waitable, int* waitableHandlePtr);
[global::System.Runtime.InteropServices.DllImportAttribute("$root", EntryPoint = "[waitable-set-drop]"), global::System.Runtime.InteropServices.WasmImportLinkageAttribute]
internal static unsafe extern void WaitableSetDrop(int waitable);
}
public static WaitableSet WaitableSetNew()
{{
var waitableSet = Interop.WaitableSetNew();
return new WaitableSet(waitableSet );
}}
public static void Join(FutureWriter writer, WaitableSet set)
{{
Interop.WaitableJoin(writer.Handle, set.Handle);
}}
public unsafe static EventWaitable WaitableSetWait(WaitableSet set)
{{
int* buffer = stackalloc int[2];
var eventCode = (EventCode)Interop.WaitableSetWait(set.Handle, buffer);
return new EventWaitable(eventCode, buffer[0], buffer[1]);
}}
public static void WaitableSetDrop(WaitableSet set)
{{
Interop.WaitableSetDrop(set.Handle);
}}
}
/**
* Helpers for future support.
*/
public delegate ulong New();
public delegate int StartRead(int handle, IntPtr buffer);
public delegate void DropReader(int handle);
public delegate void DropWriter(int handle);
public delegate int Write(int handle, IntPtr buffer);
public struct FutureVTable
{
public New New;
public StartRead StartRead;
public Write Write;
public DropReader DropReader;
public DropWriter DropWriter;
}
public static class FutureHelpers
{
/// Helper function to create a new read/write pair for a component model
/// future.
public static (FutureReader, FutureWriter) RawFutureNew(FutureVTable vtable)
{
var packed = vtable.New();
var readerHandle = (int)(packed & 0xFFFFFFFF);
var writerHandle = (int)(packed >> 32);
return (new FutureReader(readerHandle, vtable), new FutureWriter(writerHandle, vtable));
}
public static (FutureReader<T>, FutureWriter<T>) RawFutureNew<T>(FutureVTable vtable)
{
var packed = vtable.New();
var readerHandle = (int)(packed & 0xFFFFFFFF);
var writerHandle = (int)(packed >> 32);
return (new FutureReader<T>(readerHandle, vtable), new FutureWriter<T>(writerHandle, vtable));
}
}
public class FutureReader(int handle, FutureVTable vTable) : IDisposable // : TODO Waitable
{
public int Handle { get; private set; } = handle;
public FutureVTable VTable { get; private set; } = vTable;
public int TakeHandle()
{
if (Handle == 0)
{
throw new InvalidOperationException("Handle already taken");
}
var handle = Handle;
Handle = 0;
return handle;
}
// TODO: Generate per type for this instrinsic.
public Task Read()
{
// TODO: Generate for the interop name and the namespace.
if (Handle == 0)
{
throw new InvalidOperationException("Handle already taken");
}
var status = new WaitableStatus(vTable.StartRead(Handle, IntPtr.Zero));
if (status.IsBlocked)
{
//TODO: store somewhere so we can complete it later.
var tcs = new TaskCompletionSource();
return tcs.Task;
}
if (status.IsCompleted)
{
return Task.CompletedTask;
}
throw new NotImplementedException();
}
void Dispose(bool _disposing)
{
// Free unmanaged resources if any.
if (Handle != 0)
{
vTable.DropReader(Handle);
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
~FutureReader()
{
Dispose(false);
}
}
public class FutureReader<T>(int handle, FutureVTable vTable) : IDisposable // : TODO Waitable
{
public int Handle { get; private set; } = handle;
public FutureVTable VTable { get; private set; } = vTable;
public int TakeHandle()
{
if (Handle == 0)
{
throw new InvalidOperationException("Handle already taken");
}
var handle = Handle;
Handle = 0;
return handle;
}
// TODO: Generate per type for this instrinsic.
public Task Read()
{
// TODO: Generate for the interop name and the namespace.
if (Handle == 0)
{
throw new InvalidOperationException("Handle already taken");
}
var status = new WaitableStatus(vTable.StartRead(Handle, IntPtr.Zero));
if (status.IsBlocked)
{
//TODO: store somewhere so we can complete it later.
var tcs = new TaskCompletionSource();
return tcs.Task;
}
if (status.IsCompleted)
{
return Task.CompletedTask;
}
throw new NotImplementedException();
}
void Dispose(bool _disposing)
{
// Free unmanaged resources if any.
if (Handle != 0)
{
vTable.DropReader(Handle);
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
~FutureReader()
{
Dispose(false);
}
}
/**
* Helpers for future writer support.
*/
public class FutureWriter(int handle, FutureVTable vTable) // : TODO Waitable
{
public int Handle { get; } = handle;
public FutureVTable VTable { get; private set; } = vTable;
// TODO: Generate per type for this instrinsic.
public Task Write()
{
// TODO: Generate for the interop name.
if (Handle == 0)
{
throw new InvalidOperationException("Handle already taken");
}
var status = new WaitableStatus(VTable.Write(Handle, IntPtr.Zero));
if (status.IsBlocked)
{
//TODO: store somewhere so we can complete it later.
var tcs = new TaskCompletionSource();
return tcs.Task;
}
throw new NotImplementedException();
}
void Dispose(bool _disposing)
{
// Free unmanaged resources if any.
if (Handle != 0)
{
VTable.DropWriter(Handle);
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
~FutureWriter()
{
Dispose(false);
}
}
public class FutureWriter<T>(int handle, FutureVTable vTable) // : TODO Waitable
{
public int Handle { get; } = handle;
public FutureVTable VTable { get; private set; } = vTable;
// TODO: Generate per type for this instrinsic.
public Task Write()
{
// TODO: Generate for the interop name.
if (Handle == 0)
{
throw new InvalidOperationException("Handle already taken");
}
var status = new WaitableStatus(VTable.Write(Handle, IntPtr.Zero));
if (status.IsBlocked)
{
//TODO: store somewhere so we can complete it later.
var tcs = new TaskCompletionSource();
return tcs.Task;
}
throw new NotImplementedException();
}
void Dispose(bool _disposing)
{
// Free unmanaged resources if any.
if (Handle != 0)
{
VTable.DropWriter(Handle);
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
~FutureWriter()
{
Dispose(false);
}
}