-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAsyncStateMachineBuilder.cs
More file actions
429 lines (344 loc) · 14.9 KB
/
AsyncStateMachineBuilder.cs
File metadata and controls
429 lines (344 loc) · 14.9 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
using System.Linq.Expressions;
using System.Reflection;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
using Hyperbee.Collections;
using static System.Linq.Expressions.Expression;
namespace Hyperbee.Expressions.CompilerServices;
public interface IVoidResult; // Marker interface for void Task results
public delegate void MoveNextDelegate<in T>( T stateMachine ) where T : IAsyncStateMachine;
internal delegate AsyncLoweringInfo AsyncLoweringTransformer();
internal class AsyncStateMachineBuilder<TResult>
{
private readonly ModuleBuilder _moduleBuilder;
private readonly string _typeName;
protected static class FieldName
{
// special names to prevent collisions with user identifiers
public const string Builder = "__builder<>";
public const string FinalResult = "__final<>";
public const string MoveNextDelegate = "__moveNextDelegate<>";
public const string State = "__state<>";
}
public AsyncStateMachineBuilder( ModuleBuilder moduleBuilder, string typeName )
{
_moduleBuilder = moduleBuilder;
_typeName = typeName;
}
public Expression CreateStateMachine( AsyncLoweringTransformer loweringTransformer, int id )
{
ArgumentNullException.ThrowIfNull( loweringTransformer, nameof( loweringTransformer ) );
// Lower the async expression
//
var loweringInfo = loweringTransformer();
// Create the state-machine builder context
//
var context = new StateMachineContext { LoweringInfo = loweringInfo };
// Create the state-machine
//
// Conceptually:
//
// var stateMachine = new StateMachine();
//
// stateMachine.__builder<> = new AsyncInterpreterTaskBuilder<TResult>();
// stateMachine.__state<> = -1;
//
// stateMachine.__moveNextDelegate<> = (ref StateMachine stateMachine) => { ... }
// stateMachine._builder.Start<StateMachineType>( ref stateMachine );
//
// return stateMachine.__builder<>.Task;
var stateMachineType = CreateStateMachineType( context, out var fields );
var moveNextLambda = CreateMoveNextBody( id, context, stateMachineType, fields );
var taskBuilderConstructor = typeof( AsyncInterpreterTaskBuilder<> )
.MakeGenericType( typeof( TResult ) )
.GetConstructor( Type.EmptyTypes )!;
// Initialize the state machine
var stateMachineVariable = Variable(
stateMachineType,
$"stateMachine<{id}>"
);
var bodyExpression = new List<Expression>
{
Assign( // Create the state-machine
stateMachineVariable,
New( stateMachineType )
),
Assign( // Set the state-machine builder to new AsyncInterpreterTaskBuilder
Field(
stateMachineVariable,
stateMachineType.GetField( FieldName.Builder )!
),
New( taskBuilderConstructor )
),
Assign( // Set the state-machine state to -1
Field(
stateMachineVariable,
stateMachineType.GetField( FieldName.State )!
),
Constant( -1 )
)
};
bodyExpression.AddRange( [
Assign( // Set the state-machine moveNextDelegate
Field(
stateMachineVariable,
stateMachineType.GetField( FieldName.MoveNextDelegate )!
),
moveNextLambda
),
Call( // Start the state-machine
Field( stateMachineVariable, stateMachineType.GetField( FieldName.Builder )! ),
stateMachineType.GetField( FieldName.Builder )!.FieldType
.GetMethod( "Start" )!
.MakeGenericMethod( stateMachineType ),
stateMachineVariable
),
//stateMachineTask
Property(
Field( stateMachineVariable, stateMachineType.GetField( FieldName.Builder )! ),
stateMachineType.GetField( FieldName.Builder )!.FieldType.GetProperty( "Task" )!
)
] );
return Block(
[stateMachineVariable],
bodyExpression
);
}
private Type CreateStateMachineType( StateMachineContext context, out FieldInfo[] fields )
{
var typeBuilder = _moduleBuilder.DefineType(
_typeName,
TypeAttributes.Public | TypeAttributes.Class,
typeof( object ),
[typeof( IAsyncStateMachine )] );
typeBuilder.AddInterfaceImplementation( typeof( IAsyncStateMachine ) );
// Define: fields
var moveNextDelegateType = typeof( MoveNextDelegate<> ).MakeGenericType( typeBuilder );
var moveNextDelegateField = typeBuilder.DefineField(
FieldName.MoveNextDelegate,
moveNextDelegateType,
FieldAttributes.Public );
typeBuilder.DefineField(
FieldName.State,
typeof( int ),
FieldAttributes.Public
);
var builderField = typeBuilder.DefineField(
FieldName.Builder,
typeof( AsyncInterpreterTaskBuilder<> ).MakeGenericType( typeof( TResult ) ), //typeof( AsyncTaskMethodBuilder<> ).MakeGenericType( typeof( TResult ) ),
FieldAttributes.Public
);
// local variables in the current scope for this state-machine
var localVariables = context.LoweringInfo
.ScopedVariables
.EnumerateItems( LinkedNode.Current )
.Select( x => x.Value );
foreach ( var parameterExpression in localVariables )
{
typeBuilder.DefineField(
parameterExpression.Name ?? parameterExpression.ToString(),
parameterExpression.Type,
FieldAttributes.Public
);
}
// Define: methods
ImplementMoveNext( typeBuilder, moveNextDelegateField, moveNextDelegateType );
ImplementSetStateMachine( typeBuilder, builderField );
// Close the type builder
var stateMachineType = typeBuilder.CreateType();
fields = [.. stateMachineType.GetFields( BindingFlags.Instance | BindingFlags.Public )];
return stateMachineType;
}
private static void ImplementSetStateMachine( TypeBuilder typeBuilder, FieldBuilder builderFieldInfo )
{
// Define the IAsyncStateMachine.SetStateMachine method
//
// private void IAsyncStateMachine.SetStateMachine( IAsyncStateMachine stateMachine )
// {
// __builder<>.SetStateMachine( stateMachine );
// }
var setStateMachineMethod = typeBuilder.DefineMethod(
"IAsyncStateMachine.SetStateMachine",
MethodAttributes.Private | MethodAttributes.Final | MethodAttributes.NewSlot | MethodAttributes.Virtual | MethodAttributes.HideBySig,
typeof( void ),
[typeof( IAsyncStateMachine )]
);
var ilGenerator = setStateMachineMethod.GetILGenerator();
ilGenerator.Emit( OpCodes.Ldarg_0 );
ilGenerator.Emit( OpCodes.Ldflda, builderFieldInfo );
ilGenerator.Emit( OpCodes.Ldarg_1 );
var setStateMachineOnBuilder = builderFieldInfo
.FieldType
.GetMethod( "SetStateMachine", [typeof( IAsyncStateMachine )]
);
ilGenerator.Emit( OpCodes.Callvirt, setStateMachineOnBuilder! );
ilGenerator.Emit( OpCodes.Ret );
typeBuilder.DefineMethodOverride( setStateMachineMethod,
typeof( IAsyncStateMachine ).GetMethod( "SetStateMachine" )! );
}
private static void ImplementMoveNext( TypeBuilder typeBuilder, FieldBuilder moveNextDelegateField, Type moveNextDelegateType )
{
// Define the IAsyncStateMachine.MoveNext method
//
// private void IAsyncStateMachine.MoveNext()
// {
// __moveNextDelegate<>( ref this );
// }
var moveNextMethod = typeBuilder.DefineMethod(
"IAsyncStateMachine.MoveNext",
MethodAttributes.Private | MethodAttributes.Final | MethodAttributes.NewSlot | MethodAttributes.Virtual | MethodAttributes.HideBySig,
typeof( void ),
Type.EmptyTypes
);
var ilGenerator = moveNextMethod.GetILGenerator();
ilGenerator.Emit( OpCodes.Ldarg_0 );
ilGenerator.Emit( OpCodes.Ldfld, moveNextDelegateField );
ilGenerator.Emit( OpCodes.Ldarg_0 );
var openInvokeMethod = typeof( MoveNextDelegate<> ).GetMethod( "Invoke" )!;
var invokeMethod = TypeBuilder.GetMethod( moveNextDelegateType, openInvokeMethod );
ilGenerator.Emit( OpCodes.Callvirt, invokeMethod );
ilGenerator.Emit( OpCodes.Ret );
typeBuilder.DefineMethodOverride( moveNextMethod, typeof( IAsyncStateMachine ).GetMethod( "MoveNext" )! );
}
private static LambdaExpression CreateMoveNextBody(
int id,
StateMachineContext context,
Type stateMachineType,
FieldInfo[] fields
)
{
// Set context state-machine-info
var stateMachine = Parameter( stateMachineType, $"sm<{id}>" );
var stateField = Field( stateMachine, FieldName.State );
var builderField = Field( stateMachine, FieldName.Builder );
var finalResultField = Field( stateMachine, FieldName.FinalResult );
var exitLabel = Label( "ST_EXIT" );
context.StateMachineInfo = new AsyncStateMachineInfo(
stateMachine,
exitLabel,
stateField,
builderField,
finalResultField
);
// Create final lambda with try-catch block
var exceptionParam = Parameter( typeof( Exception ), "ex" );
return Lambda(
typeof( MoveNextDelegate<> ).MakeGenericType( stateMachineType ),
Block(
TryCatch(
Block(
typeof( void ),
CreateBody(
fields,
context,
Assign( stateField, Constant( -2 ) ),
Call(
builderField,
nameof( AsyncInterpreterTaskBuilder<TResult>.SetResult ),
null,
finalResultField
)
)
),
Catch(
exceptionParam,
Block(
Assign( stateField, Constant( -2 ) ),
Call(
builderField,
nameof( AsyncInterpreterTaskBuilder<TResult>.SetException ),
null,
exceptionParam
)
)
)
),
Label( exitLabel )
),
stateMachine
);
}
private static IEnumerable<Expression> CreateBody( FieldInfo[] fields, StateMachineContext context, params Expression[] antecedents )
{
var stateMachineInfo = context.StateMachineInfo;
var loweringInfo = context.LoweringInfo;
var scopes = loweringInfo.Scopes;
// Create the body expressions
var firstScope = scopes[0];
var jumpTable = JumpTableBuilder.Build(
firstScope,
scopes,
stateMachineInfo.StateField
);
// hoist variables
var bodyExpressions = HoistVariables(
jumpTable,
firstScope.GetExpressions( context ),
fields,
stateMachineInfo.StateMachine
);
// return the body expressions
return bodyExpressions.Concat( antecedents );
}
private static IEnumerable<Expression> HoistVariables( Expression jumpTable, IReadOnlyList<Expression> expressions, FieldInfo[] fields, ParameterExpression stateMachine )
{
var fieldMembers = fields
.Select( field => Field( stateMachine, field ) )
.ToDictionary( x => x.Member.Name );
var hoistingVisitor = new HoistingVisitor( fieldMembers );
return HoistingSource().Select( hoistingVisitor.Visit );
IEnumerable<Expression> HoistingSource()
{
yield return jumpTable;
foreach ( var expression in expressions )
yield return expression;
}
}
private sealed class HoistingVisitor( IReadOnlyDictionary<string, MemberExpression> memberExpressions ) : ExpressionVisitor
{
protected override Expression VisitParameter( ParameterExpression node )
{
var name = node.Name ?? node.ToString();
if ( memberExpressions.TryGetValue( name, out var fieldAccess ) )
return fieldAccess;
return node;
}
}
}
public static class AsyncStateMachineBuilder
{
private static readonly MethodInfo BuildStateMachineMethod;
private static int __id;
const string StateMachineTypeName = "StateMachine";
static AsyncStateMachineBuilder()
{
BuildStateMachineMethod = typeof( AsyncStateMachineBuilder )
.GetMethods( BindingFlags.NonPublic | BindingFlags.Static )
.First( method => method.Name == nameof( Create ) && method.IsGenericMethod );
}
internal static Expression Create( Type resultType, AsyncLoweringTransformer loweringTransformer, ExpressionRuntimeOptions options = null )
{
if ( resultType == typeof( void ) )
resultType = typeof( IVoidResult );
var buildStateMachine = BuildStateMachineMethod.MakeGenericMethod( resultType );
return (Expression) buildStateMachine.Invoke( null, [loweringTransformer, options] );
}
internal static Expression Create<TResult>( AsyncLoweringTransformer loweringTransformer, ExpressionRuntimeOptions options = null )
{
options ??= new ExpressionRuntimeOptions();
var typeId = Interlocked.Increment( ref __id );
var typeName = $"{StateMachineTypeName}{typeId}";
// Get ModuleBuilder from provider using ModuleKind.Async
var moduleBuilder = options.ModuleBuilderProvider.GetModuleBuilder( ModuleKind.Async );
var stateMachineBuilder = new AsyncStateMachineBuilder<TResult>( moduleBuilder, typeName );
var stateMachineExpression = stateMachineBuilder.CreateStateMachine( loweringTransformer, __id );
if ( options.SourceHandler != null )
{
var debugView = GetDebugView( stateMachineExpression );
options.SourceHandler( debugView );
}
return stateMachineExpression; // the-best expression breakpoint ever
}
[UnsafeAccessor( UnsafeAccessorKind.Method, Name = "get_DebugView" )]
private static extern string GetDebugView( Expression expression );
}