您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
186 行
7.6 KiB
186 行
7.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
|
|
namespace Cinemachine.Utility
|
|
{
|
|
/// <summary>An ad-hoc collection of helpers for reflection, used by Cinemachine
|
|
/// or its editor tools in various places</summary>
|
|
[DocumentationSorting(0, DocumentationSortingAttribute.Level.Undoc)]
|
|
public static class ReflectionHelpers
|
|
{
|
|
/// <summary>Copy the fields from one object to another</summary>
|
|
/// <param name="src">The source object to copy from</param>
|
|
/// <param name="dst">The destination object to copy to</param>
|
|
/// <param name="bindingAttr">The mask to filter the attributes.
|
|
/// Only those fields that get caught in the filter will be copied</param>
|
|
public static void CopyFields(
|
|
Object src, Object dst,
|
|
BindingFlags bindingAttr = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)
|
|
{
|
|
if (src != null && dst != null)
|
|
{
|
|
Type type = src.GetType();
|
|
FieldInfo[] fields = type.GetFields(bindingAttr);
|
|
for (int i = 0; i < fields.Length; ++i)
|
|
if (!fields[i].IsStatic)
|
|
fields[i].SetValue(dst, fields[i].GetValue(src));
|
|
}
|
|
}
|
|
|
|
#if UNITY_EDITOR
|
|
/// <summary>Search the assembly for all types that match a predicate</summary>
|
|
/// <param name="assembly">The assembly to search</param>
|
|
/// <param name="predicate">The type to look for</param>
|
|
/// <returns>A list of types found in the assembly that inherit from the predicate</returns>
|
|
public static IEnumerable<Type> GetTypesInAssembly(
|
|
Assembly assembly, Predicate<Type> predicate)
|
|
{
|
|
if (assembly == null)
|
|
return null;
|
|
|
|
Type[] types = new Type[0];
|
|
try
|
|
{
|
|
types = assembly.GetTypes();
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// Can't load the types in this assembly
|
|
}
|
|
types = (from t in types
|
|
where t != null && predicate(t)
|
|
select t).ToArray();
|
|
return types;
|
|
}
|
|
|
|
/// <summary>Get a type from a name</summary>
|
|
/// <param name="typeName">The name of the type to search for</param>
|
|
/// <returns>The type matching the name, or null if not found</returns>
|
|
public static Type GetTypeInAllLoadedAssemblies(string typeName)
|
|
{
|
|
foreach (Type type in GetTypesInAllLoadedAssemblies(t => t.Name == typeName))
|
|
return type;
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Search all assemblies for all types that match a predicate</summary>
|
|
/// <param name="predicate">The type to look for</param>
|
|
/// <returns>A list of types found in the assembly that inherit from the predicate</returns>
|
|
public static IEnumerable<Type> GetTypesInAllLoadedAssemblies(Predicate<Type> predicate)
|
|
{
|
|
Assembly[] assemblies = System.AppDomain.CurrentDomain.GetAssemblies();
|
|
List<Type> foundTypes = new List<Type>(100);
|
|
foreach (Assembly assembly in assemblies)
|
|
{
|
|
foreach (Type foundType in GetTypesInAssembly(assembly, predicate))
|
|
foundTypes.Add(foundType);
|
|
}
|
|
return foundTypes;
|
|
}
|
|
|
|
/// <summary>call GetTypesInAssembly() for all assemblies that match a predicate</summary>
|
|
/// <param name="assemblyPredicate">Which assemblies to search</param>
|
|
/// <param name="predicate">What type to look for</param>
|
|
public static IEnumerable<Type> GetTypesInLoadedAssemblies(
|
|
Predicate<Assembly> assemblyPredicate, Predicate<Type> predicate)
|
|
{
|
|
Assembly[] assemblies = System.AppDomain.CurrentDomain.GetAssemblies();
|
|
assemblies = assemblies.Where((Assembly assembly)
|
|
=> { return assemblyPredicate(assembly); }).OrderBy((Assembly ass)
|
|
=> { return ass.FullName; }).ToArray();
|
|
|
|
List<Type> foundTypes = new List<Type>(100);
|
|
foreach (Assembly assembly in assemblies)
|
|
{
|
|
foreach (Type foundType in GetTypesInAssembly(assembly, predicate))
|
|
foundTypes.Add(foundType);
|
|
}
|
|
|
|
return foundTypes;
|
|
}
|
|
|
|
public static bool TypeIsDefined(string fullname)
|
|
{
|
|
return (from assembly in AppDomain.CurrentDomain.GetAssemblies()
|
|
from type in assembly.GetTypes()
|
|
where type.FullName == fullname
|
|
select type).Count() > 0;
|
|
}
|
|
#endif
|
|
|
|
/// <summary>Cheater extension to access internal field of an object</summary>
|
|
/// <param name="type">The type of the field</param>
|
|
/// <param name="obj">The object to access</param>
|
|
/// <param name="memberName">The string name of the field to access</param>
|
|
/// <returns>The value of the field in the objects</returns>
|
|
public static T AccessInternalField<T>(this Type type, object obj, string memberName)
|
|
{
|
|
if (string.IsNullOrEmpty(memberName) || (type == null))
|
|
return default(T);
|
|
|
|
BindingFlags bindingFlags = BindingFlags.NonPublic;
|
|
if (obj != null)
|
|
bindingFlags |= BindingFlags.Instance;
|
|
else
|
|
bindingFlags |= BindingFlags.Static;
|
|
|
|
FieldInfo field = type.GetField(memberName, bindingFlags);
|
|
if ((field != null) && (field.FieldType == typeof(T)))
|
|
return (T)field.GetValue(obj);
|
|
else
|
|
return default(T);
|
|
}
|
|
|
|
/// <summary>Get the object owner of a field. This method processes
|
|
/// the '.' separator to get from the object that owns the compound field
|
|
/// to the object that owns the leaf field</summary>
|
|
/// <param name="path">The name of the field, which may contain '.' separators</param>
|
|
/// <param name="obj">the owner of the compound field</param>
|
|
public static object GetParentObject(string path, object obj)
|
|
{
|
|
var fields = path.Split('.');
|
|
if (fields.Length == 1)
|
|
return obj;
|
|
|
|
var info = obj.GetType().GetField(
|
|
fields[0], BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
|
|
obj = info.GetValue(obj);
|
|
|
|
return GetParentObject(string.Join(".", fields, 1, fields.Length - 1), obj);
|
|
}
|
|
|
|
/// <summary>Returns a string path from an expression - mostly used to retrieve serialized properties
|
|
/// without hardcoding the field path. Safer, and allows for proper refactoring.</summary>
|
|
public static string GetFieldPath<TType, TValue>(Expression<Func<TType, TValue>> expr)
|
|
{
|
|
MemberExpression me;
|
|
switch (expr.Body.NodeType)
|
|
{
|
|
case ExpressionType.MemberAccess:
|
|
me = expr.Body as MemberExpression;
|
|
break;
|
|
default:
|
|
throw new InvalidOperationException();
|
|
}
|
|
|
|
var members = new List<string>();
|
|
while (me != null)
|
|
{
|
|
members.Add(me.Member.Name);
|
|
me = me.Expression as MemberExpression;
|
|
}
|
|
|
|
var sb = new StringBuilder();
|
|
for (int i = members.Count - 1; i >= 0; i--)
|
|
{
|
|
sb.Append(members[i]);
|
|
if (i > 0) sb.Append('.');
|
|
}
|
|
return sb.ToString();
|
|
}
|
|
}
|
|
}
|