IClientImpl.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914
  1. #include "StdAfx.h"
  2. #include "IClientImpl.h"
  3. #include <comdef.h>
  4. #include <atlbase.h>
  5. #include "crc32.h"
  6. #include "ThreadPool.hpp"
  7. #include "lzari.h"
  8. const int AF_IPV4 = 0;
  9. const int AF_IPV6 = 1;
  10. const int SOCK_TCP = SOCK_STREAM-1;
  11. const int SOCK_UDP = SOCK_DGRAM-1;
  12. //DWORD g_dwLeng = 0;
  13. //BYTE *g_pData = NULL;
  14. DWORD g_dwLeng2 = 0;
  15. BYTE *g_pData2 = NULL;
  16. DWORD g_dwcount;
  17. BOOL g_bConnLYFZ = 0;
  18. int g_conntype = 0;//正常
  19. void IClientImpl::DataToArray(IN BYTE *pData, IN CONST DWORD &dwLength, IN CArray<CStringArray, CStringArray>*List1array)
  20. {
  21. List1array->RemoveAll();
  22. if (dwLength == 0)return;
  23. if (m_tSendhead.code[0])
  24. {
  25. BYTE *lpszOut = NULL;
  26. int nOutSize = 0;
  27. LZARI Lzari;
  28. Lzari.UnCompress(pData, dwLength, (const BYTE*&)lpszOut, nOutSize);
  29. CMemFile memfile;
  30. memfile.Attach(lpszOut, nOutSize);
  31. Lzari.Release();
  32. try
  33. {
  34. CArchive ar(&memfile, CArchive::load);
  35. List1array->SetSize(m_tSendhead.count[0]);
  36. for (int i = 0; i < List1array->GetSize(); i++)
  37. {
  38. List1array->ElementAt(i).Serialize(ar);
  39. }
  40. ar.Close();
  41. memfile.Detach();
  42. }
  43. catch (CException* e)
  44. {
  45. e->ReportError();
  46. }
  47. }
  48. else
  49. {
  50. CMemFile memfile;
  51. memfile.Attach(pData, dwLength);
  52. CArchive ar(&memfile, CArchive::load);
  53. List1array->SetSize(m_tSendhead.count[0]);
  54. for (int ii = 0; ii < List1array->GetSize(); ii++)
  55. {
  56. List1array->ElementAt(ii).Serialize(ar);
  57. }
  58. ar.Close();
  59. memfile.Detach();
  60. }
  61. }
  62. //IClientImpl* IClientImpl::m_pTcpClient[TCPCLIENTNUM] = {NULL};
  63. void GetFileName(IN const TCHAR *pFullName,OUT TCHAR *pFileName)
  64. {
  65. TCHAR szExt[_MAX_EXT];
  66. _tsplitpath(pFullName, NULL, NULL, pFileName, szExt);
  67. _tcscat(pFileName, szExt);
  68. }
  69. unsigned int VerifyIntegrityPacket(IN void *pIntegrityPacket,IN unsigned int nPacketSize)
  70. {
  71. unsigned int checksum = 0;
  72. //if ( nPacketSize <= sizeof(STProtocolheader) )
  73. //{
  74. // return 0;
  75. //}
  76. unsigned char *pBody = &((unsigned char*)pIntegrityPacket)[sizeof(STProtocolheader)];
  77. if( pBody )
  78. checksum = crc32( 0, pBody, nPacketSize-sizeof(STProtocolheader) );
  79. return checksum;
  80. }
  81. IClientImpl::IClientImpl():m_nMode(AF_IPV4),m_nSockType(SOCK_TCP)
  82. {
  83. m_bSocket = FALSE;
  84. m_bStopbeat = FALSE;
  85. m_hRunObject = NULL;
  86. m_bRecevie = TRUE;
  87. m_hReConnectSrvThreadHandle = NULL;
  88. m_dwSumRecive = 0;
  89. m_dwCurRecive = 0;
  90. m_pRecivebuf = NULL;
  91. ZeroMemory(&m_tSendhead, sizeof(SENDHEAD));
  92. m_SocketClient.SetInterface(this);
  93. }
  94. IClientImpl::~IClientImpl()
  95. {
  96. //m_SocketClient.Terminate();
  97. DisConnectServer();
  98. }
  99. BOOL IClientImpl::SolveDBError()
  100. {
  101. DWORD dwWSAError = WSAGetLastError();
  102. if ( dwWSAError != 0 )
  103. {
  104. LOG4C_NO_FILENUM((LOG_NOTICE,"dwWSAError = %d~",dwWSAError));
  105. }
  106. switch(dwWSAError)
  107. {
  108. case WSAENOTSOCK:
  109. case WSAENETDOWN:
  110. case WSAENETUNREACH:
  111. case WSAENETRESET:
  112. case WSAECONNABORTED:
  113. case WSAECONNRESET:
  114. case WSAESHUTDOWN:
  115. case WSAEHOSTDOWN:
  116. case WSAEHOSTUNREACH:
  117. TRACE("-----------------WSAError = %d\n",dwWSAError);
  118. LOG4C_NO_FILENUM((LOG_NOTICE,"dwWSAError = %d~",dwWSAError));
  119. m_bSocket = FALSE;
  120. break;
  121. default:
  122. break;
  123. }
  124. return TRUE;
  125. }
  126. void IClientImpl::GetAddress(const SockAddrIn& addrIn, CString& rString) const
  127. {
  128. TCHAR szIPAddr[MAX_PATH] = { 0 };
  129. CSocketHandle::FormatIP(szIPAddr, MAX_PATH, addrIn);
  130. rString.Format(_T("%s : %d"), szIPAddr, static_cast<int>(static_cast<UINT>(ntohs(addrIn.GetPort()))) );
  131. }
  132. void IClientImpl::AppendText(LPCTSTR lpszFormat, ...)
  133. {
  134. // if ( !::IsWindow(m_ctlMsgList.GetSafeHwnd()) ) return;
  135. // TCHAR szBuffer[512];
  136. // HWND hWnd = m_ctlMsgList.GetSafeHwnd();
  137. // DWORD dwResult = 0;
  138. // if (SendMessageTimeout(hWnd, WM_GETTEXTLENGTH, 0, 0, SMTO_NORMAL, 500L, &dwResult) != 0)
  139. // {
  140. // int nLen = (int) dwResult;
  141. // if (SendMessageTimeout(hWnd, EM_SETSEL, nLen, nLen, SMTO_NORMAL, 500L, &dwResult) != 0)
  142. // {
  143. // size_t cb = 0;
  144. // va_list args;
  145. // va_start(args, lpszFormat);
  146. // ::StringCchVPrintfEx(szBuffer, 512, NULL, &cb, 0, lpszFormat, args);
  147. // va_end(args);
  148. // SendMessageTimeout(hWnd, EM_REPLACESEL, FALSE, reinterpret_cast<LPARAM>(szBuffer), SMTO_NORMAL, 500L, &dwResult);
  149. // }
  150. // }
  151. }
  152. bool IClientImpl::GetDestination(SockAddrIn& addrIn) const
  153. {
  154. CString strPort;
  155. int nFamily = (m_nMode == AF_IPV4) ? AF_INET : AF_INET6;
  156. return addrIn.CreateFrom(NULL, strPort, nFamily);
  157. }
  158. bool IClientImpl::SetupMCAST()
  159. {
  160. const TCHAR szIPv4MCAST[] = TEXT("239.121.1.2");
  161. const TCHAR szIPv6MCAST[] = TEXT("FF02:0:0:0:0:0:0:1"); // All Nodes local address
  162. bool result = false;
  163. if ( m_nSockType == SOCK_UDP )
  164. {
  165. if ( m_nMode == AF_IPV4 ) {
  166. result = m_SocketClient->AddMembership(szIPv4MCAST, NULL);
  167. } else {
  168. result = m_SocketClient->AddMembership(szIPv6MCAST, NULL);
  169. HRESULT hr = HRESULT_FROM_WIN32(GetLastError());
  170. hr = hr;
  171. }
  172. }
  173. return result;
  174. }
  175. ///////////////////////////////////////////////////////////////////////////////
  176. void IClientImpl::OnThreadBegin(CSocketHandle* pSH)
  177. {
  178. ASSERT( pSH == m_SocketClient );
  179. (pSH);
  180. CString strAddr;
  181. SockAddrIn sockAddr;
  182. m_SocketClient->GetSockName(sockAddr);
  183. GetAddress( sockAddr, strAddr );
  184. InitializeCriticalSection(&pSH->m_hClient2SrvSection);
  185. }
  186. void IClientImpl::OnThreadExit(CSocketHandle* pSH)
  187. {
  188. ASSERT( pSH == m_SocketClient );
  189. DeleteCriticalSection( &pSH->m_hClient2SrvSection );
  190. (pSH);
  191. }
  192. void IClientImpl::OnConnectionDropped(CSocketHandle* pSH)
  193. {
  194. ASSERT( pSH == m_SocketClient );
  195. m_bSocket = FALSE;
  196. if (_tcscmp(RemoteSvr,m_SvrAddr) == 0)
  197. {
  198. OutputDebugString(_T("\t\n远程服务器连接丢失\t\n"));
  199. LOG4C_NO_FILENUM((LOG_NOTICE,"【远程服务器】连接丢失"));
  200. }
  201. else
  202. {
  203. OutputDebugString(_T("\t\n本地服务器连接丢失\t\n"));
  204. LOG4C_NO_FILENUM((LOG_NOTICE,"【本地服务器】连接丢失"));
  205. }
  206. (pSH);
  207. AppendText( _T("Connection lost with client.\r\n") );
  208. }
  209. void IClientImpl::OnConnectionError(CSocketHandle* pSH, DWORD dwError)
  210. {
  211. ASSERT( pSH == m_SocketClient );
  212. (pSH);
  213. _com_error err(dwError);
  214. AppendText( _T("Communication Error:\r\n%s\r\n"), err.ErrorMessage() );
  215. }
  216. /************************************************************************/
  217. /* 函数:OnDataReceived[3/21/2016 IT];
  218. /* 描述:;
  219. /* 参数:;
  220. /* [IN] pSH: 客户端实例对象;
  221. /* [IN] pbData: 客户端本次接收到的数据;
  222. /* [IN] dwCount: 客户端本次接收到的数据长度;
  223. /* [IN] addr: 服务端地址;
  224. /* 返回:void;
  225. /* 注意:;
  226. /* 示例:;
  227. /*
  228. /* 修改:;
  229. /* 日期:;
  230. /* 内容:;
  231. /************************************************************************/
  232. void IClientImpl::OnDataReceived(CSocketHandle* pSH, const BYTE* pbData, DWORD dwCount, const SockAddrIn& addr)
  233. {
  234. OutputDebugString(_T("\n\t 接收服务端数据 \t\n"));
  235. ASSERT( pSH == m_SocketClient );
  236. if( !m_SocketClient->IsOpen() ) return;
  237. if (NULL == pbData) return;
  238. #if 1
  239. if ( m_pRecivebuf )
  240. {
  241. OutputDebugString(_T("\n\t接收\t\n"));
  242. memcpy(m_pRecivebuf+m_dwCurRecive, pbData, dwCount);
  243. m_dwCurRecive += dwCount;
  244. if ( m_dwCurRecive == m_dwSumRecive )
  245. {
  246. TMessageHeader *pMSGHeader = (TMessageHeader*)m_pRecivebuf;
  247. BYTE *pRecivebuf = (BYTE*)m_pRecivebuf + MESSAGE_HEADER_LEN;
  248. WORD dwMSGID = pMSGHeader->wMessageId;
  249. switch( dwMSGID )
  250. {
  251. case MSG_CHATMESSAGE_RESP:
  252. case (MSG_CHATMESSAGE_RESP + 0X4FFF) :
  253. {
  254. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pRecivebuf;
  255. if ( _tcscmp(m_SvrAddr, RemoteSvr) == 0 )
  256. ChatRemoteSvrMessageResponse((void *)(pRecivebuf));
  257. else
  258. ChatLocalSvrMessageResponse((void *)(pRecivebuf));
  259. if ( m_pRecivebuf )
  260. delete []m_pRecivebuf;
  261. m_pRecivebuf = NULL;
  262. m_dwCurRecive = m_dwSumRecive = 0;
  263. }
  264. break;
  265. default:
  266. break;
  267. }
  268. }
  269. else if (m_dwCurRecive > m_dwSumRecive)
  270. {// 接收的数据大于包大小,丢弃;
  271. OutputDebugString(_T("\t\n包数据过大\t\n"));
  272. if ( m_pRecivebuf )
  273. delete []m_pRecivebuf;
  274. m_pRecivebuf = NULL;
  275. m_dwCurRecive = m_dwSumRecive = 0;
  276. m_bRecevie = TRUE;
  277. }
  278. return;
  279. }
  280. TMessageHeader* pHeader = (TMessageHeader *)pbData;
  281. /*网络字节顺序的转换*/
  282. ntohs(pHeader->wHeaderFlag);
  283. ntohs(pHeader->wMessageId);
  284. ntohs(pHeader->wMessageSubId);
  285. ntohl(pHeader->dwDataLen);
  286. ntohs(pHeader->wCheckSum);
  287. ntohl(pHeader->wReserve);
  288. char *pDataBuf = (char *)pbData + MESSAGE_HEADER_LEN;
  289. WORD dwMessageID = pHeader->wMessageId;
  290. switch (dwMessageID)
  291. {
  292. case MSG_LOGIN_RESP:
  293. case (MSG_LOGIN_RESP + 0X2FFF) :
  294. {
  295. LOGIN_RESULT_STRU tLoginResult = { 0 };
  296. memcpy(&tLoginResult, pDataBuf, sizeof(LOGIN_RESULT_STRU));
  297. if ( _tcscmp(m_SvrAddr, RemoteSvr) == 0 )
  298. LoginRemoteSvrResponse(&tLoginResult);
  299. else
  300. LoginLocalSvrResponse(&tLoginResult);
  301. break;
  302. }
  303. case MSG_USERINFO_RESP:
  304. {
  305. TUSERLIST_INFO_STRU tUserListInfo = { 0 };
  306. memcpy(&tUserListInfo, pDataBuf, sizeof(TUSERLIST_INFO_STRU));
  307. // ProcessUserListInfoResponse(&tUserListInfo);
  308. break;
  309. }
  310. case MSG_LOGOUT_RESP:
  311. {
  312. TUSERLIST_INFO_STRU tUserListInfo = { 0 };
  313. memcpy(&tUserListInfo, pDataBuf, sizeof(TUSERLIST_INFO_STRU));
  314. // ProcessLogoutResponse(&tUserListInfo);
  315. break;
  316. }
  317. case MSG_CHATMESSAGE_RESP:
  318. case (MSG_CHATMESSAGE_RESP + 0X4FFF) :
  319. {
  320. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pDataBuf;
  321. if ( m_dwSumRecive == 0 )
  322. {
  323. m_dwSumRecive = pChatMessage->wMessageLen + MESSAGE_HEADER_LEN + sizeof(TCHAT_MESSAGE_STRU);
  324. if (m_pRecivebuf == NULL )
  325. {
  326. m_pRecivebuf = new BYTE[m_dwSumRecive];
  327. memcpy(m_pRecivebuf+m_dwCurRecive, pbData, dwCount);
  328. m_dwCurRecive += dwCount;
  329. if ( m_dwCurRecive == m_dwSumRecive )
  330. {
  331. TMessageHeader *pMSGHeader = (TMessageHeader*)m_pRecivebuf;
  332. BYTE *pRecivebuf = (BYTE*)m_pRecivebuf + MESSAGE_HEADER_LEN;
  333. WORD dwMSGID = pMSGHeader->wMessageId;
  334. switch( dwMSGID )
  335. {
  336. case MSG_CHATMESSAGE_RESP:
  337. case (MSG_CHATMESSAGE_RESP + 0X4FFF) :
  338. {
  339. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pRecivebuf;
  340. if ( _tcscmp(m_SvrAddr, RemoteSvr) == 0 )
  341. ChatRemoteSvrMessageResponse((void *)(pRecivebuf));
  342. else
  343. ChatLocalSvrMessageResponse((void *)(pRecivebuf));
  344. if ( m_pRecivebuf )
  345. delete []m_pRecivebuf;
  346. m_pRecivebuf = NULL;
  347. m_dwCurRecive = m_dwSumRecive = 0;
  348. }
  349. break;
  350. default:
  351. break;
  352. }
  353. }
  354. else if ( m_dwCurRecive > m_dwSumRecive )
  355. {// 接收的数据大于包大小,丢弃;
  356. }
  357. }
  358. }
  359. break;
  360. }
  361. default:
  362. break;
  363. }
  364. #else
  365. #endif
  366. }
  367. BOOL IClientImpl::LoginRemoteSvrRequest()
  368. {
  369. m_bRecevie = FALSE;
  370. // 1.设置通信类型MSG_LOGIN_REQ,为登陆请求;
  371. WORD wMessageId = 0;
  372. wMessageId = MSG_LOGIN_REQ;
  373. BYTE *bySend = NULL;
  374. INT nDataLen = sizeof(TMessageHeader) + sizeof(TLOGIN_STRU);
  375. bySend = new BYTE[nDataLen];
  376. memset(bySend, 0, nDataLen);
  377. DWORD dwDataLen = sizeof(TLOGIN_STRU);
  378. TMessageHeader *pHeader = (TMessageHeader*)bySend;
  379. pHeader->wMessageId = wMessageId;
  380. pHeader->dwDataLen = sizeof(TLOGIN_STRU);
  381. pHeader->byVersion = 101;
  382. pHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
  383. TLOGIN_STRU *pLogonInfo = (TLOGIN_STRU*)(bySend + sizeof(TMessageHeader));
  384. pLogonInfo->tCommonMsg.dwConnectionID = 0;
  385. pLogonInfo->tCommonMsg.wMessageId = wMessageId;
  386. CHAR szHostName[MAX_PATH];
  387. gethostname(szHostName,MAX_PATH);
  388. strcpy_s(pLogonInfo->tUserInfo.szUserName, szHostName);
  389. unsigned long ulSendLen = m_SocketClient.Write(bySend, nDataLen, NULL, 30000);
  390. SolveDBError();
  391. delete []bySend;
  392. bySend = NULL;
  393. if (ulSendLen == SOCKET_ERROR)
  394. {
  395. OutputDebugString(_T("验证【远程服务器】失败~\n"));
  396. LOG4C_NO_FILENUM((LOG_NOTICE,"验证【远程服务器】失败~"));
  397. return 0;
  398. }
  399. OutputDebugString(_T("验证【远程服务器】成功~\n"));
  400. LOG4C_NO_FILENUM((LOG_NOTICE,"验证【远程服务器】成功~"));
  401. return 1;
  402. }
  403. BOOL IClientImpl::LoginLocalSvrRequest()
  404. {
  405. m_bRecevie = FALSE;
  406. // 1.设置通信类型MSG_LOGIN_REQ,为登陆请求;
  407. WORD wMessageId = 0;
  408. wMessageId = MSG_LOGIN_REQ + 0X1FFF;
  409. BYTE *bySend = NULL;
  410. INT nDataLen = sizeof(TMessageHeader) + sizeof(TLOGIN_STRU);
  411. bySend = new BYTE[nDataLen];
  412. memset(bySend, 0, nDataLen);
  413. DWORD dwDataLen = sizeof(TLOGIN_STRU);
  414. TMessageHeader *pHeader = (TMessageHeader*)bySend;
  415. pHeader->wMessageId = wMessageId;
  416. pHeader->dwDataLen = sizeof(TLOGIN_STRU);
  417. pHeader->byVersion = 101;
  418. pHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
  419. TLOGIN_STRU *pLogonInfo = (TLOGIN_STRU*)(bySend + sizeof(TMessageHeader));
  420. pLogonInfo->tCommonMsg.dwConnectionID = 0;
  421. pLogonInfo->tCommonMsg.wMessageId = wMessageId;
  422. CHAR szHostName[MAX_PATH];
  423. gethostname(szHostName,MAX_PATH);
  424. strcpy_s(pLogonInfo->tUserInfo.szUserName, szHostName);
  425. unsigned long ulSendLen = m_SocketClient.Write(bySend, nDataLen, NULL, 30000);
  426. SolveDBError();
  427. delete []bySend;
  428. bySend = NULL;
  429. if (ulSendLen == SOCKET_ERROR)
  430. {
  431. OutputDebugString(_T("验证【本地服务器】失败~\n"));
  432. LOG4C_NO_FILENUM((LOG_NOTICE,"验证验证【本地服务器】失败~"));
  433. return 0;
  434. }
  435. OutputDebugString(_T("验证【本地服务器】成功~\n"));
  436. LOG4C_NO_FILENUM((LOG_NOTICE,"验证【本地服务器】成功~"));
  437. return 1;
  438. }
  439. void IClientImpl::LoginRemoteSvrResponse(void *pLoginResult)
  440. {
  441. m_bRecevie = TRUE;
  442. if (NULL == pLoginResult) return;
  443. LOGIN_RESULT_STRU *ptLoginResult = (LOGIN_RESULT_STRU *)pLoginResult;
  444. DWORD dwConnectionID = ptLoginResult->tCommonMsg.dwConnectionID;
  445. if (LOGIN_RESULT_SUC == ptLoginResult->byResult)
  446. {
  447. OutputDebugString(_T("登陆【远程服务器】成功\n"));
  448. LOG4C_NO_FILENUM((LOG_NOTICE,"登陆【远程服务器】成功"));
  449. }
  450. }
  451. void IClientImpl::LoginLocalSvrResponse(void *pLoginResult)
  452. {
  453. m_bRecevie = TRUE;
  454. if (NULL == pLoginResult) return;
  455. LOGIN_RESULT_STRU *ptLoginResult = (LOGIN_RESULT_STRU *)pLoginResult;
  456. DWORD dwConnectionID = ptLoginResult->tCommonMsg.dwConnectionID;
  457. if (LOGIN_RESULT_SUC == ptLoginResult->byResult)
  458. {
  459. OutputDebugString(_T("登陆【本地服务器】成功~\n"));
  460. LOG4C_NO_FILENUM((LOG_NOTICE,"登陆【本地服务器】成功"));
  461. }
  462. }
  463. BOOL IClientImpl::ChatRemoteSvrMessageRequest(void *szDataBuf, int nDataLen)
  464. {
  465. m_bRecevie = FALSE;
  466. memset(&m_tSendhead,0,sizeof(SENDHEAD));
  467. DWORD dwFromUserID = 0;
  468. WORD wMessageId = MSG_CHATMESSAGE_REQ;
  469. DWORD dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + sizeof(TMessageHeader) + nDataLen;
  470. BYTE *pSendData = NULL;
  471. pSendData = new BYTE[dwDataLen];
  472. memset(pSendData, 0, dwDataLen);
  473. TMessageHeader* ptHeader = (TMessageHeader*)pSendData;
  474. ptHeader->wMessageId = wMessageId;
  475. ptHeader->dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + nDataLen;
  476. ptHeader->byVersion = 101;
  477. ptHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
  478. ptHeader->wReserve = 0;
  479. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU*)(pSendData + sizeof(TMessageHeader));
  480. m_tSendhead.length[98] = 987123768;
  481. memcpy(pChatMessage, &m_tSendhead, sizeof(m_tSendhead));
  482. pChatMessage->tCommonMsg.dwConnectionID = dwFromUserID;
  483. pChatMessage->tCommonMsg.wMessageId = wMessageId;
  484. pChatMessage->dwFromUserID = dwFromUserID;
  485. pChatMessage->dwToUserID = m_dwSendCode;
  486. pChatMessage->wMessageLen = nDataLen;
  487. memcpy(pChatMessage->byFileContent, szDataBuf, nDataLen);
  488. BOOL bRet = FALSE;
  489. unsigned long ulSendLen = m_SocketClient->Write(pSendData, dwDataLen,NULL, 1000);
  490. SolveDBError();
  491. if (ulSendLen != SOCKET_ERROR)
  492. {
  493. m_SocketClient.SetReadTimeout(2*60*1000);
  494. bRet = TRUE;
  495. }
  496. else
  497. {
  498. m_bRecevie = TRUE;
  499. OutputDebugString(_T("请求信息失败~\n"));
  500. LOG4C_NO_FILENUM((LOG_NOTICE,"请求信息失败~"));
  501. }
  502. delete[] pSendData;
  503. pSendData = NULL;
  504. return bRet;
  505. }
  506. BOOL IClientImpl::ChatLocalSvrMessageRequest(void *szDataBuf, int nDataLen)
  507. {
  508. m_bRecevie = FALSE;
  509. DWORD dwFromUserID = 0;
  510. WORD wMessageId = MSG_CHATMESSAGE_REQ + 0X3FFF;
  511. DWORD dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + sizeof(TMessageHeader) + nDataLen;
  512. BYTE *pSendData = NULL;
  513. pSendData = new BYTE[dwDataLen];
  514. memset(pSendData, 0, dwDataLen);
  515. TMessageHeader* ptHeader = (TMessageHeader*)pSendData;
  516. ptHeader->wMessageId = wMessageId;
  517. ptHeader->dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + nDataLen;
  518. ptHeader->byVersion = 101;
  519. ptHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
  520. ptHeader->wReserve = 0;
  521. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU*)(pSendData + sizeof(TMessageHeader));
  522. m_tSendhead.length[98] = 987123768;
  523. memcpy(pChatMessage, &m_tSendhead, sizeof(m_tSendhead));
  524. pChatMessage->tCommonMsg.dwConnectionID = dwFromUserID;
  525. pChatMessage->tCommonMsg.wMessageId = wMessageId;
  526. pChatMessage->dwFromUserID = dwFromUserID;
  527. pChatMessage->dwToUserID = 15;
  528. pChatMessage->wMessageLen = nDataLen;
  529. memcpy(pChatMessage->byFileContent, szDataBuf, nDataLen);
  530. BOOL bRet = FALSE;
  531. unsigned long ulSendLen = m_SocketClient->Write(pSendData, dwDataLen, NULL, 1000);
  532. SolveDBError();
  533. if (ulSendLen != SOCKET_ERROR)
  534. {
  535. bRet = TRUE;
  536. }
  537. else
  538. {
  539. m_bRecevie = TRUE;
  540. OutputDebugString(_T("请求信息失败~\n"));
  541. LOG4C_NO_FILENUM((LOG_NOTICE,"请求信息失败~"));
  542. }
  543. delete[] pSendData;
  544. pSendData = NULL;
  545. return bRet;
  546. }
  547. void IClientImpl::ChatRemoteSvrMessageResponse(void *pResponse)
  548. {
  549. if (NULL == pResponse) return;
  550. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pResponse;
  551. int nMessageLen = pChatMessage->wMessageLen;
  552. DWORD dwToUserID = pChatMessage->dwToUserID;
  553. char *pStr = new char[nMessageLen + 1];
  554. memset(pStr, 0, nMessageLen + 1);
  555. memcpy(pStr, pChatMessage->byFileContent, nMessageLen);
  556. CString str = pStr;
  557. delete[]pStr;
  558. if (str == _T("账户或密码错误!"))
  559. {
  560. //g_bSendOK = 0;
  561. }
  562. else
  563. {
  564. if (dwToUserID == 0 && str != _T("发送信息成功!"))
  565. ;//g_bSendOK = 0;
  566. else
  567. ;//g_bSendOK = 1;
  568. }
  569. //OutputDebugString(str + _T("\n"));
  570. //LOG4C_NO_FILENUM((LOG_NOTICE,"%s~",str));
  571. #if 1
  572. int pos = str.Find(_T("authcodexiao"));
  573. if (pos != -1)
  574. {
  575. CString authcode = str.Right(str.GetLength() - pos - 12);
  576. str = str.Left(pos);
  577. char path[MAX_PATH];
  578. ::GetSystemDirectory(path, MAX_PATH);
  579. CString sysdir = path;
  580. sysdir += _T("\\authcode.txt");
  581. CStdioFile fp;
  582. if (fp.Open(sysdir, CFile::modeWrite | CFile::modeCreate))
  583. {
  584. fp.WriteString(authcode);
  585. fp.Close();
  586. }
  587. }
  588. if (str.Find(".") != -1)
  589. {
  590. CStdioFile fp;
  591. if (fp.Open(_T("\\ip.txt"), CFile::modeWrite | CFile::modeCreate))
  592. {
  593. fp.WriteString(str.GetString());
  594. fp.Close();
  595. }
  596. }
  597. #endif
  598. m_bRecevie = TRUE;
  599. }
  600. void IClientImpl::ChatLocalSvrMessageResponse(void *pResponse)
  601. {
  602. if (NULL == pResponse) return;
  603. TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pResponse;
  604. int nMessageLen = pChatMessage->wMessageLen;
  605. DWORD dwLength = 0;
  606. BYTE *pData = new BYTE[nMessageLen];
  607. memcpy(pData, pChatMessage->byFileContent, nMessageLen);
  608. memcpy(&m_tSendhead, pChatMessage, sizeof(m_tSendhead));
  609. if ( nMessageLen <= sizeof(DWORD) )
  610. {
  611. memcpy(&g_dwLeng2, pChatMessage->byFileContent, sizeof(DWORD));
  612. }
  613. CArray<CStringArray,CStringArray> AryList;
  614. DataToArray( pData, nMessageLen, &AryList);
  615. if ( pData )
  616. delete []pData;
  617. pData = NULL;
  618. #if 0 // 测试;
  619. INT nSize = AryList.GetSize();
  620. for ( int i = 0; i < nSize; i++ )
  621. {
  622. CStringArray &strAry = AryList.ElementAt(i);
  623. for ( int n = 0; n < strAry.GetSize(); n++ )
  624. {
  625. OutputDebugString(_T("\n"));
  626. OutputDebugString(strAry.ElementAt(n));
  627. LOG4C_NO_FILENUM((LOG_NOTICE,"[%d][%d]:%s",i,n, strAry.ElementAt(n)));
  628. OutputDebugString(_T("\n"));
  629. }
  630. }
  631. #endif
  632. m_bRecevie = TRUE;
  633. }
  634. BOOL IClientImpl::Initialize()
  635. {
  636. TCHAR szIPAddr[MAX_PATH] = { 0 };
  637. CSocketHandle::GetLocalAddress(szIPAddr, MAX_PATH, AF_INET);
  638. AppendText(_T("Local Address (IPv4): %s\r\n"), szIPAddr);
  639. CSocketHandle::GetLocalAddress(szIPAddr, MAX_PATH, AF_INET6);
  640. AppendText(_T("Local Address (IPv6): %s\r\n"), szIPAddr);
  641. return TRUE;
  642. }
  643. void IClientImpl::StartReConnectSrvThread()
  644. {
  645. // Jeff.启用重连服务端线程.-------------------
  646. m_hRunObject = CreateEvent( NULL, TRUE, FALSE, _T("ClientThreadRun") );
  647. if ( m_hRunObject == NULL )
  648. {
  649. //LOG4C((LOG_NOTICE,"创建事件失败"));
  650. }
  651. m_hReConnectSrvThreadHandle = CreateThread(NULL,0,ReConnectSrvThread,this,0,NULL);
  652. if ( m_hReConnectSrvThreadHandle == NULL )
  653. {
  654. //LOG4C((LOG_NOTICE,"创建线程失败"));
  655. }
  656. }
  657. BOOL IClientImpl::ConnectServer(LPCTSTR strAddr, LPCTSTR strPort)
  658. {
  659. _stprintf_s(m_SvrAddr,_T("%s"),strAddr);
  660. _stprintf_s(m_SvrPort,_T("%s"),strPort);
  661. int nFamily = (m_nMode == AF_IPV4) ? AF_INET : AF_INET6;
  662. if ( !m_SocketClient.StartClient(NULL, strAddr, strPort, nFamily, (m_nSockType+1) ) )
  663. {
  664. m_bSocket = FALSE;
  665. if (_tcscmp(RemoteSvr,m_SvrAddr) == 0)
  666. {
  667. OutputDebugString(_T("连接【远程服务器】失败\n"));
  668. LOG4C_NO_FILENUM((LOG_NOTICE,"连接【远程服务器】失败"));
  669. }
  670. else
  671. {
  672. OutputDebugString(_T("连接【本地服务器】失败\n"));
  673. LOG4C_NO_FILENUM((LOG_NOTICE,"连接【本地服务器】失败"));
  674. }
  675. return FALSE;
  676. }
  677. else
  678. {
  679. m_bSocket = TRUE;
  680. CSocketHandle* pSH = (CSocketHandle *)m_SocketClient;
  681. pSH->m_npendingSize = 0;
  682. memset(pSH->m_szpendingbuf, 0, SOCKET_BUFFSIZE);
  683. SetupMCAST();
  684. if (_tcscmp(RemoteSvr,m_SvrAddr) == 0)
  685. {
  686. OutputDebugString(_T("连接【远程服务器】成功\n"));
  687. LOG4C_NO_FILENUM((LOG_NOTICE,"连接【远程服务器】成功"));
  688. }
  689. else
  690. {
  691. OutputDebugString(_T("连接【本地服务器】成功\n"));
  692. LOG4C_NO_FILENUM((LOG_NOTICE,"连接【本地服务器】成功"));
  693. }
  694. return TRUE;
  695. }
  696. }
  697. void IClientImpl::DisConnectServer()
  698. {
  699. if(m_hRunObject)
  700. SetEvent(m_hRunObject);
  701. if( m_hReConnectSrvThreadHandle )
  702. {
  703. if (WaitForSingleObject(m_hReConnectSrvThreadHandle,INFINITE) != WAIT_FAILED)
  704. {
  705. CloseHandle(m_hReConnectSrvThreadHandle);
  706. m_hReConnectSrvThreadHandle = NULL;
  707. }
  708. }
  709. if(m_hRunObject)
  710. CloseHandle( m_hRunObject );
  711. m_hRunObject = NULL;
  712. m_SocketClient.Terminate();
  713. }
  714. void IClientImpl::SendMsg(void *pMsg,const int nLen)
  715. {
  716. if ( m_SocketClient.IsOpen() )
  717. {
  718. USES_CONVERSION;
  719. if (m_nSockType == SOCK_TCP)
  720. {
  721. m_SocketClient.Write((const LPBYTE)(pMsg), nLen, NULL, 30000);
  722. }
  723. else
  724. {
  725. SockAddrIn sockAddr;
  726. GetDestination(sockAddr);
  727. m_SocketClient.Write((const LPBYTE)(pMsg), nLen, sockAddr, 30000);
  728. }
  729. }
  730. else
  731. {
  732. AfxMessageBox(_T("Socket is not connected"));
  733. }
  734. }
  735. DWORD WINAPI IClientImpl::ReConnectSrvThread(LPVOID pInstance)
  736. {
  737. IClientImpl *pClientImpl = (IClientImpl*)pInstance;
  738. do
  739. {
  740. // 检测连接状态;
  741. if ( pClientImpl->m_bSocket == FALSE )
  742. {
  743. if ( pClientImpl->m_SocketClient->IsOpen() == TRUE )
  744. {
  745. pClientImpl->m_SocketClient.Terminate();
  746. }
  747. if ( FALSE == pClientImpl->ConnectServer(pClientImpl->m_SvrAddr,pClientImpl->m_SvrPort))
  748. {
  749. pClientImpl->m_bSocket = FALSE;
  750. }
  751. else
  752. {
  753. pClientImpl->m_bSocket = TRUE;
  754. // 同时验证登陆;
  755. if (_tcscmp(RemoteSvr,pClientImpl->m_SvrAddr) == 0)
  756. {
  757. OutputDebugString(_T("重连【远程服务器】成功!\n"));
  758. LOG4C_NO_FILENUM((LOG_NOTICE,"重连【远程服务器】成功~"));
  759. pClientImpl->LoginRemoteSvrRequest();
  760. }
  761. else
  762. {
  763. OutputDebugString(_T("重连【本地服务器】成功!\n"));
  764. LOG4C_NO_FILENUM((LOG_NOTICE,"重连【本地服务器】成功~"));
  765. pClientImpl->LoginLocalSvrRequest();
  766. }
  767. }
  768. }
  769. } while( WaitForSingleObject(pClientImpl->m_hRunObject,200L) == WAIT_TIMEOUT );
  770. LOG4C_NO_FILENUM((LOG_NOTICE,"重连服务器线程退出"));
  771. return 0;
  772. }