MessageFactory.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Reflection;
  4. using System.Xml;
  5. using System.Globalization;
  6. using CommonLang;
  7. using CommonLang.IO;
  8. using CommonLang.IO.Attribute;
  9. using CommonLang.Property;
  10. using CommonLang.Protocol;
  11. using System.Text;
  12. namespace CommonLang.Protocol
  13. {
  14. public class MessageFactoryGenerator : IExternalizableFactory, IComparer<Type>
  15. {
  16. private static Type ext_type = typeof(IExternalizable);
  17. private HashMap<Type, Type> all_types = new HashMap<Type, Type>();
  18. private HashMap<int, Type> typecls = new HashMap<int, Type>();
  19. private HashMap<Type, int> typeids = new HashMap<Type, int>();
  20. private Log.Logger log = Log.LoggerFactory.GetLogger(typeof(MessageFactoryGenerator).Name);
  21. private Type[] null_args = new Type[0];
  22. /// <summary>
  23. /// 将一个程序集内的所有类符合[MessageType]的类全部注册到编解码器
  24. /// </summary>
  25. /// <param name="assembly"></param>
  26. public void RegistAssembly(params Assembly[] assembly)
  27. {
  28. foreach (Assembly asm in assembly)
  29. {
  30. Type[] types = null;
  31. try
  32. {
  33. //log.Info("Get Assembly Types : " + asm.FullName);
  34. types = asm.GetTypes();
  35. }
  36. catch (Exception err)
  37. {
  38. log.InfoFormat("Get Types Error : {1}\n {0}", err.Message, asm.FullName);
  39. continue;
  40. }
  41. try
  42. {
  43. foreach (var type in types)
  44. {
  45. if (ext_type.IsAssignableFrom(type))
  46. {
  47. MessageTypeAttribute msgID = PropertyUtil.GetAttribute<MessageTypeAttribute>(type);
  48. if (msgID != null)
  49. {
  50. if (type.GetConstructor(null_args) == null)
  51. {
  52. log.ErrorFormat("No default null arguments constructor : {0}\n {1}();", type.FullName, type.Name);
  53. }
  54. else
  55. {
  56. all_types.TryAdd(type, type);
  57. }
  58. }
  59. }
  60. }
  61. }
  62. catch (Exception err)
  63. {
  64. log.Error(err.Message, err);
  65. }
  66. }
  67. SyncType();
  68. }
  69. private List<Type> SyncType()
  70. {
  71. typecls.Clear();
  72. typeids.Clear();
  73. List<Type> typenames = new List<Type>(all_types.Count);
  74. foreach (Type type in all_types.Values)
  75. {
  76. typenames.Add(type);
  77. }
  78. typenames.Sort(this);
  79. for (uint i = 0; i < typenames.Count; i++)
  80. {
  81. Type type = typenames[(int)i];
  82. MessageTypeAttribute msgID = PropertyUtil.GetAttribute<MessageTypeAttribute>(type);
  83. int id = msgID.MessageTypeID;
  84. if (id == 0)
  85. {
  86. id = (int)((i | 0x80000000L) & 0xFFFFFFFF);
  87. }
  88. if (typecls.ContainsKey(id))
  89. {
  90. Type ot = typecls[id];
  91. throw new Exception(string.Format(
  92. "Duplicate Type : id = 0x{0} with \"{1}\" - \"{2}\"",
  93. id.ToString("X"), type.FullName, ot.FullName));
  94. }
  95. typecls.Put(id, type);
  96. typeids.Put(type, id);
  97. }
  98. return typenames;
  99. }
  100. public int Compare(Type x, Type y)
  101. {
  102. MessageTypeAttribute mtX = PropertyUtil.GetAttribute<MessageTypeAttribute>(x);
  103. MessageTypeAttribute mtY = PropertyUtil.GetAttribute<MessageTypeAttribute>(y);
  104. if (mtX != null && mtY != null)
  105. {
  106. return mtX.MessageTypeID - mtY.MessageTypeID;
  107. }
  108. if (mtX != null)
  109. {
  110. return 1;
  111. }
  112. if (mtY != null)
  113. {
  114. return -1;
  115. }
  116. return x.FullName.CompareTo(y.FullName);
  117. }
  118. public int GetTypeID(Type type)
  119. {
  120. return typeids.Get(type);
  121. }
  122. public Type GetType(int id)
  123. {
  124. return typecls.Get(id);
  125. }
  126. public string ListAll(string prefix = "")
  127. {
  128. StringBuilder sb = new StringBuilder();
  129. List<Type> types = SyncType();
  130. foreach (Type type in types)
  131. {
  132. int id = typeids[type];
  133. object msg = ReflectionUtil.CreateInstance(type);
  134. sb.AppendLine(prefix + string.Format("0x{0:X8}", id) + " - " + msg.GetType().FullName);
  135. }
  136. return sb.ToString();
  137. }
  138. }
  139. }