using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
using System.Threading;
using Jint.Extensions;
#pragma warning disable IL2067
#pragma warning disable IL2070
namespace Jint.Runtime.Interop.Reflection;
///
/// A extension method lookup that can be shared between engines, build based on extension methods provided via options.
///
internal sealed class ExtensionMethodCache
{
internal static readonly ExtensionMethodCache Empty = new(new Dictionary());
// starting point containing only extension methods targeting one type, based on given options configuration
private readonly Dictionary _allExtensionMethods;
// cache of all possibilities for type including base types and implemented interfaces
private Dictionary _extensionMethods = new();
private ExtensionMethodCache(Dictionary extensionMethods)
{
_allExtensionMethods = extensionMethods;
}
internal static ExtensionMethodCache Build(List extensionMethodContainerTypes)
{
if (extensionMethodContainerTypes.Count == 0)
{
return Empty;
}
Type GetTypeDefinition(Type type)
{
return type.IsConstructedGenericType && type.GenericTypeArguments.Any(x => x.IsGenericParameter) ? type.GetGenericTypeDefinition() : type;
}
var methodsByTarget = extensionMethodContainerTypes
.SelectMany(x => x.GetExtensionMethods())
.GroupBy(x => GetTypeDefinition(x.GetParameters()[0].ParameterType))
.ToDictionary(x => x.Key, x => x.ToArray());
return new ExtensionMethodCache(methodsByTarget);
}
public bool HasMethods => _allExtensionMethods.Count > 0;
public bool TryGetExtensionMethods(Type objectType, [NotNullWhen(true)] out MethodInfo[]? methods)
{
if (_allExtensionMethods.Count == 0)
{
methods = [];
return false;
}
var methodLookup = _extensionMethods;
if (methodLookup.TryGetValue(objectType, out methods))
{
return methods.Length > 0;
}
var results = new List();
if (_allExtensionMethods.TryGetValue(objectType, out var ownExtensions))
{
results.AddRange(ownExtensions);
}
foreach (var parentType in GetParentTypes(objectType))
{
if (_allExtensionMethods.TryGetValue(parentType, out var parentExtensions))
{
results.AddRange(parentExtensions);
}
}
// don't create generic methods bound to an array of object - as this will prevent value types and other generics that don't support covariants/contravariants
methods = results.ToArray();
// racy, we don't care, worst case we'll catch up later
Interlocked.CompareExchange(ref _extensionMethods, new Dictionary(methodLookup) { [objectType] = methods }, methodLookup);
return methods.Length > 0;
}
private static IEnumerable GetParentTypes(Type type)
{
// is there any base type?
if (type == null)
{
yield break;
}
// return all implemented or inherited interfaces
foreach (var i in type.GetInterfaces())
{
yield return i;
if (i.IsConstructedGenericType)
{
yield return i.GetGenericTypeDefinition();
}
}
// return all inherited types
var currentBaseType = type.BaseType;
while (currentBaseType != null)
{
yield return currentBaseType;
if (currentBaseType.IsConstructedGenericType)
{
yield return currentBaseType.GetGenericTypeDefinition();
}
currentBaseType = currentBaseType.BaseType;
}
}
}