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 "common.h"
|
2008-12-02 15:53:27 +00:00
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iostream>
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
#include "Option.h"
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "OptionParser.h"
|
|
|
|
#include "OptionHandlerFactory.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include "OptionHandler.h"
|
2007-10-11 16:58:24 +00:00
|
|
|
#include "Util.h"
|
|
|
|
#include "message.h"
|
2007-11-10 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Don't connect server before checking file integrity at startup,
if
filesize and output file path are known.
* src/AbstractCommand.cc
* src/StreamFileAllocationEntry.cc
* src/Metalink2RequestGroup.cc
* src/RequestGroup.{h, cc}
* src/HttpResponseCommand.cc
* src/FtpNegotiationCommand.cc
Added DownloadFailureException. If it is thrown, RequestGroup
should
halt.
* src/AbstractCommand.cc
* src/DownloadFailureException.h
* src/RequestGroup.cc
Catch RecoverableException, instead of DlAbortEx.
* src/RequestGroupMan.cc
* src/FillRequestGroupCommand.cc
* src/MetaFileUtil.cc
* src/IteratableChunkChecksumValidator.cc
Now first parameter of MSG_DOWNLOAD_ABORTED is
gid(RequestGroup::
getGID())
* src/CheckIntegrityCommand.cc
* src/message.h
Print gid instead of idx.
* src/RequestGroupMan.cc
Removed exception throwers declaration.
* src/DirectDiskAdaptor.{h, cc}
* src/SocketCore.{h, cc}
* src/MultiDiskAdaptor.{h, cc}
* src/HttpConnection.{h, cc}
* src/HttpResponse.{h, cc}
* src/DiskAdaptor.{h, cc}
* src/CopyDiskAdaptor.{h, cc}
* src/MultiDiskAdaptor.{h, cc}
* src/HttpHeaderProcessor.{h, cc}
* src/AbstractSingleDiskAdaptor.{h, cc}
* src/Util.{h, cc}
* test/UtilTest.cc
* src/DefaultDiskWriter.{h, cc}
* src/FtpConnection.{h, cc}
* src/AbstractDiskWriter.{h, cc}
Removed duplicate code.
* src/StreamCheckIntegrityEntry.cc
Removed unnecessary include.
* src/DiskWriter.h
Included Exception.h
* src/option_processing.cc
Included 2 files and added doc
* src/TrackerWatcherCommand.cc
* src/SocketCore.cc (writeData): Fixed send error with GnuTLS.
2007-11-09 18:01:12 +00:00
|
|
|
#include "Exception.h"
|
2007-11-28 14:22:28 +00:00
|
|
|
#include "a2io.h"
|
2008-01-05 11:26:56 +00:00
|
|
|
#include "help_tags.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include "File.h"
|
2008-04-26 05:58:49 +00:00
|
|
|
#include "StringFormat.h"
|
2008-09-26 16:05:45 +00:00
|
|
|
#include "OptionHandlerException.h"
|
2009-06-29 08:42:58 +00:00
|
|
|
#include "DownloadResultCode.h"
|
2009-06-28 10:37:15 +00:00
|
|
|
#include "SimpleRandomizer.h"
|
|
|
|
#include "bittorrent_helper.h"
|
2009-09-19 09:05:20 +00:00
|
|
|
#ifndef HAVE_DAEMON
|
|
|
|
#include "daemon.h"
|
|
|
|
#endif // !HAVE_DAEMON
|
2007-10-11 16:58:24 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
|
|
|
|
2007-10-11 16:58:24 +00:00
|
|
|
extern void showVersion();
|
2008-09-22 09:26:57 +00:00
|
|
|
extern void showUsage(const std::string& keyword, const OptionParser& oparser);
|
2007-10-11 16:58:24 +00:00
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
static void overrideWithEnv(Option& op, const OptionParser& optionParser,
|
2008-11-04 14:57:05 +00:00
|
|
|
const std::string& pref,
|
|
|
|
const std::string& envName)
|
|
|
|
{
|
|
|
|
char* value = getenv(envName.c_str());
|
|
|
|
if(value) {
|
|
|
|
try {
|
|
|
|
optionParser.findByName(pref)->parse(op, value);
|
|
|
|
} catch(Exception& e) {
|
|
|
|
std::cerr << "Caught Error while parsing environment variable"
|
|
|
|
<< " '" << envName << "'"
|
|
|
|
<< "\n"
|
|
|
|
<< e.stackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
void option_processing(Option& op, std::deque<std::string>& uris,
|
|
|
|
int argc, char* const argv[])
|
2008-04-22 11:26:50 +00:00
|
|
|
{
|
2008-09-22 09:26:57 +00:00
|
|
|
OptionParser oparser;
|
|
|
|
oparser.setOptionHandlers(OptionHandlerFactory::createOptionHandlers());
|
|
|
|
try {
|
2009-02-07 11:00:34 +00:00
|
|
|
bool noConf = false;
|
|
|
|
std::string ucfname;
|
|
|
|
std::stringstream cmdstream;
|
|
|
|
oparser.parseArg(cmdstream, uris, argc, argv);
|
|
|
|
{
|
|
|
|
// first evaluate --no-conf and --conf-path options.
|
|
|
|
Option op;
|
|
|
|
oparser.parse(op, cmdstream);
|
|
|
|
noConf = op.getAsBool(PREF_NO_CONF);
|
|
|
|
ucfname = op.get(PREF_CONF_PATH);
|
2008-09-22 09:26:57 +00:00
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
if(op.defined("version")) {
|
|
|
|
showVersion();
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::FINISHED);
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
2009-02-07 11:00:34 +00:00
|
|
|
if(op.defined("help")) {
|
2009-01-27 12:40:44 +00:00
|
|
|
std::string keyword;
|
2009-02-07 11:00:34 +00:00
|
|
|
if(op.get("help").empty()) {
|
2009-01-27 12:40:44 +00:00
|
|
|
keyword = TAG_BASIC;
|
2008-01-05 11:26:56 +00:00
|
|
|
} else {
|
2009-02-07 11:00:34 +00:00
|
|
|
keyword = op.get("help");
|
2009-10-22 15:09:00 +00:00
|
|
|
if(util::startsWith(keyword, "--")) {
|
2009-01-27 12:40:44 +00:00
|
|
|
keyword = keyword.substr(2);
|
|
|
|
}
|
|
|
|
std::string::size_type eqpos = keyword.find("=");
|
|
|
|
if(eqpos != std::string::npos) {
|
|
|
|
keyword = keyword.substr(0, eqpos);
|
|
|
|
}
|
2008-01-05 11:26:56 +00:00
|
|
|
}
|
2009-01-27 12:40:44 +00:00
|
|
|
showUsage(keyword, oparser);
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::FINISHED);
|
2008-01-05 11:26:56 +00:00
|
|
|
}
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
oparser.parseDefaultValues(op);
|
|
|
|
|
2008-01-11 14:50:34 +00:00
|
|
|
if(!noConf) {
|
2008-09-22 09:26:57 +00:00
|
|
|
std::string cfname =
|
|
|
|
ucfname.empty() ?
|
|
|
|
oparser.findByName(PREF_CONF_PATH)->getDefaultValue():
|
|
|
|
ucfname;
|
|
|
|
|
2008-01-11 14:50:34 +00:00
|
|
|
if(File(cfname).isFile()) {
|
2009-02-13 11:28:42 +00:00
|
|
|
std::ifstream cfstream(cfname.c_str(), std::ios::binary);
|
2008-01-11 14:50:34 +00:00
|
|
|
try {
|
|
|
|
oparser.parse(op, cfstream);
|
2008-09-27 04:54:15 +00:00
|
|
|
} catch(OptionHandlerException& e) {
|
|
|
|
std::cerr << "Parse error in " << cfname << "\n"
|
|
|
|
<< e.stackTrace() << "\n"
|
|
|
|
<< "Usage:" << "\n"
|
|
|
|
<< oparser.findByName(e.getOptionName())->getDescription()
|
|
|
|
<< std::endl;
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2008-04-27 02:22:14 +00:00
|
|
|
} catch(Exception& e) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cerr << "Parse error in " << cfname << "\n"
|
2008-04-27 02:22:14 +00:00
|
|
|
<< e.stackTrace() << std::endl;
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2008-01-11 14:50:34 +00:00
|
|
|
}
|
2008-09-22 09:26:57 +00:00
|
|
|
} else if(!ucfname.empty()) {
|
|
|
|
std::cerr << StringFormat("Configuration file %s is not found.",
|
|
|
|
cfname.c_str())
|
2008-04-26 05:58:49 +00:00
|
|
|
<< "\n";
|
2008-09-22 09:26:57 +00:00
|
|
|
showUsage(TAG_HELP, oparser);
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2008-01-11 14:50:34 +00:00
|
|
|
}
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
2008-11-04 14:57:05 +00:00
|
|
|
// Override configuration with environment variables.
|
|
|
|
overrideWithEnv(op, oparser, PREF_HTTP_PROXY, "http_proxy");
|
|
|
|
overrideWithEnv(op, oparser, PREF_HTTPS_PROXY, "https_proxy");
|
|
|
|
overrideWithEnv(op, oparser, PREF_FTP_PROXY, "ftp_proxy");
|
|
|
|
overrideWithEnv(op, oparser, PREF_ALL_PROXY, "all_proxy");
|
2008-11-09 08:23:11 +00:00
|
|
|
overrideWithEnv(op, oparser, PREF_NO_PROXY, "no_proxy");
|
2008-11-04 14:57:05 +00:00
|
|
|
|
2009-02-07 11:00:34 +00:00
|
|
|
// we must clear eof bit and seek to the beginning of the buffer.
|
|
|
|
cmdstream.clear();
|
|
|
|
cmdstream.seekg(0, std::ios::beg);
|
|
|
|
// finaly let's parse and store command-iine options.
|
|
|
|
oparser.parse(op, cmdstream);
|
|
|
|
} catch(OptionHandlerException& e) {
|
|
|
|
std::cerr << e.stackTrace() << "\n"
|
|
|
|
<< "Usage:" << "\n"
|
2009-02-07 14:24:11 +00:00
|
|
|
<< oparser.findByName(e.getOptionName())
|
2009-02-07 11:00:34 +00:00
|
|
|
<< std::endl;
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2009-02-07 11:00:34 +00:00
|
|
|
} catch(Exception& e) {
|
|
|
|
std::cerr << e.stackTrace() << std::endl;
|
|
|
|
showUsage(TAG_HELP, oparser);
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
if(
|
2009-05-08 08:18:23 +00:00
|
|
|
#ifdef ENABLE_XML_RPC
|
2009-05-09 14:01:35 +00:00
|
|
|
!op.getAsBool(PREF_ENABLE_XML_RPC) &&
|
2009-05-08 08:18:23 +00:00
|
|
|
#endif // ENABLE_XML_RPC
|
2007-10-11 16:58:24 +00:00
|
|
|
#ifdef ENABLE_BITTORRENT
|
2009-02-07 11:00:34 +00:00
|
|
|
op.blank(PREF_TORRENT_FILE) &&
|
2007-10-11 16:58:24 +00:00
|
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
#ifdef ENABLE_METALINK
|
2009-02-07 11:00:34 +00:00
|
|
|
op.blank(PREF_METALINK_FILE) &&
|
2007-10-11 16:58:24 +00:00
|
|
|
#endif // ENABLE_METALINK
|
2009-02-07 11:00:34 +00:00
|
|
|
op.blank(PREF_INPUT_FILE)) {
|
|
|
|
if(uris.empty()) {
|
2008-02-08 15:53:45 +00:00
|
|
|
std::cerr << MSG_URI_REQUIRED << std::endl;
|
2008-09-22 09:26:57 +00:00
|
|
|
showUsage(TAG_HELP, oparser);
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-07 11:00:34 +00:00
|
|
|
if(op.getAsBool(PREF_DAEMON)) {
|
2009-06-20 16:17:00 +00:00
|
|
|
if(daemon(0, 0) < 0) {
|
2007-10-11 16:58:24 +00:00
|
|
|
perror(MSG_DAEMON_FAILED);
|
2009-06-29 08:42:58 +00:00
|
|
|
exit(downloadresultcode::UNKNOWN_ERROR);
|
2007-10-11 16:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|