| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using System;
- using System.Runtime.CompilerServices;
- using ILRuntime.CLR.Method;
- using ILRuntime.Runtime.Enviorment;
- using ILRuntime.Runtime.Intepreter;
- namespace Model
- {
- /// <summary>
- /// 用于async await适配
- /// </summary>
- [ILAdapter]
- public class IAsyncStateMachineClassInheritanceAdaptor : CrossBindingAdaptor
- {
- public override Type BaseCLRType
- {
- get
- {
- return typeof (IAsyncStateMachine);
- }
- }
- public override Type AdaptorType
- {
- get
- {
- return typeof (IAsyncStateMachineAdaptor);
- }
- }
- public override object CreateCLRInstance(ILRuntime.Runtime.Enviorment.AppDomain appdomain, ILTypeInstance instance)
- {
- return new IAsyncStateMachineAdaptor(appdomain, instance);
- }
-
- public class IAsyncStateMachineAdaptor: IAsyncStateMachine, CrossBindingAdaptorType
- {
- private ILTypeInstance instance;
- private ILRuntime.Runtime.Enviorment.AppDomain appDomain;
- private IMethod mMoveNext;
- private IMethod mSetStateMachine;
- private readonly object[] param1 = new object[1];
- public IAsyncStateMachineAdaptor()
- {
- }
- public IAsyncStateMachineAdaptor(ILRuntime.Runtime.Enviorment.AppDomain appDomain, ILTypeInstance instance)
- {
- this.appDomain = appDomain;
- this.instance = instance;
- }
- public ILTypeInstance ILInstance
- {
- get
- {
- return instance;
- }
- }
- public void MoveNext()
- {
- if (this.mMoveNext == null)
- {
- mMoveNext = instance.Type.GetMethod("MoveNext", 0);
- }
- this.appDomain.Invoke(mMoveNext, instance, null);
- }
- public void SetStateMachine(IAsyncStateMachine stateMachine)
- {
- if (this.mSetStateMachine == null)
- {
- mSetStateMachine = instance.Type.GetMethod("SetStateMachine");
- }
- this.appDomain.Invoke(mSetStateMachine, instance, stateMachine);
- }
- public override string ToString()
- {
- IMethod m = this.appDomain.ObjectType.GetMethod("ToString", 0);
- m = instance.Type.GetVirtualMethod(m);
- if (m == null || m is ILMethod)
- {
- return instance.ToString();
- }
- return instance.Type.FullName;
- }
- }
- }
- }
|