mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Merge 3fc5e20a6b
into b519ce04e3
This commit is contained in:
commit
2d16e29259
7 changed files with 30 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -44,3 +44,5 @@ compile
|
|||
main.log
|
||||
main.trs
|
||||
test-suite.log
|
||||
.idea/
|
||||
build/
|
|
@ -68,9 +68,17 @@ namespace aria2 {
|
|||
|
||||
namespace {
|
||||
std::string createFilename(const std::shared_ptr<DownloadContext>& dctx,
|
||||
const std::string& suffix)
|
||||
const std::string& suffix,
|
||||
const std::string& baseDirectory)
|
||||
{
|
||||
std::string t = dctx->getBasePath();
|
||||
if (!baseDirectory.empty()) {
|
||||
t = baseDirectory;
|
||||
if (baseDirectory.back() != *File::getPathSeparators()) {
|
||||
t += File::getPathSeparators();
|
||||
}
|
||||
t += File(dctx->getBasePath()).getBasename();
|
||||
}
|
||||
t += suffix;
|
||||
return t;
|
||||
}
|
||||
|
@ -82,7 +90,8 @@ DefaultBtProgressInfoFile::DefaultBtProgressInfoFile(
|
|||
: dctx_(dctx),
|
||||
pieceStorage_(pieceStorage),
|
||||
option_(option),
|
||||
filename_(createFilename(dctx_, getSuffix()))
|
||||
filename_(createFilename(dctx_, getSuffix(),
|
||||
option->get(PREF_CONTROL_FILE_BASE_DIRECTORY)))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -90,7 +99,7 @@ DefaultBtProgressInfoFile::~DefaultBtProgressInfoFile() = default;
|
|||
|
||||
void DefaultBtProgressInfoFile::updateFilename()
|
||||
{
|
||||
filename_ = createFilename(dctx_, getSuffix());
|
||||
filename_ = createFilename(dctx_, getSuffix(), "");
|
||||
}
|
||||
|
||||
bool DefaultBtProgressInfoFile::isTorrentDownload()
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#define D_DEFAULT_BT_PROGRESS_INFO_FILE_H
|
||||
|
||||
#include "BtProgressInfoFile.h"
|
||||
#include "prefs.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
|
|
|
@ -438,7 +438,7 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
|||
{
|
||||
OptionHandler* op(new NumberOptionHandler(PREF_MAX_CONNECTION_PER_SERVER,
|
||||
TEXT_MAX_CONNECTION_PER_SERVER,
|
||||
"1", 1, 16, 'x'));
|
||||
"1", 1, 2048, 'x'));
|
||||
op->addTag(TAG_BASIC);
|
||||
op->addTag(TAG_FTP);
|
||||
op->addTag(TAG_HTTP);
|
||||
|
@ -648,6 +648,14 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
|||
op->setChangeOptionForReserved(true);
|
||||
handlers.push_back(op);
|
||||
}
|
||||
{
|
||||
OptionHandler* op(new LocalFilePathOptionHandler(
|
||||
PREF_CONTROL_FILE_BASE_DIRECTORY, CONTROL_FILE_BASE_DIRECTORY, NO_DEFAULT_VALUE,
|
||||
/* acceptStdin = */ false, 0, /* mustExist = */ false));
|
||||
op->addTag(TAG_ADVANCED);
|
||||
op->setChangeGlobalOption(true);
|
||||
handlers.push_back(op);
|
||||
}
|
||||
{
|
||||
OptionHandler* op(new LocalFilePathOptionHandler(
|
||||
PREF_SAVE_SESSION, TEXT_SAVE_SESSION, NO_DEFAULT_VALUE,
|
||||
|
|
|
@ -306,6 +306,8 @@ PrefPtr PREF_DISABLE_IPV6 = makePref("disable-ipv6");
|
|||
PrefPtr PREF_HUMAN_READABLE = makePref("human-readable");
|
||||
// value: true | false
|
||||
PrefPtr PREF_REMOVE_CONTROL_FILE = makePref("remove-control-file");
|
||||
// value: string
|
||||
PrefPtr PREF_CONTROL_FILE_BASE_DIRECTORY = makePref("control-file-base-directory");
|
||||
// value: true | false
|
||||
PrefPtr PREF_ALWAYS_RESUME = makePref("always-resume");
|
||||
// value: 1*digit
|
||||
|
|
|
@ -259,6 +259,8 @@ extern PrefPtr PREF_DISABLE_IPV6;
|
|||
extern PrefPtr PREF_HUMAN_READABLE;
|
||||
// value: true | false
|
||||
extern PrefPtr PREF_REMOVE_CONTROL_FILE;
|
||||
// value: a string
|
||||
extern PrefPtr PREF_CONTROL_FILE_BASE_DIRECTORY;
|
||||
// value: true | false
|
||||
extern PrefPtr PREF_ALWAYS_RESUME;
|
||||
// value: 1*digit
|
||||
|
|
|
@ -698,6 +698,8 @@
|
|||
" with --allow-overwrite=true, download always\n" \
|
||||
" starts from scratch. This will be useful for\n" \
|
||||
" users behind proxy server which disables resume.")
|
||||
#define CONTROL_FILE_BASE_DIRECTORY \
|
||||
_(" --control-file-base-directory=DIR The directory to store the control file.")
|
||||
#define TEXT_ALWAYS_RESUME \
|
||||
_(" --always-resume[=true|false] Always resume download. If true is given, aria2\n" \
|
||||
" always tries to resume download and if resume is\n" \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue