aria2/src/DownloadEngine.cc

137 lines
3.3 KiB
C++
Raw Normal View History

2006-02-17 13:35:04 +00:00
/* <!-- copyright */
/*
* aria2 - a simple utility for downloading files faster
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* copyright --> */
#include "DownloadEngine.h"
2006-02-21 14:00:58 +00:00
#include "Util.h"
2006-02-17 13:35:04 +00:00
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <algorithm>
2006-02-17 13:35:04 +00:00
using namespace std;
2006-03-21 14:12:51 +00:00
DownloadEngine::DownloadEngine():noWait(false), segmentMan(NULL) {}
2006-02-17 13:35:04 +00:00
DownloadEngine::~DownloadEngine() {
assert(rsockets.empty());
assert(wsockets.empty());
}
void DownloadEngine::run() {
initStatistics();
2006-02-17 13:35:04 +00:00
while(!commands.empty()) {
int max = commands.size();
for(int i = 0; i < max; i++) {
Command* com = commands.front();
commands.pop();
if(com->execute()) {
delete(com);
}
}
* Request.h: Added AFTER_COMPLETED event. * TorrentDownloadEngine.cc: Prints "Download complete" message instead of downloaded size and progress(%) after download completes. * PeerInteractionCommand.cc: After download completes, sends unchoke message to the peer if it is interested in what localhost has downloaded. * TorrentMan.cc: In single-file mode, copy temporary file to the final destination instead of just renaming it. * TorrentMan.cc: Added deleteTempFile(). * PeerAbstractCommand.cc: do not stop execution after download completes. This makes localhost a seeder. * Util.{h,cc}: Added fileCopy(). * PeerListenCommand.cc: do not stop execution after download completes. This makes localhost a seeder. * main.cc: Do not call TorrentMan::fixFilename() in torrentHandler. Added TorrentMan::deleteTempFile() to torrentHandler. Initialized the variable dir as ".". * TorrentMan.h: Changed DEFAULT_ANNOUNCE_INTERVAL to 120 seconds. Deleted renameSingleFile(). Added copySingleFile(), deleteTempFile(). * DownloadEngine.h: Added virtual function afterEachIteration(). * TorrentDownloadEngine.cc: Move a call to TorrentMan::fixFilename() in onEndOfRun() to afterEachIteration(). In onEndOfRun(), changed if condition to check whether filenameFixed is true. * Util.cc: Implemented fileCopy() using rangedFileCopy(). In rangedFileCopy(), added try-catch block to properly close file descriptors. * TorrentDownloadEngine.cc: Added a member variable filenameFixed. Added afterEachIteration(), isFilenameFixed(). * Peer.cc: Changed choking strategy. * PreAllocationDiskWriter.cc: Drop O_DIRECT flag. * TrackerInitCommand.cc: Send completed event only once. * DownloadEngine.cc: Added a call to afterEachIteration(). * TrackerUpdateCommand.cc: Do not stop execution after download completes. * TorrentMan.h: Defined MAX_PEER_UPDATE as 15. aria2 attempts to connect the peers at most MAX_PEER_UPDATE when a peer list is received from a tracker. * TrackerUpdateCommand.cc: Implemented above mentioned behavior. Decreased the number of failure peers to delete to 0(just comment out the line). * Release 0.3.1
2006-03-24 11:59:18 +00:00
afterEachIteration();
2006-03-21 14:12:51 +00:00
shortSleep();
2006-02-17 13:35:04 +00:00
if(!noWait && !commands.empty()) {
waitData();
2006-02-21 12:27:17 +00:00
}
noWait = false;
calculateStatistics();
2006-02-17 13:35:04 +00:00
}
2006-03-21 14:12:51 +00:00
onEndOfRun();
}
2006-03-21 14:12:51 +00:00
void DownloadEngine::shortSleep() const {
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 1000;
fd_set rfds;
FD_ZERO(&rfds);
select(0, &rfds, NULL, NULL, &tv);
}
2006-02-17 13:35:04 +00:00
void DownloadEngine::waitData() {
fd_set rfds;
fd_set wfds;
struct timeval tv;
int retval;
2006-02-21 12:27:17 +00:00
2006-02-17 13:35:04 +00:00
FD_ZERO(&rfds);
FD_ZERO(&wfds);
int max = 0;
for(Sockets::iterator itr = rsockets.begin(); itr != rsockets.end(); itr++) {
FD_SET((*itr)->getSockfd(), &rfds);
if(max < (*itr)->getSockfd()) {
max = (*itr)->getSockfd();
2006-02-17 13:35:04 +00:00
}
}
for(Sockets::iterator itr = wsockets.begin(); itr != wsockets.end(); itr++) {
FD_SET((*itr)->getSockfd(), &wfds);
if(max < (*itr)->getSockfd()) {
max = (*itr)->getSockfd();
2006-02-17 13:35:04 +00:00
}
}
tv.tv_sec = 1;
tv.tv_usec = 0;
2006-02-21 12:27:17 +00:00
retval = select(max+1, &rfds, /*&wfds*/NULL, NULL, &tv);
2006-02-17 13:35:04 +00:00
}
bool DownloadEngine::addSocket(Sockets& sockets, Socket* socket) {
Sockets::iterator itr = find(sockets.begin(),
sockets.end(),
socket);
2006-02-17 13:35:04 +00:00
if(itr == sockets.end()) {
sockets.push_back(socket);
return true;
} else {
return false;
}
}
bool DownloadEngine::deleteSocket(Sockets& sockets, Socket* socket) {
Sockets::iterator itr = find(sockets.begin(),
sockets.end(),
socket);
2006-02-17 13:35:04 +00:00
if(itr != sockets.end()) {
sockets.erase(itr);
return true;
} else {
return false;
}
}
bool DownloadEngine::addSocketForReadCheck(Socket* socket) {
return addSocket(rsockets, socket);
}
bool DownloadEngine::deleteSocketForReadCheck(Socket* socket) {
return deleteSocket(rsockets , socket);
}
bool DownloadEngine::addSocketForWriteCheck(Socket* socket) {
return addSocket(wsockets, socket);
}
bool DownloadEngine::deleteSocketForWriteCheck(Socket* socket) {
return deleteSocket(wsockets, socket);
}