/* */ #include "ConsoleStatCalc.h" #include "RequestGroupMan.h" #include "RequestGroup.h" #include "FileAllocationMan.h" #include "FileAllocationEntry.h" #include "CheckIntegrityMan.h" #include "CheckIntegrityEntry.h" #include "Util.h" #ifdef ENABLE_BITTORRENT # include "BtContext.h" #endif // ENABLE_BITTORRENT #include void ConsoleStatCalc::calculateStat(const RequestGroupManHandle& requestGroupMan, const FileAllocationManHandle& fileAllocationMan, const CheckIntegrityManHandle& checkIntegrityMan) { if(!_cp.elapsed(1)) { return; } _cp.reset(); cout << "\r "; cout << "\r"; if(requestGroupMan->countRequestGroup() > 0) { RequestGroupHandle firstRequestGroup = requestGroupMan->getRequestGroup(0); TransferStat stat = firstRequestGroup->calculateStat(); //int32_t dlSpeed = firstRequestGroup->calculateDownloadSpeed(); int32_t eta = 0; if(firstRequestGroup->getTotalLength() > 0 && stat.getDownloadSpeed() > 0) { eta = (firstRequestGroup->getTotalLength()-firstRequestGroup->getCompletedLength())/stat.getDownloadSpeed(); } cout << "[" << "#" << firstRequestGroup->getGID() << " "; #ifdef ENABLE_BITTORRENT if(firstRequestGroup->downloadFinished() && !BtContextHandle(firstRequestGroup->getDownloadContext()).isNull()) { cout << "SEEDING" << "(" << "ratio:" << fixed << setprecision(1) << stat.getAllTimeUploadLength()*1.0/firstRequestGroup->getCompletedLength() << ")"; } else #endif // ENABLE_BITTORRENT { cout << "SIZE:" << Util::abbrevSize(firstRequestGroup->getCompletedLength()) << "B" << "/" << Util::abbrevSize(firstRequestGroup->getTotalLength()) << "B"; if(firstRequestGroup->getTotalLength() > 0) { cout << "(" << 100*firstRequestGroup->getCompletedLength()/firstRequestGroup->getTotalLength() << "%)"; } } cout << " " << "CN:" << firstRequestGroup->getNumConnection(); if(!firstRequestGroup->downloadFinished()) { cout << " " << "SPD:" << fixed << setprecision(2) << stat.getDownloadSpeed()/1024.0 << "KiB/s"; } if(stat.getSessionUploadLength() > 0) { cout << " " << "UP:" << fixed << setprecision(2) << stat.getUploadSpeed()/1024.0 << "KiB/s" << "(" << Util::abbrevSize(stat.getAllTimeUploadLength()) << "B)"; } if(eta > 0) { cout << " " << "ETA:" << Util::secfmt(eta); } cout << "]"; if(requestGroupMan->countRequestGroup() > 1) { cout << "(" << requestGroupMan->countRequestGroup()-1 << "more...)"; } } if(requestGroupMan->countRequestGroup() > 1) { TransferStat stat = requestGroupMan->calculateStat(); cout << " " << "[TOTAL SPD:" << fixed << setprecision(2) << stat.getDownloadSpeed()/1024.0 << "KiB/s" << "]"; } { FileAllocationEntryHandle entry = fileAllocationMan->getCurrentFileAllocationEntry(); if(!entry.isNull()) { cout << " " << "[FileAlloc:" << "#" << entry->getRequestGroup()->getGID() << " " << Util::abbrevSize(entry->getCurrentLength()) << "B" << "/" << Util::abbrevSize(entry->getTotalLength()) << "B" << "("; if(entry->getTotalLength() > 0) { cout << 100*entry->getCurrentLength()/entry->getTotalLength(); } else { cout << "--"; } cout << "%)" << "]"; if(fileAllocationMan->countFileAllocationEntryInQueue() > 0) { cout << "(" << fileAllocationMan->countFileAllocationEntryInQueue() << "waiting...)"; } } } #ifdef ENABLE_MESSAGE_DIGEST { CheckIntegrityEntryHandle entry = checkIntegrityMan->getFirstCheckIntegrityEntry(); if(!entry.isNull()) { cout << " " << "[Checksum:" << "#" << entry->getRequestGroup()->getGID() << " " << Util::abbrevSize(entry->getCurrentLength()) << "B" << "/" << Util::abbrevSize(entry->getTotalLength()) << "B" << "(" << 100*entry->getCurrentLength()/entry->getTotalLength() << "%)"; cout << "]"; if(checkIntegrityMan->countCheckIntegrityEntry() > 1) { cout << "(" << checkIntegrityMan->countCheckIntegrityEntry()-1 << "more...)"; } } } #endif // ENABLE_MESSAGE_DIGEST cout << flush; }