This commit is contained in:
100apps 2024-07-01 15:33:06 +08:00 committed by GitHub
commit 2d16e29259
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 30 additions and 4 deletions

2
.gitignore vendored
View file

@ -44,3 +44,5 @@ compile
main.log
main.trs
test-suite.log
.idea/
build/

View file

@ -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()

View file

@ -36,6 +36,7 @@
#define D_DEFAULT_BT_PROGRESS_INFO_FILE_H
#include "BtProgressInfoFile.h"
#include "prefs.h"
#include <memory>

View file

@ -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,

View file

@ -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

View file

@ -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

View file

@ -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" \