BattleCodec.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. using System;
  2. using CommonLang.IO;
  3. using System.IO;
  4. using CommonLang.Protocol;
  5. using CommonLang.Property;
  6. using CommonLang.Log;
  7. using CommonLang.Net;
  8. using CommonAI.Zone;
  9. namespace CommonAI
  10. {
  11. public class BattleCodec : INetPackageCodec
  12. {
  13. protected Logger log = LoggerFactory.GetLogger("BattleCodec");
  14. private TemplateManager templates = null;
  15. private IExternalizableFactory codec = null;
  16. public BattleCodec(TemplateManager templates)
  17. {
  18. this.codec = TemplateManager.MessageCodec;
  19. this.templates = templates;
  20. }
  21. public TemplateManager Templates { get { return templates; } }
  22. public CommonLang.IO.IExternalizableFactory Factory { get { return codec; } }
  23. const int FIXED_HEADER_SIZE = 4;
  24. const int DEFAULT_BUFFER_SIZE = 1024;
  25. public virtual bool doDecode(Stream input, out object message)
  26. {
  27. InputStream reader = new InputStream(input, codec);
  28. int typeInt = reader.GetS32();
  29. Type type = codec.GetType(typeInt);
  30. if (type == null)
  31. {
  32. log.Error("Unknow Protocol : >>>" + typeInt + "<<<");
  33. message = null;
  34. return false;
  35. }
  36. else
  37. {
  38. IMessage nm = (IMessage)ReflectionUtil.CreateInstance(type);
  39. nm.ReadExternal(reader);
  40. if (nm is BattleMessage)
  41. {
  42. ((BattleMessage)nm).EndRead(templates);
  43. }
  44. message = nm;
  45. return true;
  46. }
  47. }
  48. public virtual bool doEncode(Stream output, object message)
  49. {
  50. IMessage nm = (IMessage)message;
  51. OutputStream os = new OutputStream(output, codec);
  52. int typeInt = codec.GetTypeID(message.GetType());
  53. if (typeInt == 0)
  54. {
  55. log.Error("Unknow Protocol : >>>" + typeInt + "<<< - " + message.GetType().FullName);
  56. return false;
  57. }
  58. if (nm is BattleMessage)
  59. {
  60. ((BattleMessage)nm).BeforeWrite(templates);
  61. }
  62. os.PutS32(typeInt);
  63. nm.WriteExternal(os);
  64. return true;
  65. }
  66. }
  67. public class SynchronizedBattleCodec : BattleCodec
  68. {
  69. private InputStream mInputStream;
  70. private OutputStream mOutputStream;
  71. private MemoryStream mBinBufferIn;
  72. private MemoryStream mBinBufferOut;
  73. public SynchronizedBattleCodec(TemplateManager templates)
  74. : base(templates)
  75. {
  76. this.mInputStream = new InputStream(null, Factory);
  77. this.mOutputStream = new OutputStream(null, Factory);
  78. this.mBinBufferIn = new MemoryStream(1024);
  79. this.mBinBufferOut = new MemoryStream(1024);
  80. }
  81. public override bool doDecode(Stream input, out object message)
  82. {
  83. lock (mInputStream)
  84. {
  85. mInputStream.SetStream(input);
  86. try
  87. {
  88. int typeInt = mInputStream.GetS32();
  89. Type type = Factory.GetType(typeInt);
  90. if (type == null)
  91. {
  92. log.Error("Unknow Protocol : >>>" + typeInt + "<<<");
  93. message = null;
  94. return false;
  95. }
  96. else
  97. {
  98. IMessage nm = (IMessage)ReflectionUtil.CreateInstance(type);
  99. nm.ReadExternal(mInputStream);
  100. if (nm is BattleMessage)
  101. {
  102. ((BattleMessage)nm).EndRead(Templates);
  103. }
  104. message = nm;
  105. return true;
  106. }
  107. }
  108. catch (Exception e)
  109. {
  110. message = null;
  111. log.Error("[doDecodeBin] error::" + e.Message, e);
  112. return false;
  113. }
  114. finally
  115. {
  116. mInputStream.SetStream(null);
  117. }
  118. }
  119. }
  120. public override bool doEncode(Stream output, object message)
  121. {
  122. lock (mOutputStream)
  123. {
  124. mOutputStream.SetStream(output);
  125. try
  126. {
  127. IMessage nm = (IMessage)message;
  128. int typeInt = Factory.GetTypeID(message.GetType());
  129. if (typeInt == 0)
  130. {
  131. log.Error("Unknow Protocol : >>>" + typeInt + "<<< - " + message.GetType().FullName);
  132. return false;
  133. }
  134. mOutputStream.PutS32(typeInt);
  135. if (nm is BattleMessage)
  136. {
  137. ((BattleMessage)nm).BeforeWrite(Templates);
  138. }
  139. nm.WriteExternal(mOutputStream);
  140. return true;
  141. }
  142. finally
  143. {
  144. mOutputStream.SetStream(null);
  145. }
  146. }
  147. }
  148. public bool doDecodeBin(byte[] input, out object message)
  149. {
  150. lock (mBinBufferIn)
  151. {
  152. mBinBufferIn.Position = 0;
  153. mBinBufferIn.Write(input, 0, input.Length);
  154. mBinBufferIn.Position = 0;
  155. return doDecode(mBinBufferIn, out message);
  156. }
  157. }
  158. public bool doEncodeBin(out byte[] output, object message)
  159. {
  160. lock (mBinBufferOut)
  161. {
  162. mBinBufferOut.Position = 0;
  163. if (doEncode(mBinBufferOut, message))
  164. {
  165. output = new byte[mBinBufferOut.Position];
  166. Array.Copy(mBinBufferOut.GetBuffer(), 0, output, 0, output.Length);
  167. return true;
  168. }
  169. output = null;
  170. return false;
  171. }
  172. }
  173. }
  174. }