123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914 |
- #include "StdAfx.h"
- #include "IClientImpl.h"
- #include <comdef.h>
- #include <atlbase.h>
- #include "crc32.h"
- #include "ThreadPool.hpp"
- #include "lzari.h"
- const int AF_IPV4 = 0;
- const int AF_IPV6 = 1;
- const int SOCK_TCP = SOCK_STREAM-1;
- const int SOCK_UDP = SOCK_DGRAM-1;
- //DWORD g_dwLeng = 0;
- //BYTE *g_pData = NULL;
- DWORD g_dwLeng2 = 0;
- BYTE *g_pData2 = NULL;
- DWORD g_dwcount;
- BOOL g_bConnLYFZ = 0;
- int g_conntype = 0;//正常
- void IClientImpl::DataToArray(IN BYTE *pData, IN CONST DWORD &dwLength, IN CArray<CStringArray, CStringArray>*List1array)
- {
- List1array->RemoveAll();
- if (dwLength == 0)return;
- if (m_tSendhead.code[0])
- {
- BYTE *lpszOut = NULL;
- int nOutSize = 0;
- LZARI Lzari;
- Lzari.UnCompress(pData, dwLength, (const BYTE*&)lpszOut, nOutSize);
- CMemFile memfile;
- memfile.Attach(lpszOut, nOutSize);
- Lzari.Release();
- try
- {
- CArchive ar(&memfile, CArchive::load);
- List1array->SetSize(m_tSendhead.count[0]);
- for (int i = 0; i < List1array->GetSize(); i++)
- {
- List1array->ElementAt(i).Serialize(ar);
- }
- ar.Close();
- memfile.Detach();
- }
- catch (CException* e)
- {
- e->ReportError();
- }
- }
- else
- {
- CMemFile memfile;
- memfile.Attach(pData, dwLength);
- CArchive ar(&memfile, CArchive::load);
- List1array->SetSize(m_tSendhead.count[0]);
- for (int ii = 0; ii < List1array->GetSize(); ii++)
- {
- List1array->ElementAt(ii).Serialize(ar);
- }
- ar.Close();
- memfile.Detach();
- }
- }
- //IClientImpl* IClientImpl::m_pTcpClient[TCPCLIENTNUM] = {NULL};
- void GetFileName(IN const TCHAR *pFullName,OUT TCHAR *pFileName)
- {
- TCHAR szExt[_MAX_EXT];
- _tsplitpath(pFullName, NULL, NULL, pFileName, szExt);
- _tcscat(pFileName, szExt);
- }
- unsigned int VerifyIntegrityPacket(IN void *pIntegrityPacket,IN unsigned int nPacketSize)
- {
- unsigned int checksum = 0;
- //if ( nPacketSize <= sizeof(STProtocolheader) )
- //{
- // return 0;
- //}
- unsigned char *pBody = &((unsigned char*)pIntegrityPacket)[sizeof(STProtocolheader)];
- if( pBody )
- checksum = crc32( 0, pBody, nPacketSize-sizeof(STProtocolheader) );
- return checksum;
- }
- IClientImpl::IClientImpl():m_nMode(AF_IPV4),m_nSockType(SOCK_TCP)
- {
- m_bSocket = FALSE;
- m_bStopbeat = FALSE;
- m_hRunObject = NULL;
- m_bRecevie = TRUE;
- m_hReConnectSrvThreadHandle = NULL;
- m_dwSumRecive = 0;
- m_dwCurRecive = 0;
- m_pRecivebuf = NULL;
- ZeroMemory(&m_tSendhead, sizeof(SENDHEAD));
- m_SocketClient.SetInterface(this);
- }
- IClientImpl::~IClientImpl()
- {
- //m_SocketClient.Terminate();
- DisConnectServer();
- }
- BOOL IClientImpl::SolveDBError()
- {
- DWORD dwWSAError = WSAGetLastError();
- if ( dwWSAError != 0 )
- {
- LOG4C_NO_FILENUM((LOG_NOTICE,"dwWSAError = %d~",dwWSAError));
- }
-
- switch(dwWSAError)
- {
- case WSAENOTSOCK:
- case WSAENETDOWN:
- case WSAENETUNREACH:
- case WSAENETRESET:
- case WSAECONNABORTED:
- case WSAECONNRESET:
- case WSAESHUTDOWN:
- case WSAEHOSTDOWN:
- case WSAEHOSTUNREACH:
- TRACE("-----------------WSAError = %d\n",dwWSAError);
- LOG4C_NO_FILENUM((LOG_NOTICE,"dwWSAError = %d~",dwWSAError));
- m_bSocket = FALSE;
- break;
- default:
- break;
- }
- return TRUE;
- }
- void IClientImpl::GetAddress(const SockAddrIn& addrIn, CString& rString) const
- {
- TCHAR szIPAddr[MAX_PATH] = { 0 };
- CSocketHandle::FormatIP(szIPAddr, MAX_PATH, addrIn);
- rString.Format(_T("%s : %d"), szIPAddr, static_cast<int>(static_cast<UINT>(ntohs(addrIn.GetPort()))) );
- }
- void IClientImpl::AppendText(LPCTSTR lpszFormat, ...)
- {
- // if ( !::IsWindow(m_ctlMsgList.GetSafeHwnd()) ) return;
- // TCHAR szBuffer[512];
- // HWND hWnd = m_ctlMsgList.GetSafeHwnd();
- // DWORD dwResult = 0;
- // if (SendMessageTimeout(hWnd, WM_GETTEXTLENGTH, 0, 0, SMTO_NORMAL, 500L, &dwResult) != 0)
- // {
- // int nLen = (int) dwResult;
- // if (SendMessageTimeout(hWnd, EM_SETSEL, nLen, nLen, SMTO_NORMAL, 500L, &dwResult) != 0)
- // {
- // size_t cb = 0;
- // va_list args;
- // va_start(args, lpszFormat);
- // ::StringCchVPrintfEx(szBuffer, 512, NULL, &cb, 0, lpszFormat, args);
- // va_end(args);
- // SendMessageTimeout(hWnd, EM_REPLACESEL, FALSE, reinterpret_cast<LPARAM>(szBuffer), SMTO_NORMAL, 500L, &dwResult);
- // }
- // }
- }
- bool IClientImpl::GetDestination(SockAddrIn& addrIn) const
- {
- CString strPort;
- int nFamily = (m_nMode == AF_IPV4) ? AF_INET : AF_INET6;
- return addrIn.CreateFrom(NULL, strPort, nFamily);
- }
- bool IClientImpl::SetupMCAST()
- {
- const TCHAR szIPv4MCAST[] = TEXT("239.121.1.2");
- const TCHAR szIPv6MCAST[] = TEXT("FF02:0:0:0:0:0:0:1"); // All Nodes local address
- bool result = false;
- if ( m_nSockType == SOCK_UDP )
- {
- if ( m_nMode == AF_IPV4 ) {
- result = m_SocketClient->AddMembership(szIPv4MCAST, NULL);
- } else {
- result = m_SocketClient->AddMembership(szIPv6MCAST, NULL);
- HRESULT hr = HRESULT_FROM_WIN32(GetLastError());
- hr = hr;
- }
- }
- return result;
- }
- ///////////////////////////////////////////////////////////////////////////////
- void IClientImpl::OnThreadBegin(CSocketHandle* pSH)
- {
- ASSERT( pSH == m_SocketClient );
- (pSH);
- CString strAddr;
- SockAddrIn sockAddr;
- m_SocketClient->GetSockName(sockAddr);
- GetAddress( sockAddr, strAddr );
- InitializeCriticalSection(&pSH->m_hClient2SrvSection);
- }
- void IClientImpl::OnThreadExit(CSocketHandle* pSH)
- {
- ASSERT( pSH == m_SocketClient );
- DeleteCriticalSection( &pSH->m_hClient2SrvSection );
- (pSH);
- }
- void IClientImpl::OnConnectionDropped(CSocketHandle* pSH)
- {
- ASSERT( pSH == m_SocketClient );
- m_bSocket = FALSE;
- if (_tcscmp(RemoteSvr,m_SvrAddr) == 0)
- {
- OutputDebugString(_T("\t\n远程服务器连接丢失\t\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"【远程服务器】连接丢失"));
- }
- else
- {
- OutputDebugString(_T("\t\n本地服务器连接丢失\t\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"【本地服务器】连接丢失"));
- }
-
- (pSH);
- AppendText( _T("Connection lost with client.\r\n") );
- }
- void IClientImpl::OnConnectionError(CSocketHandle* pSH, DWORD dwError)
- {
- ASSERT( pSH == m_SocketClient );
- (pSH);
- _com_error err(dwError);
- AppendText( _T("Communication Error:\r\n%s\r\n"), err.ErrorMessage() );
- }
- /************************************************************************/
- /* 函数:OnDataReceived[3/21/2016 IT];
- /* 描述:;
- /* 参数:;
- /* [IN] pSH: 客户端实例对象;
- /* [IN] pbData: 客户端本次接收到的数据;
- /* [IN] dwCount: 客户端本次接收到的数据长度;
- /* [IN] addr: 服务端地址;
- /* 返回:void;
- /* 注意:;
- /* 示例:;
- /*
- /* 修改:;
- /* 日期:;
- /* 内容:;
- /************************************************************************/
- void IClientImpl::OnDataReceived(CSocketHandle* pSH, const BYTE* pbData, DWORD dwCount, const SockAddrIn& addr)
- {
- OutputDebugString(_T("\n\t 接收服务端数据 \t\n"));
- ASSERT( pSH == m_SocketClient );
- if( !m_SocketClient->IsOpen() ) return;
- if (NULL == pbData) return;
- #if 1
- if ( m_pRecivebuf )
- {
- OutputDebugString(_T("\n\t接收\t\n"));
- memcpy(m_pRecivebuf+m_dwCurRecive, pbData, dwCount);
- m_dwCurRecive += dwCount;
- if ( m_dwCurRecive == m_dwSumRecive )
- {
- TMessageHeader *pMSGHeader = (TMessageHeader*)m_pRecivebuf;
- BYTE *pRecivebuf = (BYTE*)m_pRecivebuf + MESSAGE_HEADER_LEN;
- WORD dwMSGID = pMSGHeader->wMessageId;
- switch( dwMSGID )
- {
- case MSG_CHATMESSAGE_RESP:
- case (MSG_CHATMESSAGE_RESP + 0X4FFF) :
- {
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pRecivebuf;
- if ( _tcscmp(m_SvrAddr, RemoteSvr) == 0 )
- ChatRemoteSvrMessageResponse((void *)(pRecivebuf));
- else
- ChatLocalSvrMessageResponse((void *)(pRecivebuf));
- if ( m_pRecivebuf )
- delete []m_pRecivebuf;
- m_pRecivebuf = NULL;
- m_dwCurRecive = m_dwSumRecive = 0;
- }
- break;
- default:
- break;
- }
- }
- else if (m_dwCurRecive > m_dwSumRecive)
- {// 接收的数据大于包大小,丢弃;
- OutputDebugString(_T("\t\n包数据过大\t\n"));
- if ( m_pRecivebuf )
- delete []m_pRecivebuf;
- m_pRecivebuf = NULL;
- m_dwCurRecive = m_dwSumRecive = 0;
- m_bRecevie = TRUE;
- }
- return;
- }
- TMessageHeader* pHeader = (TMessageHeader *)pbData;
- /*网络字节顺序的转换*/
- ntohs(pHeader->wHeaderFlag);
- ntohs(pHeader->wMessageId);
- ntohs(pHeader->wMessageSubId);
- ntohl(pHeader->dwDataLen);
- ntohs(pHeader->wCheckSum);
- ntohl(pHeader->wReserve);
- char *pDataBuf = (char *)pbData + MESSAGE_HEADER_LEN;
- WORD dwMessageID = pHeader->wMessageId;
- switch (dwMessageID)
- {
- case MSG_LOGIN_RESP:
- case (MSG_LOGIN_RESP + 0X2FFF) :
- {
- LOGIN_RESULT_STRU tLoginResult = { 0 };
- memcpy(&tLoginResult, pDataBuf, sizeof(LOGIN_RESULT_STRU));
- if ( _tcscmp(m_SvrAddr, RemoteSvr) == 0 )
- LoginRemoteSvrResponse(&tLoginResult);
- else
- LoginLocalSvrResponse(&tLoginResult);
- break;
- }
- case MSG_USERINFO_RESP:
- {
- TUSERLIST_INFO_STRU tUserListInfo = { 0 };
- memcpy(&tUserListInfo, pDataBuf, sizeof(TUSERLIST_INFO_STRU));
- // ProcessUserListInfoResponse(&tUserListInfo);
- break;
- }
- case MSG_LOGOUT_RESP:
- {
- TUSERLIST_INFO_STRU tUserListInfo = { 0 };
- memcpy(&tUserListInfo, pDataBuf, sizeof(TUSERLIST_INFO_STRU));
- // ProcessLogoutResponse(&tUserListInfo);
- break;
- }
- case MSG_CHATMESSAGE_RESP:
- case (MSG_CHATMESSAGE_RESP + 0X4FFF) :
- {
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pDataBuf;
- if ( m_dwSumRecive == 0 )
- {
- m_dwSumRecive = pChatMessage->wMessageLen + MESSAGE_HEADER_LEN + sizeof(TCHAT_MESSAGE_STRU);
- if (m_pRecivebuf == NULL )
- {
- m_pRecivebuf = new BYTE[m_dwSumRecive];
- memcpy(m_pRecivebuf+m_dwCurRecive, pbData, dwCount);
- m_dwCurRecive += dwCount;
- if ( m_dwCurRecive == m_dwSumRecive )
- {
- TMessageHeader *pMSGHeader = (TMessageHeader*)m_pRecivebuf;
- BYTE *pRecivebuf = (BYTE*)m_pRecivebuf + MESSAGE_HEADER_LEN;
- WORD dwMSGID = pMSGHeader->wMessageId;
- switch( dwMSGID )
- {
- case MSG_CHATMESSAGE_RESP:
- case (MSG_CHATMESSAGE_RESP + 0X4FFF) :
- {
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pRecivebuf;
- if ( _tcscmp(m_SvrAddr, RemoteSvr) == 0 )
- ChatRemoteSvrMessageResponse((void *)(pRecivebuf));
- else
- ChatLocalSvrMessageResponse((void *)(pRecivebuf));
- if ( m_pRecivebuf )
- delete []m_pRecivebuf;
- m_pRecivebuf = NULL;
- m_dwCurRecive = m_dwSumRecive = 0;
- }
- break;
- default:
- break;
- }
- }
- else if ( m_dwCurRecive > m_dwSumRecive )
- {// 接收的数据大于包大小,丢弃;
- }
- }
- }
-
- break;
- }
- default:
- break;
- }
- #else
- #endif
- }
- BOOL IClientImpl::LoginRemoteSvrRequest()
- {
- m_bRecevie = FALSE;
- // 1.设置通信类型MSG_LOGIN_REQ,为登陆请求;
- WORD wMessageId = 0;
- wMessageId = MSG_LOGIN_REQ;
- BYTE *bySend = NULL;
- INT nDataLen = sizeof(TMessageHeader) + sizeof(TLOGIN_STRU);
- bySend = new BYTE[nDataLen];
- memset(bySend, 0, nDataLen);
- DWORD dwDataLen = sizeof(TLOGIN_STRU);
- TMessageHeader *pHeader = (TMessageHeader*)bySend;
- pHeader->wMessageId = wMessageId;
- pHeader->dwDataLen = sizeof(TLOGIN_STRU);
- pHeader->byVersion = 101;
- pHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
- TLOGIN_STRU *pLogonInfo = (TLOGIN_STRU*)(bySend + sizeof(TMessageHeader));
- pLogonInfo->tCommonMsg.dwConnectionID = 0;
- pLogonInfo->tCommonMsg.wMessageId = wMessageId;
- CHAR szHostName[MAX_PATH];
- gethostname(szHostName,MAX_PATH);
- strcpy_s(pLogonInfo->tUserInfo.szUserName, szHostName);
- unsigned long ulSendLen = m_SocketClient.Write(bySend, nDataLen, NULL, 30000);
- SolveDBError();
- delete []bySend;
- bySend = NULL;
- if (ulSendLen == SOCKET_ERROR)
- {
- OutputDebugString(_T("验证【远程服务器】失败~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"验证【远程服务器】失败~"));
- return 0;
- }
- OutputDebugString(_T("验证【远程服务器】成功~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"验证【远程服务器】成功~"));
- return 1;
- }
- BOOL IClientImpl::LoginLocalSvrRequest()
- {
- m_bRecevie = FALSE;
- // 1.设置通信类型MSG_LOGIN_REQ,为登陆请求;
- WORD wMessageId = 0;
- wMessageId = MSG_LOGIN_REQ + 0X1FFF;
- BYTE *bySend = NULL;
- INT nDataLen = sizeof(TMessageHeader) + sizeof(TLOGIN_STRU);
- bySend = new BYTE[nDataLen];
- memset(bySend, 0, nDataLen);
- DWORD dwDataLen = sizeof(TLOGIN_STRU);
- TMessageHeader *pHeader = (TMessageHeader*)bySend;
- pHeader->wMessageId = wMessageId;
- pHeader->dwDataLen = sizeof(TLOGIN_STRU);
- pHeader->byVersion = 101;
- pHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
- TLOGIN_STRU *pLogonInfo = (TLOGIN_STRU*)(bySend + sizeof(TMessageHeader));
- pLogonInfo->tCommonMsg.dwConnectionID = 0;
- pLogonInfo->tCommonMsg.wMessageId = wMessageId;
- CHAR szHostName[MAX_PATH];
- gethostname(szHostName,MAX_PATH);
- strcpy_s(pLogonInfo->tUserInfo.szUserName, szHostName);
- unsigned long ulSendLen = m_SocketClient.Write(bySend, nDataLen, NULL, 30000);
- SolveDBError();
- delete []bySend;
- bySend = NULL;
- if (ulSendLen == SOCKET_ERROR)
- {
- OutputDebugString(_T("验证【本地服务器】失败~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"验证验证【本地服务器】失败~"));
- return 0;
- }
- OutputDebugString(_T("验证【本地服务器】成功~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"验证【本地服务器】成功~"));
- return 1;
- }
- void IClientImpl::LoginRemoteSvrResponse(void *pLoginResult)
- {
- m_bRecevie = TRUE;
- if (NULL == pLoginResult) return;
- LOGIN_RESULT_STRU *ptLoginResult = (LOGIN_RESULT_STRU *)pLoginResult;
- DWORD dwConnectionID = ptLoginResult->tCommonMsg.dwConnectionID;
- if (LOGIN_RESULT_SUC == ptLoginResult->byResult)
- {
- OutputDebugString(_T("登陆【远程服务器】成功\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"登陆【远程服务器】成功"));
- }
- }
- void IClientImpl::LoginLocalSvrResponse(void *pLoginResult)
- {
- m_bRecevie = TRUE;
- if (NULL == pLoginResult) return;
- LOGIN_RESULT_STRU *ptLoginResult = (LOGIN_RESULT_STRU *)pLoginResult;
- DWORD dwConnectionID = ptLoginResult->tCommonMsg.dwConnectionID;
- if (LOGIN_RESULT_SUC == ptLoginResult->byResult)
- {
- OutputDebugString(_T("登陆【本地服务器】成功~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"登陆【本地服务器】成功"));
- }
- }
- BOOL IClientImpl::ChatRemoteSvrMessageRequest(void *szDataBuf, int nDataLen)
- {
- m_bRecevie = FALSE;
- memset(&m_tSendhead,0,sizeof(SENDHEAD));
- DWORD dwFromUserID = 0;
- WORD wMessageId = MSG_CHATMESSAGE_REQ;
- DWORD dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + sizeof(TMessageHeader) + nDataLen;
- BYTE *pSendData = NULL;
- pSendData = new BYTE[dwDataLen];
- memset(pSendData, 0, dwDataLen);
- TMessageHeader* ptHeader = (TMessageHeader*)pSendData;
- ptHeader->wMessageId = wMessageId;
- ptHeader->dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + nDataLen;
- ptHeader->byVersion = 101;
- ptHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
- ptHeader->wReserve = 0;
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU*)(pSendData + sizeof(TMessageHeader));
- m_tSendhead.length[98] = 987123768;
- memcpy(pChatMessage, &m_tSendhead, sizeof(m_tSendhead));
- pChatMessage->tCommonMsg.dwConnectionID = dwFromUserID;
- pChatMessage->tCommonMsg.wMessageId = wMessageId;
- pChatMessage->dwFromUserID = dwFromUserID;
- pChatMessage->dwToUserID = m_dwSendCode;
- pChatMessage->wMessageLen = nDataLen;
- memcpy(pChatMessage->byFileContent, szDataBuf, nDataLen);
- BOOL bRet = FALSE;
- unsigned long ulSendLen = m_SocketClient->Write(pSendData, dwDataLen,NULL, 1000);
- SolveDBError();
- if (ulSendLen != SOCKET_ERROR)
- {
- m_SocketClient.SetReadTimeout(2*60*1000);
- bRet = TRUE;
- }
- else
- {
- m_bRecevie = TRUE;
- OutputDebugString(_T("请求信息失败~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"请求信息失败~"));
- }
- delete[] pSendData;
- pSendData = NULL;
- return bRet;
- }
- BOOL IClientImpl::ChatLocalSvrMessageRequest(void *szDataBuf, int nDataLen)
- {
- m_bRecevie = FALSE;
- DWORD dwFromUserID = 0;
-
- WORD wMessageId = MSG_CHATMESSAGE_REQ + 0X3FFF;
- DWORD dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + sizeof(TMessageHeader) + nDataLen;
- BYTE *pSendData = NULL;
- pSendData = new BYTE[dwDataLen];
- memset(pSendData, 0, dwDataLen);
- TMessageHeader* ptHeader = (TMessageHeader*)pSendData;
- ptHeader->wMessageId = wMessageId;
- ptHeader->dwDataLen = sizeof(TCHAT_MESSAGE_STRU) + nDataLen;
- ptHeader->byVersion = 101;
- ptHeader->wHeaderFlag = MESSAGE_HEADER_FLAG;
- ptHeader->wReserve = 0;
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU*)(pSendData + sizeof(TMessageHeader));
- m_tSendhead.length[98] = 987123768;
- memcpy(pChatMessage, &m_tSendhead, sizeof(m_tSendhead));
- pChatMessage->tCommonMsg.dwConnectionID = dwFromUserID;
- pChatMessage->tCommonMsg.wMessageId = wMessageId;
- pChatMessage->dwFromUserID = dwFromUserID;
- pChatMessage->dwToUserID = 15;
- pChatMessage->wMessageLen = nDataLen;
- memcpy(pChatMessage->byFileContent, szDataBuf, nDataLen);
- BOOL bRet = FALSE;
- unsigned long ulSendLen = m_SocketClient->Write(pSendData, dwDataLen, NULL, 1000);
- SolveDBError();
- if (ulSendLen != SOCKET_ERROR)
- {
- bRet = TRUE;
- }
- else
- {
- m_bRecevie = TRUE;
- OutputDebugString(_T("请求信息失败~\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"请求信息失败~"));
- }
- delete[] pSendData;
- pSendData = NULL;
- return bRet;
- }
- void IClientImpl::ChatRemoteSvrMessageResponse(void *pResponse)
- {
- if (NULL == pResponse) return;
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pResponse;
- int nMessageLen = pChatMessage->wMessageLen;
- DWORD dwToUserID = pChatMessage->dwToUserID;
- char *pStr = new char[nMessageLen + 1];
- memset(pStr, 0, nMessageLen + 1);
- memcpy(pStr, pChatMessage->byFileContent, nMessageLen);
- CString str = pStr;
- delete[]pStr;
- if (str == _T("账户或密码错误!"))
- {
- //g_bSendOK = 0;
- }
- else
- {
- if (dwToUserID == 0 && str != _T("发送信息成功!"))
- ;//g_bSendOK = 0;
- else
- ;//g_bSendOK = 1;
- }
- //OutputDebugString(str + _T("\n"));
- //LOG4C_NO_FILENUM((LOG_NOTICE,"%s~",str));
- #if 1
- int pos = str.Find(_T("authcodexiao"));
- if (pos != -1)
- {
- CString authcode = str.Right(str.GetLength() - pos - 12);
- str = str.Left(pos);
- char path[MAX_PATH];
- ::GetSystemDirectory(path, MAX_PATH);
- CString sysdir = path;
- sysdir += _T("\\authcode.txt");
- CStdioFile fp;
- if (fp.Open(sysdir, CFile::modeWrite | CFile::modeCreate))
- {
- fp.WriteString(authcode);
- fp.Close();
- }
- }
- if (str.Find(".") != -1)
- {
- CStdioFile fp;
- if (fp.Open(_T("\\ip.txt"), CFile::modeWrite | CFile::modeCreate))
- {
- fp.WriteString(str.GetString());
- fp.Close();
- }
- }
- #endif
- m_bRecevie = TRUE;
- }
- void IClientImpl::ChatLocalSvrMessageResponse(void *pResponse)
- {
- if (NULL == pResponse) return;
- TCHAT_MESSAGE_STRU *pChatMessage = (TCHAT_MESSAGE_STRU *)pResponse;
- int nMessageLen = pChatMessage->wMessageLen;
- DWORD dwLength = 0;
- BYTE *pData = new BYTE[nMessageLen];
- memcpy(pData, pChatMessage->byFileContent, nMessageLen);
- memcpy(&m_tSendhead, pChatMessage, sizeof(m_tSendhead));
- if ( nMessageLen <= sizeof(DWORD) )
- {
- memcpy(&g_dwLeng2, pChatMessage->byFileContent, sizeof(DWORD));
- }
- CArray<CStringArray,CStringArray> AryList;
- DataToArray( pData, nMessageLen, &AryList);
- if ( pData )
- delete []pData;
- pData = NULL;
- #if 0 // 测试;
- INT nSize = AryList.GetSize();
- for ( int i = 0; i < nSize; i++ )
- {
- CStringArray &strAry = AryList.ElementAt(i);
- for ( int n = 0; n < strAry.GetSize(); n++ )
- {
- OutputDebugString(_T("\n"));
- OutputDebugString(strAry.ElementAt(n));
- LOG4C_NO_FILENUM((LOG_NOTICE,"[%d][%d]:%s",i,n, strAry.ElementAt(n)));
- OutputDebugString(_T("\n"));
- }
- }
- #endif
- m_bRecevie = TRUE;
- }
- BOOL IClientImpl::Initialize()
- {
- TCHAR szIPAddr[MAX_PATH] = { 0 };
- CSocketHandle::GetLocalAddress(szIPAddr, MAX_PATH, AF_INET);
- AppendText(_T("Local Address (IPv4): %s\r\n"), szIPAddr);
- CSocketHandle::GetLocalAddress(szIPAddr, MAX_PATH, AF_INET6);
- AppendText(_T("Local Address (IPv6): %s\r\n"), szIPAddr);
- return TRUE;
- }
- void IClientImpl::StartReConnectSrvThread()
- {
- // Jeff.启用重连服务端线程.-------------------
- m_hRunObject = CreateEvent( NULL, TRUE, FALSE, _T("ClientThreadRun") );
- if ( m_hRunObject == NULL )
- {
- //LOG4C((LOG_NOTICE,"创建事件失败"));
- }
- m_hReConnectSrvThreadHandle = CreateThread(NULL,0,ReConnectSrvThread,this,0,NULL);
- if ( m_hReConnectSrvThreadHandle == NULL )
- {
- //LOG4C((LOG_NOTICE,"创建线程失败"));
- }
- }
- BOOL IClientImpl::ConnectServer(LPCTSTR strAddr, LPCTSTR strPort)
- {
- _stprintf_s(m_SvrAddr,_T("%s"),strAddr);
- _stprintf_s(m_SvrPort,_T("%s"),strPort);
- int nFamily = (m_nMode == AF_IPV4) ? AF_INET : AF_INET6;
- if ( !m_SocketClient.StartClient(NULL, strAddr, strPort, nFamily, (m_nSockType+1) ) )
- {
- m_bSocket = FALSE;
- if (_tcscmp(RemoteSvr,m_SvrAddr) == 0)
- {
- OutputDebugString(_T("连接【远程服务器】失败\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"连接【远程服务器】失败"));
- }
- else
- {
- OutputDebugString(_T("连接【本地服务器】失败\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"连接【本地服务器】失败"));
- }
-
- return FALSE;
- }
- else
- {
- m_bSocket = TRUE;
- CSocketHandle* pSH = (CSocketHandle *)m_SocketClient;
- pSH->m_npendingSize = 0;
- memset(pSH->m_szpendingbuf, 0, SOCKET_BUFFSIZE);
- SetupMCAST();
- if (_tcscmp(RemoteSvr,m_SvrAddr) == 0)
- {
- OutputDebugString(_T("连接【远程服务器】成功\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"连接【远程服务器】成功"));
- }
- else
- {
- OutputDebugString(_T("连接【本地服务器】成功\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"连接【本地服务器】成功"));
- }
- return TRUE;
- }
- }
- void IClientImpl::DisConnectServer()
- {
- if(m_hRunObject)
- SetEvent(m_hRunObject);
- if( m_hReConnectSrvThreadHandle )
- {
- if (WaitForSingleObject(m_hReConnectSrvThreadHandle,INFINITE) != WAIT_FAILED)
- {
- CloseHandle(m_hReConnectSrvThreadHandle);
- m_hReConnectSrvThreadHandle = NULL;
- }
- }
- if(m_hRunObject)
- CloseHandle( m_hRunObject );
- m_hRunObject = NULL;
- m_SocketClient.Terminate();
- }
- void IClientImpl::SendMsg(void *pMsg,const int nLen)
- {
- if ( m_SocketClient.IsOpen() )
- {
- USES_CONVERSION;
- if (m_nSockType == SOCK_TCP)
- {
- m_SocketClient.Write((const LPBYTE)(pMsg), nLen, NULL, 30000);
- }
- else
- {
- SockAddrIn sockAddr;
- GetDestination(sockAddr);
- m_SocketClient.Write((const LPBYTE)(pMsg), nLen, sockAddr, 30000);
- }
- }
- else
- {
- AfxMessageBox(_T("Socket is not connected"));
- }
- }
- DWORD WINAPI IClientImpl::ReConnectSrvThread(LPVOID pInstance)
- {
- IClientImpl *pClientImpl = (IClientImpl*)pInstance;
- do
- {
- // 检测连接状态;
- if ( pClientImpl->m_bSocket == FALSE )
- {
- if ( pClientImpl->m_SocketClient->IsOpen() == TRUE )
- {
- pClientImpl->m_SocketClient.Terminate();
- }
- if ( FALSE == pClientImpl->ConnectServer(pClientImpl->m_SvrAddr,pClientImpl->m_SvrPort))
- {
- pClientImpl->m_bSocket = FALSE;
- }
- else
- {
- pClientImpl->m_bSocket = TRUE;
- // 同时验证登陆;
- if (_tcscmp(RemoteSvr,pClientImpl->m_SvrAddr) == 0)
- {
- OutputDebugString(_T("重连【远程服务器】成功!\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"重连【远程服务器】成功~"));
- pClientImpl->LoginRemoteSvrRequest();
- }
- else
- {
- OutputDebugString(_T("重连【本地服务器】成功!\n"));
- LOG4C_NO_FILENUM((LOG_NOTICE,"重连【本地服务器】成功~"));
- pClientImpl->LoginLocalSvrRequest();
- }
- }
- }
- } while( WaitForSingleObject(pClientImpl->m_hRunObject,200L) == WAIT_TIMEOUT );
- LOG4C_NO_FILENUM((LOG_NOTICE,"重连服务器线程退出"));
- return 0;
- }
|