public override DynamicMetaObject FallbackBinaryOperation( DynamicMetaObject target, DynamicMetaObject arg, DynamicMetaObject errorSuggestion) { // Defer if any object has no value so that we evaulate their // Expressions and nest a CallSite for the InvokeMember. if (!target.HasValue || !arg.HasValue) { return(Defer(target, arg)); } var restrictions = target.Restrictions.Merge(arg.Restrictions); if (target.Value == null) { restrictions = restrictions.Merge( BindingRestrictions.GetInstanceRestriction(target.Expression, null) ); } else { restrictions = restrictions.Merge(BindingRestrictions.GetTypeRestriction( target.Expression, target.LimitType)); } if (arg.Value == null) { restrictions = restrictions.Merge(BindingRestrictions.GetInstanceRestriction( arg.Expression, null)); } else { restrictions = restrictions.Merge(BindingRestrictions.GetTypeRestriction( arg.Expression, arg.LimitType)); } if (this.Operation == ExpressionType.Add) { if (target.LimitType == typeof(string) && arg.LimitType == typeof(string)) { return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult(Expression.Call( typeof(string).GetMethod("Concat", new Type[] { typeof(string), typeof(string) }), Expression.Convert(target.Expression, target.LimitType), Expression.Convert(arg.Expression, arg.LimitType))), restrictions )); } if (target.LimitType == typeof(DateTime)) { return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult(Expression.Call( typeof(BuiltInFunctions).GetMethod("DateAdd"), Expression.Constant("d"), Expression.Convert(arg.Expression, typeof(object)), target.Expression)), restrictions )); } else if (arg.LimitType == typeof(DateTime)) { return(new DynamicMetaObject( Expression.Call( typeof(BuiltInFunctions).GetMethod("DateAdd"), Expression.Constant("d"), Expression.Convert(target.Expression, typeof(object)), arg.Expression), restrictions )); } else if (!target.LimitType.IsPrimitive || !arg.LimitType.IsPrimitive) { DynamicMetaObject[] args = new DynamicMetaObject[] { target, arg }; List <MethodInfo> res = RuntimeHelpers.GetExtensionMethods("op_Addition", target, args); if (res.Count > 0) { MethodInfo mi = null; if (res.Count > 1) { //If more than one results found, attempt overload resolution mi = RuntimeHelpers.ResolveOverload(res, args); } else { mi = res[0]; } // restrictions and conversion must be done consistently. var callArgs = RuntimeHelpers.ConvertArguments(args, mi.GetParameters()); return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult( Expression.Call(null, mi, callArgs) ), restrictions )); } } } if (target.LimitType.IsPrimitive && arg.LimitType.IsPrimitive) { Type targetType; Expression first; Expression second; if (target.LimitType == arg.LimitType || target.LimitType.IsAssignableFrom(arg.LimitType)) { targetType = target.LimitType; first = Expression.Convert(target.Expression, targetType); //if variable is object type, need to convert twice (unbox + convert) second = Expression.Convert( Expression.Convert(arg.Expression, arg.LimitType), targetType ); } else { targetType = arg.LimitType; first = Expression.Convert( Expression.Convert(target.Expression, target.LimitType), targetType ); second = Expression.Convert(arg.Expression, targetType); } return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult( Expression.MakeBinary( this.Operation, first, second ) ), restrictions )); } else { DynamicMetaObject[] args = null; MethodInfo mi = null; mi = typeof(HelperFunctions).GetMethod("BinaryOp"); Expression op = Expression.Constant(this.Operation); DynamicMetaObject mop = new DynamicMetaObject(Expression.Constant(this.Operation), BindingRestrictions.Empty, this.Operation); args = new DynamicMetaObject[] { mop, target, arg }; // restrictions and conversion must be done consistently. var callArgs = RuntimeHelpers.ConvertArguments(args, mi.GetParameters()); return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult( Expression.Call( mi, callArgs ) ), restrictions )); } }
public override DynamicMetaObject FallbackInvokeMember( DynamicMetaObject targetMO, DynamicMetaObject[] args, DynamicMetaObject errorSuggestion) { #if !NETSTANDARD // First try COM binding. DynamicMetaObject result; if (ComBinder.TryBindInvokeMember(this, targetMO, args, out result)) { return(result); } #endif // Defer if any object has no value so that we evaulate their // Expressions and nest a CallSite for the InvokeMember. if (!targetMO.HasValue || args.Any((a) => !a.HasValue)) { var deferArgs = new DynamicMetaObject[args.Length + 1]; for (int i = 0; i < args.Length; i++) { deferArgs[i + 1] = args[i]; } deferArgs[0] = targetMO; return(Defer(deferArgs)); } // Find our own binding. // Could consider allowing invoking static members from an instance. var flags = BindingFlags.IgnoreCase | BindingFlags.Instance | BindingFlags.Public; var members = targetMO.LimitType.GetMember(this.Name, flags); var restrictions = RuntimeHelpers.GetTargetArgsRestrictions( targetMO, args, false); // Assigned a Null if (targetMO.HasValue && targetMO.Value == null) { return(RuntimeHelpers.CreateThrow(targetMO, args, restrictions, typeof(NullReferenceException), "Object reference not set to an instance of an object.")); } if ((members.Length == 1) && (members[0] is PropertyInfo || members[0] is FieldInfo)) { // NEED TO TEST, should check for delegate value too var mem = members[0]; var target = new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult( Expression.MakeMemberAccess( Expression.Convert(targetMO.Expression, members[0].DeclaringType), members[0])), // Don't need restriction test for name since this // rule is only used where binder is used, which is // only used in sites with this binder.Name. BindingRestrictions.GetTypeRestriction(targetMO.Expression, targetMO.LimitType)); //If no arguments, to allow scenario like Request.QueryString() if (args == null || args.Length == 0) { return(target); } return(new DynamicMetaObject( RuntimeHelpers.GetIndexingExpression(target, args), restrictions )); // Don't test for eventinfos since we do nothing with them now. } else { bool isExtension = false; // Get MethodInfos with right arg counts. var mi_mems = members. Select(m => m as MethodInfo). Where(m => m is MethodInfo && ((MethodInfo)m).GetParameters().Length == args.Length); // Get MethodInfos with param types that work for args. This works // except for value args that need to pass to reftype params. // We could detect that to be smarter and then explicitly StrongBox // the args. List <MethodInfo> res = new List <MethodInfo>(); foreach (var mem in mi_mems) { if (RuntimeHelpers.ParametersMatchArguments( mem.GetParameters(), args)) { res.Add(mem); } } List <DynamicMetaObject> argList = new List <DynamicMetaObject>(args); //Try extension methods if no methods found if (res.Count == 0) { isExtension = true; argList.Insert(0, targetMO); res = RuntimeHelpers.GetExtensionMethods(this.Name, targetMO, argList.ToArray()); } // False below means generate a type restriction on the MO. // We are looking at the members targetMO's Type. if (res.Count == 0) { return(errorSuggestion ?? RuntimeHelpers.CreateThrow( targetMO, args, restrictions, typeof(MissingMemberException), string.Format("Can't bind member invoke {0}.{1}({2})", targetMO.RuntimeType.Name, this.Name, args.ToString()))); } //If more than one results found, attempt overload resolution MethodInfo mi = null; if (res.Count > 1) { mi = RuntimeHelpers.ResolveOverload(res, argList.ToArray()); } else { mi = res[0]; } // restrictions and conversion must be done consistently. var callArgs = RuntimeHelpers.ConvertArguments( argList.ToArray(), mi.GetParameters()); if (isExtension) { return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult( Expression.Call( null, mi, callArgs)), restrictions)); } else { return(new DynamicMetaObject( RuntimeHelpers.EnsureObjectResult( Expression.Call( Expression.Convert(targetMO.Expression, targetMO.LimitType), mi, callArgs)), restrictions)); } // Could hve tried just letting Expr.Call factory do the work, // but if there is more than one applicable method using just // assignablefrom, Expr.Call throws. It does not pick a "most // applicable" method or any method. } }