aria2/src/Piece.cc

371 lines
9.2 KiB
C++

/* <!-- 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 "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"
#ifdef ENABLE_MESSAGE_DIGEST
# include "MessageDigest.h"
#endif // ENABLE_MESSAGE_DIGEST
namespace aria2 {
Piece::Piece():index_(0), length_(0), blockLength_(BLOCK_LENGTH), bitfield_(0),
usedBySegment_(false), wrCache_(0)
#ifdef ENABLE_MESSAGE_DIGEST
, nextBegin_(0)
#endif // ENABLE_MESSAGE_DIGEST
{}
Piece::Piece(size_t index, int32_t length, int32_t blockLength)
: index_(index),
length_(length),
blockLength_(blockLength),
bitfield_(new BitfieldMan(blockLength_, length)),
usedBySegment_(false), wrCache_(0)
#ifdef ENABLE_MESSAGE_DIGEST
,nextBegin_(0)
#endif // ENABLE_MESSAGE_DIGEST
{}
Piece::~Piece()
{
delete wrCache_;
delete bitfield_;
}
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=%d",
static_cast<unsigned long>(index_), length_);
}
void Piece::reconfigure(int32_t length)
{
delete bitfield_;
length_ = length;
bitfield_ = new BitfieldMan(blockLength_, length_);
}
void Piece::setBitfield(const unsigned char* bitfield, size_t len)
{
bitfield_->setBitfield(bitfield, len);
}
int32_t Piece::getCompletedLength()
{
return bitfield_->getCompletedLength();
}
#ifdef ENABLE_MESSAGE_DIGEST
void Piece::setHashType(const std::string& hashType)
{
hashType_ = hashType;
}
bool Piece::updateHash
(int32_t begin, const unsigned char* data, size_t dataLength)
{
if(hashType_.empty()) {
return false;
}
if(begin == nextBegin_ &&
nextBegin_+dataLength <= static_cast<size_t>(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(const SharedHandle<MessageDigest>& mdctx,
const SharedHandle<DiskAdaptor>& adaptor,
int64_t offset, size_t len)
{
const size_t BUFSIZE = 4096;
unsigned char buf[BUFSIZE];
ldiv_t res = ldiv(len, BUFSIZE);
for(int j = 0; j < res.quot; ++j) {
ssize_t nread = adaptor->readData(buf, BUFSIZE, offset);
if((size_t)nread != BUFSIZE) {
throw DL_ABORT_EX(fmt(EX_FILE_READ, "n/a", "data is too short"));
}
mdctx->update(buf, nread);
offset += nread;
}
if(res.rem) {
ssize_t nread = adaptor->readData(buf, res.rem, offset);
if(nread != res.rem) {
throw DL_ABORT_EX(fmt(EX_FILE_READ, "n/a", "data is too short"));
}
mdctx->update(buf, nread);
offset += nread;
}
}
} // namespace
std::string Piece::getDigestWithWrCache
(size_t pieceLength, const SharedHandle<DiskAdaptor>& adaptor)
{
SharedHandle<MessageDigest> 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(WrDiskCacheEntry::DataCellSet::iterator i = dataSet.begin(),
eoi = dataSet.end(); i != eoi; ++i) {
if(goff < (*i)->goff) {
updateHashWithRead(mdctx, adaptor, goff, (*i)->goff - goff);
}
mdctx->update((*i)->data+(*i)->offset, (*i)->len);
goff = (*i)->goff + (*i)->len;
}
updateHashWithRead(mdctx, adaptor, goff, start+length_-goff);
} else {
updateHashWithRead(mdctx, adaptor, goff, length_);
}
return mdctx->digest();
}
void Piece::destroyHashContext()
{
mdctx_.reset();
nextBegin_ = 0;
}
#endif // ENABLE_MESSAGE_DIGEST
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 SharedHandle<DiskAdaptor>& diskAdaptor)
{
assert(wrCache_ == 0);
wrCache_ = new WrDiskCacheEntry(diskAdaptor);
bool rv = diskCache->add(wrCache_);
assert(rv);
}
void Piece::flushWrCache(WrDiskCache* diskCache)
{
assert(wrCache_);
ssize_t size = static_cast<ssize_t>(wrCache_->getSize());
diskCache->update(wrCache_, -size);
wrCache_->writeToDisk();
}
void Piece::clearWrCache(WrDiskCache* diskCache)
{
assert(wrCache_);
ssize_t size = static_cast<ssize_t>(wrCache_->getSize());
diskCache->update(wrCache_, -size);
wrCache_->clear();
}
void Piece::updateWrCache(WrDiskCache* diskCache, unsigned char* data,
size_t offset, size_t len, int64_t goff)
{
A2_LOG_DEBUG(fmt("updateWrCache entry=%p", wrCache_));
assert(wrCache_);
WrDiskCacheEntry::DataCell* cell = new WrDiskCacheEntry::DataCell();
cell->goff = goff;
cell->data = data;
cell->offset = offset;
cell->len = len;
bool rv;
rv = wrCache_->cacheData(cell);
assert(rv);
rv = diskCache->update(wrCache_, len);
assert(rv);
}
void Piece::releaseWrCache(WrDiskCache* diskCache)
{
if(wrCache_) {
diskCache->remove(wrCache_);
delete wrCache_;
wrCache_ = 0;
}
}
} // namespace aria2