Improve speed of category tab title updates
[amule.git] / src / KnownFile.h
blobbfb1a4843614696dc49b8194b2fab8209241f9b8
1 //
2 // This file is part of the aMule Project.
3 //
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 )
6 //
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
9 // respective authors.
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
27 #ifndef KNOWNFILE_H
28 #define KNOWNFILE_H
31 #include "MD4Hash.h"
32 #include "SHAHashSet.h"
34 #include <protocol/ed2k/Constants.h>
35 #include <common/Path.h>
37 #include "kademlia/kademlia/Indexed.h"
38 #include <ec/cpp/ECID.h> // Needed for CECID
41 #ifdef CLIENT_GUI
42 #include <ec/cpp/ECSpecialTags.h>
43 #include "RLE.h" // Needed for RLE_Data, PartFileEncoderData
44 #endif
46 #include "Constants.h" // Needed for PS_*, PR_*
47 #include "ClientRef.h" // Needed for CClientRef
49 class CFileDataIO;
50 class CPacket;
51 class CTag;
54 namespace Kademlia
56 class CEntry;
60 typedef vector<CMD4Hash> ArrayOfCMD4Hash;
63 typedef vector<CTag> ArrayOfCTag;
66 class CFileStatistic
68 friend class CKnownFile;
69 friend class CKnownFilesRem;
71 public:
72 CFileStatistic();
73 void AddRequest();
74 void AddAccepted();
75 void AddTransferred(uint64 bytes);
76 uint16 GetRequests() const {return requested;}
77 uint16 GetAccepts() const {return accepted;}
78 uint64 GetTransferred() const {return transferred;}
79 uint32 GetAllTimeRequests() const {return alltimerequested;}
80 void SetAllTimeRequests(uint32 new_value) { alltimerequested = new_value; };
81 uint32 GetAllTimeAccepts() const {return alltimeaccepted;}
82 void SetAllTimeAccepts(uint32 new_value) { alltimeaccepted = new_value; };
83 uint64 GetAllTimeTransferred() const {return alltimetransferred;}
84 void SetAllTimeTransferred(uint64 new_value) { alltimetransferred = new_value; };
85 CKnownFile* fileParent;
87 private:
88 uint16 requested;
89 uint64 transferred;
90 uint16 accepted;
91 uint32 alltimerequested;
92 uint64 alltimetransferred;
93 uint32 alltimeaccepted;
97 CPartFile
99 CKnownFile
101 CAbstractFile
103 CSearchFile
105 class CAbstractFile
107 public:
108 CAbstractFile();
109 explicit CAbstractFile(const CAbstractFile& other);
110 virtual ~CAbstractFile() {}
112 const CPath& GetFileName() const { return m_fileName; }
113 const CMD4Hash& GetFileHash() const { return m_abyFileHash; }
115 uint64 GetFileSize() const { return m_nFileSize;}
116 bool IsLargeFile() const { return m_nFileSize > (uint64)OLD_MAX_FILE_SIZE; }
118 virtual void SetFileSize(uint64 nFileSize) { m_nFileSize = nFileSize; }
119 virtual void SetFileName(const CPath& filename);
121 /* Tags and Notes handling */
122 uint32 GetIntTagValue(uint8 tagname) const;
123 uint32 GetIntTagValue(const wxString& tagname) const;
124 bool GetIntTagValue(uint8 tagname, uint32& ruValue) const;
125 const wxString& GetStrTagValue(uint8 tagname) const;
126 const wxString& GetStrTagValue(const wxString& tagname) const;
127 const CTag *GetTag(const wxString& tagname) const;
128 const CTag *GetTag(const wxString& tagname, uint8 tagtype) const;
129 const CTag *GetTag(uint8 tagname) const;
130 const CTag *GetTag(uint8 tagname, uint8 tagtype) const;
131 void AddTagUnique(const CTag &pTag);
132 const ArrayOfCTag& GetTags() const { return m_taglist; }
133 void AddNote(Kademlia::CEntry* pEntry);
134 const CKadEntryPtrList& getNotes() const { return m_kadNotes; }
136 /* Comment and rating */
137 virtual const wxString& GetFileComment() const { return m_strComment; }
138 virtual int8 GetFileRating() const { return m_iRating; }
140 bool HasComment() const { return m_hasComment; }
141 bool HasRating() const { return (m_iUserRating != 0); }
142 int8 UserRating() const { return m_iUserRating; }
144 protected:
145 //! CAbstractFile is not assignable.
146 CAbstractFile& operator=(const CAbstractFile);
148 CMD4Hash m_abyFileHash;
149 // comment/rating are read from the config and cached in these variables,
150 // so make the mutable to allow GetFileComment() to be a const method
151 mutable wxString m_strComment;
152 mutable int8 m_iRating;
153 bool m_hasComment;
154 int8 m_iUserRating;
155 ArrayOfCTag m_taglist;
156 CKadEntryPtrList m_kadNotes;
158 private:
159 uint64 m_nFileSize;
160 CPath m_fileName;
164 class CSearchFile;
165 class CFile;
168 class CKnownFile : public CAbstractFile, public CECID
170 friend class CHashingTask;
171 public:
172 CKnownFile();
173 CKnownFile(uint32 ecid);
174 explicit CKnownFile(const CSearchFile &searchFile);
176 virtual ~CKnownFile();
178 void SetFilePath(const CPath& filePath);
179 const CPath& GetFilePath() const { return m_filePath; }
181 // virtual functions for CKnownFile and CPartFile:
182 virtual bool IsPartFile() const {return false;} // true if not completed
183 virtual bool IsCompleted() const { return true; } // true if completed
184 virtual bool IsCPartFile() const { return false; } // true if it's a CPartFile
186 virtual bool LoadFromFile(const CFileDataIO* file); //load date, hashset and tags from a .met file
187 virtual uint8 GetStatus(bool WXUNUSED(ignorepause) = false) const { return PS_COMPLETE; }
188 bool WriteToFile(CFileDataIO* file);
189 time_t GetLastChangeDatetime() const { return m_lastDateChanged; }
191 virtual void SetFileSize(uint64 nFileSize);
193 // local available part hashs
194 size_t GetHashCount() const {return m_hashlist.size();}
195 const CMD4Hash& GetPartHash(uint16 part) const;
197 // nr. of part hashs according the file size wrt ED2K protocol
198 uint32 GetED2KPartHashCount() const { return m_iED2KPartHashCount; }
200 // nr. of 9MB parts (file data)
201 inline uint16 GetPartCount() const { return m_iPartCount; }
203 // nr. of 9MB parts according the file size wrt ED2K protocol (OP_FILESTATUS)
204 inline uint16 GetED2KPartCount() const { return m_iED2KPartCount; }
206 // size of a certain part, last is different, all others are PARTSIZE
207 uint32 GetPartSize(uint16 part) const { return part == m_iPartCount - 1 ? m_sizeLastPart : PARTSIZE; }
209 // file upload priority
210 uint8 GetUpPriority() const {return m_iUpPriority;}
211 void SetUpPriority(uint8 newUpPriority, bool bSave=true);
212 bool IsAutoUpPriority() const {return m_bAutoUpPriority;}
213 void SetAutoUpPriority(bool flag) {m_bAutoUpPriority = flag;}
214 void UpdateAutoUpPriority();
215 #ifdef CLIENT_GUI
216 uint16 GetQueuedCount() const { return m_queuedCount; }
217 #else
218 uint16 GetQueuedCount() const { return (uint16) m_ClientUploadList.size(); }
219 #endif
221 bool LoadHashsetFromFile(const CFileDataIO* file, bool checkhash);
222 void AddUploadingClient(CUpDownClient* client);
223 void RemoveUploadingClient(CUpDownClient* client);
225 // comment
226 const wxString& GetFileComment() const { if (!m_bCommentLoaded) LoadComment(); return m_strComment; }
227 int8 GetFileRating() const { if (!m_bCommentLoaded) LoadComment(); return m_iRating; }
229 void SetFileCommentRating(const wxString& strNewComment, int8 iNewRating);
230 void SetPublishedED2K( bool val );
231 bool GetPublishedED2K() const {return m_PublishedED2K;}
233 /* Kad stuff */
234 uint32 GetKadFileSearchID() const { return kadFileSearchID; }
235 // KAD TODO: This must be used on KadSearchListCtrl too once imported
236 void SetKadFileSearchID(uint32 id) { kadFileSearchID = id; } // John - Don't use this unless you know what your are DOING!! (Hopefully I do.. :)
237 const Kademlia::WordList& GetKadKeywords() const { return wordlist; }
238 // KAD TODO: If we add the proper column to SharedFilesCtrl, this is the funtion.
239 uint32 GetLastPublishTimeKadSrc() const { return m_lastPublishTimeKadSrc; }
240 void SetLastPublishTimeKadSrc(uint32 time, uint32 buddyip) { m_lastPublishTimeKadSrc = time; m_lastBuddyIP = buddyip;}
241 // Another unused function, useful for the shared files control column
242 uint32 GetLastPublishBuddy() const { return m_lastBuddyIP; }
243 void SetLastPublishTimeKadNotes(uint32 time) {m_lastPublishTimeKadNotes = time;}
244 uint32 GetLastPublishTimeKadNotes() const { return m_lastPublishTimeKadNotes; }
246 bool PublishSrc();
247 bool PublishNotes();
249 // TODO: This must be implemented if we ever want to have metadata.
250 uint32 GetMetaDataVer() const { return /*m_uMetaDataVer*/ 0; }
252 // file sharing
253 virtual CPacket* CreateSrcInfoPacket(const CUpDownClient* forClient, uint8 byRequestedVersion, uint16 nRequestedOptions);
254 void CreateOfferedFilePacket(CMemFile* files, class CServer* pServer, CUpDownClient* pClient);
256 virtual void UpdatePartsInfo();
259 CFileStatistic statistic;
261 time_t m_nCompleteSourcesTime;
262 uint16 m_nCompleteSourcesCount;
263 uint16 m_nCompleteSourcesCountLo;
264 uint16 m_nCompleteSourcesCountHi;
266 // Common for part and known files.
267 typedef std::set<CClientRef> SourceSet;
268 SourceSet m_ClientUploadList;
269 ArrayOfUInts16 m_AvailPartFrequency;
272 * Returns a base-16 encoding of the master hash, or
273 * an empty string if no such hash exists.
275 wxString GetAICHMasterHash() const;
276 /** Returns true if the AICH-Hashset is valid, and verified or complete. */
277 bool HasProperAICHHashSet() const;
280 * Updates the requency of uploading parts from with the data the client provides.
282 * @param client The clients whoose uploading parts should be considered.
283 * @param increment If true, the counts are incremented, otherwise they are decremented.
285 * This functions updates the frequency list of file-upparts, using the clients
286 * upparts-status. This function should be called by clients every time they update their
287 * upparts-status, or when they are added or removed from the file.
289 void UpdateUpPartsFrequency( CUpDownClient* client, bool increment );
291 static void CreateHashFromHashlist(const ArrayOfCMD4Hash& hashes, CMD4Hash* Output);
293 void ClearPriority();
295 time_t m_lastDateChanged;
297 virtual wxString GetFeedback() const;
299 void SetShowSources( bool val ) { m_showSources = val; }
300 bool ShowSources() const { return m_showSources; }
301 void SetShowPeers( bool val ) { m_showPeers = val; }
302 bool ShowPeers() const { return m_showPeers; }
304 #ifdef CLIENT_GUI
305 CKnownFile(CEC_SharedFile_Tag *);
306 friend class CKnownFilesRem;
307 RLE_Data m_partStatus;
309 private:
310 uint8 m_iUpPriorityEC;
311 uint16 m_queuedCount;
313 protected:
314 //! The AICH master-hash, if it is known.
315 wxString m_AICHMasterHash;
316 #else
317 virtual void SetFileName(const CPath& filename);
319 // AICH
320 CAICHHashSet* GetAICHHashset() const { return m_pAICHHashSet; }
321 void SetAICHHashset(CAICHHashSet* val) { m_pAICHHashSet = val; }
323 protected:
324 CAICHHashSet* m_pAICHHashSet;
325 #endif
327 bool LoadTagsFromFile(const CFileDataIO* file);
328 bool LoadDateFromFile(const CFileDataIO* file);
329 void LoadComment() const;
330 ArrayOfCMD4Hash m_hashlist;
331 CPath m_filePath;
333 static void CreateHashFromFile(class CFileAutoClose& file, uint64 offset, uint32 Length, CMD4Hash* Output, CAICHHashTree* pShaHashOut);
334 static void CreateHashFromInput(const byte* input, uint32 Length, CMD4Hash* Output, CAICHHashTree* pShaHashOut);
336 mutable bool m_bCommentLoaded;
337 uint16 m_iPartCount;
338 uint16 m_iED2KPartCount;
339 uint16 m_iED2KPartHashCount;
340 uint32 m_sizeLastPart; // size of the last part
341 uint8 m_iUpPriority;
342 bool m_bAutoUpPriority;
343 bool m_PublishedED2K;
345 /* Kad stuff */
346 Kademlia::WordList wordlist;
347 uint32 kadFileSearchID;
348 uint32 m_lastPublishTimeKadSrc;
349 uint32 m_lastPublishTimeKadNotes;
350 uint32 m_lastBuddyIP;
352 bool m_showSources;
353 bool m_showPeers;
354 private:
355 /** Common initializations for constructors. */
356 void Init();
359 #endif // KNOWNFILE_H
360 // File_checked_for_headers