using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
namespace Masuit.Tools.Reflection
{
///
/// 类帮助器,可以动态对类,类成员进行控制(添加,删除),目前只支持属性控制。
/// 注意,属性以外的其它成员会被清空,功能还有待完善,使其不影响其它成员。
///
public static class ClassHelper
{
#region 公有方法
///
/// 根据类的类型型创建类实例。
///
/// 将要创建的类型。
/// 返回创建的类实例。
public static object CreateInstance(this Type t)
{
return Activator.CreateInstance(t);
}
///
/// 根据类的名称,属性列表创建型实例。
///
/// 将要创建的类的名称。
/// 将要创建的类的属性列表。
/// 返回创建的类实例
public static object CreateInstance(string className, List lcpi)
{
return Activator.CreateInstance(AddProperty(BuildType(className), lcpi));
}
///
/// 根据属性列表创建类的实例,默认类名为DefaultClass,由于生成的类不是强类型,所以类名可以忽略。
///
/// 将要创建的类的属性列表
/// 返回创建的类的实例。
public static object CreateInstance(List lcpi)
{
return CreateInstance("DefaultClass", lcpi);
}
///
/// 创建一个没有成员的类型的实例,类名为"DefaultClass"。
///
/// 返回创建的类型的实例。
public static Type BuildType()
{
return BuildType("DefaultClass");
}
///
/// 根据类名创建一个没有成员的类型的实例。
///
/// 将要创建的类型的实例的类名。
/// 返回创建的类型的实例。
public static Type BuildType(string className)
{
AssemblyName myAsmName = new AssemblyName
{
Name = "MyDynamicAssembly"
};
//创建一个永久程序集,设置为AssemblyBuilderAccess.RunAndSave。
AssemblyBuilder myAsmBuilder = AssemblyBuilder.DefineDynamicAssembly(myAsmName, AssemblyBuilderAccess.RunAndCollect);
//创建一个永久单模程序块。
ModuleBuilder myModBuilder = myAsmBuilder.DefineDynamicModule(myAsmName.Name);
//创建TypeBuilder。
TypeBuilder myTypeBuilder = myModBuilder.DefineType(className, TypeAttributes.Public);
//创建类型。
Type retval = myTypeBuilder.CreateType();
//保存程序集,以便可以被Ildasm.exe解析,或被测试程序引用。
//myAsmBuilder.Save(myAsmName.Name + ".dll");
return retval;
}
///
/// 添加属性到类型的实例,注意:该操作会将其它成员清除掉,其功能有待完善。
///
/// 指定类型的实例。
/// 表示属性的一个列表。
/// 返回处理过的类型的实例。
public static Type AddProperty(this Type classType, List lcpi)
{
//合并先前的属性,以便一起在下一步进行处理。
MergeProperty(classType, lcpi);
//把属性加入到Type。
return AddPropertyToType(classType, lcpi);
}
///
/// 添加属性到类型的实例,注意:该操作会将其它成员清除掉,其功能有待完善。
///
/// 指定类型的实例。
/// 表示一个属性。
/// 返回处理过的类型的实例。
public static Type AddProperty(this Type classType, CustPropertyInfo cpi)
{
List lcpi = new List
{
cpi
};
//合并先前的属性,以便一起在下一步进行处理。
MergeProperty(classType, lcpi);
//把属性加入到Type。
return AddPropertyToType(classType, lcpi);
}
///
/// 给对象实例添加新属性并返回新对象实例
///
///
/// 自定义属性对象集合
///
public static object AddProperty(this object obj, List lcpi)
{
Type originType = obj.GetType();
var customs = lcpi.ToDictionary(i => i.PropertyName, i => i.PropertyValue);
var dest = AddProperty(originType, lcpi).CreateInstance();
foreach (var originProperty in originType.GetProperties())
{
dest.SetProperty(originProperty.Name, originProperty.GetValue(obj));
}
foreach (var cpi in customs)
{
dest.SetProperty(cpi.Key, cpi.Value);
}
return dest;
}
///
/// 给对象实例添加新属性并返回新对象实例
///
///
/// 自定义属性对象
///
public static object AddProperty(this object obj, CustPropertyInfo cpi)
{
return AddProperty(obj, new List()
{
cpi
});
}
///
/// 从类型的实例中移除属性,注意:该操作会将其它成员清除掉,其功能有待完善。
///
/// 指定类型的实例。
/// 要移除的属性。
/// 返回处理过的类型的实例。
public static Type DeleteProperty(this Type classType, string propertyName)
{
List ls = new List
{
propertyName
};
//合并先前的属性,以便一起在下一步进行处理。
List lcpi = SeparateProperty(classType, ls);
//把属性加入到Type。
return AddPropertyToType(classType, lcpi);
}
///
/// 从类型的实例中移除属性,注意:该操作会将其它成员清除掉,其功能有待完善。
///
/// 指定类型的实例。
/// 要移除的属性列表。
/// 返回处理过的类型的实例。
public static Type DeleteProperty(this Type classType, List propertyNames)
{
//合并先前的属性,以便一起在下一步进行处理。
List lcpi = SeparateProperty(classType, propertyNames);
//把属性加入到Type。
return AddPropertyToType(classType, lcpi);
}
///
/// 删除对象的属性并返回新对象实例
///
///
/// 属性名集合
///
public static object DeleteProperty(this object obj, List propertyNames)
{
PropertyInfo[] oldProperties = obj.GetType().GetProperties();
Type t = obj.GetType();
foreach (string p in propertyNames)
{
t = t.DeleteProperty(p);
}
var newInstance = t.CreateInstance();
foreach (var p in newInstance.GetProperties())
{
newInstance.SetProperty(p.Name, oldProperties.FirstOrDefault(i => i.Name.Equals(p.Name)).GetValue(obj));
}
return newInstance;
}
///
/// 删除对象的属性并返回新对象实例
///
///
/// 属性名
///
public static object DeleteProperty(this object obj, string property)
{
return DeleteProperty(obj, new List()
{
property
});
}
#endregion
#region 私有方法
///
/// 把类型的实例t和lcpi参数里的属性进行合并。
///
/// 实例t
/// 里面包含属性列表的信息。
private static void MergeProperty(Type t, List lcpi)
{
foreach (PropertyInfo pi in t.GetProperties())
{
CustPropertyInfo cpi = new CustPropertyInfo(pi.PropertyType, pi.Name);
lcpi.Add(cpi);
}
}
///
/// 从类型的实例t的属性移除属性列表lcpi,返回的新属性列表在lcpi中。
///
/// 类型的实例t。
/// 要移除的属性列表。
private static List SeparateProperty(Type t, List ls)
{
List ret = new List();
foreach (PropertyInfo pi in t.GetProperties())
{
foreach (string s in ls)
{
if (pi.Name != s)
{
CustPropertyInfo cpi = new CustPropertyInfo(pi.PropertyType, pi.Name);
ret.Add(cpi);
}
}
}
return ret;
}
///
/// 把lcpi参数里的属性加入到myTypeBuilder中。注意:该操作会将其它成员清除掉,其功能有待完善。
///
/// 类型构造器的实例。
/// 里面包含属性列表的信息。
private static void AddPropertyToTypeBuilder(TypeBuilder myTypeBuilder, List lcpi)
{
// 属性Set和Get方法要一个专门的属性。这里设置为Public。
var getSetAttr = MethodAttributes.Public | MethodAttributes.SpecialName | MethodAttributes.HideBySig;
// 添加属性到myTypeBuilder。
foreach (CustPropertyInfo cpi in lcpi)
{
//定义字段。
FieldBuilder customerNameBldr = myTypeBuilder.DefineField(cpi.FieldName, cpi.Type, FieldAttributes.Private);
//customerNameBldr.SetConstant("11111111");
//定义属性。
//最后一个参数为null,因为属性没有参数。
var custNamePropBldr = myTypeBuilder.DefineProperty(cpi.PropertyName, PropertyAttributes.HasDefault, cpi.Type, null);
//custNamePropBldr.SetConstant("111111111");
//定义Get方法。
var custNameGetPropMthdBldr = myTypeBuilder.DefineMethod(cpi.GetPropertyMethodName, getSetAttr, cpi.Type, Type.EmptyTypes);
var custNameGetIL = custNameGetPropMthdBldr.GetILGenerator();
try
{
custNameGetIL.Emit(OpCodes.Ldarg_0);
//custNameGetIL.Emit(OpCodes.Ldfld, customerNameBldr);
custNameGetIL.Emit(OpCodes.Ldfld, customerNameBldr);
custNameGetIL.Emit(OpCodes.Ret);
}
catch (Exception)
{
// ignored
}
//定义Set方法。
var custNameSetPropMthdBldr = myTypeBuilder.DefineMethod(cpi.SetPropertyMethodName, getSetAttr, null, new[]
{
cpi.Type
});
var custNameSetIL = custNameSetPropMthdBldr.GetILGenerator();
custNameSetIL.Emit(OpCodes.Ldarg_0);
custNameSetIL.Emit(OpCodes.Ldarg_1);
custNameSetIL.Emit(OpCodes.Stfld, customerNameBldr);
custNameSetIL.Emit(OpCodes.Ret);
//custNamePropBldr.SetConstant("ceshi");
//把创建的两个方法(Get,Set)加入到PropertyBuilder中。
custNamePropBldr.SetGetMethod(custNameGetPropMthdBldr);
custNamePropBldr.SetSetMethod(custNameSetPropMthdBldr);
}
}
///
/// 把属性加入到类型的实例。
///
/// 类型的实例。
/// 要加入的属性列表。
/// 返回处理过的类型的实例。
public static Type AddPropertyToType(this Type classType, List lcpi)
{
AssemblyName myAsmName = new AssemblyName
{
Name = "MyDynamicAssembly"
};
//创建一个永久程序集,设置为AssemblyBuilderAccess.RunAndCollect。
AssemblyBuilder myAsmBuilder = AssemblyBuilder.DefineDynamicAssembly(myAsmName, AssemblyBuilderAccess.RunAndCollect);
//创建一个永久单模程序块。
ModuleBuilder myModBuilder = myAsmBuilder.DefineDynamicModule(myAsmName.Name);
//创建TypeBuilder。
// ReSharper disable once AssignNullToNotNullAttribute
TypeBuilder myTypeBuilder = myModBuilder.DefineType(classType.FullName, TypeAttributes.Public);
//把lcpi中定义的属性加入到TypeBuilder。将清空其它的成员。其功能有待扩展,使其不影响其它成员。
AddPropertyToTypeBuilder(myTypeBuilder, lcpi);
//创建类型。
Type retval = myTypeBuilder.CreateType();
//保存程序集,以便可以被Ildasm.exe解析,或被测试程序引用。
//myAsmBuilder.Save(myAsmName.Name + ".dll");
return retval;
}
#endregion
#region 辅助类
///
/// 自定义的属性信息类型。
///
public class CustPropertyInfo
{
///
/// 空构造。
///
public CustPropertyInfo()
{
}
///
/// 根据属性类型名称,属性名称构造实例。
///
/// 属性类型名称。
/// 属性名称。
public CustPropertyInfo(Type type, string propertyName)
{
Type = type;
PropertyName = propertyName;
}
public CustPropertyInfo(Type type, string propertyName, object propertyValue) : this(type, propertyName)
{
PropertyValue = propertyValue;
}
///
/// 获取或设置属性类型名称。
///
public Type Type { get; set; }
///
/// 获取或设置属性名称。
///
public string PropertyName { get; set; }
///
/// 属性值
///
public object PropertyValue { get; set; }
///
/// 获取属性字段名称。
///
public string FieldName
{
get
{
if (PropertyName.Length < 1)
{
return "";
}
return PropertyName.Substring(0, 1).ToLower() + PropertyName.Substring(1);
}
}
///
/// 获取属性在IL中的Set方法名。
///
public string SetPropertyMethodName => "set_" + PropertyName;
///
/// 获取属性在IL中的Get方法名。
///
public string GetPropertyMethodName => "get_" + PropertyName;
}
#endregion
}
[Serializable]
internal enum StackCrawlMark
{
LookForMe,
LookForMyCaller,
LookForMyCallersCaller,
LookForThread,
}
}