AsyncSocketServerImpl.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. #ifndef ASYNCSOCKETSERVERIMPL_H
  2. #define ASYNCSOCKETSERVERIMPL_H
  3. #pragma once
  4. #pragma warning(push)
  5. #pragma warning(disable:4995)
  6. #include <vector>
  7. #include <list>
  8. #include <algorithm>
  9. #pragma warning(pop)
  10. #include "CritSection.h"
  11. #include "SocketHandle.h"
  12. /**
  13. * SocketIOBuffer
  14. * Overlapped I/O buffer
  15. */
  16. class SocketIOBuffer
  17. {
  18. public:
  19. SocketIOBuffer(SOCKET sock):_socket(sock)
  20. {
  21. // by default - no allocation
  22. npendingSize = 0;
  23. memset(szpendingbuf,0,SOCKET_BUFFSIZE);
  24. memset(&_Overlapped, 0, sizeof(_Overlapped));
  25. }
  26. explicit SocketIOBuffer(SOCKET sock, size_t size): _socket(sock)
  27. {
  28. npendingSize = 0;
  29. memset(szpendingbuf,0,SOCKET_BUFFSIZE);
  30. memset(&_Overlapped, 0, sizeof(_Overlapped));
  31. _data.resize( size );
  32. }
  33. SocketIOBuffer(const SocketIOBuffer& sbuf)
  34. {
  35. Copy(sbuf);
  36. }
  37. SocketIOBuffer& operator=(const SocketIOBuffer& sbuf)
  38. {
  39. return Copy(sbuf);
  40. }
  41. ~SocketIOBuffer()
  42. {
  43. Free();
  44. }
  45. bool IsValid() const { return (_socket != INVALID_SOCKET); }
  46. void ReAlloc( size_t count) { _data.resize(count); }
  47. void Free() { _data.clear(); }
  48. size_t BufferSize() const { return _data.size(); }
  49. SocketIOBuffer& Copy(const SocketIOBuffer& sbuf)
  50. {
  51. if ( this != &sbuf )
  52. {
  53. _socket = sbuf._socket;
  54. _sockAddr = sbuf._sockAddr;
  55. if ( !sbuf._data.empty() )
  56. {
  57. _data.resize( sbuf._data.size() );
  58. memcpy(&_data[0], &(sbuf._data[0]), _data.size());
  59. }
  60. // Jeff.add----.
  61. npendingSize = sbuf.npendingSize;
  62. memset(szpendingbuf,0,SOCKET_BUFFSIZE);
  63. memcpy(szpendingbuf,sbuf.szpendingbuf,npendingSize);
  64. // Jeff.add----.
  65. }
  66. return *this;
  67. }
  68. // Quick access operator
  69. operator SOCKET() { return _socket; }
  70. operator SOCKET() const { return _socket; }
  71. operator SockAddrIn&() { return _sockAddr; }
  72. operator const SockAddrIn&() const { return _sockAddr; }
  73. operator LPSOCKADDR() { return _sockAddr; }
  74. operator LPWSAOVERLAPPED() { return &_Overlapped; }
  75. operator LPBYTE() { return &_data[0]; }
  76. bool IsEqual(const SocketIOBuffer& sbuf) const { return (_socket == sbuf._socket); }
  77. bool operator==(const SocketIOBuffer& sbuf) const { return IsEqual( sbuf ); }
  78. bool operator==(SOCKET sock) const { return (_socket == sock); }
  79. bool operator!=(const SocketIOBuffer& sbuf) const { return !IsEqual( sbuf ); }
  80. private:
  81. SOCKET _socket;
  82. SockAddrIn _sockAddr;
  83. WSAOVERLAPPED _Overlapped;
  84. std::vector<unsigned char> _data;
  85. SocketIOBuffer();
  86. public:
  87. unsigned char szpendingbuf[SOCKET_BUFFSIZE];
  88. unsigned int npendingSize;
  89. };
  90. typedef std::list<SocketIOBuffer> SocketBufferList;
  91. static DWORD WM_ADD_CONNECTION = WM_USER+0x101;
  92. /**
  93. * IASocketServerHandler
  94. * Event handler that ASocketServerImpl<T> must implement
  95. * This class is not required, you can do the same thing as long your class exposes these functions.
  96. * (These functions are not pure to save you some typing)
  97. */
  98. class IASocketServerHandler
  99. {
  100. public:
  101. virtual void OnThreadBegin(CSocketHandle* ) {}
  102. virtual void OnThreadExit(CSocketHandle* ) {}
  103. virtual void OnThreadLoopEnter(CSocketHandle* ) {}
  104. virtual void OnThreadLoopLeave(CSocketHandle* ) {}
  105. virtual void OnAddConnection(CSocketHandle* , SOCKET ) {}
  106. virtual void OnRemoveConnection(CSocketHandle* , SOCKET ) {}
  107. virtual void OnDataReceived(CSocketHandle* , const BYTE* , DWORD , const SockAddrIn& ) {}
  108. virtual void OnConnectionFailure(CSocketHandle*, SOCKET) {}
  109. virtual void OnConnectionDropped(CSocketHandle* ) {}
  110. virtual void OnConnectionError(CSocketHandle* , DWORD ) {}
  111. };
  112. /**
  113. * ASocketServerImpl<T, tBufferSize>
  114. * Because <typename T> may refer to any class of your choosing,
  115. * Server Communication wrapper
  116. */
  117. template <typename T, size_t tBufferSize = 2048>
  118. class ASocketServerImpl
  119. {
  120. typedef ASocketServerImpl<T, tBufferSize> thisClass;
  121. public:
  122. ASocketServerImpl()
  123. : _pInterface(0)
  124. , _thread(0)
  125. , _threadId(0)
  126. {
  127. }
  128. void SetInterface(T* pInterface)
  129. {
  130. ::InterlockedExchangePointer(reinterpret_cast<void**>(&_pInterface), pInterface);
  131. }
  132. operator CSocketHandle*() throw()
  133. {
  134. return( &_socket );
  135. }
  136. CSocketHandle* operator->() throw()
  137. {
  138. return( &_socket );
  139. }
  140. bool IsOpen() const
  141. {
  142. return _socket.IsOpen();
  143. }
  144. bool CreateSocket(LPCTSTR pszHost, LPCTSTR pszServiceName, int nFamily, int nType, UINT uOptions = 0)
  145. {
  146. return _socket.CreateSocket(pszHost, pszServiceName, nFamily, nType, uOptions);
  147. }
  148. void Close()
  149. {
  150. _socket.Close();
  151. }
  152. DWORD Read(LPBYTE lpBuffer, DWORD dwSize, LPSOCKADDR lpAddrIn = NULL, DWORD dwTimeout = INFINITE)
  153. {
  154. return _socket.Read(lpBuffer, dwSize, lpAddrIn, dwTimeout);
  155. }
  156. DWORD Write(const LPBYTE lpBuffer, DWORD dwCount, const LPSOCKADDR lpAddrIn = NULL, DWORD dwTimeout = INFINITE)
  157. {
  158. return _socket.Write(lpBuffer, dwCount, lpAddrIn, dwTimeout);
  159. }
  160. const SocketBufferList& GetSocketList() const
  161. {
  162. // direct access! - use Lock/Unlock to protect
  163. return _sockets;
  164. }
  165. SocketBufferList& GetClientSocketList()
  166. {
  167. // direct access! - use Lock/Unlock to protect
  168. return _sockets;
  169. }
  170. bool Lock()
  171. {
  172. return _critSection.Lock();
  173. }
  174. bool Unlock()
  175. {
  176. return _critSection.Unlock();
  177. }
  178. void ResetConnectionList()
  179. {
  180. AutoThreadSection aSection(&_critSection);
  181. _sockets.clear();
  182. }
  183. size_t GetConnectionCount() //const
  184. {
  185. AutoThreadSection aSection(&_critSection);
  186. return _sockets.size();
  187. }
  188. void AddConnection(SOCKET sock)
  189. {
  190. AutoThreadSection aSection(&_critSection);
  191. _sockets.push_back( sock );
  192. }
  193. void RemoveConnection(SOCKET sock)
  194. {
  195. AutoThreadSection aSection(&_critSection);
  196. _sockets.remove( sock );
  197. }
  198. SocketIOBuffer* GetConnectionBuffer(SOCKET sock)
  199. {
  200. AutoThreadSection aSection(&_critSection);
  201. SocketBufferList::iterator iter = std::find(_sockets.begin(), _sockets.end(), sock);
  202. return ((iter != _sockets.end()) ? &(*iter) : NULL);
  203. }
  204. bool CloseConnection(SOCKET sock)
  205. {
  206. return CSocketHandle::ShutdownConnection( sock );
  207. }
  208. void CloseAllConnections();
  209. bool StartServer(LPCTSTR pszHost, LPCTSTR pszServiceName, int nFamily, int nType, UINT uOptions = 0);
  210. void Terminate(DWORD dwTimeout = INFINITE);
  211. static bool IsConnectionDropped(DWORD dwError);
  212. ThreadSection *ReturnSection() { return &_critSection; }
  213. protected:
  214. void Run();
  215. void IoRun();
  216. bool AsyncRead(SocketIOBuffer* pBuffer);
  217. void OnIOComplete(DWORD dwError, SocketIOBuffer* pBuffer, DWORD cbTransferred, DWORD dwFlags);
  218. static DWORD WINAPI SocketServerProc(thisClass* _this);
  219. static DWORD WINAPI SocketServerIOProc(thisClass* _this);
  220. static void WINAPI CompletionRoutine(DWORD dwError, DWORD cbTransferred,
  221. LPWSAOVERLAPPED lpOverlapped, DWORD dwFlags);
  222. T* _pInterface;
  223. HANDLE _thread;
  224. DWORD _threadId;
  225. ThreadSection _critSection;
  226. CSocketHandle _socket;
  227. SocketBufferList _sockets;
  228. };
  229. template <typename T, size_t tBufferSize>
  230. void ASocketServerImpl<T, tBufferSize>::CloseAllConnections()
  231. {
  232. AutoThreadSection aSection(&_critSection);
  233. if ( !_sockets.empty() )
  234. {
  235. // NOTE(elaurentin): this function closes all connections but handles are kept inside of list
  236. // (socket handles are removed by the pooling thread)
  237. SocketBufferList::iterator iter;
  238. for(iter = _sockets.begin(); iter != _sockets.end(); ++iter)
  239. {
  240. CloseConnection( (*iter) );
  241. }
  242. }
  243. }
  244. template <typename T, size_t tBufferSize>
  245. bool ASocketServerImpl<T, tBufferSize>::StartServer(LPCTSTR pszHost, LPCTSTR pszServiceName, int nFamily, int nType, UINT uOptions)
  246. {
  247. // must be closed first...
  248. if ( IsOpen() ) return false;
  249. bool result = false;
  250. result = _socket.CreateSocket(pszHost, pszServiceName, nFamily, nType, uOptions);
  251. if ( result )
  252. {
  253. _thread = AtlCreateThread(SocketServerProc, this);
  254. if ( _thread == NULL )
  255. {
  256. DWORD dwError = GetLastError();
  257. _socket.Close();
  258. SetLastError(dwError);
  259. result = false;
  260. }
  261. }
  262. return result;
  263. }
  264. template <typename T, size_t tBufferSize>
  265. void ASocketServerImpl<T, tBufferSize>::Run()
  266. {
  267. _ASSERTE( _pInterface != NULL && "Need an interface to pass events");
  268. SOCKET sock = _socket.GetSocket();
  269. int type = _socket.GetSocketType();
  270. // Notification: OnThreadBegin
  271. if ( _pInterface != NULL ) {
  272. _pInterface->OnThreadBegin(*this);
  273. }
  274. if (type == SOCK_STREAM)
  275. {
  276. HANDLE ioThread = NULL;
  277. DWORD ioThreadId = 0L;
  278. ioThread = CreateThreadT(0, 0, SocketServerIOProc, this, 0, &ioThreadId);
  279. if ( ioThread == NULL )
  280. {
  281. DWORD dwError = GetLastError();
  282. if ( _pInterface != NULL ) {
  283. _pInterface->OnConnectionError(*this, dwError);
  284. }
  285. }
  286. // In TCP mode, use an I/O thread to process all requests
  287. while( _socket.IsOpen() )
  288. {
  289. SOCKET newSocket = CSocketHandle::WaitForConnection(sock);
  290. if (!_socket.IsOpen())
  291. break;
  292. if (!PostThreadMessage(ioThreadId, WM_ADD_CONNECTION, 0,
  293. static_cast<ULONG_PTR>(newSocket)))
  294. {
  295. // Notification: OnConnectionFailure
  296. if ( _pInterface != NULL ) {
  297. _pInterface->OnConnectionFailure(*this, newSocket);
  298. }
  299. }
  300. }
  301. // close all connections
  302. CloseAllConnections();
  303. // wait for io thread
  304. if ( ioThread != NULL )
  305. {
  306. PostThreadMessage(ioThreadId, WM_QUIT, 0, 0);
  307. WaitForSingleObject(ioThread, INFINITE);
  308. CloseHandle(ioThread);
  309. }
  310. ResetConnectionList();
  311. }
  312. else
  313. {
  314. // UDP mode - let's reuse our thread here
  315. try
  316. {
  317. SocketIOBuffer ioBuffer(_socket.GetSocket(), tBufferSize);
  318. AsyncRead( &ioBuffer );
  319. // Save our thread id so we can exit gracefully
  320. _threadId = GetCurrentThreadId();
  321. // Process UDP packets
  322. IoRun();
  323. } catch(std::bad_alloc&)
  324. { /* memory exception */
  325. if ( _pInterface != NULL )
  326. {
  327. _pInterface->OnConnectionError(*this, ERROR_NOT_ENOUGH_MEMORY);
  328. }
  329. }
  330. }
  331. // Notification: OnThreadExit
  332. if ( _pInterface != NULL ) {
  333. _pInterface->OnThreadExit(*this);
  334. }
  335. }
  336. template <typename T, size_t tBufferSize>
  337. void ASocketServerImpl<T, tBufferSize>::IoRun()
  338. {
  339. _ASSERTE( _pInterface != NULL && "Need an interface to pass events");
  340. MSG msg;
  341. ::PeekMessage(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE);
  342. // Notification: OnThreadLoopEnter
  343. if ( _pInterface != NULL ) {
  344. _pInterface->OnThreadLoopEnter(*this);
  345. }
  346. DWORD dwResult;
  347. while( (dwResult = MsgWaitForMultipleObjectsEx(0, NULL, INFINITE, QS_ALLEVENTS, MWMO_ALERTABLE)) != WAIT_FAILED)
  348. {
  349. msg.message = 0;
  350. PeekMessage(&msg, NULL, 0, 0, PM_REMOVE);
  351. // exit on WM_QUIT or main socket closed
  352. if ( msg.message == WM_QUIT || !_socket.IsOpen() )
  353. break;
  354. else if ( msg.message == WM_ADD_CONNECTION )
  355. {
  356. SOCKET sock = static_cast<SOCKET>(msg.lParam);
  357. AddConnection(sock);
  358. SocketIOBuffer* pBuffer = GetConnectionBuffer(sock);
  359. _ASSERTE( pBuffer != NULL );
  360. if ( pBuffer != NULL )
  361. {
  362. pBuffer->ReAlloc( tBufferSize );
  363. if (!AsyncRead(pBuffer))
  364. {
  365. // remove and close connection
  366. // RemoveConnection( sock );//Jeff.wasn't remove at here;
  367. // CloseConnection( sock );// Jeff.doesn't close socket here;
  368. }
  369. else
  370. {
  371. // Notification: OnAddConnection
  372. if ( _pInterface != NULL ) {
  373. _pInterface->OnAddConnection(*this, sock);
  374. }
  375. }
  376. }
  377. }
  378. }
  379. // Notification: OnThreadLoopLeave
  380. if ( _pInterface != NULL ) {
  381. _pInterface->OnThreadLoopLeave(*this);
  382. }
  383. }
  384. template <typename T, size_t tBufferSize>
  385. bool ASocketServerImpl<T, tBufferSize>::AsyncRead(SocketIOBuffer* pBuffer)
  386. {
  387. CSocketHandle sockHandle;
  388. DWORD dwRead;
  389. SocketIOBuffer& sbuf = (*pBuffer);
  390. SOCKET sock = static_cast<SOCKET>(sbuf);
  391. sockHandle.Attach( sock );
  392. int type = sockHandle.GetSocketType();
  393. LPWSAOVERLAPPED lpOverlapped = static_cast<LPWSAOVERLAPPED>(sbuf);
  394. lpOverlapped->hEvent = reinterpret_cast<HANDLE>(this);
  395. lpOverlapped->Pointer = reinterpret_cast<PVOID>(pBuffer);
  396. if (type == SOCK_STREAM) {
  397. // TCP - save current peer address
  398. sockHandle.GetPeerName( sbuf );
  399. dwRead = sockHandle.ReadEx(static_cast<LPBYTE>(sbuf), // buffer
  400. static_cast<DWORD>(sbuf.BufferSize()), // buffer size
  401. NULL, // sockaddr
  402. lpOverlapped, // overlapped
  403. thisClass::CompletionRoutine );
  404. } else {
  405. dwRead = sockHandle.ReadEx(static_cast<LPBYTE>(sbuf), // buffer
  406. static_cast<DWORD>(sbuf.BufferSize()), // buffer size
  407. static_cast<LPSOCKADDR>(sbuf), // sockaddr
  408. lpOverlapped, // overlapped
  409. thisClass::CompletionRoutine );
  410. }
  411. sockHandle.Detach();
  412. return ( dwRead != -1L );
  413. }
  414. template <typename T, size_t tBufferSize>
  415. void ASocketServerImpl<T, tBufferSize>::OnIOComplete(DWORD dwError, SocketIOBuffer* pBuffer, DWORD cbTransferred, DWORD /*dwFlags*/)
  416. {
  417. _ASSERTE( _pInterface != NULL && "Need an interface to pass events");
  418. _ASSERTE( pBuffer != NULL && "Invalid Buffer");
  419. if ( pBuffer != NULL )
  420. {
  421. CSocketHandle sockHandle;
  422. SOCKET sock = static_cast<SOCKET>(*pBuffer);
  423. sockHandle.Attach( sock );
  424. int type = sockHandle.GetSocketType();
  425. if ( dwError == NOERROR )
  426. {
  427. if (type == SOCK_STREAM && cbTransferred == 0L )
  428. {
  429. // connection broken
  430. if ( _pInterface != NULL ) {
  431. _pInterface->OnConnectionDropped(*this);
  432. }
  433. // remove connection
  434. //RemoveConnection( sock );// Jeff.doesn't remove socket here;
  435. if ( _pInterface != NULL ) {
  436. // Notification: OnRemoveConnection
  437. _pInterface->OnRemoveConnection(*this, sock);
  438. }
  439. }
  440. else
  441. {
  442. // Notification: OnDataReceived
  443. if ( _pInterface != NULL ) {
  444. _pInterface->OnDataReceived(*this,
  445. static_cast<LPBYTE>(*pBuffer), // Data
  446. cbTransferred, // Number of bytes
  447. static_cast<SockAddrIn&>(*pBuffer));
  448. }
  449. // schedule another read for this socket
  450. AsyncRead( pBuffer );
  451. }
  452. }
  453. else
  454. {
  455. for ( ; _pInterface != NULL; )
  456. {
  457. if (IsConnectionDropped( dwError) ) {
  458. // Notification: OnConnectionDropped
  459. if (type == SOCK_STREAM || (dwError == WSAENOTSOCK || dwError == WSAENETDOWN))
  460. //if (type == SOCK_STREAM && (dwError == WSAENOTSOCK || dwError == WSAENETDOWN))// Jeff.set.
  461. {
  462. _pInterface->OnConnectionDropped(*this);
  463. //_pInterface->OnConnectionError(*this, dwError); // Jeff.add
  464. type = -1; // don't schedule other request
  465. break;
  466. }
  467. }
  468. // Notification: OnConnectionError
  469. _pInterface->OnConnectionError(*this, dwError);
  470. break;
  471. }
  472. // Schedule read request
  473. if ((type == SOCK_STREAM || type == SOCK_DGRAM) && _socket.IsOpen() ) {
  474. AsyncRead( pBuffer );
  475. }
  476. }
  477. // Detach or Close this socket (TCP-mode only)
  478. if (type != SOCK_STREAM ||
  479. (type == SOCK_STREAM && cbTransferred != 0L) )
  480. {
  481. sockHandle.Detach();
  482. }
  483. }
  484. }
  485. template <typename T, size_t tBufferSize>
  486. void ASocketServerImpl<T, tBufferSize>::Terminate(DWORD dwTimeout /*= INFINITE*/)
  487. {
  488. _socket.Close();
  489. if ( _thread != NULL )
  490. {
  491. if ( _threadId != 0 ) {
  492. PostThreadMessage(_threadId, WM_QUIT, 0, 0);
  493. }
  494. if ( WaitForSingleObject(_thread, dwTimeout) == WAIT_TIMEOUT ) {
  495. TerminateThread(_thread, 1);
  496. }
  497. CloseHandle(_thread);
  498. _thread = NULL;
  499. _threadId = 0L;
  500. }
  501. }
  502. template <typename T, size_t tBufferSize>
  503. DWORD WINAPI ASocketServerImpl<T, tBufferSize>::SocketServerProc(thisClass* _this)
  504. {
  505. if ( _this != NULL )
  506. {
  507. _this->Run();
  508. }
  509. return 0;
  510. }
  511. template <typename T, size_t tBufferSize>
  512. DWORD WINAPI ASocketServerImpl<T, tBufferSize>::SocketServerIOProc(thisClass* _this)
  513. {
  514. if ( _this != NULL )
  515. {
  516. _this->IoRun();
  517. }
  518. return 0;
  519. }
  520. template <typename T, size_t tBufferSize>
  521. void WINAPI ASocketServerImpl<T, tBufferSize>::CompletionRoutine(DWORD dwError, DWORD cbTransferred,
  522. LPWSAOVERLAPPED lpOverlapped, DWORD dwFlags)
  523. {
  524. thisClass* _this = reinterpret_cast<thisClass*>( lpOverlapped->hEvent );
  525. if ( _this != NULL )
  526. {
  527. SocketIOBuffer* pBuffer = reinterpret_cast<SocketIOBuffer*>(lpOverlapped->Pointer);
  528. _this->OnIOComplete(dwError, pBuffer, cbTransferred, dwFlags);
  529. }
  530. }
  531. template <typename T, size_t tBufferSize>
  532. bool ASocketServerImpl<T, tBufferSize>::IsConnectionDropped(DWORD dwError)
  533. {
  534. // see: winerror.h for definition
  535. switch( dwError )
  536. {
  537. case WSAENOTSOCK:
  538. case WSAENETDOWN:
  539. case WSAENETUNREACH:
  540. case WSAENETRESET:
  541. case WSAECONNABORTED:
  542. case WSAECONNRESET:
  543. case WSAESHUTDOWN:
  544. case WSAEHOSTDOWN:
  545. case WSAEHOSTUNREACH:
  546. return true;
  547. default:
  548. break;
  549. }
  550. return false;
  551. }
  552. #endif //ASYNCSOCKETSERVERIMPL_H