FieldsMap.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. using System;
  2. using System.Collections.Generic;
  3. using CommonLang;
  4. using System.Reflection;
  5. using CommonLang.Property;
  6. namespace CommonLang.Property
  7. {
  8. public class FieldManager
  9. {
  10. private HashMap<Type, HashMap<Type, FieldsMap>> AllMaps = new HashMap<Type, HashMap<Type, FieldsMap>>();
  11. public void AddFieldsMap(FieldsMap fm)
  12. {
  13. HashMap<Type, FieldsMap> submap = AllMaps.Get(fm.ObjectType);
  14. if (submap == null)
  15. {
  16. submap = new HashMap<Type, FieldsMap>();
  17. AllMaps.Add(fm.ObjectType, submap);
  18. }
  19. submap.Put(fm.FieldType, fm);
  20. }
  21. public FieldsMap GetFields(Type objectType, Type fieldType)
  22. {
  23. HashMap<Type, FieldsMap> submap = AllMaps.Get(objectType);
  24. if (submap != null)
  25. {
  26. return submap.Get(fieldType);
  27. }
  28. return null;
  29. }
  30. }
  31. public class FieldsMap
  32. {
  33. public readonly Type ObjectType;
  34. public readonly Type FieldType;
  35. public readonly List<Type> CompatibilityTypes = new List<Type>();
  36. public readonly List<MemberDescAttribute> ListFields = new List<MemberDescAttribute>();
  37. private HashMap<string, MemberDescAttribute> fieldmap = new HashMap<string, MemberDescAttribute>();
  38. public FieldsMap(Type objType, Type fieldType, params Type[] compatibilityTypes)
  39. {
  40. this.ObjectType = objType;
  41. this.FieldType = fieldType;
  42. this.CompatibilityTypes.Add(fieldType);
  43. this.CompatibilityTypes.AddRange(compatibilityTypes);
  44. foreach (FieldInfo ff in ObjectType.GetFields())
  45. {
  46. if (CompatibilityTypes.Contains(ff.FieldType))
  47. {
  48. MemberDescAttribute fda = new MemberDescAttribute(ff);
  49. fieldmap.Put(ff.Name, fda);
  50. ListFields.Add(fda);
  51. }
  52. }
  53. foreach (PropertyInfo ff in ObjectType.GetProperties())
  54. {
  55. if (CompatibilityTypes.Contains(ff.PropertyType))
  56. {
  57. MemberDescAttribute fda = new MemberDescAttribute(ff);
  58. fieldmap.Put(ff.Name, fda);
  59. ListFields.Add(fda);
  60. }
  61. }
  62. foreach (MethodInfo ff in ObjectType.GetMethods())
  63. {
  64. if (ff.GetParameters().Length == 0)
  65. {
  66. if (CompatibilityTypes.Contains(ff.ReturnType))
  67. {
  68. MemberDescAttribute fda = new MemberDescAttribute(ff);
  69. fieldmap.Put(ff.Name, fda);
  70. ListFields.Add(fda);
  71. }
  72. }
  73. }
  74. ListFields.Sort();
  75. }
  76. public MemberDescAttribute GetFieldDesc(string fieldName)
  77. {
  78. return fieldmap.Get(fieldName);
  79. }
  80. public T GetValue<T>(object owner, string fieldName)
  81. {
  82. MemberDescAttribute desc = fieldmap.Get(fieldName);
  83. if (desc != null)
  84. {
  85. var dv = desc.GetValue(owner);
  86. return (T)Convert.ChangeType(dv, typeof(T));
  87. }
  88. return default(T);
  89. }
  90. public void SetValue(object owner, string fieldName, object value)
  91. {
  92. MemberDescAttribute desc = fieldmap.Get(fieldName);
  93. if (desc != null)
  94. {
  95. var dv = Convert.ChangeType(value, desc.FieldType);
  96. desc.SetValue(owner, dv);
  97. }
  98. }
  99. }
  100. }