| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 | 
							- // Client.cpp: implementation of the CClient class.
 
- //
 
- //////////////////////////////////////////////////////////////////////
 
- #include "stdafx.h"
 
- #include "cp_main.h"
 
- #include "Client.h"
 
- #include "shared/TextConvert.h"
 
- #include "RecieveSocket.h"
 
- #include "FileRecieve.h"
 
- #include "FileTransferProgressDlg.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_csIP == _T(""))	
 
- 	{
 
- 		Info.m_csErrorText = StrF(_T("ERROR getting ip/host name position - %s"), Info.m_csIP);
 
- 		LogSendRecieveInfo(Info.m_csErrorText);
 
- 		return FALSE;
 
- 	}
 
- 	LogSendRecieveInfo(StrF(_T("Sending clip to %s"), Info.m_csIP));
 
- 	CClient client;
 
- 	if(client.OpenConnection(Info.m_csIP) == FALSE)
 
- 	{
 
- 		Info.m_csErrorText = StrF(_T("ERROR opening connection to %s"), Info.m_csIP);
 
- 		LogSendRecieveInfo(Info.m_csErrorText);
 
- 		return FALSE;
 
- 	}
 
- 	INT_PTR count = 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(_T("Sending %d of %d"), i+1, count));
 
- 		}
 
- 		MSG	msg;
 
- 		while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
 
- 		{
 
- 			TranslateMessage(&msg);
 
- 			DispatchMessage(&msg);
 
- 		}
 
- 		LogSendRecieveInfo(StrF(_T("Sending %d of %d clip to %s"), i+1, count, 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;
 
- }
 
- CClient::CClient()
 
- {
 
- 	m_Connection = NULL;
 
- }
 
- CClient::~CClient()
 
- {			
 
- 	CloseConnection();
 
- }
 
- BOOL CClient::CloseConnection()
 
- {
 
- 	if(m_Connection != NULL && m_Connection != 0)
 
- 	{
 
- 		CSendInfo Info;
 
- 		m_SendSocket.SendCSendData(Info, MyEnums::EXIT);
 
- 		closesocket(m_Connection);
 
- 		WSACleanup();
 
- 		m_Connection = NULL;
 
- 	}
 
- 	return TRUE;
 
- }
 
- BOOL CClient::OpenConnection(const TCHAR* servername)
 
- {
 
- 	WSADATA wsaData;
 
- 	unsigned int addr = INADDR_NONE;
 
- 	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;
 
- 	}
 
- 	CStringA csServerNameA = CTextConvert::ConvertToChar(servername);
 
- 	//11-5-06 Serge Baranov found that if we are passing in an ip then
 
- 	//don't look the name up using gethostbyname/gethostbyaddr->
 
- 	//on simple networks that don't use DNS these will fail.
 
- 	//So now only lookup the host name if they don't provide an IP.
 
- 	addr = inet_addr(csServerNameA);
 
- 	if(addr == INADDR_NONE)
 
- 	{
 
- 		struct hostent *hp = gethostbyname(csServerNameA);
 
- 		if(hp != NULL)
 
- 		{
 
- 			addr = *(unsigned int*)hp->h_addr;
 
- 		}
 
- 	}
 
- 	if(addr == NULL || addr == INADDR_NONE)
 
- 	{
 
- 		LogSendRecieveInfo("addr == NULL || addr == INADDR_NONE");
 
- 		closesocket(m_Connection);
 
- 		m_Connection = NULL;
 
- 		return FALSE;
 
- 	}
 
- 	server.sin_addr.s_addr = addr;
 
- 	server.sin_family = AF_INET;
 
- 	server.sin_port = htons((u_short)g_Opt.m_lPort);
 
- 	if(connect(m_Connection, (struct sockaddr*)&server, sizeof(server)))
 
- 	{
 
- 		int nWhy = WSAGetLastError();
 
- 		LogSendRecieveInfo(StrF(_T("ERROR if(connect(m_Connection,(struct sockaddr*)&server,sizeof(server))) why = %d"), nWhy));
 
- 		closesocket(m_Connection);
 
- 		m_Connection = NULL;
 
- 		return FALSE;	
 
- 	}
 
- 	return TRUE;
 
- }
 
- BOOL CClient::SendItem(CClip *pClip)
 
- {
 
- 	CSendInfo Info;
 
- 	//Send all text over as UTF-8
 
- 	CStringA dest;
 
- 	if(CTextConvert::ConvertToUTF8(GetComputerName(), dest))
 
- 	{
 
- 		strncpy(Info.m_cComputerName, dest, sizeof(Info.m_cComputerName));
 
- 	}
 
- 	if(CTextConvert::ConvertToUTF8(GetIPAddress(), dest))
 
- 	{
 
- 		strncpy(Info.m_cIP, dest, sizeof(Info.m_cIP));	
 
- 	}
 
- 	if(CTextConvert::ConvertToUTF8(pClip->m_Desc, dest))
 
- 	{
 
- 		strncpy(Info.m_cDesc, dest, sizeof(Info.m_cDesc));
 
- 	}
 
- 	
 
- 	Info.m_cDesc[sizeof(Info.m_cDesc)-1] = 0;
 
- 	Info.m_cComputerName[sizeof(Info.m_cComputerName)-1] = 0;
 
- 	Info.m_cIP[sizeof(Info.m_cIP)-1] = 0;
 
- 	m_SendSocket.SetSocket(m_Connection);
 
- 	if(m_SendSocket.SendCSendData(Info, MyEnums::START) == FALSE)
 
- 		return FALSE;
 
- 	
 
- 	CClipFormat* pCF;
 
- 	
 
- 	INT_PTR count = pClip->m_Formats.GetSize();
 
- 	//For each data type
 
- 	for(int i=0; i < count; i++)
 
- 	{
 
- 		pCF = &pClip->m_Formats.GetData()[i];
 
- 		
 
- 		SendClipFormat(pCF);
 
- 	}
 
- 	
 
- 	if(m_SendSocket.SendCSendData(Info, MyEnums::END) == FALSE)
 
- 		return FALSE;
 
- 	theApp.m_lClipsSent++;
 
- 	
 
- 	return TRUE;
 
- }
 
- BOOL CClient::SendClipFormat(CClipFormat* pCF)
 
- {
 
- 	CSendInfo Info;
 
- 	LPVOID pvData = GlobalLock(pCF->m_hgData);
 
- 	INT_PTR length = GlobalSize(pCF->m_hgData);
 
- 	UCHAR* pOutput = NULL;
 
- 	int nLenOutput = 0;
 
- 	CTextConvert Convert;
 
- 	BOOL bRet = FALSE;
 
- 	LogSendRecieveInfo(StrF(_T("BEFORE Encrypt clip data %d"), length));
 
- 	if(m_SendSocket.m_pEncryptor)
 
- 	{
 
- 		if(m_SendSocket.m_pEncryptor->Encrypt((UCHAR*)pvData, (int)length, g_Opt.m_csPassword, pOutput, nLenOutput))
 
- 		{
 
- 			LogSendRecieveInfo(StrF(_T("AFTER Encrypt clip data %d"), nLenOutput));
 
- 			Info.m_lParameter1 = nLenOutput;
 
- 			//Send over as UTF-8
 
- 			CStringA dest;
 
- 			if(CTextConvert::ConvertToUTF8(GetFormatName(pCF->m_cfType), dest))
 
- 			{
 
- 				strncpy(Info.m_cDesc, dest, sizeof(Info.m_cDesc));
 
- 				Info.m_cDesc[sizeof(Info.m_cDesc)-1] = 0;
 
- 			}
 
- 			if(m_SendSocket.SendCSendData(Info, MyEnums::DATA_START) == FALSE)
 
- 				return FALSE;
 
- 			m_SendSocket.SendExactSize((char*)pOutput, nLenOutput, false);
 
- 			m_SendSocket.m_pEncryptor->FreeBuffer(pOutput);
 
- 			bRet = TRUE;
 
- 		}
 
- 		else
 
- 		{
 
- 			LogSendRecieveInfo("Failed to encrypt data");
 
- 			return FALSE;
 
- 		}
 
- 	}
 
- 	else
 
- 	{
 
- 		ASSERT(!"SendItem::Encryption not initialized");
 
- 		LogSendRecieveInfo("SendItem::Encryption not initialized");	
 
- 	}
 
- 	GlobalUnlock(pCF->m_hgData);
 
- 	
 
- 	if(m_SendSocket.SendCSendData(Info, MyEnums::DATA_END) == FALSE)
 
- 		return FALSE;
 
- 	return bRet;
 
- }
 
- HGLOBAL CClient::RequestCopiedFiles(CClipFormat &HDropFormat, CString csIP, CString csComputerName)
 
- {
 
- 	CSendInfo Info;
 
- 	bool bBreak = false;
 
- 	HGLOBAL hReturn = NULL;
 
- 	CString csErrorString;
 
- 	CFileTransferProgressDlg *pProgress = new CFileTransferProgressDlg;
 
- 	if(pProgress == NULL)
 
- 		return NULL;
 
- 	LogSendRecieveInfo(StrF(_T("************** START of requesting files from cpu %s, ip: %s **************"), csComputerName, csIP));
 
- 	pProgress->Create(IDD_DIALOG_REMOTE_FILE);
 
- 	pProgress->ShowWindow(SW_SHOW);
 
- 	pProgress->SetMessage(StrF(_T("Opening Connection to %s (%s)"), csComputerName, csIP));
 
- 	pProgress->PumpMessages();
 
- 	CString requestFrom;
 
- 	if(g_Opt.GetRequestFilesUsingIP())
 
- 	{
 
- 		requestFrom = csIP;
 
- 	}
 
- 	else
 
- 	{
 
- 		requestFrom = csComputerName;
 
- 	}
 
- 	do 
 
- 	{
 
- 		if(OpenConnection(requestFrom) == FALSE)
 
- 		{
 
- 			csErrorString.Format(_T("Error Opening Connection to %s (%s)"), csComputerName, csIP);
 
- 			break;
 
- 		}
 
- 		m_SendSocket.SetSocket(m_Connection);
 
- 		m_SendSocket.SetProgressBar(pProgress);
 
- 		if(m_SendSocket.SendCSendData(Info, MyEnums::START) == FALSE)
 
- 			break;
 
- 		if(SendClipFormat(&HDropFormat) == FALSE)
 
- 		{
 
- 			csErrorString = _T("Error sending data request.");
 
- 			break;
 
- 		}
 
- 		if(m_SendSocket.SendCSendData(Info, MyEnums::END) == FALSE)
 
- 			break;
 
- 			
 
- 		pProgress->SetMessage(StrF(_T("Requesting Files from %s (%s)"), csComputerName, csIP));
 
- 		if(m_SendSocket.SendCSendData(Info, MyEnums::REQUEST_FILES) == FALSE)
 
- 			break;
 
- 		CFileRecieve Recieve;
 
- 		long lRet = Recieve.RecieveFiles(m_Connection, csIP, pProgress);
 
- 		if(lRet == TRUE)
 
- 		{
 
- 			hReturn = Recieve.CreateCF_HDROPBuffer();
 
- 		}
 
- 		else if(lRet == FALSE || lRet == MD5_MISMATCH)
 
- 		{
 
- 			if(pProgress != NULL && pProgress->Cancelled())
 
- 			{
 
- 				//Don't show an error message the user canceled things
 
- 			}
 
- 			else	
 
- 			{
 
- 				csErrorString = _T("Error recieving files.");
 
- 				if (lRet == MD5_MISMATCH)
 
- 				{
 
- 					csErrorString += _T(" MD5 Match Error.");
 
- 				}
 
- 			}
 
- 		}
 
- 	} while(false);
 
- 	CloseConnection();
 
- 	if(hReturn == NULL && csErrorString.IsEmpty() == FALSE)
 
- 	{
 
- 		MessageBox(pProgress->m_hWnd, csErrorString, _T("Ditto"), MB_OK|MB_ICONEXCLAMATION);
 
- 	}
 
- 	pProgress->DestroyWindow();
 
- 	LogSendRecieveInfo(StrF(_T("************** END of requesting files from cpu %s, ip: %s **************************"), csComputerName, csIP));
 
- 	return hReturn;
 
- }
 
 
  |