diff --git a/src/BtDependency.cc b/src/BtDependency.cc index a952feae..8862e9c3 100644 --- a/src/BtDependency.cc +++ b/src/BtDependency.cc @@ -155,20 +155,20 @@ bool BtDependency::resolve() } } catch(RecoverableException& e) { A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e); - A2_LOG_INFO(fmt("BtDependency for GID#%" PRId64 " failed. Go without Bt.", - dependant_->getGID())); + A2_LOG_INFO(fmt("BtDependency for GID#%s failed. Go without Bt.", + GroupId::toHex(dependant_->getGID()).c_str())); return true; } - A2_LOG_INFO(fmt("Dependency resolved for GID#%" PRId64 "", - dependant_->getGID())); + A2_LOG_INFO(fmt("Dependency resolved for GID#%s", + GroupId::toHex(dependant_->getGID()).c_str())); dependant_->setDownloadContext(context); return true; } else if(dependee_->getNumCommand() == 0) { // dependee_'s download failed. // cut reference here dependee_.reset(); - A2_LOG_INFO(fmt("BtDependency for GID#%" PRId64 " failed. Go without Bt.", - dependant_->getGID())); + A2_LOG_INFO(fmt("BtDependency for GID#%s failed. Go without Bt.", + GroupId::toHex(dependant_->getGID()).c_str())); return true; } else { return false; diff --git a/src/BtStopDownloadCommand.cc b/src/BtStopDownloadCommand.cc index b6e28cb6..3fe63b5a 100644 --- a/src/BtStopDownloadCommand.cc +++ b/src/BtStopDownloadCommand.cc @@ -62,9 +62,9 @@ void BtStopDownloadCommand::preProcess() enableExit(); } if(checkPoint_.difference(global::wallclock()) >= timeout_) { - A2_LOG_NOTICE(fmt(_("GID#%" PRId64 " Stop downloading torrent due to" + A2_LOG_NOTICE(fmt(_("GID#%s Stop downloading torrent due to" " --bt-stop-timeout option."), - requestGroup_->getGID())); + GroupId::toHex(requestGroup_->getGID()).c_str())); requestGroup_->setForceHaltRequested(true); getDownloadEngine()->setRefreshInterval(0); enableExit(); diff --git a/src/ConsoleStatCalc.cc b/src/ConsoleStatCalc.cc index 861fece8..8893fea6 100644 --- a/src/ConsoleStatCalc.cc +++ b/src/ConsoleStatCalc.cc @@ -146,7 +146,7 @@ void printProgressCompact(std::ostream& o, const DownloadEngine* e, i = groups.begin(), eoi = groups.end(); i != eoi && cnt < MAX_ITEM; ++i, ++cnt) { TransferStat stat = (*i)->calculateStat(); - o << "[#" << (*i)->getGID() << " "; + o << "[#" << GroupId::toAbbrevHex((*i)->getGID()) << " "; printSizeProgress(o, *i, stat, sizeFormatter); o << "]"; } @@ -166,7 +166,7 @@ void printProgress if(rg->getTotalLength() > 0 && stat.downloadSpeed > 0) { eta = (rg->getTotalLength()-rg->getCompletedLength())/stat.downloadSpeed; } - o << "[#" << rg->getGID() << " "; + o << "[#" << GroupId::toAbbrevHex(rg->getGID()) << " "; printSizeProgress(o, rg, stat, sizeFormatter); o << " CN:" << rg->getNumConnection(); @@ -330,7 +330,7 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e) e->getFileAllocationMan()->getPickedEntry(); if(entry) { o << " [FileAlloc:#" - << entry->getRequestGroup()->getGID() << " " + << GroupId::toAbbrevHex(entry->getRequestGroup()->getGID()) << " " << sizeFormatter(entry->getCurrentLength()) << "B/" << sizeFormatter(entry->getTotalLength()) << "B("; if(entry->getTotalLength() > 0) { @@ -350,7 +350,7 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e) e->getCheckIntegrityMan()->getPickedEntry(); if(entry) { o << " [Checksum:#" - << entry->getRequestGroup()->getGID() << " " + << GroupId::toAbbrevHex(entry->getRequestGroup()->getGID()) << " " << sizeFormatter(entry->getCurrentLength()) << "B/" << sizeFormatter(entry->getTotalLength()) << "B("; if(entry->getTotalLength() > 0) { diff --git a/src/DownloadResult.h b/src/DownloadResult.h index fa7e3f51..b6972ad0 100644 --- a/src/DownloadResult.h +++ b/src/DownloadResult.h @@ -54,7 +54,7 @@ class MetadataInfo; struct DownloadResult { - a2_gid_t gid; + SharedHandle gid; std::vector > fileEntries; diff --git a/src/FtpNegotiationCommand.cc b/src/FtpNegotiationCommand.cc index 362f94e7..6da4dc27 100644 --- a/src/FtpNegotiationCommand.cc +++ b/src/FtpNegotiationCommand.cc @@ -423,7 +423,7 @@ bool FtpNegotiationCommand::onFileSizeDetermined(int64_t totalLength) sequence_ = SEQ_DOWNLOAD_ALREADY_COMPLETED; A2_LOG_NOTICE (fmt(MSG_DOWNLOAD_ALREADY_COMPLETED, - getRequestGroup()->getGID(), + GroupId::toHex(getRequestGroup()->getGID()).c_str(), getRequestGroup()->getFirstFilePath().c_str())); } poolConnection(); diff --git a/src/GroupId.cc b/src/GroupId.cc new file mode 100644 index 00000000..a5c9d4ea --- /dev/null +++ b/src/GroupId.cc @@ -0,0 +1,158 @@ +/* */ +#include "GroupId.h" +#include "util.h" + +namespace aria2 { + +std::set GroupId::set_; + +SharedHandle GroupId::create() +{ + a2_gid_t n; + for(;;) { + util::generateRandomData(reinterpret_cast(&n), sizeof(n)); + if(n != 0 && set_.count(n) == 0) { + break; + } + } + SharedHandle res(new GroupId(n)); + return res; +} + +SharedHandle GroupId::import(a2_gid_t n) +{ + SharedHandle res; + if(n == 0 || set_.count(n) != 0) { + return res; + } + res.reset(new GroupId(n)); + return res; +} + +void GroupId::clear() +{ + set_.clear(); +} + +int GroupId::expandUnique(a2_gid_t& n, const char* hex) +{ + a2_gid_t p = 0; + size_t i; + for(i = 0; hex[i]; ++i) { + unsigned int c = util::hexCharToUInt(hex[i]); + if(c == 255) { + return ERR_INVALID; + } + p <<= 4; + p |= c; + } + if(i == 0 || i > sizeof(a2_gid_t)*2) { + return ERR_INVALID; + } + p <<= 64-i*4; + a2_gid_t mask = UINT64_MAX-((1LL << (64-i*4))-1); + std::set::const_iterator itr = set_.lower_bound(p); + if(itr == set_.end()) { + return ERR_NOT_FOUND; + } + if(p == ((*itr)&mask)) { + n = *itr; + ++itr; + if(itr == set_.end() || p != ((*itr)&mask)) { + return 0; + } else { + return ERR_NOT_UNIQUE; + } + } else { + return ERR_NOT_FOUND; + } +} + +int GroupId::toNumericId(a2_gid_t& n, const char* hex) +{ + a2_gid_t p = 0; + size_t i; + for(i = 0; hex[i]; ++i) { + unsigned int c = util::hexCharToUInt(hex[i]); + if(c == 255) { + return ERR_INVALID; + } + p <<= 4; + p |= c; + } + if(p == 0 || i != sizeof(a2_gid_t)*2) { + return ERR_INVALID; + } + n = p; + return 0; +} + +std::string GroupId::toHex(a2_gid_t gid) +{ + a2_gid_t n = hton64(gid); + return util::toHex(reinterpret_cast(&n), sizeof(n)); +} + +std::string GroupId::toAbbrevHex(a2_gid_t gid) +{ + const size_t abbrevSize = 6; + std::string h = toHex(gid); + assert(h.size() >= abbrevSize); + return toHex(gid).erase(abbrevSize); +} + +std::string GroupId::toHex() const +{ + return toHex(gid_); +} + +std::string GroupId::toAbbrevHex() const +{ + return toAbbrevHex(gid_); +} + +GroupId::GroupId(a2_gid_t gid) + : gid_(gid) +{ + set_.insert(gid_); +} + +GroupId::~GroupId() +{ + set_.erase(gid_); +} + +} // namespace aria2 diff --git a/src/GroupId.h b/src/GroupId.h new file mode 100644 index 00000000..25e3c4f2 --- /dev/null +++ b/src/GroupId.h @@ -0,0 +1,81 @@ +/* */ +#ifndef D_GROUP_ID_H +#define D_GROUP_ID_H + +#include "common.h" + +#include +#include + +#include "SharedHandle.h" + +namespace aria2 { + +typedef uint64_t a2_gid_t; + +class GroupId { +public: + static SharedHandle create(); + static SharedHandle import(a2_gid_t n); + static void clear(); + enum { + ERR_NOT_UNIQUE = -1, + ERR_NOT_FOUND = -2, + ERR_INVALID = -3 + }; + static int expandUnique(a2_gid_t& n, const char* hex); + static int toNumericId(a2_gid_t& n, const char* hex); + static std::string toHex(a2_gid_t n); + static std::string toAbbrevHex(a2_gid_t n); + + ~GroupId(); + a2_gid_t getNumericId() const + { + return gid_; + } + std::string toHex() const; + std::string toAbbrevHex() const; +private: + static std::set set_; + + GroupId(a2_gid_t gid); + + a2_gid_t gid_; +}; + +} // namespace aria2 + +#endif // D_GROUP_ID_H diff --git a/src/HttpResponseCommand.cc b/src/HttpResponseCommand.cc index e85a0329..c04e5818 100644 --- a/src/HttpResponseCommand.cc +++ b/src/HttpResponseCommand.cc @@ -189,7 +189,7 @@ bool HttpResponseCommand::executeInternal() getDownloadContext()->setChecksumVerified(true); A2_LOG_NOTICE (fmt(MSG_DOWNLOAD_ALREADY_COMPLETED, - getRequestGroup()->getGID(), + GroupId::toHex(getRequestGroup()->getGID()).c_str(), getRequestGroup()->getFirstFilePath().c_str())); poolConnection(); getFileEntry()->poolRequest(getRequest()); @@ -453,7 +453,7 @@ bool HttpResponseCommand::handleOtherEncoding getDownloadContext()->setChecksumVerified(true); A2_LOG_NOTICE (fmt(MSG_DOWNLOAD_ALREADY_COMPLETED, - getRequestGroup()->getGID(), + GroupId::toHex(getRequestGroup()->getGID()).c_str(), getRequestGroup()->getFirstFilePath().c_str())); } poolConnection(); diff --git a/src/Makefile.am b/src/Makefile.am index 2e9217ef..656af6f5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -242,7 +242,8 @@ SRCS = SocketCore.cc SocketCore.h\ AnonDiskWriterFactory.h\ XmlRpcRequestParserController.cc XmlRpcRequestParserController.h\ WrDiskCache.cc WrDiskCache.h\ - WrDiskCacheEntry.cc WrDiskCacheEntry.h + WrDiskCacheEntry.cc WrDiskCacheEntry.h\ + GroupId.cc GroupId.h if MINGW_BUILD SRCS += WinConsoleFile.cc WinConsoleFile.h diff --git a/src/Metalink2RequestGroup.cc b/src/Metalink2RequestGroup.cc index 6f15f85e..3a282618 100644 --- a/src/Metalink2RequestGroup.cc +++ b/src/Metalink2RequestGroup.cc @@ -241,7 +241,7 @@ Metalink2RequestGroup::createRequestGroup } #endif // ENABLE_BITTORRENT SharedHandle