2016-07-16 17:00:50 +00:00
|
|
|
|
using System;
|
2016-07-16 23:13:33 +00:00
|
|
|
|
using System.Collections.Generic;
|
2021-01-17 08:05:07 +00:00
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2016-08-11 02:29:21 +00:00
|
|
|
|
using System.Globalization;
|
2016-07-16 23:13:33 +00:00
|
|
|
|
using System.Linq;
|
2016-07-16 17:00:50 +00:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
public static class ReflectUtil
|
2016-07-16 17:00:50 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static bool IsValueEqual(this PropertyInfo pi, object obj, object value)
|
2016-07-16 17:00:50 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
var v = pi.GetValue(obj, null);
|
|
|
|
|
var c = ConvertValue(value, pi.PropertyType);
|
|
|
|
|
return v.Equals(c);
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static void SetValue(PropertyInfo pi, object obj, object value)
|
|
|
|
|
{
|
|
|
|
|
var c = ConvertValue(value, pi.PropertyType);
|
|
|
|
|
pi.SetValue(obj, c, null);
|
|
|
|
|
}
|
2017-01-08 07:54:09 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static object? GetValue(object obj, string name) => GetPropertyInfo(obj.GetType().GetTypeInfo(), name)?.GetValue(obj);
|
|
|
|
|
public static void SetValue(object obj, string name, object value) => GetPropertyInfo(obj.GetType().GetTypeInfo(), name)?.SetValue(obj, value, null);
|
|
|
|
|
public static object GetValue(Type t, string propertyName) => t.GetTypeInfo().GetDeclaredProperty(propertyName).GetValue(null);
|
|
|
|
|
public static void SetValue(Type t, string propertyName, object value) => t.GetTypeInfo().GetDeclaredProperty(propertyName).SetValue(null, value);
|
2017-03-22 04:40:33 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<string> GetPropertiesStartWithPrefix(Type type, string prefix)
|
|
|
|
|
{
|
|
|
|
|
return type.GetTypeInfo().GetAllTypeInfo().SelectMany(GetAllProperties)
|
2017-01-03 06:17:47 +00:00
|
|
|
|
.Where(p => p.Name.StartsWith(prefix, StringComparison.Ordinal))
|
2018-05-20 14:46:59 +00:00
|
|
|
|
.Select(p => p.Name)
|
|
|
|
|
.Distinct()
|
2022-06-18 18:04:24 +00:00
|
|
|
|
;
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<string> GetPropertiesCanWritePublic(Type type)
|
|
|
|
|
{
|
|
|
|
|
return GetAllPropertyInfoCanWritePublic(type).Select(p => p.Name)
|
|
|
|
|
.Distinct()
|
|
|
|
|
;
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<PropertyInfo> GetAllPropertyInfoCanWritePublic(Type type)
|
|
|
|
|
{
|
|
|
|
|
return type.GetTypeInfo().GetAllTypeInfo().SelectMany(GetAllProperties)
|
|
|
|
|
.Where(p => p.CanWrite && p.SetMethod.IsPublic);
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<PropertyInfo> GetAllPropertyInfoPublic(Type type)
|
|
|
|
|
{
|
|
|
|
|
return type.GetTypeInfo().GetAllTypeInfo().SelectMany(GetAllProperties)
|
|
|
|
|
.Where(p => (p.CanRead && p.GetMethod.IsPublic) || (p.CanWrite && p.SetMethod.IsPublic));
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<string> GetPropertiesPublic(Type type)
|
|
|
|
|
{
|
|
|
|
|
return GetAllPropertyInfoPublic(type).Select(p => p.Name)
|
|
|
|
|
.Distinct()
|
|
|
|
|
;
|
|
|
|
|
}
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<string> GetPropertiesCanWritePublicDeclared(Type type)
|
|
|
|
|
{
|
|
|
|
|
return type.GetTypeInfo().GetAllProperties()
|
2018-05-18 05:43:07 +00:00
|
|
|
|
.Where(p => p.CanWrite && p.SetMethod.IsPublic)
|
2018-05-20 14:46:59 +00:00
|
|
|
|
.Select(p => p.Name)
|
2022-06-18 18:04:24 +00:00
|
|
|
|
.Distinct()
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static object? ConvertValue(object value, Type type)
|
|
|
|
|
{
|
|
|
|
|
if (type == typeof(DateTime?)) // Used for PKM.MetDate and other similar properties
|
|
|
|
|
{
|
|
|
|
|
return DateTime.TryParseExact(value.ToString(), "yyyyMMdd", CultureInfo.InvariantCulture, DateTimeStyles.None, out DateTime dateValue)
|
|
|
|
|
? new DateTime?(dateValue)
|
|
|
|
|
: null;
|
2016-07-18 00:06:50 +00:00
|
|
|
|
}
|
2016-08-10 18:43:00 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
if (type.IsEnum)
|
2016-08-10 18:43:00 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
var str = value.ToString();
|
|
|
|
|
if (int.TryParse(str, out var integer))
|
|
|
|
|
return Convert.ChangeType(integer, type);
|
|
|
|
|
return Enum.Parse(type, str, true);
|
2016-08-10 18:43:00 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
// Convert.ChangeType is suitable for most things
|
|
|
|
|
return Convert.ChangeType(value, type);
|
|
|
|
|
}
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<ConstructorInfo> GetAllConstructors(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredConstructors);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<EventInfo> GetAllEvents(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredEvents);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<FieldInfo> GetAllFields(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredFields);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<MemberInfo> GetAllMembers(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredMembers);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<MethodInfo> GetAllMethods(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredMethods);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<TypeInfo> GetAllNestedTypes(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredNestedTypes);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<PropertyInfo> GetAllProperties(this TypeInfo typeInfo)
|
|
|
|
|
=> GetAll(typeInfo, ti => ti.DeclaredProperties);
|
2018-05-18 05:43:07 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static IEnumerable<TypeInfo> GetAllTypeInfo(this TypeInfo? typeInfo)
|
|
|
|
|
{
|
|
|
|
|
while (typeInfo != null)
|
2018-05-18 05:43:07 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
yield return typeInfo;
|
|
|
|
|
typeInfo = typeInfo.BaseType?.GetTypeInfo();
|
2018-05-18 05:43:07 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks if the <see cref="obj"/> has the requested property <see cref="name"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="obj">Object to check for property existence.</param>
|
|
|
|
|
/// <param name="name">Name of the property.</param>
|
|
|
|
|
/// <param name="pi">Reference to the property info for the object, if it exists.</param>
|
|
|
|
|
/// <returns>True if has property, and false if does not have property. <see cref="pi"/> is null when returning false.</returns>
|
|
|
|
|
public static bool HasProperty(object obj, string name, [NotNullWhen(true)] out PropertyInfo? pi) => (pi = GetPropertyInfo(obj.GetType().GetTypeInfo(), name)) != null;
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static PropertyInfo? GetPropertyInfo(this TypeInfo typeInfo, string name)
|
|
|
|
|
{
|
|
|
|
|
return typeInfo.GetAllTypeInfo().Select(t => t.GetDeclaredProperty(name)).FirstOrDefault(pi => pi != null);
|
|
|
|
|
}
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
private static IEnumerable<T> GetAll<T>(this TypeInfo typeInfo, Func<TypeInfo, IEnumerable<T>> accessor)
|
|
|
|
|
{
|
|
|
|
|
return GetAllTypeInfo(typeInfo).SelectMany(_ => accessor(typeInfo));
|
|
|
|
|
}
|
2020-01-23 01:06:23 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static Dictionary<T, string> GetAllConstantsOfType<T>(this Type type) where T : struct
|
|
|
|
|
{
|
|
|
|
|
var fields = type.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.FlattenHierarchy);
|
|
|
|
|
var consts = fields.Where(fi => fi.IsLiteral && !fi.IsInitOnly && fi.FieldType == typeof(T));
|
|
|
|
|
return consts.ToDictionary(x => (T)x.GetRawConstantValue(), z => z.Name);
|
|
|
|
|
}
|
2020-01-24 04:11:39 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static Dictionary<T, string> GetAllPropertiesOfType<T>(this Type type, object obj) where T : class
|
|
|
|
|
{
|
|
|
|
|
var props = type.GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly);
|
|
|
|
|
var ofType = props.Where(fi => typeof(T).IsAssignableFrom(fi.PropertyType));
|
|
|
|
|
return ofType.ToDictionary(x => (T)x.GetValue(obj), z => z.Name);
|
2016-07-16 17:00:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|