2 // This file is part of the aMule Project.
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2002-2008 Merkur ( devs@emule-project.net / http://www.emule-project.net )
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "SearchFile.h" // Interface declarations.
28 #include <tags/FileTags.h>
30 #include "MemFile.h" // Needed for CMemFile
31 #include "Preferences.h" // Needed for thePrefs
32 #include "GuiEvents.h"
34 #include "PartFile.h" // Needed for CPartFile::CanAddSource
36 CSearchFile::CSearchFile(const CMemFile
& data
, bool optUTF8
, wxUIntPtr searchID
, uint32_t serverIP
, uint16_t serverPort
, const wxString
& directory
, bool kademlia
)
38 m_showChildren(false),
41 m_completeSourceCount(0),
43 m_directory(directory
),
44 m_clientServerIP(serverIP
),
45 m_clientServerPort(serverPort
),
48 m_abyFileHash
= data
.ReadHash();
49 m_clientID
= data
.ReadUInt32();
50 m_clientPort
= data
.ReadUInt16();
52 if ((!m_clientID
) || (!m_clientPort
)) {
53 m_clientID
= m_clientPort
= 0;
54 } else if (!IsGoodIP(m_clientID
, thePrefs::FilterLanIPs())) {
55 m_clientID
= m_clientPort
= 0;
59 uint32 tagcount
= data
.ReadUInt32();
60 for (unsigned int i
= 0; i
< tagcount
; ++i
) {
61 CTag
tag(data
, optUTF8
);
62 switch (tag
.GetNameID()) {
64 SetFileName(CPath(tag
.GetStr()));
67 SetFileSize(tag
.GetInt());
70 SetFileSize((((uint64
)tag
.GetInt()) << 32) + GetFileSize());
73 m_iUserRating
= (tag
.GetInt() & 0xF) / 3;
76 m_sourceCount
= tag
.GetInt();
78 case FT_COMPLETE_SOURCES
:
79 m_completeSourceCount
= tag
.GetInt();
86 if (!GetFileName().IsOk()) {
87 throw CInvalidPacket(wxT("No filename in search result"));
92 CSearchFile::CSearchFile(const CSearchFile
& other
)
93 : CAbstractFile(other
),
94 m_parent(other
.m_parent
),
95 m_showChildren(other
.m_showChildren
),
96 m_searchID(other
.m_searchID
),
97 m_sourceCount(other
.m_sourceCount
),
98 m_completeSourceCount(other
.m_completeSourceCount
),
99 m_kademlia(other
.m_kademlia
),
100 m_directory(other
.m_directory
),
101 m_clients(other
.m_clients
),
102 m_clientID(other
.m_clientID
),
103 m_clientPort(other
.m_clientPort
),
104 m_clientServerIP(other
.m_clientServerIP
),
105 m_clientServerPort(other
.m_clientServerPort
),
106 m_kadPublishInfo(other
.m_kadPublishInfo
)
108 for (size_t i
= 0; i
< other
.m_children
.size(); ++i
) {
109 m_children
.push_back(new CSearchFile(*other
.m_children
.at(i
)));
114 CSearchFile::~CSearchFile()
116 for (size_t i
= 0; i
< m_children
.size(); ++i
) {
117 delete m_children
.at(i
);
122 void CSearchFile::AddClient(const ClientStruct
& client
)
124 for (std::list
<ClientStruct
>::const_iterator it
= m_clients
.begin(); it
!= m_clients
.end(); ++it
) {
125 if (client
.m_ip
== it
->m_ip
&& client
.m_port
== it
->m_port
) return;
127 m_clients
.push_back(client
);
130 void CSearchFile::MergeResults(const CSearchFile
& other
)
134 m_sourceCount
= std::max(m_sourceCount
, other
.m_sourceCount
);
135 m_completeSourceCount
= std::max(m_completeSourceCount
, other
.m_completeSourceCount
);
137 m_sourceCount
+= other
.m_sourceCount
;
138 m_completeSourceCount
+= other
.m_completeSourceCount
;
142 if (m_kadPublishInfo
== 0) {
143 if (other
.m_kadPublishInfo
!= 0) {
144 m_kadPublishInfo
= other
.m_kadPublishInfo
;
147 if (other
.m_kadPublishInfo
!= 0) {
149 std::max(m_kadPublishInfo
& 0xFF000000, other
.m_kadPublishInfo
& 0xFF000000) |
150 std::max(m_kadPublishInfo
& 0x00FF0000, other
.m_kadPublishInfo
& 0x00FF0000) |
151 (((m_kadPublishInfo
& 0x0000FFFF) + (other
.m_kadPublishInfo
& 0x0000FFFF)) >> 1);
156 if (m_iUserRating
!= 0) {
157 if (other
.m_iUserRating
!= 0) {
158 m_iUserRating
= (m_iUserRating
+ other
.m_iUserRating
) / 2;
161 if (other
.m_iUserRating
!= 0) {
162 m_iUserRating
= other
.m_iUserRating
;
166 // copy possible available sources from new result
167 if (other
.GetClientID() && other
.GetClientPort()) {
168 // pre-filter sources which would be dropped by CPartFile::AddSources
169 if (CPartFile::CanAddSource(other
.GetClientID(), other
.GetClientPort(), other
.GetClientServerIP(), other
.GetClientServerPort())) {
170 CSearchFile::ClientStruct
client(other
.GetClientID(), other
.GetClientPort(), other
.GetClientServerIP(), other
.GetClientServerPort());
177 void CSearchFile::AddChild(CSearchFile
* file
)
179 wxCHECK_RET(file
, wxT("Not a valid child!"));
180 wxCHECK_RET(!file
->GetParent(), wxT("Search-result can only be child of one other result"));
181 wxCHECK_RET(!file
->HasChildren(), wxT("Result already has children, cannot become child."));
182 wxCHECK_RET(!GetParent(), wxT("A child cannot have children of its own"));
183 wxCHECK_RET(GetFileHash() == file
->GetFileHash(), wxT("Mismatching child/parent hashes"));
184 wxCHECK_RET(GetFileSize() == file
->GetFileSize(), wxT("Mismatching child/parent sizes"));
186 // If no children exists, then we add the current item.
187 if (GetChildren().empty()) {
188 // Merging duplicate names instead of adding a new one
189 if (file
->GetFileName() == GetFileName()) {
190 AddDebugLogLineM( false, logSearch
, CFormat(wxT("Merged results for '%s'")) % GetFileName());
195 // The first child will always be the first result we received.
196 AddDebugLogLineM(false, logSearch
, CFormat(wxT("Created initial child for result '%s'")) % GetFileName());
197 m_children
.push_back(new CSearchFile(*this));
198 m_children
.back()->m_parent
= this;
202 file
->m_parent
= this;
204 for (size_t i
= 0; i
< m_children
.size(); ++i
) {
205 CSearchFile
* other
= m_children
.at(i
);
206 // Merge duplicate filenames
207 if (other
->GetFileName() == file
->GetFileName()) {
208 other
->MergeResults(*file
);
216 m_children
.push_back(file
);
219 if (ShowChildren()) {
220 Notify_Search_Add_Result(file
);
225 void CSearchFile::UpdateParent()
227 wxCHECK_RET(!m_parent
, wxT("UpdateParent called on child item"));
229 uint32_t sourceCount
= 0; // ed2k: sum of all sources, kad: the max sources found
230 uint32_t completeSourceCount
= 0; // ed2k: sum of all sources, kad: the max sources found
231 uint32_t differentNames
= 0; // max known different names
232 uint32_t publishersKnown
= 0; // max publishers known
233 uint32_t trustValue
= 0; // average trust value
234 unsigned publishInfoTags
= 0;
235 unsigned ratingCount
= 0;
236 unsigned ratingTotal
= 0;
237 CSearchResultList::const_iterator best
= m_children
.begin();
238 for (CSearchResultList::const_iterator it
= m_children
.begin(); it
!= m_children
.end(); ++it
) {
239 const CSearchFile
* child
= *it
;
241 // Locate the most common name
242 if (child
->GetSourceCount() > (*best
)->GetSourceCount()) {
248 sourceCount
= std::max(sourceCount
, child
->m_sourceCount
);
249 completeSourceCount
= std::max(completeSourceCount
, child
->m_completeSourceCount
);
251 sourceCount
+= child
->m_sourceCount
;
252 completeSourceCount
+= child
->m_completeSourceCount
;
256 if (child
->GetKadPublishInfo() != 0) {
257 differentNames
= std::max(differentNames
, (child
->GetKadPublishInfo() & 0xFF000000) >> 24);
258 publishersKnown
= std::max(publishersKnown
, (child
->GetKadPublishInfo() & 0x00FF0000) >> 16);
259 trustValue
+= child
->GetKadPublishInfo() & 0x0000FFFF;
264 if (child
->HasRating()) {
266 ratingTotal
+= child
->UserRating();
270 if (child
->GetClientID() && child
->GetClientPort()) {
271 CSearchFile::ClientStruct
client(child
->GetClientID(), child
->GetClientPort(), child
->GetClientServerIP(), child
->GetClientServerPort());
274 for (std::list
<ClientStruct
>::const_iterator cit
= child
->m_clients
.begin(); cit
!= child
->m_clients
.end(); ++cit
) {
279 m_sourceCount
= sourceCount
;
280 m_completeSourceCount
= completeSourceCount
;
282 if (publishInfoTags
> 0) {
283 m_kadPublishInfo
= ((differentNames
& 0x000000FF) << 24) | ((publishersKnown
& 0x000000FF) << 16) | ((trustValue
/ publishInfoTags
) & 0x0000FFFF);
285 m_kadPublishInfo
= 0;
288 if (ratingCount
> 0) {
289 m_iUserRating
= ratingTotal
/ ratingCount
;
294 SetFileName((*best
)->GetFileName());
296 // File_checked_for_headers