IO.Message.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CommonLang.IO.Attribute
  6. {
  7. [AttributeUsage(AttributeTargets.Class)]
  8. public class MessageTypeAttribute : System.Attribute
  9. {
  10. readonly int _messageTypeID;
  11. public MessageTypeAttribute(int messageType)
  12. {
  13. _messageTypeID = messageType;
  14. }
  15. public int MessageTypeID
  16. {
  17. get { return _messageTypeID; }
  18. }
  19. }
  20. public class MessageTypeFactory : IExternalizableFactory
  21. {
  22. private static Log.Logger log = Log.LoggerFactory.GetLogger(typeof(MessageTypeFactory).Name);
  23. private static MessageTypeFactory instance = new MessageTypeFactory();
  24. private static HashMap<int, Type> typecls = new HashMap<int, Type>();
  25. private static HashMap<Type, int> typeids = new HashMap<Type, int>();
  26. internal static int HashString(string str)
  27. {
  28. // BKDR Hash Function
  29. long seed = 131; // 31 131 1313 13131 131313 etc..
  30. long hash = 0;
  31. char[] chars = str.ToCharArray();//.toCharArray();
  32. foreach (char ch in chars)
  33. {
  34. hash = hash * seed + ch;
  35. }
  36. return (int)(hash & 0x7FFFFFFF);
  37. }
  38. internal static MessageTypeAttribute GetMessageType(Type type)
  39. {
  40. object[] infos = type.GetCustomAttributes(typeof(MessageTypeAttribute), false);
  41. foreach (object info in infos)
  42. {
  43. if (info is MessageTypeAttribute)
  44. {
  45. MessageTypeAttribute msgtype = info as MessageTypeAttribute;
  46. return msgtype;
  47. }
  48. }
  49. return null;
  50. }
  51. public static int RegistClass(Type type)
  52. {
  53. int msgID = 0;
  54. MessageTypeAttribute msgtype = GetMessageType(type);
  55. if (msgtype != null && msgtype.MessageTypeID != 0)
  56. {
  57. msgID = msgtype.MessageTypeID;
  58. }
  59. else
  60. {
  61. msgID = MessageTypeFactory.HashString(type.FullName);
  62. }
  63. if (type.IsAssignableFrom(typeof(IExternalizable)))
  64. {
  65. throw new Exception("Type [" + type + "] is not a IExternalizable !");
  66. }
  67. if (typecls.ContainsKey(msgID))
  68. {
  69. Type exist = typecls.Get(msgID);
  70. throw new Exception("Type [" + type + "] Already have a MessageID [" + exist + "] !");
  71. }
  72. typecls.Add(msgID, type);
  73. typeids.Add(type, msgID);
  74. log.Info("Add Message Type : " + type + " -> " + msgID);
  75. return msgID;
  76. }
  77. public static MessageTypeFactory Instance { get { return instance; } }
  78. #region IExternalizableFactory 成员
  79. public int GetTypeID(Type type)
  80. {
  81. int ret = 0;
  82. if (typeids.TryGetValue(type, out ret))
  83. {
  84. return ret;
  85. }
  86. else
  87. {
  88. try
  89. {
  90. ret = RegistClass(type);
  91. }
  92. catch (Exception err)
  93. {
  94. log.Error(err.Message, err);
  95. }
  96. }
  97. return ret;
  98. }
  99. public Type GetType(int id)
  100. {
  101. Type type = null;
  102. if (typecls.TryGetValue(id, out type))
  103. {
  104. return type;
  105. }
  106. return null;
  107. }
  108. #endregion
  109. }
  110. }