// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. // http://code.google.com/p/protobuf/ // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. using System; using System.Reflection; namespace Google.ProtocolBuffers.FieldAccess { /// /// The methods in this class are somewhat evil, and should not be tampered with lightly. /// Basically they allow the creation of relatively weakly typed delegates from MethodInfos /// which are more strongly typed. They do this by creating an appropriate strongly typed /// delegate from the MethodInfo, and then calling that within an anonymous method. /// Mind-bending stuff (at least to your humble narrator) but the resulting delegates are /// very fast compared with calling Invoke later on. /// internal static class ReflectionUtil { /// /// Creates a delegate which will execute the given method and then return /// the result as an object. /// public static GetValueDelegate CreateUpcastDelegate(MethodInfo method) { // The tricky bit is invoking CreateCreateUpcastDelegateImpl with the right type parameters MethodInfo openImpl = typeof(ReflectionUtil).GetMethod("CreateUpcastDelegateImpl"); MethodInfo closedImpl = openImpl.MakeGenericMethod(typeof(T), method.ReturnType); return (GetValueDelegate) closedImpl.Invoke(null, new object[] { method }); } delegate TResult Getter(TSource source); /// /// Method used solely for implementing CreateUpcastDelegate. Public to avoid trust issues /// in low-trust scenarios, e.g. Silverlight. /// TODO(jonskeet): Check any of this actually works in Silverlight... /// public static GetValueDelegate CreateUpcastDelegateImpl(MethodInfo method) { // Convert the reflection call into an open delegate, i.e. instead of calling x.Method() // we'll call getter(x). Getter getter = (Getter)Delegate.CreateDelegate(typeof(Getter), method); // Implicit upcast to object (within the delegate) return delegate(TSource source) { return getter(source); }; } /// /// Creates a delegate which will execute the given method after casting the parameter /// down from object to the required parameter type. /// public static SingleValueDelegate CreateDowncastDelegate(MethodInfo method) { MethodInfo openImpl = typeof(ReflectionUtil).GetMethod("CreateDowncastDelegateImpl"); MethodInfo closedImpl = openImpl.MakeGenericMethod(typeof(T), method.GetParameters()[0].ParameterType); return (SingleValueDelegate)closedImpl.Invoke(null, new object[] { method }); } delegate void OpenSingleValueDelegate(TSource source, TParam parameter); public static SingleValueDelegate CreateDowncastDelegateImpl(MethodInfo method) { // Convert the reflection call into an open delegate, i.e. instead of calling x.Method(y) we'll // call Method(x, y) OpenSingleValueDelegate call = (OpenSingleValueDelegate) Delegate.CreateDelegate(typeof(OpenSingleValueDelegate), method); return delegate(TSource source, object parameter) { call(source, (TParam)parameter); }; } /// /// Creates a delegate which will execute the given method after casting the parameter /// down from object to the required parameter type. /// public static SingleValueDelegate CreateDowncastDelegateIgnoringReturn(MethodInfo method) { MethodInfo openImpl = typeof(ReflectionUtil).GetMethod("CreateDowncastDelegateIgnoringReturnImpl"); MethodInfo closedImpl = openImpl.MakeGenericMethod(typeof(T), method.GetParameters()[0].ParameterType, method.ReturnType); return (SingleValueDelegate)closedImpl.Invoke(null, new object[] { method }); } delegate TReturn OpenSingleValueDelegate(TSource source, TParam parameter); public static SingleValueDelegate CreateDowncastDelegateIgnoringReturnImpl(MethodInfo method) { // Convert the reflection call into an open delegate, i.e. instead of calling x.Method(y) we'll // call Method(x, y) OpenSingleValueDelegate call = (OpenSingleValueDelegate) Delegate.CreateDelegate(typeof(OpenSingleValueDelegate), method); return delegate(TSource source, object parameter) { call(source, (TParam)parameter); }; } delegate T OpenCreateBuilderDelegate(); /// /// Creates a delegate which will execute the given static method and cast the result up to IBuilder. /// public static CreateBuilderDelegate CreateStaticUpcastDelegate(MethodInfo method) { MethodInfo openImpl = typeof(ReflectionUtil).GetMethod("CreateStaticUpcastDelegateImpl"); MethodInfo closedImpl = openImpl.MakeGenericMethod(method.ReturnType); return (CreateBuilderDelegate) closedImpl.Invoke(null, new object[] { method }); } public static CreateBuilderDelegate CreateStaticUpcastDelegateImpl(MethodInfo method) { OpenCreateBuilderDelegate call = (OpenCreateBuilderDelegate)Delegate.CreateDelegate(typeof(OpenCreateBuilderDelegate), method); return delegate { return (IBuilder)call(); }; } } }