123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- using System.Collections.Concurrent;
- using System.Collections.ObjectModel;
- using System.Diagnostics.CodeAnalysis;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Reflection;
- using Jint.Extensions;
- using Jint.Native;
- using Jint.Native.Function;
- using Jint.Native.Object;
- using Jint.Runtime.Descriptors;
- using Expression = System.Linq.Expressions.Expression;
- #pragma warning disable IL2026
- #pragma warning disable IL2067
- #pragma warning disable IL2070
- #pragma warning disable IL2072
- #pragma warning disable IL3050
- namespace Jint.Runtime.Interop
- {
- public class DefaultTypeConverter : ITypeConverter
- {
- private readonly Engine _engine;
- private readonly record struct TypeConversionKey(Type Source, Type Target);
- private static readonly ConcurrentDictionary<TypeConversionKey, MethodInfo?> _knownCastOperators = new();
- private static readonly Type intType = typeof(int);
- private static readonly Type iCallableType = typeof(Func<JsValue, JsValue[], JsValue>);
- private static readonly Type jsValueType = typeof(JsValue);
- private static readonly Type objectType = typeof(object);
- private static readonly Type engineType = typeof(Engine);
- private static readonly Type typeType = typeof(Type);
- private static readonly MethodInfo convertChangeType = typeof(Convert).GetMethod("ChangeType", new[] { objectType, typeType, typeof(IFormatProvider) })!;
- private static readonly MethodInfo jsValueFromObject = jsValueType.GetMethod(nameof(JsValue.FromObject))!;
- private static readonly MethodInfo jsValueToObject = jsValueType.GetMethod(nameof(JsValue.ToObject))!;
- public DefaultTypeConverter(Engine engine)
- {
- _engine = engine;
- }
- public virtual object? Convert(
- object? value,
- [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors | DynamicallyAccessedMemberTypes.PublicFields)] Type type,
- IFormatProvider formatProvider)
- {
- if (!TryConvert(value, type, formatProvider, propagateException: true, out var converted, out var problemMessage))
- {
- ExceptionHelper.ThrowError(_engine, problemMessage ?? $"Unable to convert {value} to type {type}");
- }
- return converted;
- }
- public virtual bool TryConvert(object? value,
- [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors | DynamicallyAccessedMemberTypes.PublicFields)] Type type,
- IFormatProvider formatProvider,
- [NotNullWhen(true)] out object? converted)
- {
- return TryConvert(value, type, formatProvider, propagateException: false, out converted, out _);
- }
- private bool TryConvert(
- object? value,
- [DynamicallyAccessedMembers(InteropHelper.DefaultDynamicallyAccessedMemberTypes)] Type type,
- IFormatProvider formatProvider,
- bool propagateException,
- out object? converted,
- out string? problemMessage)
- {
- converted = null;
- problemMessage = null;
- if (value is null)
- {
- if (InteropHelper.TypeIsNullable(type))
- {
- return true;
- }
- problemMessage = $"Unable to convert null to '{type.FullName}'";
- return false;
- }
- // don't try to convert if value is derived from type
- if (type.IsInstanceOfType(value))
- {
- converted = value;
- return true;
- }
- if (type.IsGenericType)
- {
- var result = InteropHelper.IsAssignableToGenericType(value.GetType(), type);
- if (result.IsAssignable)
- {
- converted = value;
- return true;
- }
- }
- if (type.IsNullable())
- {
- type = Nullable.GetUnderlyingType(type)!;
- }
- if (type.IsEnum)
- {
- var integer = System.Convert.ChangeType(value, intType, formatProvider);
- if (integer == null)
- {
- ExceptionHelper.ThrowArgumentOutOfRangeException();
- }
- converted = Enum.ToObject(type, integer);
- return true;
- }
- var valueType = value.GetType();
- // is the javascript value an ICallable instance ?
- if (valueType == iCallableType)
- {
- if (typeof(Delegate).IsAssignableFrom(type) && !type.IsAbstract)
- {
- // use target function instance as cache holder, this way delegate and target hold same lifetime
- var delegatePropertyKey = "__jint_delegate_" + type.GUID;
- var func = (Func<JsValue, JsValue[], JsValue>) value;
- var functionInstance = func.Target as Function;
- var d = functionInstance?.GetHiddenClrObjectProperty(delegatePropertyKey) as Delegate;
- if (d is null)
- {
- d = BuildDelegate(type, func);
- functionInstance?.SetHiddenClrObjectProperty(delegatePropertyKey, d);
- }
- converted = d;
- return true;
- }
- }
- if (type.IsArray)
- {
- var source = value as object[];
- if (source == null)
- {
- problemMessage = $"Value of object[] type is expected, but actual type is {value.GetType()}";
- return false;
- }
- var targetElementType = type.GetElementType()!;
- var itemsConverted = new object?[source.Length];
- for (var i = 0; i < source.Length; i++)
- {
- itemsConverted[i] = Convert(source[i], targetElementType, formatProvider);
- }
- var result = Array.CreateInstance(targetElementType, source.Length);
- itemsConverted.CopyTo(result, 0);
- converted = result;
- return true;
- }
- var typeDescriptor = TypeDescriptor.Get(valueType);
- if (typeDescriptor.IsStringKeyedGenericDictionary)
- {
- // public empty constructor required
- var constructors = type.GetConstructors();
- // value types
- if (type.IsValueType && constructors.Length > 0)
- {
- problemMessage = $"No valid constructors found for {type}";
- return false;
- }
- var constructorParameters = Array.Empty<object>();
- // reference types - return null if no valid constructor is found
- if (!type.IsValueType)
- {
- var found = false;
- foreach (var constructor in constructors)
- {
- if (constructor.GetParameters().Length == 0 && constructor.IsPublic)
- {
- found = true;
- break;
- }
- }
- if (!found)
- {
- foreach (var constructor in constructors)
- {
- var parameterInfos = constructor.GetParameters();
- if (parameterInfos.All(static p => p.IsOptional) && constructor.IsPublic)
- {
- constructorParameters = new object[parameterInfos.Length];
- found = true;
- break;
- }
- }
- }
- if (!found)
- {
- problemMessage = $"No valid constructors found for type {type}";
- return false;
- }
- }
- var obj = Activator.CreateInstance(type, constructorParameters)!;
- var members = type.GetMembers();
- foreach (var member in members)
- {
- // only use fields an properties
- if (member.MemberType != MemberTypes.Property &&
- member.MemberType != MemberTypes.Field)
- {
- continue;
- }
- if (typeDescriptor.TryGetValue(value, member.Name, out var val)
- || typeDescriptor.TryGetValue(value, member.Name.UpperToLowerCamelCase(), out val))
- {
- var output = Convert(val, member.GetDefinedType(), formatProvider);
- member.SetValue(obj, output);
- }
- }
- converted = obj;
- return true;
- }
- try
- {
- converted = System.Convert.ChangeType(value, type, formatProvider);
- return true;
- }
- catch (Exception e)
- {
- // check if we can do a cast with operator overloading
- if (TryCastWithOperators(value, type, valueType, out var invoke))
- {
- converted = invoke;
- return true;
- }
- if (propagateException && !_engine.Options.Interop.ExceptionHandler(e))
- {
- throw;
- }
- problemMessage = e.Message;
- return false;
- }
- }
- private Delegate BuildDelegate(
- [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods)] Type type,
- Func<JsValue, JsValue[], JsValue> function)
- {
- var method = type.GetMethod("Invoke");
- var arguments = method!.GetParameters();
- var parameters = new ParameterExpression[arguments.Length];
- for (var i = 0; i < parameters.Length; i++)
- {
- parameters[i] = Expression.Parameter(arguments[i].ParameterType, arguments[i].Name);
- }
- var initializers = new List<MethodCallExpression>(parameters.Length);
- for (var i = 0; i < parameters.Length; i++)
- {
- var param = parameters[i];
- if (param.Type.IsValueType)
- {
- var boxing = Expression.Convert(param, objectType);
- initializers.Add(Expression.Call(null, jsValueFromObject, Expression.Constant(_engine, engineType), boxing));
- }
- else if (param.Type.IsArray &&
- arguments[i].GetCustomAttribute<ParamArrayAttribute>() is not null &&
- function.Target is Function instance)
- {
- for (var j = 0; j < instance.GetLength(); j++)
- {
- var returnLabel = Expression.Label(typeof(object));
- var checkIndex = Expression.GreaterThanOrEqual(Expression.Property(param, nameof(Array.Length)), Expression.Constant(j));
- var condition = Expression.IfThen(checkIndex, Expression.Return(returnLabel, Expression.ArrayAccess(param, Expression.Constant(j))));
- var block = Expression.Block(condition, Expression.Label(returnLabel, Expression.Constant(JsValue.Undefined)));
- initializers.Add(Expression.Call(null, jsValueFromObject, Expression.Constant(_engine, engineType), block));
- }
- }
- else
- {
- initializers.Add(Expression.Call(null, jsValueFromObject, Expression.Constant(_engine, engineType), param));
- }
- }
- var vars = Expression.NewArrayInit(jsValueType, initializers);
- var callExpression = Expression.Call(
- Expression.Constant(function.Target),
- function.Method,
- Expression.Constant(JsValue.Undefined, jsValueType),
- vars);
- if (method.ReturnType != typeof(void))
- {
- return Expression.Lambda(
- type,
- Expression.Convert(
- Expression.Call(
- null,
- convertChangeType,
- Expression.Call(callExpression, jsValueToObject),
- Expression.Constant(method.ReturnType),
- Expression.Constant(System.Globalization.CultureInfo.InvariantCulture, typeof(IFormatProvider))
- ),
- method.ReturnType
- ),
- new ReadOnlyCollection<ParameterExpression>(parameters)).Compile();
- }
- return Expression.Lambda(
- type,
- callExpression,
- new ReadOnlyCollection<ParameterExpression>(parameters)).Compile();
- }
- private static bool TryCastWithOperators(object value, Type type, Type valueType, [NotNullWhen(true)] out object? converted)
- {
- var key = new TypeConversionKey(valueType, type);
- static MethodInfo? CreateValueFactory(TypeConversionKey k)
- {
- var (source, target) = k;
- foreach (var m in source.GetOperatorOverloadMethods().Concat(target.GetOperatorOverloadMethods()))
- {
- if (!target.IsAssignableFrom(m.ReturnType) || m.Name is not ("op_Implicit" or "op_Explicit"))
- {
- continue;
- }
- var parameters = m.GetParameters();
- if (parameters.Length != 1 || !parameters[0].ParameterType.IsAssignableFrom(source))
- {
- continue;
- }
- // we found a match
- return m;
- }
- return null;
- }
- var castOperator = _knownCastOperators.GetOrAdd(key, CreateValueFactory);
- if (castOperator != null)
- {
- try
- {
- converted = castOperator.Invoke(null, new[] { value });
- return converted is not null;
- }
- catch
- {
- converted = null;
- return false;
- }
- }
- converted = null;
- return false;
- }
- }
- internal static class ObjectExtensions
- {
- public static object? GetHiddenClrObjectProperty(this ObjectInstance obj, string name)
- {
- return (obj.Get(name) as IObjectWrapper)?.Target;
- }
- public static void SetHiddenClrObjectProperty(this ObjectInstance obj, string name, object value)
- {
- obj.SetOwnProperty(name, new PropertyDescriptor(ObjectWrapper.Create(obj.Engine, value), PropertyFlag.AllForbidden));
- }
- }
- }
|