⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 search.h

📁 电驴的MAC源代码
💻 H
字号:
//								-*- C++ -*-// This file is part of the aMule Project.//// Copyright (c) 2004-2008 Angel Vidal (Kry) ( kry@amule.org )// Copyright (c) 2004-2008 aMule Team ( admin@amule.org / http://www.amule.org )// Copyright (c) 2003 Barry Dunne (http://www.emule-project.net)//// Any parts of this program derived from the xMule, lMule or eMule project,// or contributed by third-party developers are copyrighted by their// respective authors.//// 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, 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, pleasepost 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 knowingwhat 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 advertisethere client on the eMule forum..*/#ifndef __SEARCH_H__#define __SEARCH_H__#include "SearchManager.h"class CKnownFile;class CTag;////////////////////////////////////////namespace Kademlia {////////////////////////////////////////class CKadClientSearcher;class CSearch{	friend class CSearchManager;public:	uint32_t GetSearchID() const throw()		{ return m_searchID; }	void	 SetSearchID(uint32_t id) throw()	{ m_searchID = id; }	uint32_t GetSearchTypes() const throw()		{ return m_type; }	void	 SetSearchTypes(uint32_t val) throw()	{ m_type = val; }	void	 SetTargetID(const CUInt128& val) throw() { m_target = val; }	CUInt128 GetTarget() const throw()		{ return m_target; }	uint32_t GetAnswers() const throw()		{ return m_fileIDs.size() ? m_answers / ((m_fileIDs.size() + 49) / 50) : m_answers; }	uint32_t GetRequestAnswer() const throw()	{ return m_totalRequestAnswers; }	const wxString&	GetFileName(void) const throw()			{ return m_fileName; }	void		SetFileName(const wxString& fileName) throw()	{ m_fileName = fileName; }	void	 AddFileID(const CUInt128& id)		{ m_fileIDs.push_back(id); }	void	 PreparePacketForTags(CMemFile* packet, CKnownFile* file);	bool	 Stopping() const throw()		{ return m_stopping; }	uint32_t GetNodeLoad() const throw()		{ return m_totalLoadResponses == 0 ? 0 : m_totalLoad / m_totalLoadResponses; }	uint32_t GetNodeLoadResponse() const throw()	{ return m_totalLoadResponses; }	uint32_t GetNodeLoadTotal() const throw()	{ return m_totalLoad; }	void	 UpdateNodeLoad(uint8_t load) throw()	{ m_totalLoad += load; m_totalLoadResponses++; }	void	 SetSearchTermData(uint32_t searchTermsDataSize, const uint8_t *searchTermsData);	CKadClientSearcher *	GetNodeSpecialSearchRequester() const throw()				{ return m_nodeSpecialSearchRequester; }	void			SetNodeSpecialSearchRequester(CKadClientSearcher *requester) throw()	{ m_nodeSpecialSearchRequester = requester; }	enum {		NODE,		NODECOMPLETE,		FILE,		KEYWORD,		NOTES,		STOREFILE,		STOREKEYWORD,		STORENOTES,		FINDBUDDY,		FINDSOURCE,		NODESPECIAL,	// nodesearch request from requester "outside" of kad to find the IP of a given NodeID		NODEFWCHECKUDP	// find new unknown IPs for a UDP firewallcheck	};	CSearch();	~CSearch();private:	void Go();	void ProcessResponse(uint32 fromIP, uint16 fromPort, ContactList *results);	void ProcessResult(const CUInt128 &answer, TagPtrList *info);	void ProcessResultFile(const CUInt128 &answer, TagPtrList *info);	void ProcessResultKeyword(const CUInt128 &answer, TagPtrList *info);	void ProcessResultNotes(const CUInt128 &answer, TagPtrList *info);	void JumpStart();	void SendFindValue(CContact *contact);	void PrepareToStop() throw();	void StorePacket();	bool		m_stopping;	time_t		m_created;	uint32_t	m_type;	uint32_t	m_answers;	uint32_t	m_totalRequestAnswers;	uint32_t	m_totalLoad;	uint32_t	m_totalLoadResponses;	uint32_t	m_lastResponse;	uint32_t	m_searchID;	CUInt128	m_target;	uint32_t	m_searchTermsDataSize;	uint8_t *	m_searchTermsData;	WordList	m_words;	wxString	m_fileName;	UIntList	m_fileIDs;	CKadClientSearcher *m_nodeSpecialSearchRequester; // used to callback result for NODESPECIAL searches	ContactMap	m_possible;	ContactMap	m_tried;	ContactMap	m_responded;	ContactMap	m_best;	ContactList	m_delete;	ContactMap	m_inUse;};} // End namespace#endif //__SEARCH_H__// File_checked_for_headers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -