c#的socket通信应用.文件较多.附件为工程. 
core
  AbstractBytesWorker.cs    字节工作器(基类),用于用于同一不同功能的字节工作器 
BinaryHand.cs  2进制处理器.  ThDispose.cs 处理回收相关
  crc  
entity
  ThPersonInfo.cs
  manager
  ThSocketManager.cs  ThSocketManagerBusiness.cs
所有的业务
  request 
RequestCode.cs  请求码 
ThProtocolReq.cs 请求逻辑 
ThReqBytesWorker.cs 请求相关的字节工作器
  response
  respLogic
    ThProtocolResp.cs 处理服务器响应的数据.
    ThProtocolRespDelegates.cs 所有的代理.用于通知客户的事件.
    ThProtocolRespEvents.cs 所有的事件.用于调用客户的. 
  ThProtocolRespListeners.cs 所有的监听器,用于控制事件如何订阅
    ThProtocolRespLogic.cs 处理服务器的数据 
  ThRespBytesWorker.cs 响应字节处理器
  BinaryMessageHandler.cs 处理数据包粘结,包一次数据不足等情况. 
ResponseCode.cs 响应码
  socket
  TAsyncTcpClient.cs tcpClient类,read异步.
  testcase 
===============================================================
  部分类代码:  BinaryMessageHandler

  1. #pragma warning disable 0219
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.IO;
  7. /// <summary>
  8. /// 字节接收处理,粘包问题
  9. /// </summary>
  10. class BinaryMessageHandler : ThDispose
  11. {
  12. List<byte> bytesList = new List<byte>();
  13. private TAsyncTcpClient tcpClient;
  14. public BinaryMessageHandler(TAsyncTcpClient tcpClient)
  15. {
  16. this.tcpClient = tcpClient;
  17. }
  18. public BinaryMessageHandler()
  19. {
  20. }
  21. override public void SelfDispose()
  22. {
  23. tcpClient = null;
  24. bytesList = null;
  25. }
  26. /// <summary>
  27. /// 累积 字节.
  28. /// 每次累积后,测试是否有完整的包.
  29. /// </summary>
  30. /// <param name="buf"></param>
  31. public void Write(byte[] buf)
  32. {
  33. if (buf.Length > 0)
  34. {
  35. //累积字节
  36. bytesList.AddRange(buf);
  37. byte[] bytes = bytesList.ToArray<byte>();
  38. MemoryStream ms = new MemoryStream(bytes);
  39. BinaryReader reader = new BinaryReader(ms);
  40. int header = reader.ReadUInt16();
  41. if (header == ThSocketManager.TH_HEADER)
  42. {
  43. int len = reader.ReadUInt16();
  44. int remainLen = len - 4;
  45. if ((ms.Length - ms.Position) >= remainLen)
  46. {
  47. //有完整的数据包
  48. ms.Position = 0;
  49. byte[] pack = reader.ReadBytes(len);
  50. ReadPackage(pack);
  51. //移除读完的数据包
  52. bytesList.RemoveRange(0, len);
  53. }
  54. }
  55. reader.Close();
  56. ms.Close();
  57. }
  58. }
  59. /// <summary>
  60. /// 读取服务端响应信息.
  61. /// </summary>
  62. /// <param name="bytes"></param>
  63. /// <returns></returns>
  64. public void ReadPackage(byte[] bytes)
  65. {
  66. //处理包头
  67. MemoryStream ms = new MemoryStream(bytes);
  68. ms.Position = 0;
  69. BinaryReader reader = new BinaryReader(ms, Encoding.UTF8);
  70. ushort header = reader.ReadUInt16();
  71. ushort totalLen = reader.ReadUInt16();
  72. ushort respCode = reader.ReadUInt16();
  73. short signature = reader.ReadInt16();
  74. int dataLen = totalLen - ThSocketManager.PREFIX_LENGTH;
  75. byte[] dataBytes = reader.ReadBytes(dataLen);
  76. reader.Close();
  77. ms.Close();
  78. //调用服务端响应,包体处理器.
  79. tcpClient.thProtocolResp.ResponseHandler(respCode, dataBytes);
  80. }
  81. }

BinaryHand

  1. #pragma warning disable 0219
  2. using System.Text;
  3. using System.IO;
  4. class BinaryHand
  5. {
  6. /// <summary>
  7. /// 准备将数据发送至服务端
  8. /// </summary>
  9. /// <param name="clientId"></param>
  10. /// <param name="data"></param>
  11. /// <returns></returns>
  12. public static byte[] ToBytes(ushort requestCode, uint clientId, byte[] dataBytes)
  13. {
  14. MemoryStream ms = new MemoryStream();
  15. BinaryWriter writer = new BinaryWriter(ms);
  16. //2 ushort header
  17. writer.Write(ThSocketManager.TH_HEADER);
  18. //2 ushort total length
  19. ushort packageLen = ThSocketManager.PREFIX_LENGTH;
  20. if (dataBytes != null)
  21. {
  22. packageLen += (ushort)dataBytes.Length;
  23. }
  24. writer.Write(packageLen);
  25. //2 ushort protocol id
  26. writer.Write(requestCode);
  27. //2 short signature
  28. writer.Write((short)0);
  29. //4 unit client id
  30. //writer.Write(clientId);
  31. //x string data
  32. if (dataBytes != null)
  33. writer.Write(dataBytes);
  34. //计算crc,并写入[6,7]位置.
  35. byte[] tmpBytes = ms.ToArray();
  36. short signature = CRC16.Compute(tmpBytes);
  37. long oldPos = ms.Position;
  38. ms.Position = 6;
  39. writer.Write(signature);
  40. ms.Position = oldPos;
  41. //准备输出
  42. byte[] bytes = ms.ToArray();
  43. writer.Close();
  44. ms.Close();
  45. return bytes;
  46. }
  47. public static byte[] ToBytes(RequestCode requestCode, uint clientId, byte[] dataBytes)
  48. {
  49. return ToBytes((ushort)requestCode, clientId, dataBytes);
  50. }
  51. public byte[] ToBytes(uint clientId, string data)
  52. {
  53. byte[] dataBytes = Encoding.UTF8.GetBytes(data);
  54. return ToBytes(RequestCode.None, clientId, dataBytes);
  55. }
  56. /// <summary>
  57. /// 读取服务端响应信息.
  58. /// </summary>
  59. /// <param name="bytes"></param>
  60. /// <returns></returns>
  61. public byte[] FromBytes(byte[] bytes)
  62. {
  63. MemoryStream ms = new MemoryStream(bytes);
  64. ms.Position = 0;
  65. BinaryReader reader = new BinaryReader(ms, Encoding.UTF8);
  66. ushort header = reader.ReadUInt16();
  67. ushort totalLen = reader.ReadUInt16();
  68. ushort protocolId = reader.ReadUInt16();
  69. short signature = reader.ReadInt16();
  70. uint clientId = reader.ReadUInt32();
  71. int dataLen = totalLen - ThSocketManager.PREFIX_LENGTH;
  72. byte[] dataBytes = reader.ReadBytes(dataLen);
  73. reader.Close();
  74. ms.Close();
  75. return dataBytes;
  76. }
  77. }
04-16 10:19