www.gusucode.com > eMule电驴下载VC++源代码-源码程序 > eMule电驴下载VC++源代码-源码程序\code\srchybrid\kademlia\utils\MiscUtils.cpp

    //Download by http://www.NewXing.com
/*
Copyright (C)2003 Barry Dunne (http://www.emule-project.net)

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

// Note To Mods //
/*
Please do not change anything here and release it..
There is going to be a new forum created just for the Kademlia side of the client..
If you feel there is an error or a way to improve something, please
post it in the forum first and let us look at it.. If it is a real improvement,
it will be added to the offical client.. Changing something without knowing
what all it does can cause great harm to the network if released in mass form..
Any mod that changes anything within the Kademlia side will not be allowed to advertise
there client on the eMule forum..
*/

#include "stdafx.h"
#include "MiscUtils.h"
#include "../kademlia/Kademlia.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif


////////////////////////////////////////
using namespace Kademlia;
////////////////////////////////////////

CString CMiscUtils::appDirectory = "";

void CMiscUtils::ipAddressToString(uint32 ip, CString *string)
{
	string->Format("%ld.%ld.%ld.%ld", 
					((ip >> 24) & 0xFF), 
					((ip >> 16) & 0xFF), 
					((ip >>  8) & 0xFF), 
					((ip      ) & 0xFF) );
}

LPCSTR CMiscUtils::getAppDir(void)
{
	if (appDirectory.GetLength() == 0)
	{
		char *buffer = new char[MAX_PATH];
		GetModuleFileName(0, buffer, MAX_PATH);
		LPTSTR end = _tcsrchr(buffer, '\\') + 1;
		*end = '\0';
		appDirectory = buffer;
		delete [] buffer;
	}
	return appDirectory.GetBuffer(0);
}

void CMiscUtils::debugHexDump(const byte *data, uint32 lenData)
{
#ifdef DEBUG
	try
	{
		uint16 lenLine = 16;
		uint32 pos = 0;
		byte c = 0;

		while (pos < lenData)
		{
			CString line;
			CString single;
			line.Format("%08X ", pos);
			lenLine = min((lenData - pos), 16);
			for (int i=0; i<lenLine; i++)
			{
				single.Format(" %02X", data[pos+i]);
				line += single;
				if (i == 7)
					line += " ";
			}
			line += CString(' ', 60 - line.GetLength());
			for (int i=0; i<lenLine; i++)
			{
				c = data[pos + i];
				single.Format("%c", (((c > 31) && (c < 127)) ? c : '.'));
				line += single;
			}
			CKademlia::debugLine(line);
			pos += lenLine;
		}
	} 
	catch (...)
	{
		CKademlia::debugLine("Exception in CMiscUtils::debugHexDump\n");
	}
#endif
}