TCP解包与封包

作者:追风剑情 发布于:2019-8-26 16:32 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace TestConsole
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. //封装协议包
  14. ProtocolData pd = new ProtocolData();
  15. pd.WriteUInt32(1001);
  16. pd.WriteUTF8String("Hello World!");
  17. byte[] bytes = pd.EncapsulatePackage();
  18.  
  19. //解析协议包
  20. PackageParser parser = new PackageParser();
  21. parser.OnPackageComplete += OnPackageComplete;
  22. parser.Receive(bytes);
  23.  
  24. Console.ReadKey();
  25. }
  26.  
  27. static void OnPackageComplete(ProtocolData pd)
  28. {
  29. Console.WriteLine("*** OnPackageComplete ***");
  30. Console.WriteLine("id={0}, message={1}", pd.ID, pd.Message);
  31. }
  32. }
  33. }
  34.  
  35. /// <summary>
  36. /// 数据包解析器
  37. /// </summary>
  38. public class PackageParser
  39. {
  40. private ushort size = 0;
  41. private Stack<byte> receiveBuffer = new Stack<byte>();
  42.  
  43. public Action<ProtocolData> OnPackageComplete;
  44.  
  45. public void Receive(byte[] bytes)
  46. {
  47. if (bytes == null || bytes.Length == 0)
  48. return;
  49. for (int i = bytes.Length-1; i >= 0; i--)
  50. receiveBuffer.Push(bytes[i]);
  51. Parse();
  52. }
  53.  
  54. private void Parse()
  55. {
  56. if (size == 0)
  57. {
  58. //用2个字节表示协议长度
  59. if (receiveBuffer.Count < 2)
  60. return;
  61. //Peek() 返回顶部元素,但不删除
  62. //Pop() 返回顶部元素,并删除
  63. byte[] size_bytes = new byte[] { receiveBuffer.Pop(), receiveBuffer.Pop() };
  64. size = BitConverter.ToUInt16(size_bytes, 0);
  65. }
  66.  
  67. if (receiveBuffer.Count >= size)
  68. {
  69. //从缓冲区中提取出一个数据包
  70. byte[] bytes = new byte[size];
  71. for (int i = 0; i < size; i++)
  72. {
  73. bytes[i] = receiveBuffer.Pop();
  74. }
  75. size = 0;
  76.  
  77. if (OnPackageComplete != null)
  78. {
  79. ProtocolData p = new ProtocolData(bytes);
  80. OnPackageComplete(p);
  81. }
  82. }
  83. }
  84. }
  85.  
  86. /// <summary>
  87. /// 协议数据
  88. /// </summary>
  89. public class ProtocolData
  90. {
  91. //原始数据
  92. private byte[] bytes;
  93. //协议ID
  94. private uint id;
  95. //消息
  96. private string message;
  97.  
  98. private List<byte> writeBuffer = new List<byte>();
  99.  
  100. public ProtocolData() { }
  101.  
  102. public ProtocolData(byte[] bytes)
  103. {
  104. this.bytes = bytes;
  105. this.Parse();
  106. }
  107.  
  108. public uint ID
  109. {
  110. get { return id; }
  111. }
  112.  
  113. public string Message
  114. {
  115. get { return message; }
  116. }
  117.  
  118. private void Parse()
  119. {
  120. //从bytes中解析出具体字段
  121. this.id = ReadUInt32();
  122. this.message = ReadString(4);//跳过id
  123. }
  124.  
  125. private uint ReadUInt32(int startIndex = 0)
  126. {
  127. uint i = BitConverter.ToUInt32(bytes, startIndex);
  128. return i;
  129. }
  130.  
  131. private string ReadString(int startIndex = 0, int length = -1)
  132. {
  133. if (length == -1)
  134. length = bytes.Length - startIndex;
  135.  
  136. //Copy
  137. byte[] bs = new byte[length];
  138. for (int i = 0; i < length; i++)
  139. bs[i] = bytes[startIndex + i];
  140.  
  141. string s = System.Text.Encoding.UTF8.GetString(bs);
  142. return s;
  143. }
  144.  
  145. public void WriteUInt32(uint i)
  146. {
  147. byte[] bytes = BitConverter.GetBytes(i);
  148. writeBuffer.AddRange(bytes);
  149. }
  150.  
  151. public void WriteUTF8String(string s)
  152. {
  153. byte[] bytes = System.Text.Encoding.UTF8.GetBytes(s);
  154. writeBuffer.AddRange(bytes);
  155. }
  156.  
  157. // 封装协议包
  158. public byte[] EncapsulatePackage()
  159. {
  160. //内容长度
  161. ushort size = (ushort)writeBuffer.Count;
  162. List<byte> pb = new List<byte>();
  163. pb.AddRange(BitConverter.GetBytes(size));
  164. pb.AddRange(writeBuffer);
  165. return pb.ToArray();
  166. }
  167. }

运行测试

1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号