using System; using System.Collections.Generic; using System.Reflection; using System.Reflection.Emit; namespace EasyNet.Common { /// /// Delegate for calling a method that is not known at runtime. /// /// the object to be called or null if the call is to a static method. /// the parameters to the method. /// the return value for the method or null if it doesn't return anything. public delegate object FastInvokeHandler(object target, object[] parameters); /// /// Delegate for creating and object at runtime using the default constructor. /// /// the newly created object. public delegate object FastCreateInstanceHandler(); /// /// Delegate to get an arbitraty property at runtime. /// /// the object instance whose property will be obtained. /// the property value. public delegate object FastPropertyGetHandler(object target); /// /// Delegate to set an arbitrary property at runtime. /// /// the object instance whose property will be modified. /// public delegate void FastPropertySetHandler(object target, object parameter); /// /// Class with helper methods for dynamic invocation generating IL on the fly. /// public static class DynamicCalls { /// /// 用於存放GetMethodInvoker的Dictionary /// private static Dictionary dictInvoker = new Dictionary(); public static FastInvokeHandler GetMethodInvoker(MethodInfo methodInfo) { lock (dictInvoker) { if (dictInvoker.ContainsKey(methodInfo)) return (FastInvokeHandler)dictInvoker[methodInfo]; // generates a dynamic method to generate a FastInvokeHandler delegate var dynamicMethod = new DynamicMethod(string.Empty, typeof(object), new Type[] { typeof(object), typeof(object[]) }, methodInfo.DeclaringType.Module); var ilGenerator = dynamicMethod.GetILGenerator(); var parameters = methodInfo.GetParameters(); var paramTypes = new Type[parameters.Length]; // copies the parameter types to an array for (int i = 0; i < paramTypes.Length; i++) { if (parameters[i].ParameterType.IsByRef) paramTypes[i] = parameters[i].ParameterType.GetElementType(); else paramTypes[i] = parameters[i].ParameterType; } var locals = new LocalBuilder[paramTypes.Length]; // generates a local variable for each parameter for (int i = 0; i < paramTypes.Length; i++) { locals[i] = ilGenerator.DeclareLocal(paramTypes[i], true); } // creates code to copy the parameters to the local variables for (int i = 0; i < paramTypes.Length; i++) { ilGenerator.Emit(OpCodes.Ldarg_1); EmitFastInt(ilGenerator, i); ilGenerator.Emit(OpCodes.Ldelem_Ref); EmitCastToReference(ilGenerator, paramTypes[i]); ilGenerator.Emit(OpCodes.Stloc, locals[i]); } if (!methodInfo.IsStatic) { // loads the object into the stack ilGenerator.Emit(OpCodes.Ldarg_0); } // loads the parameters copied to the local variables into the stack for (int i = 0; i < paramTypes.Length; i++) { if (parameters[i].ParameterType.IsByRef) ilGenerator.Emit(OpCodes.Ldloca_S, locals[i]); else ilGenerator.Emit(OpCodes.Ldloc, locals[i]); } // calls the method if (!methodInfo.IsStatic) { ilGenerator.EmitCall(OpCodes.Callvirt, methodInfo, null); } else { ilGenerator.EmitCall(OpCodes.Call, methodInfo, null); } // creates code for handling the return value if (methodInfo.ReturnType == typeof(void)) { ilGenerator.Emit(OpCodes.Ldnull); } else { EmitBoxIfNeeded(ilGenerator, methodInfo.ReturnType); } // iterates through the parameters updating the parameters passed by ref for (int i = 0; i < paramTypes.Length; i++) { if (parameters[i].ParameterType.IsByRef) { ilGenerator.Emit(OpCodes.Ldarg_1); EmitFastInt(ilGenerator, i); ilGenerator.Emit(OpCodes.Ldloc, locals[i]); if (locals[i].LocalType.IsValueType) ilGenerator.Emit(OpCodes.Box, locals[i].LocalType); ilGenerator.Emit(OpCodes.Stelem_Ref); } } // returns the value to the caller ilGenerator.Emit(OpCodes.Ret); // converts the DynamicMethod to a FastInvokeHandler delegate to call to the method var invoker = (FastInvokeHandler)dynamicMethod.CreateDelegate(typeof(FastInvokeHandler)); dictInvoker.Add(methodInfo, invoker); return invoker; } } /// /// 用於存放GetInstanceCreator的Dictionary /// private static Dictionary dictCreator = new Dictionary(); /// /// Gets the instance creator delegate that can be use to create instances of the specified type. /// /// The type of the objects we want to create. /// A delegate that can be used to create the objects. public static FastCreateInstanceHandler GetInstanceCreator(Type type) { lock (dictCreator) { if (dictCreator.ContainsKey(type)) return (FastCreateInstanceHandler)dictCreator[type]; // generates a dynamic method to generate a FastCreateInstanceHandler delegate var dynamicMethod = new DynamicMethod(string.Empty, type, new Type[0], typeof(DynamicCalls).Module); var ilGenerator = dynamicMethod.GetILGenerator(); // generates code to create a new object of the specified type using the default constructor ilGenerator.Emit(OpCodes.Newobj, type.GetConstructor(Type.EmptyTypes)); // returns the value to the caller ilGenerator.Emit(OpCodes.Ret); // converts the DynamicMethod to a FastCreateInstanceHandler delegate to create the object var creator = (FastCreateInstanceHandler)dynamicMethod.CreateDelegate(typeof(FastCreateInstanceHandler)); dictCreator.Add(type, creator); return creator; } } /// /// 用於存放GetPropertyGetter的Dictionary /// private static Dictionary dictGetter = new Dictionary(); public static FastPropertyGetHandler GetPropertyGetter(PropertyInfo propInfo) { lock (dictGetter) { if (dictGetter.ContainsKey(propInfo)) return (FastPropertyGetHandler)dictGetter[propInfo]; // generates a dynamic method to generate a FastPropertyGetHandler delegate var dynamicMethod = new DynamicMethod(string.Empty, typeof(object), new Type[] { typeof(object) }, propInfo.DeclaringType.Module); var ilGenerator = dynamicMethod.GetILGenerator(); // loads the object into the stack ilGenerator.Emit(OpCodes.Ldarg_0); // calls the getter ilGenerator.EmitCall(OpCodes.Callvirt, propInfo.GetGetMethod(), null); // creates code for handling the return value EmitBoxIfNeeded(ilGenerator, propInfo.PropertyType); // returns the value to the caller ilGenerator.Emit(OpCodes.Ret); // converts the DynamicMethod to a FastPropertyGetHandler delegate to get the property var getter = (FastPropertyGetHandler)dynamicMethod.CreateDelegate(typeof(FastPropertyGetHandler)); dictGetter.Add(propInfo, getter); return getter; } } /// /// 用於存放SetPropertySetter的Dictionary /// private static Dictionary dictSetter = new Dictionary(); public static FastPropertySetHandler GetPropertySetter(PropertyInfo propInfo) { lock (dictSetter) { if (dictSetter.ContainsKey(propInfo)) return (FastPropertySetHandler)dictSetter[propInfo]; // generates a dynamic method to generate a FastPropertySetHandler delegate var dynamicMethod = new DynamicMethod(string.Empty, null, new Type[] { typeof(object), typeof(object) }, propInfo.DeclaringType.Module); var ilGenerator = dynamicMethod.GetILGenerator(); // loads the object into the stack ilGenerator.Emit(OpCodes.Ldarg_0); // loads the parameter from the stack ilGenerator.Emit(OpCodes.Ldarg_1); // cast to the proper type (unboxing if needed) EmitCastToReference(ilGenerator, propInfo.PropertyType); // calls the setter ilGenerator.EmitCall(OpCodes.Callvirt, propInfo.GetSetMethod(), null); // terminates the call ilGenerator.Emit(OpCodes.Ret); // converts the DynamicMethod to a FastPropertyGetHandler delegate to get the property var setter = (FastPropertySetHandler)dynamicMethod.CreateDelegate(typeof(FastPropertySetHandler)); dictSetter.Add(propInfo, setter); return setter; } } /// /// Emits the cast to a reference, unboxing if needed. /// /// The type to cast. /// todo: describe ilGenerator parameter on EmitCastToReference private static void EmitCastToReference(ILGenerator ilGenerator, System.Type type) { if (type.IsValueType) { ilGenerator.Emit(OpCodes.Unbox_Any, type); } else { ilGenerator.Emit(OpCodes.Castclass, type); } } /// /// Boxes a type if needed. /// /// The MSIL generator. /// The type. private static void EmitBoxIfNeeded(ILGenerator ilGenerator, System.Type type) { if (type.IsValueType) { ilGenerator.Emit(OpCodes.Box, type); } } /// /// Emits code to save an integer to the evaluation stack. /// /// The value to push. /// todo: describe ilGenerator parameter on EmitFastInt private static void EmitFastInt(ILGenerator ilGenerator, int value) { // for small integers, emit the proper opcode switch (value) { case -1: { ilGenerator.Emit(OpCodes.Ldc_I4_M1); return; } case 0: { ilGenerator.Emit(OpCodes.Ldc_I4_0); return; } case 1: { ilGenerator.Emit(OpCodes.Ldc_I4_1); return; } case 2: { ilGenerator.Emit(OpCodes.Ldc_I4_2); return; } case 3: { ilGenerator.Emit(OpCodes.Ldc_I4_3); return; } case 4: { ilGenerator.Emit(OpCodes.Ldc_I4_4); return; } case 5: { ilGenerator.Emit(OpCodes.Ldc_I4_5); return; } case 6: { ilGenerator.Emit(OpCodes.Ldc_I4_6); return; } case 7: { ilGenerator.Emit(OpCodes.Ldc_I4_7); return; } case 8: { ilGenerator.Emit(OpCodes.Ldc_I4_8); return; } default: break; } // for bigger values emit the short or long opcode if (value > -129 && value < 128) { ilGenerator.Emit(OpCodes.Ldc_I4_S, (SByte)value); } else { ilGenerator.Emit(OpCodes.Ldc_I4, value); } } } }