1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327 |
- /* <!-- copyright */
- /*
- * aria2 - The high speed download utility
- *
- * Copyright (C) 2006 Tatsuhiro Tsujikawa
- *
- * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * In addition, as a special exception, the copyright holders give
- * permission to link the code of portions of this program with the
- * OpenSSL library under certain conditions as described in each
- * individual source file, and distribute linked combinations
- * including the two.
- * You must obey the GNU General Public License in all respects
- * for all of the code used other than OpenSSL. If you modify
- * file(s) with this exception, you may extend this exception to your
- * version of the file(s), but you are not obligated to do so. If you
- * do not wish to do so, delete this exception statement from your
- * version. If you delete this exception statement from all source
- * files in the program, then also delete it here.
- */
- /* copyright --> */
- #include "RequestGroup.h"
- #include <cassert>
- #include <algorithm>
- #include "PostDownloadHandler.h"
- #include "DownloadEngine.h"
- #include "SegmentMan.h"
- #include "NullProgressInfoFile.h"
- #include "Dependency.h"
- #include "prefs.h"
- #include "CreateRequestCommand.h"
- #include "File.h"
- #include "message.h"
- #include "util.h"
- #include "LogFactory.h"
- #include "Logger.h"
- #include "DiskAdaptor.h"
- #include "DiskWriterFactory.h"
- #include "RecoverableException.h"
- #include "StreamCheckIntegrityEntry.h"
- #include "CheckIntegrityCommand.h"
- #include "UnknownLengthPieceStorage.h"
- #include "DownloadContext.h"
- #include "DlAbortEx.h"
- #include "DownloadFailureException.h"
- #include "RequestGroupMan.h"
- #include "DefaultBtProgressInfoFile.h"
- #include "DefaultPieceStorage.h"
- #include "DownloadHandlerFactory.h"
- #include "MemoryBufferPreDownloadHandler.h"
- #include "DownloadHandlerConstants.h"
- #include "Option.h"
- #include "FileEntry.h"
- #include "Request.h"
- #include "FileAllocationIterator.h"
- #include "fmt.h"
- #include "A2STR.h"
- #include "URISelector.h"
- #include "InorderURISelector.h"
- #include "PieceSelector.h"
- #include "a2functional.h"
- #include "SocketCore.h"
- #include "SimpleRandomizer.h"
- #include "Segment.h"
- #include "SocketRecvBuffer.h"
- #ifdef ENABLE_MESSAGE_DIGEST
- # include "CheckIntegrityCommand.h"
- # include "ChecksumCheckIntegrityEntry.h"
- #endif // ENABLE_MESSAGE_DIGEST
- #ifdef ENABLE_BITTORRENT
- # include "bittorrent_helper.h"
- # include "BtRegistry.h"
- # include "BtCheckIntegrityEntry.h"
- # include "DefaultPeerStorage.h"
- # include "DefaultBtAnnounce.h"
- # include "BtRuntime.h"
- # include "BtSetup.h"
- # include "BtPostDownloadHandler.h"
- # include "DHTSetup.h"
- # include "DHTRegistry.h"
- # include "DHTNode.h"
- # include "DHTRoutingTable.h"
- # include "DHTTaskQueue.h"
- # include "DHTTaskFactory.h"
- # include "DHTTokenTracker.h"
- # include "DHTMessageDispatcher.h"
- # include "DHTMessageReceiver.h"
- # include "DHTMessageFactory.h"
- # include "DHTMessageCallback.h"
- # include "BtMessageFactory.h"
- # include "BtRequestFactory.h"
- # include "BtMessageDispatcher.h"
- # include "BtMessageReceiver.h"
- # include "PeerConnection.h"
- # include "ExtensionMessageFactory.h"
- # include "DHTPeerAnnounceStorage.h"
- # include "DHTEntryPointNameResolveCommand.h"
- # include "LongestSequencePieceSelector.h"
- # include "PriorityPieceSelector.h"
- # include "bittorrent_helper.h"
- #endif // ENABLE_BITTORRENT
- #ifdef ENABLE_METALINK
- # include "MetalinkPostDownloadHandler.h"
- #endif // ENABLE_METALINK
- namespace aria2 {
- a2_gid_t RequestGroup::gidCounter_ = 0;
- RequestGroup::RequestGroup(const SharedHandle<Option>& option)
- : gid_(newGID()),
- option_(option),
- numConcurrentCommand_(option->getAsInt(PREF_SPLIT)),
- numStreamConnection_(0),
- numStreamCommand_(0),
- numCommand_(0),
- saveControlFile_(true),
- progressInfoFile_(new NullProgressInfoFile()),
- preLocalFileCheckEnabled_(true),
- haltRequested_(false),
- forceHaltRequested_(false),
- haltReason_(RequestGroup::NONE),
- pauseRequested_(false),
- uriSelector_(new InorderURISelector()),
- lastModifiedTime_(Time::null()),
- fileNotFoundCount_(0),
- timeout_(option->getAsInt(PREF_TIMEOUT)),
- #ifdef ENABLE_BITTORRENT
- btRuntime_(0),
- peerStorage_(0),
- #endif // ENABLE_BITTORRENT
- inMemoryDownload_(false),
- maxDownloadSpeedLimit_(option->getAsInt(PREF_MAX_DOWNLOAD_LIMIT)),
- maxUploadSpeedLimit_(option->getAsInt(PREF_MAX_UPLOAD_LIMIT)),
- lastErrorCode_(error_code::UNDEFINED),
- belongsToGID_(0),
- requestGroupMan_(0),
- resumeFailureCount_(0)
- {
- fileAllocationEnabled_ = option_->get(PREF_FILE_ALLOCATION) != V_NONE;
- // Add types to be sent as a Accept header value here.
- // It would be good to put this value in Option so that user can tweak
- // and add this list.
- // The mime types of Metalink is used for `transparent metalink'.
- addAcceptType(DownloadHandlerConstants::getMetalinkContentTypes().begin(),
- DownloadHandlerConstants::getMetalinkContentTypes().end());
- if(!option_->getAsBool(PREF_DRY_RUN)) {
- initializePreDownloadHandler();
- initializePostDownloadHandler();
- }
- }
- RequestGroup::~RequestGroup() {}
- bool RequestGroup::isCheckIntegrityReady()
- {
- return option_->getAsBool(PREF_CHECK_INTEGRITY) &&
- ((downloadContext_->isChecksumVerificationAvailable() &&
- downloadFinishedByFileLength()) ||
- downloadContext_->isPieceHashVerificationAvailable());
- }
- bool RequestGroup::downloadFinished() const
- {
- if(!pieceStorage_) {
- return false;
- } else {
- return pieceStorage_->downloadFinished();
- }
- }
- bool RequestGroup::allDownloadFinished() const
- {
- if(!pieceStorage_) {
- return false;
- } else {
- return pieceStorage_->allDownloadFinished();
- }
- }
- error_code::Value RequestGroup::downloadResult() const
- {
- if(downloadFinished() && !downloadContext_->isChecksumVerificationNeeded())
- return error_code::FINISHED;
- else {
- if(haltReason_ == RequestGroup::USER_REQUEST) {
- return error_code::REMOVED;
- } else if(lastErrorCode_ == error_code::UNDEFINED) {
- if(haltReason_ == RequestGroup::SHUTDOWN_SIGNAL) {
- return error_code::IN_PROGRESS;
- } else {
- return error_code::UNKNOWN_ERROR;
- }
- } else {
- return lastErrorCode_;
- }
- }
- }
- void RequestGroup::closeFile()
- {
- if(pieceStorage_) {
- pieceStorage_->getDiskAdaptor()->closeFile();
- }
- }
- // TODO The function name is not intuitive at all.. it does not convey
- // that this function open file.
- SharedHandle<CheckIntegrityEntry> RequestGroup::createCheckIntegrityEntry()
- {
- BtProgressInfoFileHandle infoFile
- (new DefaultBtProgressInfoFile(downloadContext_, pieceStorage_,
- option_.get()));
- SharedHandle<CheckIntegrityEntry> checkEntry;
- if(option_->getAsBool(PREF_CHECK_INTEGRITY) &&
- downloadContext_->isPieceHashVerificationAvailable()) {
- // When checking piece hash, we don't care file is downloaded and
- // infoFile exists.
- loadAndOpenFile(infoFile);
- checkEntry.reset(new StreamCheckIntegrityEntry(this));
- } else if(infoFile->exists()) {
- loadAndOpenFile(infoFile);
- if(downloadFinished()) {
- #ifdef ENABLE_MESSAGE_DIGEST
- if(downloadContext_->isChecksumVerificationNeeded()) {
- A2_LOG_INFO(MSG_HASH_CHECK_NOT_DONE);
- ChecksumCheckIntegrityEntry* tempEntry =
- new ChecksumCheckIntegrityEntry(this);
- tempEntry->setRedownload(true);
- checkEntry.reset(tempEntry);
- } else
- #endif // ENABLE_MESSAGE_DIGEST
- {
- downloadContext_->setChecksumVerified(true);
- A2_LOG_NOTICE(fmt(MSG_DOWNLOAD_ALREADY_COMPLETED,
- gid_, downloadContext_->getBasePath().c_str()));
- }
- } else {
- checkEntry.reset(new StreamCheckIntegrityEntry(this));
- }
- } else
- #ifdef ENABLE_MESSAGE_DIGEST
- if(downloadFinishedByFileLength() &&
- downloadContext_->isChecksumVerificationAvailable()) {
- pieceStorage_->markAllPiecesDone();
- loadAndOpenFile(infoFile);
- ChecksumCheckIntegrityEntry* tempEntry =
- new ChecksumCheckIntegrityEntry(this);
- tempEntry->setRedownload(true);
- checkEntry.reset(tempEntry);
- } else
- #endif // ENABLE_MESSAGE_DIGEST
- {
- loadAndOpenFile(infoFile);
- checkEntry.reset(new StreamCheckIntegrityEntry(this));
- }
- return checkEntry;
- }
- void RequestGroup::createInitialCommand
- (std::vector<Command*>& commands, DownloadEngine* e)
- {
- // Start session timer here. When file size becomes known, it will
- // be reset again in *FileAllocationEntry, because hash check and
- // file allocation takes a time. For downloads in which file size
- // is unknown, session timer will not be reset.
- downloadContext_->resetDownloadStartTime();
- #ifdef ENABLE_BITTORRENT
- {
- if(downloadContext_->hasAttribute(bittorrent::BITTORRENT)) {
- SharedHandle<TorrentAttribute> torrentAttrs =
- bittorrent::getTorrentAttrs(downloadContext_);
- bool metadataGetMode = torrentAttrs->metadata.empty();
- if(option_->getAsBool(PREF_DRY_RUN)) {
- throw DOWNLOAD_FAILURE_EXCEPTION
- ("Cancel BitTorrent download in dry-run context.");
- }
- SharedHandle<BtRegistry> btRegistry = e->getBtRegistry();
- if(btRegistry->getDownloadContext(torrentAttrs->infoHash)) {
- // TODO If metadataGetMode == false and each FileEntry has
- // URI, then go without BT.
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt("InfoHash %s is already registered.",
- bittorrent::getInfoHashString(downloadContext_).c_str()),
- error_code::DUPLICATE_INFO_HASH);
- }
- if(metadataGetMode) {
- // Use UnknownLengthPieceStorage.
- initPieceStorage();
- } else {
- if(e->getRequestGroupMan()->isSameFileBeingDownloaded(this)) {
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt(EX_DUPLICATE_FILE_DOWNLOAD,
- downloadContext_->getBasePath().c_str()),
- error_code::DUPLICATE_DOWNLOAD);
- }
- initPieceStorage();
- if(downloadContext_->getFileEntries().size() > 1) {
- pieceStorage_->setupFileFilter();
- }
- }
-
- SharedHandle<DefaultBtProgressInfoFile> progressInfoFile;
- if(!metadataGetMode) {
- progressInfoFile.reset(new DefaultBtProgressInfoFile(downloadContext_,
- pieceStorage_,
- option_.get()));
- }
-
- BtRuntimeHandle btRuntime(new BtRuntime());
- btRuntime->setMaxPeers(option_->getAsInt(PREF_BT_MAX_PEERS));
- btRuntime_ = btRuntime.get();
- if(progressInfoFile) {
- progressInfoFile->setBtRuntime(btRuntime);
- }
- SharedHandle<DefaultPeerStorage> peerStorage(new DefaultPeerStorage());
- peerStorage->setBtRuntime(btRuntime);
- peerStorage->setPieceStorage(pieceStorage_);
- peerStorage_ = peerStorage.get();
- if(progressInfoFile) {
- progressInfoFile->setPeerStorage(peerStorage);
- }
- SharedHandle<DefaultBtAnnounce> btAnnounce
- (new DefaultBtAnnounce(downloadContext_, option_.get()));
- btAnnounce->setBtRuntime(btRuntime);
- btAnnounce->setPieceStorage(pieceStorage_);
- btAnnounce->setPeerStorage(peerStorage);
- btAnnounce->setUserDefinedInterval
- (option_->getAsInt(PREF_BT_TRACKER_INTERVAL));
- btAnnounce->shuffleAnnounce();
-
- assert(!btRegistry->get(gid_));
- btRegistry->put
- (gid_, SharedHandle<BtObject>
- (new BtObject
- (downloadContext_,
- pieceStorage_,
- peerStorage,
- btAnnounce,
- btRuntime,
- (progressInfoFile ?
- SharedHandle<BtProgressInfoFile>(progressInfoFile) :
- progressInfoFile_))));
- if(metadataGetMode) {
- if(option_->getAsBool(PREF_ENABLE_DHT) ||
- (!e->getOption()->getAsBool(PREF_DISABLE_IPV6) &&
- option_->getAsBool(PREF_ENABLE_DHT6))) {
- if(option_->getAsBool(PREF_ENABLE_DHT)) {
- std::vector<Command*> dhtCommands;
- DHTSetup().setup(dhtCommands, e, AF_INET);
- e->addCommand(dhtCommands);
- }
- if(!e->getOption()->getAsBool(PREF_DISABLE_IPV6) &&
- option_->getAsBool(PREF_ENABLE_DHT6)) {
- std::vector<Command*> dhtCommands;
- DHTSetup().setup(dhtCommands, e, AF_INET6);
- e->addCommand(dhtCommands);
- }
- } else {
- A2_LOG_NOTICE(_("For BitTorrent Magnet URI, enabling DHT is strongly"
- " recommended. See --enable-dht option."));
- }
- SharedHandle<CheckIntegrityEntry> entry
- (new BtCheckIntegrityEntry(this));
- entry->onDownloadIncomplete(commands, e);
-
- return;
- }
- removeDefunctControlFile(progressInfoFile);
- {
- int64_t actualFileSize = pieceStorage_->getDiskAdaptor()->size();
- if(actualFileSize == downloadContext_->getTotalLength()) {
- // First, make DiskAdaptor read-only mode to allow the
- // program to seed file in read-only media.
- pieceStorage_->getDiskAdaptor()->enableReadOnly();
- } else {
- // Open file in writable mode to allow the program
- // truncate the file to downloadContext_->getTotalLength()
- A2_LOG_DEBUG
- (fmt("File size not match. File is opened in writable"
- " mode. Expected:%" PRId64 " Actual:%" PRId64 "",
- static_cast<int64_t>(downloadContext_->getTotalLength()),
- static_cast<int64_t>(actualFileSize)));
- }
- }
- // Call Load, Save and file allocation command here
- if(progressInfoFile->exists()) {
- // load .aria2 file if it exists.
- progressInfoFile->load();
- pieceStorage_->getDiskAdaptor()->openFile();
- } else {
- if(pieceStorage_->getDiskAdaptor()->fileExists()) {
- if(!option_->getAsBool(PREF_CHECK_INTEGRITY) &&
- !option_->getAsBool(PREF_ALLOW_OVERWRITE) &&
- !option_->getAsBool(PREF_BT_SEED_UNVERIFIED)) {
- // TODO we need this->haltRequested = true?
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt(MSG_FILE_ALREADY_EXISTS,
- downloadContext_->getBasePath().c_str()),
- error_code::FILE_ALREADY_EXISTS);
- } else {
- pieceStorage_->getDiskAdaptor()->openFile();
- }
- if(option_->getAsBool(PREF_BT_SEED_UNVERIFIED)) {
- pieceStorage_->markAllPiecesDone();
- }
- } else {
- pieceStorage_->getDiskAdaptor()->openFile();
- }
- }
- progressInfoFile_ = progressInfoFile;
- if(!torrentAttrs->privateTorrent &&
- (option_->getAsBool(PREF_ENABLE_DHT) ||
- (!e->getOption()->getAsBool(PREF_DISABLE_IPV6) &&
- option_->getAsBool(PREF_ENABLE_DHT6)))) {
- if(option_->getAsBool(PREF_ENABLE_DHT)) {
- std::vector<Command*> dhtCommands;
- DHTSetup().setup(dhtCommands, e, AF_INET);
- e->addCommand(dhtCommands);
- }
- if(!e->getOption()->getAsBool(PREF_DISABLE_IPV6) &&
- option_->getAsBool(PREF_ENABLE_DHT6)) {
- std::vector<Command*> dhtCommands;
- DHTSetup().setup(dhtCommands, e, AF_INET6);
- e->addCommand(dhtCommands);
- }
- const std::vector<std::pair<std::string, uint16_t> >& nodes =
- torrentAttrs->nodes;
- // TODO Are nodes in torrent IPv4 only?
- if(!nodes.empty() && DHTRegistry::isInitialized()) {
- DHTEntryPointNameResolveCommand* command =
- new DHTEntryPointNameResolveCommand(e->newCUID(), e, nodes);
- command->setTaskQueue(DHTRegistry::getData().taskQueue);
- command->setTaskFactory(DHTRegistry::getData().taskFactory);
- command->setRoutingTable(DHTRegistry::getData().routingTable);
- command->setLocalNode(DHTRegistry::getData().localNode);
- e->addCommand(command);
- }
- }
- SharedHandle<CheckIntegrityEntry> entry(new BtCheckIntegrityEntry(this));
- // --bt-seed-unverified=true is given and download has completed, skip
- // validation for piece hashes.
- if(option_->getAsBool(PREF_BT_SEED_UNVERIFIED) &&
- pieceStorage_->downloadFinished()) {
- entry->onDownloadFinished(commands, e);
- } else {
- processCheckIntegrityEntry(commands, entry, e);
- }
- return;
- }
- }
- #endif // ENABLE_BITTORRENT
- if(downloadContext_->getFileEntries().size() == 1) {
- // TODO I assume here when totallength is set to DownloadContext and it is
- // not 0, then filepath is also set DownloadContext correctly....
- if(option_->getAsBool(PREF_DRY_RUN) ||
- downloadContext_->getTotalLength() == 0) {
- createNextCommand(commands, e, 1);
- } else {
- if(e->getRequestGroupMan()->isSameFileBeingDownloaded(this)) {
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt(EX_DUPLICATE_FILE_DOWNLOAD,
- downloadContext_->getBasePath().c_str()),
- error_code::DUPLICATE_DOWNLOAD);
- }
- SharedHandle<BtProgressInfoFile> progressInfoFile
- (new DefaultBtProgressInfoFile
- (downloadContext_, SharedHandle<PieceStorage>(), option_.get()));
- adjustFilename(progressInfoFile);
- initPieceStorage();
- SharedHandle<CheckIntegrityEntry> checkEntry =
- createCheckIntegrityEntry();
- if(checkEntry) {
- processCheckIntegrityEntry(commands, checkEntry, e);
- }
- }
- } else {
- // TODO --dry-run is not supported for multifile download for now.
- if(option_->getAsBool(PREF_DRY_RUN)) {
- throw DOWNLOAD_FAILURE_EXCEPTION
- ("--dry-run in multi-file download is not supported yet.");
- }
- // TODO file size is known in this context?
- // In this context, multiple FileEntry objects are in
- // DownloadContext.
- if(e->getRequestGroupMan()->isSameFileBeingDownloaded(this)) {
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt(EX_DUPLICATE_FILE_DOWNLOAD,
- downloadContext_->getBasePath().c_str()),
- error_code::DUPLICATE_DOWNLOAD);
- }
- initPieceStorage();
- if(downloadContext_->getFileEntries().size() > 1) {
- pieceStorage_->setupFileFilter();
- }
- SharedHandle<DefaultBtProgressInfoFile> progressInfoFile
- (new DefaultBtProgressInfoFile(downloadContext_,
- pieceStorage_,
- option_.get()));
- removeDefunctControlFile(progressInfoFile);
- // Call Load, Save and file allocation command here
- if(progressInfoFile->exists()) {
- // load .aria2 file if it exists.
- progressInfoFile->load();
- pieceStorage_->getDiskAdaptor()->openFile();
- } else {
- if(pieceStorage_->getDiskAdaptor()->fileExists()) {
- if(!isCheckIntegrityReady() &&
- !option_->getAsBool(PREF_ALLOW_OVERWRITE)) {
- // TODO we need this->haltRequested = true?
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt(MSG_FILE_ALREADY_EXISTS,
- downloadContext_->getBasePath().c_str()),
- error_code::FILE_ALREADY_EXISTS);
- } else {
- pieceStorage_->getDiskAdaptor()->openFile();
- }
- } else {
- pieceStorage_->getDiskAdaptor()->openFile();
- }
- }
- progressInfoFile_ = progressInfoFile;
- SharedHandle<CheckIntegrityEntry> checkIntegrityEntry
- (new StreamCheckIntegrityEntry(this));
- processCheckIntegrityEntry(commands, checkIntegrityEntry, e);
- }
- }
- void RequestGroup::processCheckIntegrityEntry
- (std::vector<Command*>& commands,
- const SharedHandle<CheckIntegrityEntry>& entry,
- DownloadEngine* e)
- {
- int64_t actualFileSize = pieceStorage_->getDiskAdaptor()->size();
- if(actualFileSize > downloadContext_->getTotalLength()) {
- entry->cutTrailingGarbage();
- }
- #ifdef ENABLE_MESSAGE_DIGEST
- if((option_->getAsBool(PREF_CHECK_INTEGRITY) ||
- downloadContext_->isChecksumVerificationNeeded()) &&
- entry->isValidationReady()) {
- entry->initValidator();
- // Don't save control file(.aria2 file) when user presses
- // control-c key while aria2 is checking hashes. If control file
- // doesn't exist when aria2 launched, the completed length in
- // saved control file will be 0 byte and this confuses user.
- // enableSaveControlFile() will be called after hash checking is
- // done. See CheckIntegrityCommand.
- disableSaveControlFile();
- e->getCheckIntegrityMan()->pushEntry(entry);
- } else
- #endif // ENABLE_MESSAGE_DIGEST
- {
- entry->onDownloadIncomplete(commands, e);
- }
- }
- void RequestGroup::initPieceStorage()
- {
- SharedHandle<PieceStorage> tempPieceStorage;
- if(downloadContext_->knowsTotalLength() &&
- // Following conditions are needed for chunked encoding with
- // content-length = 0. Google's dl server used this before.
- (downloadContext_->getTotalLength() > 0
- #ifdef ENABLE_BITTORRENT
- || downloadContext_->hasAttribute(bittorrent::BITTORRENT)
- #endif // ENABLE_BITTORRENT
- )) {
- #ifdef ENABLE_BITTORRENT
- DefaultPieceStorage* ps =
- new DefaultPieceStorage(downloadContext_, option_.get());
- SharedHandle<PieceStorage> psHolder(ps);
- if(downloadContext_->hasAttribute(bittorrent::BITTORRENT)) {
- if(isUriSuppliedForRequsetFileEntry
- (downloadContext_->getFileEntries().begin(),
- downloadContext_->getFileEntries().end())) {
- // Use LongestSequencePieceSelector when HTTP/FTP/BitTorrent
- // integrated downloads. Currently multi-file integrated
- // download is not supported.
- A2_LOG_DEBUG("Using LongestSequencePieceSelector");
- SharedHandle<PieceSelector> longestPieceSelector
- (new LongestSequencePieceSelector());
- ps->setPieceSelector(longestPieceSelector);
- }
- if(option_->defined(PREF_BT_PRIORITIZE_PIECE)) {
- std::vector<size_t> result;
- util::parsePrioritizePieceRange
- (result, option_->get(PREF_BT_PRIORITIZE_PIECE),
- downloadContext_->getFileEntries(),
- downloadContext_->getPieceLength());
- if(!result.empty()) {
- std::random_shuffle(result.begin(), result.end(),
- *(SimpleRandomizer::getInstance().get()));
- SharedHandle<PriorityPieceSelector> priSelector
- (new PriorityPieceSelector(ps->getPieceSelector()));
- priSelector->setPriorityPiece(result.begin(), result.end());
- ps->setPieceSelector(priSelector);
- }
- }
- }
- #else // !ENABLE_BITTORRENT
- DefaultPieceStorage* ps =
- new DefaultPieceStorage(downloadContext_, option_.get());
- SharedHandle<PieceStorage> psHolder(ps);
- #endif // !ENABLE_BITTORRENT
- if(diskWriterFactory_) {
- ps->setDiskWriterFactory(diskWriterFactory_);
- }
- tempPieceStorage.swap(psHolder);
- } else {
- UnknownLengthPieceStorage* ps =
- new UnknownLengthPieceStorage(downloadContext_, option_.get());
- SharedHandle<PieceStorage> psHolder(ps);
- if(diskWriterFactory_) {
- ps->setDiskWriterFactory(diskWriterFactory_);
- }
- tempPieceStorage.swap(psHolder);
- }
- tempPieceStorage->initStorage();
- SharedHandle<SegmentMan> tempSegmentMan
- (new SegmentMan(option_.get(), downloadContext_, tempPieceStorage));
- pieceStorage_.swap(tempPieceStorage);
- segmentMan_.swap(tempSegmentMan);
- }
- void RequestGroup::dropPieceStorage()
- {
- segmentMan_.reset();
- pieceStorage_.reset();
- }
- bool RequestGroup::downloadFinishedByFileLength()
- {
- // assuming that a control file doesn't exist.
- if(!isPreLocalFileCheckEnabled() ||
- option_->getAsBool(PREF_ALLOW_OVERWRITE)) {
- return false;
- }
- if(!downloadContext_->knowsTotalLength()) {
- return false;
- }
- File outfile(getFirstFilePath());
- if(outfile.exists() && downloadContext_->getTotalLength() == outfile.size()) {
- return true;
- } else {
- return false;
- }
- }
- void RequestGroup::adjustFilename
- (const SharedHandle<BtProgressInfoFile>& infoFile)
- {
- if(!isPreLocalFileCheckEnabled()) {
- // OK, no need to care about filename.
- return;
- }
- if(!option_->getAsBool(PREF_DRY_RUN) &&
- option_->getAsBool(PREF_REMOVE_CONTROL_FILE) &&
- infoFile->exists()) {
- infoFile->removeFile();
- A2_LOG_NOTICE(fmt(_("Removed control file for %s because it is requested by"
- " user."),
- infoFile->getFilename().c_str()));
- }
- if(infoFile->exists()) {
- // Use current filename
- } else {
- File outfile(getFirstFilePath());
- if(outfile.exists() && option_->getAsBool(PREF_CONTINUE) &&
- outfile.size() <= downloadContext_->getTotalLength()) {
- // File exists but user decided to resume it.
- } else {
- #ifdef ENABLE_MESSAGE_DIGEST
- if(outfile.exists() && isCheckIntegrityReady()) {
- // check-integrity existing file
- } else {
- #endif // ENABLE_MESSAGE_DIGEST
- shouldCancelDownloadForSafety();
- #ifdef ENABLE_MESSAGE_DIGEST
- }
- #endif // ENABLE_MESSAGE_DIGEST
- }
- }
- }
- void RequestGroup::removeDefunctControlFile
- (const SharedHandle<BtProgressInfoFile>& progressInfoFile)
- {
- // Remove the control file if download file doesn't exist
- if(progressInfoFile->exists() &&
- !pieceStorage_->getDiskAdaptor()->fileExists()) {
- progressInfoFile->removeFile();
- A2_LOG_NOTICE(fmt(MSG_REMOVED_DEFUNCT_CONTROL_FILE,
- progressInfoFile->getFilename().c_str(),
- downloadContext_->getBasePath().c_str()));
- }
- }
- void RequestGroup::loadAndOpenFile(const BtProgressInfoFileHandle& progressInfoFile)
- {
- try {
- if(!isPreLocalFileCheckEnabled()) {
- pieceStorage_->getDiskAdaptor()->initAndOpenFile();
- return;
- }
- removeDefunctControlFile(progressInfoFile);
- if(progressInfoFile->exists()) {
- progressInfoFile->load();
- pieceStorage_->getDiskAdaptor()->openExistingFile();
- } else {
- File outfile(getFirstFilePath());
- if(outfile.exists() && option_->getAsBool(PREF_CONTINUE) &&
- outfile.size() <= getTotalLength()) {
- pieceStorage_->getDiskAdaptor()->openExistingFile();
- pieceStorage_->markPiecesDone(outfile.size());
- } else {
- #ifdef ENABLE_MESSAGE_DIGEST
- if(outfile.exists() && isCheckIntegrityReady()) {
- pieceStorage_->getDiskAdaptor()->openExistingFile();
- } else {
- #endif // ENABLE_MESSAGE_DIGEST
- pieceStorage_->getDiskAdaptor()->initAndOpenFile();
- #ifdef ENABLE_MESSAGE_DIGEST
- }
- #endif // ENABLE_MESSAGE_DIGEST
- }
- }
- setProgressInfoFile(progressInfoFile);
- } catch(RecoverableException& e) {
- throw DOWNLOAD_FAILURE_EXCEPTION2(fmt(EX_DOWNLOAD_ABORTED), e);
- }
- }
- // assuming that a control file does not exist
- void RequestGroup::shouldCancelDownloadForSafety()
- {
- if(option_->getAsBool(PREF_ALLOW_OVERWRITE)) {
- return;
- }
- File outfile(getFirstFilePath());
- if(outfile.exists()) {
- if(option_->getAsBool(PREF_AUTO_FILE_RENAMING)) {
- if(tryAutoFileRenaming()) {
- A2_LOG_NOTICE(fmt(MSG_FILE_RENAMED, getFirstFilePath().c_str()));
- } else {
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt("File renaming failed: %s", getFirstFilePath().c_str()),
- error_code::FILE_RENAMING_FAILED);
- }
- } else {
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt(MSG_FILE_ALREADY_EXISTS, getFirstFilePath().c_str()),
- error_code::FILE_ALREADY_EXISTS);
- }
- }
- }
- bool RequestGroup::tryAutoFileRenaming()
- {
- std::string filepath = getFirstFilePath();
- if(filepath.empty()) {
- return false;
- }
- for(int i = 1; i < 10000; ++i) {
- std::string newfilename = fmt("%s.%d", filepath.c_str(), i);
- File newfile(newfilename);
- File ctrlfile(newfile.getPath()+DefaultBtProgressInfoFile::getSuffix());
- if(!newfile.exists() || (newfile.exists() && ctrlfile.exists())) {
- downloadContext_->getFirstFileEntry()->setPath(newfile.getPath());
- return true;
- }
- }
- return false;
- }
- void RequestGroup::createNextCommandWithAdj(std::vector<Command*>& commands,
- DownloadEngine* e, int numAdj)
- {
- int numCommand;
- if(getTotalLength() == 0) {
- numCommand = 1+numAdj;
- } else {
- numCommand = std::min(downloadContext_->getNumPieces(),
- static_cast<size_t>(numConcurrentCommand_));
- numCommand += numAdj;
- }
- if(numCommand > 0) {
- createNextCommand(commands, e, numCommand);
- }
- }
- void RequestGroup::createNextCommand(std::vector<Command*>& commands,
- DownloadEngine* e)
- {
- int numCommand;
- if(getTotalLength() == 0) {
- if(numStreamCommand_ > 0) {
- numCommand = 0;
- } else {
- numCommand = 1;
- }
- } else {
- if(numStreamCommand_ >= numConcurrentCommand_) {
- numCommand = 0;
- } else {
- numCommand =
- std::min(downloadContext_->getNumPieces(),
- static_cast<size_t>(numConcurrentCommand_-numStreamCommand_));
- }
- }
- if(numCommand > 0) {
- createNextCommand(commands, e, numCommand);
- }
- }
- void RequestGroup::createNextCommand(std::vector<Command*>& commands,
- DownloadEngine* e,
- int numCommand)
- {
- for(; numCommand > 0; --numCommand) {
- Command* command = new CreateRequestCommand(e->newCUID(), this, e);
- commands.push_back(command);
- }
- if(!commands.empty()) {
- e->setNoWait(true);
- }
- }
- std::string RequestGroup::getFirstFilePath() const
- {
- assert(downloadContext_);
- if(inMemoryDownload()) {
- static const std::string DIR_MEMORY("[MEMORY]");
- return DIR_MEMORY+File(downloadContext_->getFirstFileEntry()->getPath()).getBasename();
- } else {
- return downloadContext_->getFirstFileEntry()->getPath();
- }
- }
- int64_t RequestGroup::getTotalLength() const
- {
- if(!pieceStorage_) {
- return 0;
- } else {
- if(pieceStorage_->isSelectiveDownloadingMode()) {
- return pieceStorage_->getFilteredTotalLength();
- } else {
- return pieceStorage_->getTotalLength();
- }
- }
- }
- int64_t RequestGroup::getCompletedLength() const
- {
- if(!pieceStorage_) {
- return 0;
- } else {
- if(pieceStorage_->isSelectiveDownloadingMode()) {
- return pieceStorage_->getFilteredCompletedLength();
- } else {
- return pieceStorage_->getCompletedLength();
- }
- }
- }
- void RequestGroup::validateFilename(const std::string& expectedFilename,
- const std::string& actualFilename) const
- {
- if(expectedFilename.empty()) {
- return;
- }
- if(expectedFilename != actualFilename) {
- throw DL_ABORT_EX(fmt(EX_FILENAME_MISMATCH,
- expectedFilename.c_str(),
- actualFilename.c_str()));
- }
- }
- void RequestGroup::validateTotalLength(int64_t expectedTotalLength,
- int64_t actualTotalLength) const
- {
- if(expectedTotalLength <= 0) {
- return;
- }
- if(expectedTotalLength != actualTotalLength) {
- throw DL_ABORT_EX
- (fmt(EX_SIZE_MISMATCH,
- static_cast<int64_t>(expectedTotalLength),
- static_cast<int64_t>(actualTotalLength)));
- }
- }
- void RequestGroup::validateFilename(const std::string& actualFilename) const
- {
- validateFilename(downloadContext_->getFileEntries().front()->getBasename(), actualFilename);
- }
- void RequestGroup::validateTotalLength(int64_t actualTotalLength) const
- {
- validateTotalLength(getTotalLength(), actualTotalLength);
- }
- void RequestGroup::increaseStreamCommand()
- {
- ++numStreamCommand_;
- }
- void RequestGroup::decreaseStreamCommand()
- {
- --numStreamCommand_;
- }
- void RequestGroup::increaseStreamConnection()
- {
- ++numStreamConnection_;
- }
- void RequestGroup::decreaseStreamConnection()
- {
- --numStreamConnection_;
- }
- int RequestGroup::getNumConnection() const
- {
- int numConnection = numStreamConnection_;
- #ifdef ENABLE_BITTORRENT
- if(btRuntime_) {
- numConnection += btRuntime_->getConnections();
- }
- #endif // ENABLE_BITTORRENT
- return numConnection;
- }
- void RequestGroup::increaseNumCommand()
- {
- ++numCommand_;
- }
- void RequestGroup::decreaseNumCommand()
- {
- --numCommand_;
- if(!numCommand_ && requestGroupMan_) {
- A2_LOG_DEBUG(fmt("GID#%" PRId64 " - Request queue check", gid_));
- requestGroupMan_->requestQueueCheck();
- }
- }
- TransferStat RequestGroup::calculateStat() const
- {
- TransferStat stat;
- #ifdef ENABLE_BITTORRENT
- if(peerStorage_) {
- stat = peerStorage_->calculateStat();
- }
- #endif // ENABLE_BITTORRENT
- if(segmentMan_) {
- stat.setDownloadSpeed
- (stat.getDownloadSpeed()+segmentMan_->calculateDownloadSpeed());
- stat.setSessionDownloadLength
- (stat.getSessionDownloadLength()+
- segmentMan_->calculateSessionDownloadLength());
- }
- return stat;
- }
- void RequestGroup::setHaltRequested(bool f, HaltReason haltReason)
- {
- haltRequested_ = f;
- if(haltRequested_) {
- pauseRequested_ = false;
- haltReason_ = haltReason;
- }
- #ifdef ENABLE_BITTORRENT
- if(btRuntime_) {
- btRuntime_->setHalt(f);
- }
- #endif // ENABLE_BITTORRENT
- }
- void RequestGroup::setForceHaltRequested(bool f, HaltReason haltReason)
- {
- setHaltRequested(f, haltReason);
- forceHaltRequested_ = f;
- }
- void RequestGroup::setPauseRequested(bool f)
- {
- pauseRequested_ = f;
- }
- void RequestGroup::releaseRuntimeResource(DownloadEngine* e)
- {
- #ifdef ENABLE_BITTORRENT
- e->getBtRegistry()->remove(gid_);
- btRuntime_ = 0;
- peerStorage_ = 0;
- #endif // ENABLE_BITTORRENT
- if(pieceStorage_) {
- pieceStorage_->removeAdvertisedPiece(0);
- }
- // Don't reset segmentMan_ and pieceStorage_ here to provide
- // progress information via RPC
- progressInfoFile_.reset();
- downloadContext_->releaseRuntimeResource();
- }
- void RequestGroup::preDownloadProcessing()
- {
- A2_LOG_DEBUG(fmt("Finding PreDownloadHandler for path %s.",
- getFirstFilePath().c_str()));
- try {
- for(std::vector<SharedHandle<PreDownloadHandler> >::const_iterator itr =
- preDownloadHandlers_.begin(), eoi = preDownloadHandlers_.end();
- itr != eoi; ++itr) {
- if((*itr)->canHandle(this)) {
- (*itr)->execute(this);
- return;
- }
- }
- } catch(RecoverableException& ex) {
- A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, ex);
- return;
- }
- A2_LOG_DEBUG("No PreDownloadHandler found.");
- return;
- }
- void RequestGroup::postDownloadProcessing
- (std::vector<SharedHandle<RequestGroup> >& groups)
- {
- A2_LOG_DEBUG(fmt("Finding PostDownloadHandler for path %s.",
- getFirstFilePath().c_str()));
- try {
- for(std::vector<SharedHandle<PostDownloadHandler> >::const_iterator itr =
- postDownloadHandlers_.begin(), eoi = postDownloadHandlers_.end();
- itr != eoi; ++itr) {
- if((*itr)->canHandle(this)) {
- (*itr)->getNextRequestGroups(groups, this);
- return;
- }
- }
- } catch(RecoverableException& ex) {
- A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, ex);
- }
- A2_LOG_DEBUG("No PostDownloadHandler found.");
- }
- void RequestGroup::initializePreDownloadHandler()
- {
- #ifdef ENABLE_BITTORRENT
- if(option_->get(PREF_FOLLOW_TORRENT) == V_MEM) {
- preDownloadHandlers_.push_back(DownloadHandlerFactory::getBtPreDownloadHandler());
- }
- #endif // ENABLE_BITTORRENT
- #ifdef ENABLE_METALINK
- if(option_->get(PREF_FOLLOW_METALINK) == V_MEM) {
- preDownloadHandlers_.push_back(DownloadHandlerFactory::getMetalinkPreDownloadHandler());
- }
- #endif // ENABLE_METALINK
- }
- void RequestGroup::initializePostDownloadHandler()
- {
- #ifdef ENABLE_BITTORRENT
- if(option_->getAsBool(PREF_FOLLOW_TORRENT) ||
- option_->get(PREF_FOLLOW_TORRENT) == V_MEM) {
- postDownloadHandlers_.push_back(DownloadHandlerFactory::getBtPostDownloadHandler());
- }
- #endif // ENABLE_BITTORRENT
- #ifdef ENABLE_METALINK
- if(option_->getAsBool(PREF_FOLLOW_METALINK) ||
- option_->get(PREF_FOLLOW_METALINK) == V_MEM) {
- postDownloadHandlers_.push_back(DownloadHandlerFactory::getMetalinkPostDownloadHandler());
- }
- #endif // ENABLE_METALINK
- }
- bool RequestGroup::isDependencyResolved()
- {
- if(!dependency_) {
- return true;
- }
- return dependency_->resolve();
- }
- void RequestGroup::dependsOn(const DependencyHandle& dep)
- {
- dependency_ = dep;
- }
- void RequestGroup::setDiskWriterFactory(const DiskWriterFactoryHandle& diskWriterFactory)
- {
- diskWriterFactory_ = diskWriterFactory;
- }
- void RequestGroup::addPostDownloadHandler
- (const SharedHandle<PostDownloadHandler>& handler)
- {
- postDownloadHandlers_.push_back(handler);
- }
- void RequestGroup::addPreDownloadHandler
- (const SharedHandle<PreDownloadHandler>& handler)
- {
- preDownloadHandlers_.push_back(handler);
- }
- void RequestGroup::clearPostDownloadHandler()
- {
- postDownloadHandlers_.clear();
- }
- void RequestGroup::clearPreDownloadHandler()
- {
- preDownloadHandlers_.clear();
- }
- void RequestGroup::setPieceStorage(const PieceStorageHandle& pieceStorage)
- {
- pieceStorage_ = pieceStorage;
- }
- void RequestGroup::setProgressInfoFile(const BtProgressInfoFileHandle& progressInfoFile)
- {
- progressInfoFile_ = progressInfoFile;
- }
- bool RequestGroup::needsFileAllocation() const
- {
- return isFileAllocationEnabled() &&
- option_->getAsLLInt(PREF_NO_FILE_ALLOCATION_LIMIT) <= getTotalLength() &&
- !pieceStorage_->getDiskAdaptor()->fileAllocationIterator()->finished();
- }
- DownloadResultHandle RequestGroup::createDownloadResult() const
- {
- A2_LOG_DEBUG(fmt("GID#%" PRId64 " - Creating DownloadResult.", gid_));
- TransferStat st = calculateStat();
- SharedHandle<DownloadResult> res(new DownloadResult());
- res->gid = gid_;
- res->fileEntries = downloadContext_->getFileEntries();
- res->inMemoryDownload = inMemoryDownload_;
- res->sessionDownloadLength = st.getSessionDownloadLength();
- res->sessionTime = downloadContext_->calculateSessionTime();
- res->result = downloadResult();
- res->followedBy = followedByGIDs_;
- res->belongsTo = belongsToGID_;
- res->option = option_;
- res->metadataInfo = metadataInfo_;
- res->totalLength = getTotalLength();
- res->completedLength = getCompletedLength();
- res->uploadLength = st.getAllTimeUploadLength();
- if(pieceStorage_) {
- if(pieceStorage_->getBitfieldLength() > 0) {
- res->bitfield.assign(pieceStorage_->getBitfield(),
- pieceStorage_->getBitfield()+
- pieceStorage_->getBitfieldLength());
- }
- }
- #ifdef ENABLE_BITTORRENT
- if(downloadContext_->hasAttribute(bittorrent::BITTORRENT)) {
- const unsigned char* p = bittorrent::getInfoHash(downloadContext_);
- res->infoHash.assign(p, p+INFO_HASH_LENGTH);
- }
- #endif // ENABLE_BITTORRENT
- res->pieceLength = downloadContext_->getPieceLength();
- res->numPieces = downloadContext_->getNumPieces();
- res->dir = option_->get(PREF_DIR);
- return res;
- }
-
- void RequestGroup::reportDownloadFinished()
- {
- A2_LOG_NOTICE(fmt(MSG_FILE_DOWNLOAD_COMPLETED,
- downloadContext_->getBasePath().c_str()));
- uriSelector_->resetCounters();
- #ifdef ENABLE_BITTORRENT
- if(downloadContext_->hasAttribute(bittorrent::BITTORRENT)) {
- TransferStat stat = calculateStat();
- int64_t completedLength = getCompletedLength();
- double shareRatio = completedLength == 0 ? 0.0 :
- 1.0*stat.getAllTimeUploadLength()/completedLength;
- SharedHandle<TorrentAttribute> attrs =
- bittorrent::getTorrentAttrs(downloadContext_);
- if(!attrs->metadata.empty()) {
- A2_LOG_NOTICE(fmt(MSG_SHARE_RATIO_REPORT,
- shareRatio,
- util::abbrevSize(stat.getAllTimeUploadLength()).c_str(),
- util::abbrevSize(completedLength).c_str()));
- }
- }
- #endif // ENABLE_BITTORRENT
- }
- void RequestGroup::addAcceptType(const std::string& type)
- {
- if(std::find(acceptTypes_.begin(), acceptTypes_.end(), type) == acceptTypes_.end()) {
- acceptTypes_.push_back(type);
- }
- }
- void RequestGroup::removeAcceptType(const std::string& type)
- {
- acceptTypes_.erase(std::remove(acceptTypes_.begin(), acceptTypes_.end(), type),
- acceptTypes_.end());
- }
- void RequestGroup::setURISelector(const SharedHandle<URISelector>& uriSelector)
- {
- uriSelector_ = uriSelector;
- }
- void RequestGroup::applyLastModifiedTimeToLocalFiles()
- {
- if(pieceStorage_ && lastModifiedTime_.good()) {
- A2_LOG_INFO(fmt("Applying Last-Modified time: %s",
- lastModifiedTime_.toHTTPDate().c_str()));
- size_t n =
- pieceStorage_->getDiskAdaptor()->utime(Time(), lastModifiedTime_);
- A2_LOG_INFO(fmt("Last-Modified attrs of %lu files were updated.",
- static_cast<unsigned long>(n)));
- }
- }
- void RequestGroup::updateLastModifiedTime(const Time& time)
- {
- if(time.good() && lastModifiedTime_ < time) {
- lastModifiedTime_ = time;
- }
- }
- void RequestGroup::increaseAndValidateFileNotFoundCount()
- {
- ++fileNotFoundCount_;
- const int maxCount = option_->getAsInt(PREF_MAX_FILE_NOT_FOUND);
- if(maxCount > 0 && fileNotFoundCount_ >= maxCount &&
- (!segmentMan_ ||
- segmentMan_->calculateSessionDownloadLength() == 0)) {
- throw DOWNLOAD_FAILURE_EXCEPTION2
- (fmt("Reached max-file-not-found count=%d", maxCount),
- error_code::MAX_FILE_NOT_FOUND);
- }
- }
- void RequestGroup::markInMemoryDownload()
- {
- inMemoryDownload_ = true;
- }
- void RequestGroup::setTimeout(time_t timeout)
- {
- timeout_ = timeout;
- }
- bool RequestGroup::doesDownloadSpeedExceed()
- {
- return maxDownloadSpeedLimit_ > 0 &&
- maxDownloadSpeedLimit_ < calculateStat().getDownloadSpeed();
- }
- bool RequestGroup::doesUploadSpeedExceed()
- {
- return maxUploadSpeedLimit_ > 0 &&
- maxUploadSpeedLimit_ < calculateStat().getUploadSpeed();
- }
- void RequestGroup::saveControlFile() const
- {
- if(saveControlFile_) {
- progressInfoFile_->save();
- }
- }
- void RequestGroup::removeControlFile() const
- {
- progressInfoFile_->removeFile();
- }
- void RequestGroup::setDownloadContext
- (const SharedHandle<DownloadContext>& downloadContext)
- {
- downloadContext_ = downloadContext;
- if(downloadContext_) {
- downloadContext_->setOwnerRequestGroup(this);
- }
- }
- bool RequestGroup::p2pInvolved() const
- {
- #ifdef ENABLE_BITTORRENT
- return downloadContext_->hasAttribute(bittorrent::BITTORRENT);
- #else // !ENABLE_BITTORRENT
- return false;
- #endif // !ENABLE_BITTORRENT
- }
- a2_gid_t RequestGroup::newGID()
- {
- if(gidCounter_ == INT64_MAX) {
- gidCounter_ = 0;
- }
- return ++gidCounter_;
- }
- } // namespace aria2
|