2007-05-20 13:57:56 +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 "MultiUrlRequestInfo.h"
|
2007-10-11 16:58:24 +00:00
|
|
|
#include "RequestGroupMan.h"
|
|
|
|
#include "DownloadEngine.h"
|
|
|
|
#include "LogFactory.h"
|
|
|
|
#include "RequestGroup.h"
|
2007-05-20 13:57:56 +00:00
|
|
|
#include "prefs.h"
|
|
|
|
#include "DownloadEngineFactory.h"
|
|
|
|
#include "RecoverableException.h"
|
|
|
|
#include "message.h"
|
|
|
|
#include "DNSCache.h"
|
2007-06-30 09:52:39 +00:00
|
|
|
#include "Util.h"
|
2007-10-11 16:58:24 +00:00
|
|
|
#include "ConsoleStatCalc.h"
|
2007-06-30 09:52:39 +00:00
|
|
|
#include <signal.h>
|
2007-05-20 13:57:56 +00:00
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
#ifndef SA_RESETHAND
|
|
|
|
# define SA_RESETHAND 0x80000000
|
|
|
|
#endif // SA_RESETHAND
|
2007-05-20 13:57:56 +00:00
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
extern volatile sig_atomic_t globalHaltRequested;
|
2007-05-20 13:57:56 +00:00
|
|
|
|
|
|
|
static void handler(int signal) {
|
2007-10-11 16:58:24 +00:00
|
|
|
globalHaltRequested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MultiUrlRequestInfo::MultiUrlRequestInfo(const RequestGroups& requestGroups, Option* op):
|
|
|
|
_requestGroups(requestGroups),
|
|
|
|
_option(op),
|
|
|
|
_logger(LogFactory::getInstance())
|
|
|
|
{}
|
|
|
|
|
|
|
|
MultiUrlRequestInfo::~MultiUrlRequestInfo() {}
|
|
|
|
|
|
|
|
void MultiUrlRequestInfo::printDownloadAbortMessage()
|
|
|
|
{
|
|
|
|
printf(_("\nSome downloads were not complete because of errors."
|
|
|
|
" Check the log.\n"
|
|
|
|
"aria2 will resume download if the transfer is restarted."));
|
|
|
|
printf("\n");
|
2007-05-20 13:57:56 +00:00
|
|
|
}
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
void MultiUrlRequestInfo::execute()
|
|
|
|
{
|
2007-05-20 13:57:56 +00:00
|
|
|
{
|
|
|
|
DNSCacheHandle dnsCache = new SimpleDNSCache();
|
|
|
|
DNSCacheSingletonHolder::instance(dnsCache);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2007-10-11 16:58:24 +00:00
|
|
|
DownloadEngineHandle e =
|
|
|
|
DownloadEngineFactory().newDownloadEngine(_option, _requestGroups);
|
|
|
|
e->setStatCalc(new ConsoleStatCalc());
|
2007-05-20 13:57:56 +00:00
|
|
|
|
|
|
|
e->fillCommand();
|
|
|
|
|
2007-06-09 10:06:53 +00:00
|
|
|
// The number of simultaneous download is specified by PREF_MAX_CONCURRENT_DOWNLOADS.
|
2007-05-20 13:57:56 +00:00
|
|
|
// The remaining urls are queued into FillRequestGroupCommand.
|
|
|
|
// It observes the number of simultaneous downloads and if it is under
|
|
|
|
// the limit, it adds RequestGroup object from its queue to DownloadEngine.
|
|
|
|
// This is done every 1 second. At the same time, it removes finished/error
|
|
|
|
// RequestGroup from DownloadEngine.
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
Util::setGlobalSignalHandler(SIGINT, handler, SA_RESETHAND);
|
|
|
|
Util::setGlobalSignalHandler(SIGTERM, handler, SA_RESETHAND);
|
2007-05-20 13:57:56 +00:00
|
|
|
|
|
|
|
e->run();
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
e->_requestGroupMan->showDownloadResults(cout);
|
2007-05-20 13:57:56 +00:00
|
|
|
cout << flush;
|
2007-10-11 16:58:24 +00:00
|
|
|
|
|
|
|
if(!e->_requestGroupMan->downloadFinished()) {
|
2007-05-20 13:57:56 +00:00
|
|
|
printDownloadAbortMessage();
|
|
|
|
}
|
|
|
|
} catch(RecoverableException *ex) {
|
2007-10-11 16:58:24 +00:00
|
|
|
_logger->error(EX_EXCEPTION_CAUGHT, ex);
|
2007-05-20 13:57:56 +00:00
|
|
|
delete ex;
|
|
|
|
}
|
|
|
|
Util::setGlobalSignalHandler(SIGINT, SIG_DFL, 0);
|
|
|
|
Util::setGlobalSignalHandler(SIGTERM, SIG_DFL, 0);
|
|
|
|
}
|