2007-03-26 12:16:57 +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 "OptionHandlerFactory.h"
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "OptionHandlerImpl.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include "array_fun.h"
|
|
|
|
|
2008-04-20 00:50:22 +00:00
|
|
|
#define SH(X) SharedHandle<OptionHandler>(X)
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
2007-03-26 12:16:57 +00:00
|
|
|
|
|
|
|
OptionHandlers OptionHandlerFactory::createOptionHandlers()
|
|
|
|
{
|
|
|
|
OptionHandlers handlers;
|
2008-04-20 00:50:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
handlers.push_back(SH(new HttpProxyOptionHandler(PREF_HTTP_PROXY,
|
|
|
|
PREF_HTTP_PROXY_HOST,
|
|
|
|
PREF_HTTP_PROXY_PORT)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_HTTP_USER)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_HTTP_PASSWD)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_HTTP_PROXY_USER)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_HTTP_PROXY_PASSWD)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_HTTP_AUTH_SCHEME, V_BASIC)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_REFERER)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_RETRY_WAIT, 0, 60)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_FTP_USER)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_FTP_PASSWD)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_FTP_TYPE, V_BINARY, V_ASCII)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_FTP_VIA_HTTP_PROXY,
|
|
|
|
V_GET, V_TUNNEL)));
|
|
|
|
handlers.push_back(SH(new UnitNumberOptionHandler(PREF_MIN_SEGMENT_SIZE, 1024)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_HTTP_PROXY_METHOD,
|
|
|
|
V_GET, V_TUNNEL)));
|
|
|
|
handlers.push_back(SH(new IntegerRangeOptionHandler(PREF_LISTEN_PORT, 1024, UINT16_MAX)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_FOLLOW_TORRENT, V_TRUE, V_MEM, V_FALSE)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_NO_PREALLOCATION)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_DIRECT_FILE_MAPPING)));
|
|
|
|
handlers.push_back(SH(new IntegerRangeOptionHandler(PREF_SELECT_FILE, 1, INT32_MAX)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_SEED_TIME, 0)));
|
|
|
|
handlers.push_back(SH(new FloatNumberOptionHandler(PREF_SEED_RATIO, 0.0)));
|
|
|
|
handlers.push_back(SH(new UnitNumberOptionHandler(PREF_MAX_UPLOAD_LIMIT, 0)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_METALINK_VERSION)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_METALINK_LANGUAGE)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_METALINK_OS)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_FOLLOW_METALINK, V_TRUE, V_MEM, V_FALSE)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_METALINK_LOCATION)));
|
|
|
|
handlers.push_back(SH(new UnitNumberOptionHandler(PREF_LOWEST_SPEED_LIMIT, 0)));
|
|
|
|
handlers.push_back(SH(new UnitNumberOptionHandler(PREF_MAX_DOWNLOAD_LIMIT, 0)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ALLOW_OVERWRITE)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_CHECK_INTEGRITY)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_REALTIME_CHUNK_CHECKSUM)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_DAEMON)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_DIR)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_OUT)));
|
|
|
|
handlers.push_back(SH(new LogOptionHandler(PREF_LOG)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_SPLIT, 1, 5)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_TIMEOUT, 1, 600)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_MAX_TRIES, 0)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_FTP_PASV)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_SHOW_FILES)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_TORRENT_FILE)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_METALINK_FILE)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_METALINK_SERVERS, 1)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_FILE_ALLOCATION,
|
|
|
|
V_NONE, V_PREALLOC)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_CONTINUE)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_USER_AGENT)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_NO_NETRC)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_INPUT_FILE)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_MAX_CONCURRENT_DOWNLOADS, 1, 45)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_LOAD_COOKIES)));
|
|
|
|
handlers.push_back(SH(new DefaultOptionHandler(PREF_PEER_ID_PREFIX)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_FORCE_SEQUENTIAL)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_AUTO_FILE_RENAMING)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_PARAMETERIZED_URI)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ENABLE_HTTP_KEEP_ALIVE)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ENABLE_HTTP_PIPELINING)));
|
|
|
|
handlers.push_back(SH(new UnitNumberOptionHandler(PREF_NO_FILE_ALLOCATION_LIMIT, 0)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ENABLE_DIRECT_IO)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ALLOW_PIECE_LENGTH_CHANGE)));
|
2007-12-12 13:53:33 +00:00
|
|
|
{
|
|
|
|
const char* params[] = { V_HTTP, V_HTTPS, V_FTP, V_NONE };
|
2008-04-20 00:50:22 +00:00
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_METALINK_PREFERRED_PROTOCOL,
|
|
|
|
std::deque<std::string>(¶ms[0], ¶ms[arrayLength(params)]))));
|
2007-12-12 13:53:33 +00:00
|
|
|
}
|
2008-04-20 00:50:22 +00:00
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_METALINK_ENABLE_UNIQUE_PROTOCOL)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ENABLE_PEER_EXCHANGE)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_ENABLE_DHT)));
|
|
|
|
handlers.push_back(SH(new IntegerRangeOptionHandler(PREF_DHT_LISTEN_PORT, 1024, UINT16_MAX)));
|
|
|
|
handlers.push_back(SH(new HostPortOptionHandler(PREF_DHT_ENTRY_POINT,
|
2008-02-01 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added DHT functionality, compatible with mainline.
DHT is disabled by default. To enable it, give --enable-dht to
aria2c.
You may need to specify entry point to DHT network using
--dht-entry-point. DHT uses UDP port to listen incoming message.
Use --dht-listen-port to specify port number. Make sure that
your
firewall configuration can pass through UDP traffic to the port.
The routing table is saved in $HOME/.aria2/dht.dat.
* src/DHT*
* src/BNode.{h, cc}
* src/PeerInteractionCommand.cc: enable DHT functionality for a
particular torrent.
* src/Data.cc: Rewritten ctor.
* src/OptionHandlerFactory.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/DefaultBtInteractive.cc: Send port message if dht is
enabled.
* src/RequestGroup.cc: Initialize DHT functionality. When
download
ends, remove BtContext from DHTPeerAnnounceStorage.
* src/BtPortMessage.{h, cc}: Rewritten.
* src/message.h
* src/OptionHandlerImpl.cc
* src/option_processing.cc: Added --enable-dht,
--dht-listen-port,
--dht-entry-point.
* src/Dictionary.{h, cc} (remove): New function.
* src/prefs.h
* src/DefaultBtMessageFactory.h
* src/BtHandshakeMessage.cc
* src/ActivePeerConnectionCommand.cc
* src/SocketCore.{h, cc}: Added datagram socket support.
* src/DefaultBtMessageFactory.cc
* src/BtSetup.cc: Add BtContext to DHTPeerAnnounceStorage here.
Create DHT commands.
* src/BtMessageFactory.h
* src/PeerMessageUtil.{h, cc}
2008-02-01 17:36:33 +00:00
|
|
|
PREF_DHT_ENTRY_POINT_HOST,
|
2008-04-20 00:50:22 +00:00
|
|
|
PREF_DHT_ENTRY_POINT_PORT)));
|
|
|
|
handlers.push_back(SH(new NumberOptionHandler(PREF_STOP, 0, INT32_MAX)));
|
|
|
|
handlers.push_back(SH(new ParameterOptionHandler(PREF_BT_MIN_CRYPTO_LEVEL, V_PLAIN, V_ARC4)));
|
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_BT_REQUIRE_CRYPTO)));
|
2008-04-20 06:30:44 +00:00
|
|
|
handlers.push_back(SH(new CumulativeOptionHandler(PREF_HEADER, "\n")));
|
2008-04-22 10:29:48 +00:00
|
|
|
handlers.push_back(SH(new BooleanOptionHandler(PREF_QUIET)));
|
2007-03-26 12:16:57 +00:00
|
|
|
return handlers;
|
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|