mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +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.log
|
||||||
main.trs
|
main.trs
|
||||||
test-suite.log
|
test-suite.log
|
||||||
|
.idea/
|
||||||
|
build/
|
|
@ -68,9 +68,17 @@ namespace aria2 {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
std::string createFilename(const std::shared_ptr<DownloadContext>& dctx,
|
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();
|
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;
|
t += suffix;
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
@ -82,7 +90,8 @@ DefaultBtProgressInfoFile::DefaultBtProgressInfoFile(
|
||||||
: dctx_(dctx),
|
: dctx_(dctx),
|
||||||
pieceStorage_(pieceStorage),
|
pieceStorage_(pieceStorage),
|
||||||
option_(option),
|
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()
|
void DefaultBtProgressInfoFile::updateFilename()
|
||||||
{
|
{
|
||||||
filename_ = createFilename(dctx_, getSuffix());
|
filename_ = createFilename(dctx_, getSuffix(), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DefaultBtProgressInfoFile::isTorrentDownload()
|
bool DefaultBtProgressInfoFile::isTorrentDownload()
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
#define D_DEFAULT_BT_PROGRESS_INFO_FILE_H
|
#define D_DEFAULT_BT_PROGRESS_INFO_FILE_H
|
||||||
|
|
||||||
#include "BtProgressInfoFile.h"
|
#include "BtProgressInfoFile.h"
|
||||||
|
#include "prefs.h"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
|
|
@ -438,7 +438,7 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
||||||
{
|
{
|
||||||
OptionHandler* op(new NumberOptionHandler(PREF_MAX_CONNECTION_PER_SERVER,
|
OptionHandler* op(new NumberOptionHandler(PREF_MAX_CONNECTION_PER_SERVER,
|
||||||
TEXT_MAX_CONNECTION_PER_SERVER,
|
TEXT_MAX_CONNECTION_PER_SERVER,
|
||||||
"1", 1, 16, 'x'));
|
"1", 1, 2048, 'x'));
|
||||||
op->addTag(TAG_BASIC);
|
op->addTag(TAG_BASIC);
|
||||||
op->addTag(TAG_FTP);
|
op->addTag(TAG_FTP);
|
||||||
op->addTag(TAG_HTTP);
|
op->addTag(TAG_HTTP);
|
||||||
|
@ -648,6 +648,14 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
||||||
op->setChangeOptionForReserved(true);
|
op->setChangeOptionForReserved(true);
|
||||||
handlers.push_back(op);
|
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(
|
OptionHandler* op(new LocalFilePathOptionHandler(
|
||||||
PREF_SAVE_SESSION, TEXT_SAVE_SESSION, NO_DEFAULT_VALUE,
|
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");
|
PrefPtr PREF_HUMAN_READABLE = makePref("human-readable");
|
||||||
// value: true | false
|
// value: true | false
|
||||||
PrefPtr PREF_REMOVE_CONTROL_FILE = makePref("remove-control-file");
|
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
|
// value: true | false
|
||||||
PrefPtr PREF_ALWAYS_RESUME = makePref("always-resume");
|
PrefPtr PREF_ALWAYS_RESUME = makePref("always-resume");
|
||||||
// value: 1*digit
|
// value: 1*digit
|
||||||
|
|
|
@ -259,6 +259,8 @@ extern PrefPtr PREF_DISABLE_IPV6;
|
||||||
extern PrefPtr PREF_HUMAN_READABLE;
|
extern PrefPtr PREF_HUMAN_READABLE;
|
||||||
// value: true | false
|
// value: true | false
|
||||||
extern PrefPtr PREF_REMOVE_CONTROL_FILE;
|
extern PrefPtr PREF_REMOVE_CONTROL_FILE;
|
||||||
|
// value: a string
|
||||||
|
extern PrefPtr PREF_CONTROL_FILE_BASE_DIRECTORY;
|
||||||
// value: true | false
|
// value: true | false
|
||||||
extern PrefPtr PREF_ALWAYS_RESUME;
|
extern PrefPtr PREF_ALWAYS_RESUME;
|
||||||
// value: 1*digit
|
// value: 1*digit
|
||||||
|
|
|
@ -698,6 +698,8 @@
|
||||||
" with --allow-overwrite=true, download always\n" \
|
" with --allow-overwrite=true, download always\n" \
|
||||||
" starts from scratch. This will be useful for\n" \
|
" starts from scratch. This will be useful for\n" \
|
||||||
" users behind proxy server which disables resume.")
|
" 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 \
|
#define TEXT_ALWAYS_RESUME \
|
||||||
_(" --always-resume[=true|false] Always resume download. If true is given, aria2\n" \
|
_(" --always-resume[=true|false] Always resume download. If true is given, aria2\n" \
|
||||||
" always tries to resume download and if resume is\n" \
|
" always tries to resume download and if resume is\n" \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue