|
@@ -27,14 +27,19 @@ TorrentConsoleDownloadEngine::TorrentConsoleDownloadEngine() {}
|
|
|
TorrentConsoleDownloadEngine::~TorrentConsoleDownloadEngine() {}
|
|
|
|
|
|
void TorrentConsoleDownloadEngine::printStatistics() {
|
|
|
- printf("\r ");
|
|
|
+ printf("\r ");
|
|
|
printf("\r");
|
|
|
- printf("%s/%sB %d%% DW:%.2f UP:%.2f(%s) %dpeers",
|
|
|
- Util::llitos(torrentMan->getDownloadedSize(), true).c_str(),
|
|
|
- Util::llitos(torrentMan->totalSize, true).c_str(),
|
|
|
- (torrentMan->totalSize == 0 ?
|
|
|
- 0 : (int)((torrentMan->getDownloadedSize()*100)/torrentMan->totalSize)),
|
|
|
- downloadSpeed/1000.0,
|
|
|
+ if(torrentMan->downloadComplete()) {
|
|
|
+ printf("Download Completed ");
|
|
|
+ } else {
|
|
|
+ printf("%s/%sB %d%% DW:%.2f",
|
|
|
+ Util::llitos(torrentMan->getDownloadedSize(), true).c_str(),
|
|
|
+ Util::llitos(torrentMan->totalSize, true).c_str(),
|
|
|
+ (torrentMan->totalSize == 0 ?
|
|
|
+ 0 : (int)((torrentMan->getDownloadedSize()*100)/torrentMan->totalSize)),
|
|
|
+ downloadSpeed/1000.0);
|
|
|
+ }
|
|
|
+ printf(" UP:%.2f(%s) %dpeers",
|
|
|
uploadSpeed/1000.0,
|
|
|
Util::llitos(torrentMan->getUploadedSize(), true).c_str(),
|
|
|
torrentMan->connections);
|
|
@@ -42,15 +47,8 @@ void TorrentConsoleDownloadEngine::printStatistics() {
|
|
|
}
|
|
|
|
|
|
void TorrentConsoleDownloadEngine::initStatistics() {
|
|
|
- /*
|
|
|
- gettimeofday(&cp, NULL);
|
|
|
- */
|
|
|
downloadSpeed = 0;
|
|
|
uploadSpeed = 0;
|
|
|
- /*
|
|
|
- sessionDownloadSize = 0;
|
|
|
- sessionUploadSize = 0;
|
|
|
- */
|
|
|
lastElapsed = 0;
|
|
|
gettimeofday(&cp[0], NULL);
|
|
|
gettimeofday(&cp[1], NULL);
|
|
@@ -61,34 +59,12 @@ void TorrentConsoleDownloadEngine::initStatistics() {
|
|
|
currentCp = 0;
|
|
|
}
|
|
|
|
|
|
-/*
|
|
|
-int TorrentConsoleDownloadEngine::calculateSpeed(int deltaSize, long long int elapsed, int prevSpeed) {
|
|
|
- int nowSpeed = (int)(deltaSize/(elapsed/1000000.0));
|
|
|
- return (nowSpeed+prevSpeed)/2;
|
|
|
-}
|
|
|
-*/
|
|
|
int TorrentConsoleDownloadEngine::calculateSpeed(long long int sessionSize, long long int elapsed) {
|
|
|
int nowSpeed = (int)(sessionSize/(elapsed/1000000.0));
|
|
|
return nowSpeed;
|
|
|
}
|
|
|
|
|
|
void TorrentConsoleDownloadEngine::calculateStatistics() {
|
|
|
- /*
|
|
|
- struct timeval now;
|
|
|
- gettimeofday(&now, NULL);
|
|
|
- long long int elapsed = Util::difftv(now, cp);
|
|
|
- sessionDownloadSize += torrentMan->getDeltaDownload();
|
|
|
- sessionUploadSize += torrentMan->getDeltaUpload();
|
|
|
-
|
|
|
- downloadSpeed = calculateSpeed(sessionDownloadSize, elapsed);
|
|
|
- uploadSpeed = calculateSpeed(sessionUploadSize, elapsed);
|
|
|
- torrentMan->resetDeltaDownload();
|
|
|
- torrentMan->resetDeltaUpload();
|
|
|
- if(elapsed-lastElapsed >= 1000000) {
|
|
|
- printStatistics();
|
|
|
- lastElapsed = elapsed;
|
|
|
- }
|
|
|
- */
|
|
|
struct timeval now;
|
|
|
gettimeofday(&now, NULL);
|
|
|
long long int elapsed = Util::difftv(now, cp[currentCp]);
|
|
@@ -116,17 +92,4 @@ void TorrentConsoleDownloadEngine::calculateStatistics() {
|
|
|
lastElapsed = 0;
|
|
|
currentCp = currentCp ? 0 : 1;
|
|
|
}
|
|
|
-
|
|
|
- /*
|
|
|
- if(elapsed >= 1000000) {
|
|
|
- downloadSpeed = calculateSpeed(torrentMan->getDeltaDownload(),
|
|
|
- elapsed, downloadSpeed);
|
|
|
- uploadSpeed = calculateSpeed(torrentMan->getDeltaUpload(),
|
|
|
- elapsed, uploadSpeed);
|
|
|
- torrentMan->resetDeltaDownload();
|
|
|
- torrentMan->resetDeltaUpload();
|
|
|
- cp = now;
|
|
|
- printStatistics();
|
|
|
- }
|
|
|
- */
|
|
|
}
|