|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Dynamic.Utils;
using System.Linq.Expressions;
namespace System.Dynamic
{
/// <summary>
/// Represents the unary dynamic operation at the call site, providing the binding semantic and the details about the operation.
/// </summary>
[RequiresDynamicCode(Expression.CallSiteRequiresDynamicCode)]
public abstract class UnaryOperationBinder : DynamicMetaObjectBinder
{
/// <summary>
/// Initializes a new instance of the <see cref="UnaryOperationBinder"/> class.
/// </summary>
/// <param name="operation">The unary operation kind.</param>
protected UnaryOperationBinder(ExpressionType operation)
{
ContractUtils.Requires(OperationIsValid(operation), nameof(operation));
Operation = operation;
}
/// <summary>
/// The result type of the operation.
/// </summary>
public sealed override Type ReturnType
{
get
{
switch (Operation)
{
case ExpressionType.IsFalse:
case ExpressionType.IsTrue:
return typeof(bool);
default:
return typeof(object);
}
}
}
/// <summary>
/// The unary operation kind.
/// </summary>
public ExpressionType Operation { get; }
/// <summary>
/// Performs the binding of the unary dynamic operation if the target dynamic object cannot bind.
/// </summary>
/// <param name="target">The target of the dynamic unary operation.</param>
/// <returns>The <see cref="DynamicMetaObject"/> representing the result of the binding.</returns>
public DynamicMetaObject FallbackUnaryOperation(DynamicMetaObject target)
{
return FallbackUnaryOperation(target, null);
}
/// <summary>
/// Performs the binding of the unary dynamic operation if the target dynamic object cannot bind.
/// </summary>
/// <param name="target">The target of the dynamic unary operation.</param>
/// <param name="errorSuggestion">The binding result in case the binding fails, or null.</param>
/// <returns>The <see cref="DynamicMetaObject"/> representing the result of the binding.</returns>
public abstract DynamicMetaObject FallbackUnaryOperation(DynamicMetaObject target, DynamicMetaObject? errorSuggestion);
/// <summary>
/// Performs the binding of the dynamic unary operation.
/// </summary>
/// <param name="target">The target of the dynamic operation.</param>
/// <param name="args">An array of arguments of the dynamic operation.</param>
/// <returns>The <see cref="DynamicMetaObject"/> representing the result of the binding.</returns>
public sealed override DynamicMetaObject Bind(DynamicMetaObject target, DynamicMetaObject[]? args)
{
ArgumentNullException.ThrowIfNull(target);
ContractUtils.Requires(args == null || args.Length == 0, nameof(args));
return target.BindUnaryOperation(this);
}
/// <summary>
/// Always returns <c>true</c> because this is a standard <see cref="DynamicMetaObjectBinder"/>.
/// </summary>
internal sealed override bool IsStandardBinder => true;
internal static bool OperationIsValid(ExpressionType operation)
{
switch (operation)
{
case ExpressionType.Negate:
case ExpressionType.UnaryPlus:
case ExpressionType.Not:
case ExpressionType.Decrement:
case ExpressionType.Increment:
case ExpressionType.OnesComplement:
case ExpressionType.IsTrue:
case ExpressionType.IsFalse:
case ExpressionType.Extension:
return true;
default:
return false;
}
}
}
}
|