ProtocolCodec.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using CommonLang.IO;
  2. using CommonLang.Log;
  3. using CommonLang.Property;
  4. using CommonLang.Protocol;
  5. using System;
  6. using System.IO;
  7. namespace CommonLang.Net
  8. {
  9. public interface INetPackageCodec
  10. {
  11. /// <summary>
  12. /// 将网络流中的数据解析成对象
  13. /// </summary>
  14. ///
  15. /// <param name="input"></param>
  16. /// <param name="message"></param>
  17. /// <returns>返回true则表示此次对象解析完成,进行下一次解析</returns>
  18. bool doDecode(Stream input, out object message);
  19. /// <summary>
  20. /// 将对象编码传输至网络流
  21. /// </summary>
  22. ///
  23. /// <param name="output"></param>
  24. /// <param name="message"></param>
  25. /// <returns></returns>
  26. bool doEncode(Stream output, object message);
  27. }
  28. public class SimpleExternalizableCodec : INetPackageCodec
  29. {
  30. private Logger log = LoggerFactory.GetLogger("SimpleExternalizableCodec");
  31. private IExternalizableFactory factory;
  32. public CommonLang.IO.IExternalizableFactory Factory
  33. {
  34. get { return factory; }
  35. }
  36. public SimpleExternalizableCodec(IExternalizableFactory externalizableFactory)
  37. {
  38. this.factory = externalizableFactory;
  39. }
  40. public bool doDecode(Stream input, out object message)
  41. {
  42. InputStream reader = new InputStream(input, factory);
  43. int typeInt = reader.GetS32();
  44. Type type = factory.GetType(typeInt);
  45. if (type == null)
  46. {
  47. log.Error("Unknow Protocol : >>>0x" + typeInt.ToString("X") + "<<<");
  48. message = null;
  49. return false;
  50. }
  51. else
  52. {
  53. IMessage nm = (IMessage)ReflectionUtil.CreateInstance(type);
  54. nm.ReadExternal(reader);
  55. message = nm;
  56. return true;
  57. }
  58. }
  59. public bool doEncode(Stream output, object message)
  60. {
  61. IMessage nm = (IMessage)message;
  62. OutputStream writer = new OutputStream(output, factory);
  63. int typeInt = factory.GetTypeID(message.GetType());
  64. if (typeInt == 0)
  65. {
  66. log.Error("Unknow Protocol : >>>0x" + typeInt.ToString("X") + "<<< - " + message.GetType().FullName);
  67. return false;
  68. }
  69. writer.PutS32(typeInt);
  70. nm.WriteExternal(writer);
  71. return true;
  72. }
  73. }
  74. }