1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
//
// This file is part of the aMule Project.
//
// Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
// Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / 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
//
#ifndef PARTFILE_H
#define PARTFILE_H
#include "KnownFile.h" // Needed for CKnownFile
#include "FileAutoClose.h" // Needed for CFileAutoClose
#include "OtherStructs.h" // Needed for Requested_Block_Struct
#include "DeadSourceList.h" // Needed for CDeadSourceList
#include "GapList.h"
class CSearchFile;
class CMemFile;
class CFileDataIO;
class CED2KFileLink;
//#define BUFFER_SIZE_LIMIT 500000 // Max bytes before forcing a flush
#define BUFFER_TIME_LIMIT 60000 // Max milliseconds before forcing a flush
// Ok, eMule and aMule are building incompatible backup files because
// of the different name. aMule was using ".BAK" and eMule ".bak".
// This should fix it.
#define PARTMET_BAK_EXT wxT(".bak")
enum EPartFileFormat {
PMT_UNKNOWN = 0,
PMT_DEFAULTOLD,
PMT_SPLITTED,
PMT_NEWOLD,
PMT_SHAREAZA,
PMT_BADFORMAT
};
class SFileRating
{
public:
wxString UserName;
wxString FileName;
sint16 Rating;
wxString Comment;
public:
SFileRating(const wxString &u, const wxString &f, sint16 r, const wxString &c);
SFileRating(const SFileRating &fr);
SFileRating(const CUpDownClient &client);
~SFileRating();
};
typedef std::list<SFileRating> FileRatingList;
class SourcenameItem
{
public:
wxString name;
int count;
public:
SourcenameItem(const wxString &n = EmptyString, int c = 0)
:
name(n), count(c) {}
};
typedef std::map<uint32,SourcenameItem> SourcenameItemMap;
class CPartFile : public CKnownFile {
public:
typedef std::list<Requested_Block_Struct*> CReqBlockPtrList;
CPartFile();
#ifdef CLIENT_GUI
CPartFile(const CEC_PartFile_Tag *tag);
#else
virtual void SetFileName(const CPath& filename);
#endif
CPartFile(CSearchFile* searchresult); //used when downloading a new file
CPartFile(const CED2KFileLink* fileLink);
virtual ~CPartFile();
virtual bool LoadFromFile(const CFileDataIO* WXUNUSED(file)) { return false; }
bool WriteToFile(CFileDataIO* WXUNUSED(file)) { return false; }
// virtual functions for CKnownFile and CPartFile:
bool IsPartFile() const { return status != PS_COMPLETE; } // true if not completed
bool IsCompleted() const { return status == PS_COMPLETE; } // true if completed
bool IsCPartFile() const { return true; } // true if it's a CPartFile
uint32 Process(uint32 reducedownload, uint8 m_icounter);
uint8 LoadPartFile(const CPath& in_directory, const CPath& filename, bool from_backup = false, bool getsizeonly = false);
bool SavePartFile(bool Initial = false);
void PartFileHashFinished(CKnownFile* result);
bool HashSinglePart(uint16 partnumber); // true = ok , false = corrupted
bool CheckShowItemInGivenCat(int inCategory);
bool IsComplete(uint64 start, uint64 end) { return m_gaplist.IsComplete(start, end); }
bool IsComplete(uint16 part) { return m_gaplist.IsComplete(part); }
void UpdateCompletedInfos();
bool GetNextRequestedBlock(CUpDownClient* sender, std::vector<Requested_Block_Struct*>& toadd, uint16& count);
void WritePartStatus(CMemFile* file);
void WriteCompleteSourcesCount(CMemFile* file);
static bool CanAddSource(uint32 userid, uint16 port, uint32 serverip, uint16 serverport, uint8* pdebug_lowiddropped = NULL, bool ed2kID = true);
void AddSources(CMemFile& sources, uint32 serverip, uint16 serverport, unsigned origin, bool bWithObfuscationAndHash);
#ifdef CLIENT_GUI
uint8 GetStatus() const { return status; }
uint8 GetStatus(bool /*ignorepause = false*/) const { return status; }
#else
uint8 GetStatus(bool ignorepause = false) const;
#endif
virtual void UpdatePartsInfo();
const CPath& GetPartMetFileName() const { return m_partmetfilename; }
uint16 GetPartMetNumber() const;
uint64 GetTransferred() const { return transferred; }
const CPath& GetFullName() const { return m_fullname; }
float GetKBpsDown() const { return kBpsDown; }
double GetPercentCompleted() const { return percentcompleted; }
#ifndef CLIENT_GUI
uint16 GetSourceCount() const { return (uint16)m_SrcList.size(); }
uint16 GetSrcA4AFCount() const { return (uint16)m_A4AFsrclist.size(); }
#else
uint16 m_source_count, m_a4af_source_count;
uint16 GetSourceCount() const { return m_source_count; }
uint16 GetSrcA4AFCount() const { return m_a4af_source_count; }
#endif
uint16 GetTransferingSrcCount() const { return transferingsrc; }
uint16 GetNotCurrentSourcesCount() const { return m_notCurrentSources; };
uint16 GetValidSourcesCount() const { return m_validSources; };
uint64 GetNeededSpace();
virtual wxString GetFeedback() const;
wxString getPartfileStatus() const; //<<--9/21/02
sint32 getTimeRemaining() const; //<<--9/21/02
time_t lastseencomplete;
int getPartfileStatusRang() const;
// Barry - Added as replacement for BlockReceived to buffer data before writing to disk
uint32 WriteToBuffer(uint32 transize, byte *data, uint64 start, uint64 end, Requested_Block_Struct *block, const CUpDownClient* client);
void FlushBuffer(bool fromAICHRecoveryDataAvailable = false);
// Barry - Added to prevent list containing deleted blocks on shutdown
void RemoveAllRequestedBlocks(void);
void RemoveBlockFromList(uint64 start,uint64 end);
void RemoveAllSources(bool bTryToSwap);
void Delete();
void StopFile(bool bCancel = false);
void PauseFile(bool bInsufficient = false);
void ResumeFile();
virtual CPacket* CreateSrcInfoPacket(const CUpDownClient* forClient, uint8 byRequestedVersion, uint16 nRequestedOptions);
void AddClientSources(CMemFile* sources, unsigned nSourceFrom, uint8 uClientSXVersion, bool bSourceExchange2, const CUpDownClient* pClient = NULL);
bool PreviewAvailable();
uint16 GetAvailablePartCount() const { return m_availablePartsCount; }
uint32 GetLastAnsweredTime() const { return m_ClientSrcAnswered; }
void SetLastAnsweredTime();
void SetLastAnsweredTimeTimeout();
uint64 GetLostDueToCorruption() const { return m_iLostDueToCorruption; }
uint64 GetGainDueToCompression() const { return m_iGainDueToCompression; }
uint32 TotalPacketsSavedDueToICH()const{ return m_iTotalPacketsSavedDueToICH; }
bool IsStopped() const { return this ? m_stopped : true; }
bool IsPaused() const { return m_paused; }
void UpdateFileRatingCommentAvail();
int GetCommonFilePenalty();
void UpdateDisplayedInfo(bool force = false);
uint8 GetCategory() const { return m_category; }
void SetCategory(uint8 cat);
void RemoveCategory(uint8 cat);
void SetDownPriority(uint8 newDownPriority, bool bSave = true, bool bRefresh = true);
bool IsAutoDownPriority() const { return m_bAutoDownPriority; }
void SetAutoDownPriority(bool flag) { m_bAutoDownPriority = flag; }
void UpdateAutoDownPriority();
uint8 GetDownPriority() const { return m_iDownPriority; }
void SetActive(bool bActive);
uint32 GetDlActiveTime() const;
bool GetInsufficient() const { return m_insufficient; }
void CompleteFileEnded(bool errorOccured, const CPath& newname);
bool RemoveSource(CUpDownClient* toremove, bool updatewindow = true, bool bDoStatsUpdate = true);
void RequestAICHRecovery(uint16 nPart);
void AICHRecoveryDataAvailable(uint16 nPart);
/**
* This function is used to update source-counts.
*
* @param oldState The old state of the client, or -1 to ignore.
* @param newState The new state of the client, or -1 to ignore.
*
* Call this function for a client belonging to this file, which has changed
* its state. The value -1 can be used to make the function ignore one of
* the two states.
*
* AddSource and DelSource takes care of calling this function when a source is
* removed, so there's no need to call this function when calling either of those.
*/
void ClientStateChanged( int oldState, int newState );
bool AddSource( CUpDownClient* client );
bool DelSource( CUpDownClient* client );
/**
* Updates the requency of avilable parts from with the data the client provides.
*
* @param client The clients whoose available parts should be considered.
* @param increment If true, the counts are incremented, otherwise they are decremented.
*
* This functions updates the frequency list of file-parts, using the clients
* parts-status. This function should be called by clients every time they update their
* parts-status, or when they are added or removed from the file.
*/
void UpdatePartsFrequency( CUpDownClient* client, bool increment );
ArrayOfUInts16 m_SrcpartFrequency;
const SourceSet& GetSourceList() const { return m_SrcList; }
const SourceSet& GetA4AFList() const { return m_A4AFsrclist; }
void ClearA4AFList() { m_A4AFsrclist.clear(); }
const CReqBlockPtrList GetRequestedBlockList() const { return m_requestedblocks_list; }
const CGapList& GetGapList() const { return m_gaplist; }
/**
* Adds a source to the list of dead sources.
*
* @param client The source to be recorded as dead for this file.
*/
void AddDeadSource(const CUpDownClient* client);
/**
* Set the current progress of hashing and display it in the download list control.
*
* @param part Number of part currently being hashed. 0 for no hashing in progress.
*/
virtual void SetHashingProgress(uint16 part) const;
/**
* Checks if a source is recorded as being dead for this file.
*
* @param client The client to evaluate.
* @return True if dead, false otherwise.
*
* Sources that are dead are not to be considered valid
* sources and should not be added to the partfile.
*/
bool IsDeadSource(const CUpDownClient* client);
/* Kad Stuff */
uint16 GetMaxSources() const;
uint16 GetMaxSourcePerFileSoft() const;
uint16 GetMaxSourcePerFileUDP() const;
void GetRatingAndComments(FileRatingList & list) const;
void AllocationFinished();
private:
#ifndef CLIENT_GUI
// partfile handle (opened on demand)
CFileAutoClose m_hpartfile;
//! A local list of sources that are invalid for this file.
CDeadSourceList m_deadSources;
class CCorruptionBlackBox* m_CorruptionBlackBox;
#endif
uint16 m_notCurrentSources;
uint32 m_validSources;
void AddGap(uint64 start, uint64 end);
void AddGap(uint16 part);
void FillGap(uint64 start, uint64 end);
void FillGap(uint16 part);
bool GetNextEmptyBlockInPart(uint16 partnumber,Requested_Block_Struct* result);
bool IsAlreadyRequested(uint64 start, uint64 end);
void CompleteFile(bool hashingdone);
void CreatePartFile(bool isImporting = false);
void Init();
bool CheckFreeDiskSpace( uint64 neededSpace = 0 );
bool IsCorruptedPart(uint16 partnumber);
uint32 m_iLastPausePurge;
uint16 m_count;
uint16 transferingsrc;
uint64 completedsize;
uint64 transferred;
uint64 m_iLostDueToCorruption;
uint64 m_iGainDueToCompression;
uint32 m_iTotalPacketsSavedDueToICH;
float kBpsDown;
CPath m_fullname; // path/name of the met file
CPath m_partmetfilename; // name of the met file
CPath m_PartPath; // path/name of the partfile
bool m_paused;
bool m_stopped;
bool m_insufficient;
uint8 m_iDownPriority;
bool m_bAutoDownPriority;
uint8 status;
uint32 lastpurgetime;
uint32 m_LastNoNeededCheck;
CGapList m_gaplist;
CReqBlockPtrList m_requestedblocks_list;
double percentcompleted;
std::list<uint16> m_corrupted_list;
uint16 m_availablePartsCount;
uint32 m_ClientSrcAnswered;
bool m_bPercentUpdated;
void PerformFileComplete();
uint32 m_lastRefreshedDLDisplay;
// Buffered data to be written
std::list<class PartFileBufferedData*> m_BufferedData_list;
uint32 m_nTotalBufferData;
uint32 m_nLastBufferFlushTime;
uint8 m_category;
uint32 m_nDlActiveTime;
time_t m_tActivated;
bool m_is_A4AF_auto;
SourceSet m_SrcList;
SourceSet m_A4AFsrclist;
bool m_hashsetneeded;
uint32 m_lastsearchtime;
bool m_localSrcReqQueued;
#ifdef CLIENT_GUI
FileRatingList m_FileRatingList;
const FileRatingList &GetFileRatingList() { return m_FileRatingList; }
void ClearFileRatingList() { m_FileRatingList.clear(); }
void AddFileRatingList(const wxString & u, const wxString & f, sint16 r, const wxString & c) {
m_FileRatingList.push_back(SFileRating(u, f, r, c)); }
uint32 m_kbpsDown;
uint8 m_iDownPriorityEC;
bool m_isShared;
SourcenameItemMap m_SourcenameItemMap;
ListOfUInts32 m_A4AFClientIDs;
ListOfUInts32 & GetA4AFClientIDs() { return m_A4AFClientIDs; }
public:
bool IsShared() const { return m_isShared; }
SourcenameItemMap &GetSourcenameItemMap() { return m_SourcenameItemMap; }
PartFileEncoderData m_PartFileEncoderData;
#endif
public:
bool IsHashSetNeeded() const { return m_hashsetneeded; }
void SetHashSetNeeded(bool value) { m_hashsetneeded = value; }
uint64 GetCompletedSize() const { return completedsize; }
void SetCompletedSize(uint64 size) { completedsize = size; }
bool IsLocalSrcRequestQueued() const { return m_localSrcReqQueued; }
void SetLocalSrcRequestQueued(bool value) { m_localSrcReqQueued = value; }
void AddA4AFSource(CUpDownClient* src) { m_A4AFsrclist.insert(CCLIENTREF(src, wxT("A4AFSource"))); }
bool RemoveA4AFSource(CUpDownClient* src) { return (m_A4AFsrclist.erase(CCLIENTREF(src, wxEmptyString)) > 0); }
uint32 GetLastSearchTime() const { return m_lastsearchtime; }
void SetLastSearchTime(uint32 time) { m_lastsearchtime = time; }
void AddDownloadingSource(CUpDownClient* client);
void RemoveDownloadingSource(CUpDownClient* client);
void SetStatus(uint8 in);
void StopPausedFile();
// [sivka / Tarod] Imported from eMule 0.30c (Creteil) ...
void SetA4AFAuto(bool in) { m_is_A4AF_auto = in; }
bool IsA4AFAuto() const { return m_is_A4AF_auto; }
// Kry -Sources seeds
void SaveSourceSeeds();
void LoadSourceSeeds();
// Dropping slow sources
CUpDownClient* GetSlowerDownloadingClient(uint32 speed, CUpDownClient* caller);
// Read data for sharing
bool ReadData(class CFileArea & area, uint64 offset, uint32 toread);
private:
/* downloading sources list */
CClientRefList m_downloadingSourcesList;
/* Kad Stuff */
uint32 m_LastSearchTimeKad;
uint8 m_TotalSearchesKad;
friend class CKnownFilesRem;
friend class CPartFileConvert;
};
#endif // PARTFILE_H
// File_checked_for_headers
|