2007-10-11 16:58:24 +00:00
|
|
|
/* <!-- 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 "ConsoleStatCalc.h"
|
|
|
|
#include "RequestGroupMan.h"
|
|
|
|
#include "RequestGroup.h"
|
|
|
|
#include "FileAllocationMan.h"
|
|
|
|
#include "FileAllocationEntry.h"
|
|
|
|
#include "CheckIntegrityMan.h"
|
|
|
|
#include "CheckIntegrityEntry.h"
|
|
|
|
#include "Util.h"
|
2007-10-27 11:54:57 +00:00
|
|
|
#ifdef ENABLE_BITTORRENT
|
|
|
|
# include "BtContext.h"
|
|
|
|
#endif // ENABLE_BITTORRENT
|
2007-10-11 16:58:24 +00:00
|
|
|
#include <iomanip>
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace aria2 {
|
2007-10-11 16:58:24 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
ConsoleStatCalc::calculateStat(const RequestGroupManHandle& requestGroupMan,
|
|
|
|
const FileAllocationManHandle& fileAllocationMan,
|
|
|
|
const CheckIntegrityManHandle& checkIntegrityMan)
|
|
|
|
{
|
|
|
|
if(!_cp.elapsed(1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_cp.reset();
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "\r ";
|
|
|
|
std::cout << "\r";
|
2007-10-11 16:58:24 +00:00
|
|
|
if(requestGroupMan->countRequestGroup() > 0) {
|
|
|
|
RequestGroupHandle firstRequestGroup = requestGroupMan->getRequestGroup(0);
|
|
|
|
TransferStat stat = firstRequestGroup->calculateStat();
|
|
|
|
int32_t eta = 0;
|
|
|
|
if(firstRequestGroup->getTotalLength() > 0 && stat.getDownloadSpeed() > 0) {
|
|
|
|
eta = (firstRequestGroup->getTotalLength()-firstRequestGroup->getCompletedLength())/stat.getDownloadSpeed();
|
|
|
|
}
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "["
|
|
|
|
<< "#" << firstRequestGroup->getGID() << " ";
|
2007-10-27 11:54:57 +00:00
|
|
|
#ifdef ENABLE_BITTORRENT
|
|
|
|
if(firstRequestGroup->downloadFinished() &&
|
|
|
|
!BtContextHandle(firstRequestGroup->getDownloadContext()).isNull()) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "SEEDING" << "(" << "ratio:"
|
|
|
|
<< std::fixed << std::setprecision(1)
|
|
|
|
<< ((stat.getAllTimeUploadLength()*10)/firstRequestGroup->getCompletedLength())/10.0
|
|
|
|
<< ")";
|
2007-10-27 11:54:57 +00:00
|
|
|
} else
|
|
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
{
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "SIZE:"
|
|
|
|
<< Util::abbrevSize(firstRequestGroup->getCompletedLength())
|
|
|
|
<< "B"
|
|
|
|
<< "/"
|
|
|
|
<< Util::abbrevSize(firstRequestGroup->getTotalLength())
|
|
|
|
<< "B";
|
2007-10-27 11:54:57 +00:00
|
|
|
if(firstRequestGroup->getTotalLength() > 0) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "("
|
|
|
|
<< 100*firstRequestGroup->getCompletedLength()/firstRequestGroup->getTotalLength()
|
|
|
|
<< "%)";
|
2007-10-27 11:54:57 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "CN:"
|
|
|
|
<< firstRequestGroup->getNumConnection();
|
2007-10-16 11:46:39 +00:00
|
|
|
if(!firstRequestGroup->downloadFinished()) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "SPD:"
|
|
|
|
<< std::fixed << std::setprecision(2) << stat.getDownloadSpeed()/1024.0 << "KiB/s";
|
2007-10-16 11:46:39 +00:00
|
|
|
}
|
2007-10-11 16:58:24 +00:00
|
|
|
if(stat.getSessionUploadLength() > 0) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "UP:"
|
|
|
|
<< std::fixed << std::setprecision(2) << stat.getUploadSpeed()/1024.0 << "KiB/s"
|
|
|
|
<< "(" << Util::abbrevSize(stat.getAllTimeUploadLength()) << "B)";
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
if(eta > 0) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "ETA:"
|
|
|
|
<< Util::secfmt(eta);
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "]";
|
2007-10-11 16:58:24 +00:00
|
|
|
if(requestGroupMan->countRequestGroup() > 1) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "("
|
|
|
|
<< requestGroupMan->countRequestGroup()-1
|
|
|
|
<< "more...)";
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-14 10:10:38 +00:00
|
|
|
if(requestGroupMan->countRequestGroup() > 1 &&
|
|
|
|
!requestGroupMan->downloadFinished()) {
|
2007-10-11 16:58:24 +00:00
|
|
|
TransferStat stat = requestGroupMan->calculateStat();
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "[TOTAL SPD:"
|
|
|
|
<< std::fixed << std::setprecision(2) << stat.getDownloadSpeed()/1024.0 << "KiB/s" << "]";
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
FileAllocationEntryHandle entry = fileAllocationMan->getCurrentFileAllocationEntry();
|
|
|
|
if(!entry.isNull()) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "[FileAlloc:"
|
|
|
|
<< "#" << entry->getRequestGroup()->getGID() << " "
|
|
|
|
<< Util::abbrevSize(entry->getCurrentLength())
|
|
|
|
<< "B"
|
|
|
|
<< "/"
|
|
|
|
<< Util::abbrevSize(entry->getTotalLength())
|
|
|
|
<< "B"
|
|
|
|
<< "(";
|
2007-10-11 16:58:24 +00:00
|
|
|
if(entry->getTotalLength() > 0) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << 100*entry->getCurrentLength()/entry->getTotalLength();
|
2007-10-11 16:58:24 +00:00
|
|
|
} else {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "--";
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "%)"
|
|
|
|
<< "]";
|
2007-10-11 16:58:24 +00:00
|
|
|
if(fileAllocationMan->countFileAllocationEntryInQueue() > 0) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "("
|
|
|
|
<< fileAllocationMan->countFileAllocationEntryInQueue()
|
|
|
|
<< "waiting...)";
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef ENABLE_MESSAGE_DIGEST
|
|
|
|
{
|
|
|
|
CheckIntegrityEntryHandle entry = checkIntegrityMan->getFirstCheckIntegrityEntry();
|
|
|
|
if(!entry.isNull()) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << " "
|
|
|
|
<< "[Checksum:"
|
|
|
|
<< "#" << entry->getRequestGroup()->getGID() << " "
|
|
|
|
<< Util::abbrevSize(entry->getCurrentLength())
|
|
|
|
<< "B"
|
|
|
|
<< "/"
|
|
|
|
<< Util::abbrevSize(entry->getTotalLength())
|
|
|
|
<< "B"
|
|
|
|
<< "("
|
|
|
|
<< 100*entry->getCurrentLength()/entry->getTotalLength()
|
|
|
|
<< "%)";
|
|
|
|
std::cout << "]";
|
2007-10-11 16:58:24 +00:00
|
|
|
if(checkIntegrityMan->countCheckIntegrityEntry() > 1) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << "("
|
|
|
|
<< checkIntegrityMan->countCheckIntegrityEntry()-1
|
|
|
|
<< "more...)";
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // ENABLE_MESSAGE_DIGEST
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cout << std::flush;
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|