| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 | 
							- // Client.cpp: implementation of the CClient class.
 
- //
 
- //////////////////////////////////////////////////////////////////////
 
- #include "stdafx.h"
 
- #include "cp_main.h"
 
- #include "Client.h"
 
- #ifdef _DEBUG
 
- #undef THIS_FILE
 
- static char THIS_FILE[]=__FILE__;
 
- #define new DEBUG_NEW
 
- #endif
 
- //////////////////////////////////////////////////////////////////////
 
- // Construction/Destruction
 
- //////////////////////////////////////////////////////////////////////
 
- BOOL SendToFriend(CSendToFriendInfo &Info)
 
- {
 
- 	LogSendRecieveInfo("@@@@@@@@@@@@@@@ - START OF Send To Friend - @@@@@@@@@@@@@@@");
 
- 	if(Info.m_lPos > -1 && Info.m_lPos < MAX_SEND_CLIENTS)
 
- 	{
 
- 		Info.m_csIP = g_Opt.m_SendClients[Info.m_lPos].csIP;
 
- 	}
 
- 	else
 
- 	{
 
- 		Info.m_csErrorText = StrF("ERROR getting ip position - %d", Info.m_lPos);
 
- 		LogSendRecieveInfo(Info.m_csErrorText);
 
- 		return FALSE;
 
- 	}
 
- 	LogSendRecieveInfo(StrF("Sending clip to %s", Info.m_csIP));
 
- 	CClient client;
 
- 	if(client.OpenConnection(Info.m_csIP) == FALSE)
 
- 	{
 
- 		Info.m_csErrorText = StrF("ERROR opening connection to %s", Info.m_csIP);
 
- 		LogSendRecieveInfo(Info.m_csErrorText);
 
- 		return FALSE;
 
- 	}
 
- 	long lCount = Info.m_pClipList->GetCount();
 
- 	int i = -1;
 
- 	CClip* pClip;
 
- 	POSITION pos;
 
- 	pos = Info.m_pClipList->GetHeadPosition();
 
- 	while(pos)
 
- 	{
 
- 		pClip = Info.m_pClipList->GetNext(pos);
 
- 		if(pClip == NULL)
 
- 		{
 
- 			ASSERT(FALSE);
 
- 			continue;
 
- 		}
 
- 		i++;
 
- 		if(Info.m_pPopup)
 
- 		{
 
- 			Info.m_pPopup->SendToolTipText(StrF("Sending %d of %d", i+1, lCount));
 
- 		}
 
- 		MSG	msg;
 
- 		while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
 
- 		{
 
- 			TranslateMessage(&msg);
 
- 			DispatchMessage(&msg);
 
- 		}
 
- 		LogSendRecieveInfo(StrF("Sending %d of %d clip to %s", i+1, lCount, Info.m_csIP));
 
- 		if(client.SendItem(pClip) == FALSE)
 
- 		{
 
- 			Info.m_csErrorText = "ERROR SendItem Failed";
 
- 			LogSendRecieveInfo(Info.m_csErrorText);
 
- 			return FALSE;
 
- 		}
 
- 	}
 
- 	LogSendRecieveInfo("@@@@@@@@@@@@@@@ - END OF Send To Friend - @@@@@@@@@@@@@@@");
 
- 	return TRUE;
 
- }
 
- UINT  SendClientThread(LPVOID pParam)
 
- {	
 
- 	EnterCriticalSection(&theApp.m_CriticalSection);
 
- 	LogSendRecieveInfo("@@@@@@@@@@@@@@@ - START OF SendClientThread - @@@@@@@@@@@@@@@");
 
- 	CClipList *pClipList = (CClipList*)pParam;
 
- 	if(pClipList == NULL)
 
- 	{
 
- 		LogSendRecieveInfo("ERROR if(pClipList == NULL)");
 
- 		return FALSE;
 
- 	}
 
- 	long lCount = pClipList->GetCount();
 
- 	LogSendRecieveInfo(StrF("Start of Send ClientThread Count - %d", lCount));
 
- 	
 
- 	for(int nClient = 0; nClient < MAX_SEND_CLIENTS; nClient++)
 
- 	{
 
- 		if(g_Opt.m_SendClients[nClient].bSendAll && 
 
- 			g_Opt.m_SendClients[nClient].csIP.GetLength() > 0)
 
- 		{
 
- 			CClient client;
 
- 			if(client.OpenConnection(g_Opt.m_SendClients[nClient].csIP) == FALSE)
 
- 			{
 
- 				LogSendRecieveInfo(StrF("ERROR opening connection to %s", g_Opt.m_SendClients[nClient].csIP));
 
- 				CString cs;
 
- 				cs.Format("Error opening connection to %s",g_Opt.m_SendClients[nClient].csIP);
 
- 				::SendMessage(theApp.m_MainhWnd, WM_SEND_RECIEVE_ERROR, (WPARAM)cs.GetBuffer(cs.GetLength()), 0);
 
- 				cs.ReleaseBuffer();
 
- 				continue;
 
- 			}
 
- 			CClip* pClip;
 
- 			POSITION pos;
 
- 			pos = pClipList->GetHeadPosition();
 
- 			while(pos)
 
- 			{
 
- 				pClip = pClipList->GetNext(pos);
 
- 				if(pClip == NULL)
 
- 				{
 
- 					ASSERT(FALSE);
 
- 					LogSendRecieveInfo("Error in GetNext");
 
- 					break;
 
- 				}
 
- 				LogSendRecieveInfo(StrF("Sending clip to %s", g_Opt.m_SendClients[nClient].csIP));
 
- 				
 
- 				if(client.SendItem(pClip) == FALSE)
 
- 				{
 
- 					CString cs;
 
- 					cs.Format("Error sending clip to %s",g_Opt.m_SendClients[nClient].csIP);
 
- 					::SendMessage(theApp.m_MainhWnd, WM_SEND_RECIEVE_ERROR, (WPARAM)cs.GetBuffer(cs.GetLength()), 0);
 
- 					cs.ReleaseBuffer();
 
- 					break;
 
- 				}
 
- 			}
 
- 			client.CloseConnection();
 
- 		}
 
- 	}
 
- 	delete pClipList;
 
- 	pClipList = NULL;
 
- 	
 
- 	LogSendRecieveInfo("@@@@@@@@@@@@@@@ - END OF SendClientThread - @@@@@@@@@@@@@@@");
 
- 	LeaveCriticalSection(&theApp.m_CriticalSection);
 
- 	return TRUE;
 
- }
 
- CClient::CClient()
 
- {
 
- 	m_Connection = NULL;
 
- }
 
- CClient::~CClient()
 
- {			
 
- 	CloseConnection();
 
- }
 
- BOOL CClient::CloseConnection()
 
- {
 
- 	if(m_Connection != NULL && m_Connection != 0)
 
- 	{
 
- 		SendInfo Info;
 
- 		SendData(&Info, MyEnums::EXIT);
 
- 		closesocket(m_Connection);
 
- 		WSACleanup();
 
- 		m_Connection = NULL;
 
- 	}
 
- 	return TRUE;
 
- }
 
- BOOL CClient::OpenConnection(const char* servername)
 
- {
 
- 	WSADATA wsaData;
 
- 	struct hostent *hp;
 
- 	unsigned int addr;
 
- 	struct sockaddr_in server;
 
- 	int wsaret=WSAStartup(0x101,&wsaData);
 
- 	if(wsaret)	
 
- 	{
 
- 		LogSendRecieveInfo("ERROR - WSAStartup(0x101,&wsaData)");
 
- 		return FALSE;
 
- 	}
 
- 	
 
- 	m_Connection = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);
 
- 	if(m_Connection == INVALID_SOCKET)
 
- 	{
 
- 		LogSendRecieveInfo("ERROR - socket(AF_INET,SOCK_STREAM,IPPROTO_TCP)");
 
- 		
 
- 		m_Connection = NULL;
 
- 		return FALSE;
 
- 	}
 
- 	if(inet_addr(servername)==INADDR_NONE)
 
- 	{
 
- 		hp=gethostbyname(servername);
 
- 	}
 
- 	else
 
- 	{
 
- 		addr=inet_addr(servername);
 
- 		hp=gethostbyaddr((char*)&addr,sizeof(addr),AF_INET);
 
- 	}
 
- 	if(hp==NULL)
 
- 	{
 
- 		LogSendRecieveInfo("ERROR - if(hp==NULL)");
 
- 		closesocket(m_Connection);
 
- 		m_Connection = NULL;
 
- 		return FALSE;
 
- 	}
 
- 	server.sin_addr.s_addr=*((unsigned long*)hp->h_addr);
 
- 	server.sin_family=AF_INET;
 
- 	server.sin_port=htons(20248);
 
- 	if(connect(m_Connection,(struct sockaddr*)&server,sizeof(server)))
 
- 	{
 
- 		LogSendRecieveInfo("ERROR if(connect(m_Connection,(struct sockaddr*)&server,sizeof(server)))");
 
- 		closesocket(m_Connection);
 
- 		m_Connection = NULL;
 
- 		return FALSE;	
 
- 	}
 
- 	return TRUE;
 
- }
 
- BOOL CClient::SendItem(CClip *pClip)
 
- {
 
- 	SendInfo Info;
 
- 	
 
- 	strncpy(Info.m_cComputerName, GetComputerName(), sizeof(Info.m_cComputerName));
 
- 	strncpy(Info.m_cIP, GetIPAddress(), sizeof(Info.m_cIP));
 
- 	strncpy(Info.m_cText, pClip->m_Desc, sizeof(Info.m_cText));
 
- 	
 
- 	Info.m_cText[sizeof(Info.m_cText)-1] = 0;
 
- 	Info.m_cComputerName[sizeof(Info.m_cComputerName)-1] = 0;
 
- 	Info.m_cIP[sizeof(Info.m_cIP)-1] = 0;
 
- 	if(SendData(&Info, MyEnums::START) == FALSE)
 
- 		return FALSE;
 
- 	
 
- 	CClipFormat* pCF;
 
- 	
 
- 	int nCount = pClip->m_Formats.GetSize();
 
- 	DWORD dwSize;
 
- 	DWORD dwDataSent;
 
- 	//For each data type
 
- 	for( int i=0; i < nCount; i++ )
 
- 	{
 
- 		pCF = &pClip->m_Formats.GetData()[i];
 
- 		
 
- 		Info.m_lParameter1 = dwSize = GlobalSize(pCF->m_hgData);
 
- 		strncpy(Info.m_cText, GetFormatName(pCF->m_cfType), sizeof(Info.m_cText));
 
- 		Info.m_cText[sizeof(Info.m_cText)-1] = 0;
 
- 		if(SendData(&Info, MyEnums::DATA_START) == FALSE)
 
- 			return FALSE;
 
- 		dwDataSent = 0;
 
- 		while(dwDataSent < dwSize)
 
- 		{
 
- 			LPVOID pvData = GlobalLock(pCF->m_hgData);
 
- 			if(dwSize - dwDataSent < MAX_DATA_SIZE)
 
- 				Info.m_lParameter1 = dwSize - dwDataSent;
 
- 			else
 
- 				Info.m_lParameter1 = MAX_DATA_SIZE;
 
- 			memcpy(Info.m_cText,  ((char*)pvData) + dwDataSent, Info.m_lParameter1);
 
- 			GlobalUnlock(pCF->m_hgData);
 
- 			if(SendData(&Info, MyEnums::DATA) == FALSE)
 
- 				return FALSE;
 
- 			dwDataSent += Info.m_lParameter1;
 
- 		}
 
- 		if(SendData(&Info, MyEnums::DATA_END) == FALSE)
 
- 			return FALSE;
 
- 	}
 
- 	
 
- 	if(SendData(&Info, MyEnums::END) == FALSE)
 
- 		return FALSE;
 
- 	
 
- 	return TRUE;
 
- }
 
- BOOL CClient::SendData(SendInfo *pInfo, MyEnums::eSendType type)
 
- {
 
- 	pInfo->m_Type = type;
 
- 	long lSize = send(m_Connection, (char *)pInfo, sizeof(SendInfo), 0);
 
- 	if(lSize != sizeof(SendInfo))
 
- 	{
 
- 		ASSERT(FALSE);
 
- 	}
 
- 	if(lSize == SOCKET_ERROR)
 
- 	{
 
- 		LogSendRecieveInfo(StrF("lSize == SOCKET_ERROR, %d", WSAGetLastError()));
 
- 		return FALSE;
 
- 	}
 
- 	return TRUE;
 
- }
 
 
  |