?? indexed.h
字號:
/*
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..
*/
#pragma once
#include "MapKey.h"
#include "../../Types.h"
#include <list>
#include "SearchManager.h"
#include "../routing/Maps.h"
#include "../utils/UInt128.h"
#include "Entry.h"
typedef CTypedPtrList<CPtrList, Kademlia::CEntry*> CKadEntryPtrList;
struct Source{
Kademlia::CUInt128 sourceID;
CKadEntryPtrList entryList;
};
typedef CMap<CCKey,const CCKey&,Source*,Source*> CSourceKeyMap;
struct KeyHash{
Kademlia::CUInt128 keyID;
CSourceKeyMap m_Source_map;
};
struct SSearchTerm
{
SSearchTerm();
~SSearchTerm();
enum ESearchTermType {
AND,
OR,
NAND,
String,
MetaTag,
OpGreaterEqual,
OpLessEqual,
OpGreater,
OpLess,
OpEqual,
OpNotEqual
} type;
Kademlia::CTag* tag;
CStringArray* astr;
SSearchTerm* left;
SSearchTerm* right;
};
////////////////////////////////////////
namespace Kademlia {
////////////////////////////////////////
class CIndexed
{
public:
CIndexed();
~CIndexed();
bool AddKeyword(const CUInt128& keyWordID, const CUInt128& sourceID, Kademlia::CEntry* entry, bool ignoreSize = false);
bool AddSources(const CUInt128& keyWordID, const CUInt128& sourceID, Kademlia::CEntry* entry);
uint32 GetIndexedCount() {return m_Keyword_map.GetCount();}
void SendValidKeywordResult(const CUInt128& keyID, const SSearchTerm* pSearchTerms, uint32 ip, uint16 port);
void SendValidSourceResult(const CUInt128& keyID, uint32 ip, uint16 port);
uint32 m_totalIndexSource;
uint32 m_totalIndexKeyword;
private:
time_t m_lastClean;
CMap<CCKey,const CCKey&,KeyHash*,KeyHash*> m_Keyword_map;
CMap<CCKey,const CCKey&,KeyHash*,KeyHash*> m_Sources_map;
static CString m_sfilename;
static CString m_kfilename;
void readFile(void);
void clean(void);
};
} // End namespace
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -