|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Dynamic;
using System.Numerics.Hashing;
using Microsoft.CSharp.RuntimeBinder.Errors;
using Microsoft.CSharp.RuntimeBinder.Semantics;
namespace Microsoft.CSharp.RuntimeBinder
{
/// <summary>
/// Represents a dynamic property access in C#, providing the binding semantics and the details about the operation.
/// Instances of this class are generated by the C# compiler.
/// </summary>
internal sealed class CSharpGetMemberBinder : GetMemberBinder, IInvokeOnGetBinder, ICSharpBinder
{
public BindingFlag BindingFlags => BindingFlag.BIND_RVALUEREQUIRED;
[RequiresUnreferencedCode(Binder.TrimmerWarning)]
public Expr DispatchPayload(RuntimeBinder runtimeBinder, ArgumentObject[] arguments, LocalVariableSymbol[] locals)
{
Debug.Assert(arguments.Length == 1);
return runtimeBinder.BindProperty(this, arguments[0], locals[0], null);
}
[RequiresUnreferencedCode(Binder.TrimmerWarning)]
public void PopulateSymbolTableWithName(Type callingType, ArgumentObject[] arguments)
=> SymbolTable.PopulateSymbolTableWithName(Name, null, arguments[0].Type);
public bool IsBinderThatCanHaveRefReceiver => false;
private readonly CSharpArgumentInfo[] _argumentInfo;
CSharpArgumentInfo ICSharpBinder.GetArgumentInfo(int index) => _argumentInfo[index];
bool IInvokeOnGetBinder.InvokeOnGet => !ResultIndexed;
private bool ResultIndexed { get; }
private readonly RuntimeBinder _binder;
private readonly Type _callingContext;
/// <summary>
/// Initializes a new instance of the <see cref="CSharpGetMemberBinder" />.
/// </summary>
/// <param name="name">The name of the member to get.</param>
/// <param name="resultIndexed">Determines if COM binder should return a callable object.</param>
/// <param name="callingContext">The <see cref="System.Type"/> that indicates where this operation is defined.</param>
/// <param name="argumentInfo">The sequence of <see cref="CSharpArgumentInfo"/> instances for the arguments to this operation.</param>
[RequiresUnreferencedCode(Binder.TrimmerWarning)]
public CSharpGetMemberBinder(
string name,
bool resultIndexed,
Type callingContext,
IEnumerable<CSharpArgumentInfo> argumentInfo) :
base(name, false /*caseInsensitive*/)
{
ResultIndexed = resultIndexed;
_argumentInfo = BinderHelper.ToArray(argumentInfo);
_callingContext = callingContext;
_binder = new RuntimeBinder(callingContext);
}
public int GetGetBinderEquivalenceHash()
{
int hash = _callingContext?.GetHashCode() ?? 0;
if (ResultIndexed)
{
hash = HashHelpers.Combine(hash, 1);
}
hash = HashHelpers.Combine(hash, Name.GetHashCode());
hash = BinderHelper.AddArgHashes(hash, _argumentInfo);
return hash;
}
public bool IsEquivalentTo(ICSharpBinder other)
{
var otherBinder = other as CSharpGetMemberBinder;
if (otherBinder == null)
{
return false;
}
if (Name != otherBinder.Name ||
ResultIndexed != otherBinder.ResultIndexed ||
_callingContext != otherBinder._callingContext ||
_argumentInfo.Length != otherBinder._argumentInfo.Length)
{
return false;
}
return BinderHelper.CompareArgInfos(_argumentInfo, otherBinder._argumentInfo);
}
/// <summary>
/// Performs the binding of the dynamic get member operation if the target dynamic object cannot bind.
/// </summary>
/// <param name="target">The target of the dynamic get member operation.</param>
/// <param name="errorSuggestion">The binding result to use if binding fails, or null.</param>
/// <returns>The <see cref="DynamicMetaObject"/> representing the result of the binding.</returns>
[UnconditionalSuppressMessage("ReflectionAnalysis", "IL2026:RequiresUnreferencedCode",
Justification = "This whole class is unsafe. Constructors are marked as such.")]
public override DynamicMetaObject FallbackGetMember(DynamicMetaObject target, DynamicMetaObject errorSuggestion)
{
#if ENABLECOMBINDER
DynamicMetaObject com;
if (ComInterop.ComBinder.TryBindGetMember(this, target, out com, ResultIndexed))
{
return com;
}
#else
BinderHelper.ThrowIfUsingDynamicCom(target);
#endif
BinderHelper.ValidateBindArgument(target, nameof(target));
return BinderHelper.Bind(this, _binder, new[] { target }, _argumentInfo, errorSuggestion);
}
}
}
|