You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
200 lines
7.1 KiB
200 lines
7.1 KiB
using System.Diagnostics.CodeAnalysis; |
|
using System.Reflection; |
|
using JetBrains.Annotations; |
|
using RockLib.Reflection.Optimized; |
|
|
|
namespace StabilityMatrix.Core.Extensions; |
|
|
|
[PublicAPI] |
|
public static class ObjectExtensions |
|
{ |
|
/// <summary> |
|
/// Cache of Types to named field getters |
|
/// </summary> |
|
private static readonly Dictionary<Type, Dictionary<string, Func<object, object>>> FieldGetterTypeCache = new(); |
|
|
|
/// <summary> |
|
/// Cache of Types to named field setters |
|
/// </summary> |
|
private static readonly Dictionary<Type, Dictionary<string, Action<object, object>>> FieldSetterTypeCache = new(); |
|
|
|
/// <summary> |
|
/// Cache of Types to named property getters |
|
/// </summary> |
|
private static readonly Dictionary<Type, Dictionary<string, Func<object, object>>> PropertyGetterTypeCache = new(); |
|
|
|
/// <summary> |
|
/// Get the value of a named private field from an object |
|
/// </summary> |
|
/// <remarks> |
|
/// The field must be defined by the runtime type of <see cref="obj"/> or its first base type. |
|
/// For higher inheritance levels, use <see cref="GetPrivateField{TObject,T}"/> to specify the exact defining type. |
|
/// </remarks> |
|
public static T? GetPrivateField<T>(this object obj, string fieldName) |
|
{ |
|
// Check cache |
|
var fieldGetterCache = FieldGetterTypeCache.GetOrAdd(obj.GetType()); |
|
|
|
if (!fieldGetterCache.TryGetValue(fieldName, out var fieldGetter)) |
|
{ |
|
// Get the field |
|
var field = obj.GetType().GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
// Try get from parent |
|
field ??= obj.GetType().BaseType?.GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
|
|
if (field is null) |
|
{ |
|
throw new ArgumentException($"Field {fieldName} not found on type {obj.GetType().Name}"); |
|
} |
|
|
|
// Create a getter for the field |
|
fieldGetter = field.CreateGetter(); |
|
|
|
// Add to cache |
|
fieldGetterCache.Add(fieldName, fieldGetter); |
|
} |
|
|
|
return (T?)fieldGetter(obj); |
|
} |
|
|
|
/// <summary> |
|
/// Get the value of a protected property from an object |
|
/// </summary> |
|
/// <remarks> |
|
/// The property must be defined by the runtime type of <see cref="obj"/> or its first base type. |
|
/// </remarks> |
|
public static object? GetProtectedProperty(this object obj, [LocalizationRequired(false)] string propertyName) |
|
{ |
|
// Check cache |
|
var fieldGetterCache = PropertyGetterTypeCache.GetOrAdd(obj.GetType()); |
|
|
|
if (!fieldGetterCache.TryGetValue(propertyName, out var propertyGetter)) |
|
{ |
|
// Get the field |
|
var propertyInfo = obj.GetType() |
|
.GetProperty(propertyName, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); |
|
// Try get from parent |
|
propertyInfo ??= obj.GetType() |
|
.BaseType |
|
?.GetProperty(propertyName, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); |
|
|
|
if (propertyInfo is null) |
|
{ |
|
throw new ArgumentException($"Property {propertyName} not found on type {obj.GetType().Name}"); |
|
} |
|
|
|
// Create a getter for the field |
|
propertyGetter = o => propertyInfo.GetValue(o)!; |
|
|
|
// Add to cache |
|
fieldGetterCache.Add(propertyName, propertyGetter); |
|
} |
|
|
|
return (object?)propertyGetter(obj); |
|
} |
|
|
|
/// <summary> |
|
/// Get the value of a protected property from an object |
|
/// </summary> |
|
/// <remarks> |
|
/// The property must be defined by the runtime type of <see cref="obj"/> or its first base type. |
|
/// </remarks> |
|
public static T? GetProtectedProperty<T>(this object obj, [LocalizationRequired(false)] string propertyName) |
|
where T : class |
|
{ |
|
return (T?)GetProtectedProperty(obj, propertyName); |
|
} |
|
|
|
/// <summary> |
|
/// Get the value of a named private field from an object |
|
/// </summary> |
|
/// <typeparam name="TObject">Type of the object that defines the field, must be a base class of <see cref="obj"/></typeparam> |
|
/// <typeparam name="T">Type of the field</typeparam> |
|
public static T? GetPrivateField<TObject, T>(this TObject obj, string fieldName) |
|
where TObject : class |
|
{ |
|
// Check cache |
|
var fieldGetterCache = FieldGetterTypeCache.GetOrAdd(typeof(TObject)); |
|
|
|
if (!fieldGetterCache.TryGetValue(fieldName, out var fieldGetter)) |
|
{ |
|
// Get the field |
|
var field = typeof(TObject).GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
|
|
if (field is null) |
|
{ |
|
throw new ArgumentException( |
|
$"Field {typeof(TObject).Name}.{fieldName} not found on type {obj.GetType().Name}" |
|
); |
|
} |
|
|
|
// Create a getter for the field |
|
fieldGetter = field.CreateGetter(); |
|
|
|
// Add to cache |
|
fieldGetterCache.Add(fieldName, fieldGetter); |
|
} |
|
|
|
return (T?)fieldGetter(obj); |
|
} |
|
|
|
/// <summary> |
|
/// Set the value of a named private field on an object |
|
/// </summary> |
|
public static void SetPrivateField(this object obj, string fieldName, object value) |
|
{ |
|
// Check cache |
|
var fieldSetterCache = FieldSetterTypeCache.GetOrAdd(obj.GetType()); |
|
|
|
if (!fieldSetterCache.TryGetValue(fieldName, out var fieldSetter)) |
|
{ |
|
// Get the field |
|
var field = obj.GetType().GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
// Try get from parent |
|
field ??= obj.GetType().BaseType?.GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
|
|
if (field is null) |
|
{ |
|
throw new ArgumentException($"Field {fieldName} not found on type {obj.GetType().Name}"); |
|
} |
|
|
|
// Create a setter for the field |
|
fieldSetter = field.CreateSetter(); |
|
|
|
// Add to cache |
|
fieldSetterCache.Add(fieldName, fieldSetter); |
|
} |
|
|
|
fieldSetter(obj, value); |
|
} |
|
|
|
/// <summary> |
|
/// Set the value of a named private field on an object |
|
/// </summary> |
|
public static void SetPrivateField<T>(this object obj, string fieldName, T? value) |
|
{ |
|
// Check cache |
|
var fieldSetterCache = FieldSetterTypeCache.GetOrAdd(obj.GetType()); |
|
|
|
if (!fieldSetterCache.TryGetValue(fieldName, out var fieldSetter)) |
|
{ |
|
// Get the field |
|
var field = obj.GetType().GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
// Try get from parent |
|
field ??= obj.GetType().BaseType?.GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); |
|
|
|
if (field is null) |
|
{ |
|
throw new ArgumentException($"Field {fieldName} not found on type {obj.GetType().Name}"); |
|
} |
|
|
|
// Create a setter for the field |
|
fieldSetter = field.CreateSetter(); |
|
|
|
// Add to cache |
|
fieldSetterCache.Add(fieldName, fieldSetter); |
|
} |
|
|
|
fieldSetter(obj, value!); |
|
} |
|
}
|
|
|