PerSocketContext.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /************************************************************************/
  2. /* Copyright (C), 2016-2020, [IT], 保留所有权利;
  3. /* 模 块 名:PerSocketContext;
  4. /* 描 述:重叠IO缓冲类,每个客户端连接对象类;
  5. /*
  6. /* 版 本:[V];
  7. /* 作 者:[IT];
  8. /* 日 期:[2/23/2016];
  9. /*
  10. /*
  11. /* 注 意:;
  12. /*
  13. /* 修改记录:[IT];
  14. /* 修改日期:;
  15. /* 修改版本:;
  16. /* 修改内容:;
  17. /************************************************************************/
  18. #ifndef __PER_SOCKET_CONTEXT_20160303__
  19. #define __PER_SOCKET_CONTEXT_20160303__
  20. #pragma once
  21. #include <vector>
  22. #include <list>
  23. #include "SockAddrIn.h"
  24. class PerSocketContext
  25. {
  26. public:
  27. PerSocketContext(SOCKET sock):_socket(sock){
  28. _npendingSize = 0;
  29. _ncurSize = 0;
  30. _pendingbuf = NULL;
  31. memset(&_Overlapped, 0, sizeof(_Overlapped));
  32. }
  33. explicit PerSocketContext(SOCKET sock, size_t size): _socket(sock){
  34. _npendingSize = 0;
  35. _pendingbuf = NULL;
  36. _ncurSize= 0;
  37. memset(&_Overlapped, 0, sizeof(_Overlapped));
  38. _data.resize( size );
  39. }
  40. PerSocketContext(const PerSocketContext& sbuf){
  41. Copy(sbuf);
  42. }
  43. PerSocketContext& operator=(const PerSocketContext& sbuf){
  44. return Copy(sbuf);
  45. }
  46. ~PerSocketContext(){
  47. Free();
  48. }
  49. bool IsValid() const { return (_socket != INVALID_SOCKET); }
  50. void ReAlloc( size_t count) { _data.resize(count); }
  51. void Free()
  52. {
  53. _data.clear();
  54. if (_pendingbuf)
  55. delete []_pendingbuf;
  56. _pendingbuf = NULL;
  57. }
  58. size_t BufferSize() const { return _data.size(); }
  59. PerSocketContext& Copy(const PerSocketContext& sbuf)
  60. {
  61. if ( this != &sbuf )
  62. {
  63. _socket = sbuf._socket;
  64. _sockAddr = sbuf._sockAddr;
  65. if ( !sbuf._data.empty() )
  66. {
  67. _data.resize( sbuf._data.size() );
  68. memcpy(&_data[0], &(sbuf._data[0]), _data.size());
  69. }
  70. _ncurSize = sbuf._ncurSize;
  71. _pendingbuf = NULL;
  72. _npendingSize = sbuf._npendingSize;
  73. if ( !sbuf._pendingbuf )
  74. {
  75. _pendingbuf = new unsigned char[_npendingSize];
  76. memcpy(_pendingbuf, sbuf._pendingbuf,_ncurSize);
  77. }
  78. }
  79. return *this;
  80. }
  81. // Quick access operator
  82. operator SOCKET() { return _socket; }
  83. operator SOCKET() const { return _socket; }
  84. operator SockAddrIn&() { return _sockAddr; }
  85. operator const SockAddrIn&() const { return _sockAddr; }
  86. operator LPSOCKADDR() { return _sockAddr; }
  87. operator LPWSAOVERLAPPED() { return &_Overlapped; }
  88. operator LPBYTE() { return &_data[0]; }
  89. bool IsEqual(const PerSocketContext& sbuf) const { return (_socket == sbuf._socket); }
  90. bool operator==(const PerSocketContext& sbuf) const { return IsEqual( sbuf ); }
  91. bool operator==(SOCKET sock) const { return (_socket == sock); }
  92. bool operator!=(const PerSocketContext& sbuf) const { return !IsEqual( sbuf ); }
  93. private:
  94. SOCKET _socket;
  95. SockAddrIn _sockAddr;
  96. WSAOVERLAPPED _Overlapped;
  97. std::vector<unsigned char> _data;
  98. PerSocketContext();
  99. public:
  100. unsigned char *_pendingbuf; // 超过一次接收包,需要分包处理的包缓冲区;
  101. unsigned int _npendingSize; // 总包大小(多个分包);
  102. unsigned int _ncurSize; // 当前接收到的分包接收的大小;
  103. };
  104. typedef std::list<PerSocketContext> SocketContextList;
  105. #endif // __PER_SOCKET_CONTEXT_20160303__