| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- /* <!-- 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 "Piece.h"
- #include <array>
- #include <cassert>
- #include "util.h"
- #include "BitfieldMan.h"
- #include "A2STR.h"
- #include "util.h"
- #include "a2functional.h"
- #include "WrDiskCache.h"
- #include "WrDiskCacheEntry.h"
- #include "LogFactory.h"
- #include "fmt.h"
- #include "DiskAdaptor.h"
- #include "MessageDigest.h"
- namespace aria2 {
- Piece::Piece() : index_(0), length_(0), nextBegin_(0), usedBySegment_(false) {}
- Piece::Piece(size_t index, int64_t length, int32_t blockLength)
- : bitfield_(make_unique<BitfieldMan>(blockLength, length)),
- index_(index),
- length_(length),
- nextBegin_(0),
- usedBySegment_(false)
- {
- }
- Piece::~Piece() {}
- void Piece::completeBlock(size_t blockIndex)
- {
- bitfield_->setBit(blockIndex);
- bitfield_->unsetUseBit(blockIndex);
- }
- void Piece::clearAllBlock(WrDiskCache* diskCache)
- {
- bitfield_->clearAllBit();
- bitfield_->clearAllUseBit();
- if (diskCache && wrCache_) {
- clearWrCache(diskCache);
- }
- }
- void Piece::setAllBlock() { bitfield_->setAllBit(); }
- bool Piece::pieceComplete() const { return bitfield_->isAllBitSet(); }
- size_t Piece::countBlock() const { return bitfield_->countBlock(); }
- int32_t Piece::getBlockLength(size_t index) const
- {
- return bitfield_->getBlockLength(index);
- }
- int32_t Piece::getBlockLength() const { return bitfield_->getBlockLength(); }
- const unsigned char* Piece::getBitfield() const
- {
- return bitfield_->getBitfield();
- }
- size_t Piece::getBitfieldLength() const
- {
- return bitfield_->getBitfieldLength();
- }
- bool Piece::isBlockUsed(size_t index) const
- {
- return bitfield_->isUseBitSet(index);
- }
- void Piece::cancelBlock(size_t blockIndex)
- {
- bitfield_->unsetUseBit(blockIndex);
- }
- size_t Piece::countCompleteBlock() const
- {
- return bitfield_->countBlock() - bitfield_->countMissingBlock();
- }
- size_t Piece::countMissingBlock() const
- {
- return bitfield_->countMissingBlock();
- }
- bool Piece::hasBlock(size_t blockIndex) const
- {
- return bitfield_->isBitSet(blockIndex);
- }
- bool Piece::getMissingUnusedBlockIndex(size_t& index) const
- {
- if (bitfield_->getFirstMissingUnusedIndex(index)) {
- bitfield_->setUseBit(index);
- return true;
- }
- else {
- return false;
- }
- }
- size_t Piece::getMissingUnusedBlockIndex(std::vector<size_t>& indexes,
- size_t n) const
- {
- size_t num = bitfield_->getFirstNMissingUnusedIndex(indexes, n);
- if (num) {
- for (std::vector<size_t>::const_iterator i = indexes.end() - num,
- eoi = indexes.end();
- i != eoi; ++i) {
- bitfield_->setUseBit(*i);
- }
- }
- return num;
- }
- bool Piece::getFirstMissingBlockIndexWithoutLock(size_t& index) const
- {
- return bitfield_->getFirstMissingIndex(index);
- }
- bool Piece::getAllMissingBlockIndexes(unsigned char* misbitfield,
- size_t mislen) const
- {
- return bitfield_->getAllMissingIndexes(misbitfield, mislen);
- }
- std::string Piece::toString() const
- {
- return fmt("piece: index=%lu, length=%" PRId64,
- static_cast<unsigned long>(index_), length_);
- }
- void Piece::reconfigure(int64_t length)
- {
- length_ = length;
- // TODO currently, this function is only called from
- // GrowSegment::updateWrittenLength(). If we use default block
- // length (16K), and length_ gets large (e.g., 4GB), creating
- // BitfieldMan for each call is very expensive. Therefore, we use
- // maximum block length for now to reduce the overhead. Ideally, we
- // check the code thoroughly and remove bitfield_ if we can.
- bitfield_ =
- make_unique<BitfieldMan>(std::numeric_limits<int32_t>::max(), length_);
- }
- void Piece::setBitfield(const unsigned char* bitfield, size_t len)
- {
- bitfield_->setBitfield(bitfield, len);
- }
- int64_t Piece::getCompletedLength() { return bitfield_->getCompletedLength(); }
- void Piece::setHashType(const std::string& hashType) { hashType_ = hashType; }
- bool Piece::updateHash(int64_t begin, const unsigned char* data,
- size_t dataLength)
- {
- if (hashType_.empty()) {
- return false;
- }
- if (begin == nextBegin_ &&
- nextBegin_ + static_cast<int64_t>(dataLength) <= length_) {
- if (!mdctx_) {
- mdctx_ = MessageDigest::create(hashType_);
- }
- mdctx_->update(data, dataLength);
- nextBegin_ += dataLength;
- return true;
- }
- else {
- return false;
- }
- }
- bool Piece::isHashCalculated() const { return mdctx_ && nextBegin_ == length_; }
- std::string Piece::getDigest()
- {
- if (!mdctx_) {
- return A2STR::NIL;
- }
- else {
- std::string hash = mdctx_->digest();
- destroyHashContext();
- return hash;
- }
- }
- namespace {
- void updateHashWithRead(MessageDigest* mdctx,
- const std::shared_ptr<DiskAdaptor>& adaptor,
- int64_t offset, size_t len)
- {
- std::array<unsigned char, 4_k> buf;
- ldiv_t res = ldiv(len, buf.size());
- for (int j = 0; j < res.quot; ++j) {
- ssize_t nread = adaptor->readData(buf.data(), buf.size(), offset);
- if ((size_t)nread != buf.size()) {
- throw DL_ABORT_EX(fmt(EX_FILE_READ, "n/a", "data is too short"));
- }
- mdctx->update(buf.data(), nread);
- offset += nread;
- }
- if (res.rem) {
- ssize_t nread = adaptor->readData(buf.data(), res.rem, offset);
- if (nread != res.rem) {
- throw DL_ABORT_EX(fmt(EX_FILE_READ, "n/a", "data is too short"));
- }
- mdctx->update(buf.data(), nread);
- }
- }
- } // namespace
- std::string
- Piece::getDigestWithWrCache(size_t pieceLength,
- const std::shared_ptr<DiskAdaptor>& adaptor)
- {
- auto mdctx = MessageDigest::create(hashType_);
- int64_t start = static_cast<int64_t>(index_) * pieceLength;
- int64_t goff = start;
- if (wrCache_) {
- const WrDiskCacheEntry::DataCellSet& dataSet = wrCache_->getDataSet();
- for (auto& d : dataSet) {
- if (goff < d->goff) {
- updateHashWithRead(mdctx.get(), adaptor, goff, d->goff - goff);
- }
- mdctx->update(d->data + d->offset, d->len);
- goff = d->goff + d->len;
- }
- updateHashWithRead(mdctx.get(), adaptor, goff, start + length_ - goff);
- }
- else {
- updateHashWithRead(mdctx.get(), adaptor, goff, length_);
- }
- return mdctx->digest();
- }
- void Piece::destroyHashContext()
- {
- mdctx_.reset();
- nextBegin_ = 0;
- }
- bool Piece::usedBy(cuid_t cuid) const
- {
- return std::find(users_.begin(), users_.end(), cuid) != users_.end();
- }
- void Piece::addUser(cuid_t cuid)
- {
- if (std::find(users_.begin(), users_.end(), cuid) == users_.end()) {
- users_.push_back(cuid);
- }
- }
- void Piece::removeUser(cuid_t cuid)
- {
- users_.erase(std::remove(users_.begin(), users_.end(), cuid), users_.end());
- }
- void Piece::initWrCache(WrDiskCache* diskCache,
- const std::shared_ptr<DiskAdaptor>& diskAdaptor)
- {
- if (!diskCache) {
- return;
- }
- assert(!wrCache_);
- wrCache_ = make_unique<WrDiskCacheEntry>(diskAdaptor);
- bool rv = diskCache->add(wrCache_.get());
- assert(rv);
- }
- void Piece::flushWrCache(WrDiskCache* diskCache)
- {
- if (!diskCache) {
- return;
- }
- assert(wrCache_);
- ssize_t size = static_cast<ssize_t>(wrCache_->getSize());
- diskCache->update(wrCache_.get(), -size);
- wrCache_->writeToDisk();
- }
- void Piece::clearWrCache(WrDiskCache* diskCache)
- {
- if (!diskCache) {
- return;
- }
- assert(wrCache_);
- ssize_t size = static_cast<ssize_t>(wrCache_->getSize());
- diskCache->update(wrCache_.get(), -size);
- wrCache_->clear();
- }
- void Piece::updateWrCache(WrDiskCache* diskCache, unsigned char* data,
- size_t offset, size_t len, size_t capacity,
- int64_t goff)
- {
- if (!diskCache) {
- return;
- }
- assert(wrCache_);
- A2_LOG_DEBUG(fmt("updateWrCache entry=%p", wrCache_.get()));
- auto cell = new WrDiskCacheEntry::DataCell();
- cell->goff = goff;
- cell->data = data;
- cell->offset = offset;
- cell->len = len;
- cell->capacity = capacity;
- bool rv;
- rv = wrCache_->cacheData(cell);
- assert(rv);
- rv = diskCache->update(wrCache_.get(), len);
- assert(rv);
- }
- size_t Piece::appendWrCache(WrDiskCache* diskCache, int64_t goff,
- const unsigned char* data, size_t len)
- {
- if (!diskCache) {
- return 0;
- }
- assert(wrCache_);
- size_t delta = wrCache_->append(goff, data, len);
- bool rv;
- if (delta > 0) {
- rv = diskCache->update(wrCache_.get(), delta);
- assert(rv);
- }
- return delta;
- }
- void Piece::releaseWrCache(WrDiskCache* diskCache)
- {
- if (diskCache && wrCache_) {
- diskCache->remove(wrCache_.get());
- wrCache_.reset();
- }
- }
- } // namespace aria2
|