/
githubmirror
/
aria2
Обзор
Документация
Войти
/
githubmirror
/
aria2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/UnknownLengthPieceStorage.h
292 строки
9 KB
Ali MJ Al-Nasrawy
flush internal buffers before auto-saving control file
17 июн 2020, 11:05
17 июн 2020, 11:05
870e2a6
Код
Авторство
О чём код?
/* <!-- 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 --> */ #ifndef D_UNKNOWN_LENGTH_PIECE_STORAGE_H #define D_UNKNOWN_LENGTH_PIECE_STORAGE_H #include "FatalException.h" #include "PieceStorage.h" namespace aria2 { class Option; class DownloadContext; class DiskWriterFactory; class DirectDiskAdaptor; class BitfieldMan; class UnknownLengthPieceStorage : public PieceStorage { private: std::shared_ptr<DownloadContext> downloadContext_; std::shared_ptr<DirectDiskAdaptor> diskAdaptor_; std::shared_ptr<DiskWriterFactory> diskWriterFactory_; int64_t totalLength_; std::unique_ptr<BitfieldMan> bitfield_; bool downloadFinished_; std::shared_ptr<Piece> piece_; void createBitfield(); public: UnknownLengthPieceStorage( const std::shared_ptr<DownloadContext>& downloadContext); virtual ~UnknownLengthPieceStorage(); #ifdef ENABLE_BITTORRENT /** * Returns true if the peer has a piece that localhost doesn't have. * Otherwise returns false. */ virtual bool hasMissingPiece(const std::shared_ptr<Peer>& peer) CXX11_OVERRIDE; virtual void getMissingPiece(std::vector<std::shared_ptr<Piece>>& pieces, size_t minMissingBlocks, const std::shared_ptr<Peer>& peer, cuid_t cuid) CXX11_OVERRIDE; virtual void getMissingPiece(std::vector<std::shared_ptr<Piece>>& pieces, size_t minMissingBlocks, const std::shared_ptr<Peer>& peer, const std::vector<size_t>& excludedIndexes, cuid_t cuid) CXX11_OVERRIDE; virtual void getMissingFastPiece(std::vector<std::shared_ptr<Piece>>& pieces, size_t minMissingBlocks, const std::shared_ptr<Peer>& peer, cuid_t cuid) CXX11_OVERRIDE; virtual void getMissingFastPiece(std::vector<std::shared_ptr<Piece>>& pieces, size_t minMissingBlocks, const std::shared_ptr<Peer>& peer, const std::vector<size_t>& excludedIndexes, cuid_t cuid) CXX11_OVERRIDE; virtual std::shared_ptr<Piece> getMissingPiece(const std::shared_ptr<Peer>& peer, cuid_t cuid) CXX11_OVERRIDE; virtual std::shared_ptr<Piece> getMissingPiece(const std::shared_ptr<Peer>& peer, const std::vector<size_t>& excludedIndexes, cuid_t cuid) CXX11_OVERRIDE; #endif // ENABLE_BITTORRENT virtual bool hasMissingUnusedPiece() CXX11_OVERRIDE; /** * Returns a missing piece if available. Otherwise returns 0; */ virtual std::shared_ptr<Piece> getMissingPiece(size_t minSplitSize, const unsigned char* ignoreBitfield, size_t length, cuid_t cuid) CXX11_OVERRIDE; /** * Returns a missing piece whose index is index. * If a piece whose index is index is already acquired or currently used, * then returns 0. * Also returns 0 if any of missing piece is not available. */ virtual std::shared_ptr<Piece> getMissingPiece(size_t index, cuid_t cuid) CXX11_OVERRIDE; /** * Returns the piece denoted by index. * No status of the piece is changed in this method. */ virtual std::shared_ptr<Piece> getPiece(size_t index) CXX11_OVERRIDE; /** * Tells that the download of the specified piece completes. */ virtual void completePiece(const std::shared_ptr<Piece>& piece) CXX11_OVERRIDE; /** * Tells that the download of the specified piece is canceled. */ virtual void cancelPiece(const std::shared_ptr<Piece>& piece, cuid_t cuid) CXX11_OVERRIDE; /** * Returns true if the specified piece is already downloaded. * Otherwise returns false. */ virtual bool hasPiece(size_t index) CXX11_OVERRIDE; virtual bool isPieceUsed(size_t index) CXX11_OVERRIDE; virtual int64_t getTotalLength() CXX11_OVERRIDE { return totalLength_; } virtual int64_t getFilteredTotalLength() CXX11_OVERRIDE { return totalLength_; } virtual int64_t getCompletedLength() CXX11_OVERRIDE; virtual int64_t getFilteredCompletedLength() CXX11_OVERRIDE { return getCompletedLength(); } virtual void setupFileFilter() CXX11_OVERRIDE {} virtual void clearFileFilter() CXX11_OVERRIDE {} /** * Returns true if download has completed. * If file filter is enabled, then returns true if those files have * downloaded. */ virtual bool downloadFinished() CXX11_OVERRIDE { return downloadFinished_; } /** * Returns true if all files have downloaded. * The file filter is ignored. */ virtual bool allDownloadFinished() CXX11_OVERRIDE { return downloadFinished(); } /** * Initializes DiskAdaptor. * TODO add better documentation here. */ virtual void initStorage() CXX11_OVERRIDE; virtual const unsigned char* getBitfield() CXX11_OVERRIDE; virtual void setBitfield(const unsigned char* bitfield, size_t bitfieldLength) CXX11_OVERRIDE { } virtual size_t getBitfieldLength() CXX11_OVERRIDE; virtual bool isSelectiveDownloadingMode() CXX11_OVERRIDE { return false; } virtual bool isEndGame() CXX11_OVERRIDE { return false; } virtual void enterEndGame() CXX11_OVERRIDE {} virtual void setEndGamePieceNum(size_t num) CXX11_OVERRIDE {} virtual std::shared_ptr<DiskAdaptor> getDiskAdaptor() CXX11_OVERRIDE; virtual WrDiskCache* getWrDiskCache() CXX11_OVERRIDE { return nullptr; } virtual void flushWrDiskCacheEntry(bool releaseEntries) CXX11_OVERRIDE {} virtual int32_t getPieceLength(size_t index) CXX11_OVERRIDE; virtual void advertisePiece(cuid_t cuid, size_t index, Timer registeredTime) CXX11_OVERRIDE { } /** * indexes is filled with piece index which is not advertised by the * caller command and newer than lastHaveIndex. */ virtual uint64_t getAdvertisedPieceIndexes(std::vector<size_t>& indexes, cuid_t myCuid, uint64_t lastHaveIndex) CXX11_OVERRIDE { throw FATAL_EXCEPTION("Not Implemented!"); } virtual void removeAdvertisedPiece(const Timer& expiry) CXX11_OVERRIDE {} /** * Sets all bits in bitfield to 1. */ virtual void markAllPiecesDone() CXX11_OVERRIDE; virtual void markPiecesDone(int64_t length) CXX11_OVERRIDE; virtual void markPieceMissing(size_t index) CXX11_OVERRIDE; /** * Do nothing because loading in-flight piece is not supported for this * class. */ virtual void addInFlightPiece( const std::vector<std::shared_ptr<Piece>>& pieces) CXX11_OVERRIDE { } virtual size_t countInFlightPiece() CXX11_OVERRIDE { return 0; } virtual void getInFlightPieces(std::vector<std::shared_ptr<Piece>>& pieces) CXX11_OVERRIDE; virtual void addPieceStats(size_t index) CXX11_OVERRIDE {} virtual void addPieceStats(const unsigned char* bitfield, size_t bitfieldLength) CXX11_OVERRIDE { } virtual void subtractPieceStats(const unsigned char* bitfield, size_t bitfieldLength) CXX11_OVERRIDE { } virtual void updatePieceStats(const unsigned char* newBitfield, size_t newBitfieldLength, const unsigned char* oldBitfield) CXX11_OVERRIDE { } virtual size_t getNextUsedIndex(size_t index) CXX11_OVERRIDE { return 0; } void setDiskWriterFactory( const std::shared_ptr<DiskWriterFactory>& diskWriterFactory); virtual void onDownloadIncomplete() CXX11_OVERRIDE {} }; } // namespace aria2 #endif // D_UNKNOWN_LENGTH_PIECE_STORAGE_H