mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Added --bt-max-peers option to changeOption XML-RPC method. * src/XmlRpcMethod.cc * src/XmlRpcMethodImpl.cc * test/XmlRpcMethodTest.cc
667 lines
20 KiB
C++
667 lines
20 KiB
C++
/* <!-- copyright */
|
|
/*
|
|
* aria2 - The high speed download utility
|
|
*
|
|
* Copyright (C) 2009 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 "XmlRpcMethodImpl.h"
|
|
|
|
#include <cassert>
|
|
#include <algorithm>
|
|
|
|
#include "Logger.h"
|
|
#include "BDE.h"
|
|
#include "DlAbortEx.h"
|
|
#include "Option.h"
|
|
#include "OptionParser.h"
|
|
#include "OptionHandler.h"
|
|
#include "DownloadEngine.h"
|
|
#include "RequestGroup.h"
|
|
#include "download_helper.h"
|
|
#include "util.h"
|
|
#include "RequestGroupMan.h"
|
|
#include "StringFormat.h"
|
|
#include "XmlRpcRequest.h"
|
|
#include "PieceStorage.h"
|
|
#include "DownloadContext.h"
|
|
#include "DiskAdaptor.h"
|
|
#include "FileEntry.h"
|
|
#include "BtProgressInfoFile.h"
|
|
#include "prefs.h"
|
|
#include "message.h"
|
|
#include "FeatureConfig.h"
|
|
#ifdef ENABLE_BITTORRENT
|
|
# include "bittorrent_helper.h"
|
|
# include "BtRegistry.h"
|
|
# include "PeerStorage.h"
|
|
# include "Peer.h"
|
|
# include "BtRuntime.h"
|
|
# include "BtAnnounce.h"
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
namespace aria2 {
|
|
|
|
namespace xmlrpc {
|
|
|
|
static const BDE BDE_TRUE = BDE("true");
|
|
static const BDE BDE_FALSE = BDE("false");
|
|
static const BDE BDE_OK = BDE("OK");
|
|
static const BDE BDE_ACTIVE = BDE("active");
|
|
static const BDE BDE_WAITING = BDE("waiting");
|
|
static const BDE BDE_REMOVED = BDE("removed");
|
|
static const BDE BDE_ERROR = BDE("error");
|
|
static const BDE BDE_COMPLETE = BDE("complete");
|
|
|
|
static BDE createGIDResponse(int32_t gid)
|
|
{
|
|
return BDE(util::itos(gid));
|
|
}
|
|
|
|
static BDE addRequestGroup(const SharedHandle<RequestGroup>& group,
|
|
DownloadEngine* e,
|
|
bool posGiven, int pos)
|
|
{
|
|
if(posGiven) {
|
|
e->_requestGroupMan->insertReservedGroup(pos, group);
|
|
} else {
|
|
e->_requestGroupMan->addReservedGroup(group);
|
|
}
|
|
return createGIDResponse(group->getGID());
|
|
}
|
|
|
|
static bool hasDictParam(const BDE& params, size_t index)
|
|
{
|
|
return params.size() > index && params[index].isDict();
|
|
}
|
|
|
|
static void getPosParam(const BDE& params, size_t posParamIndex,
|
|
bool& posGiven, size_t& pos)
|
|
{
|
|
if(params.size() > posParamIndex && params[posParamIndex].isInteger()) {
|
|
if(params[posParamIndex].i() >= 0) {
|
|
pos = params[posParamIndex].i();
|
|
posGiven = true;
|
|
} else {
|
|
throw DL_ABORT_EX("Position must be greater than or equal to 0.");
|
|
}
|
|
} else {
|
|
posGiven = false;
|
|
}
|
|
}
|
|
|
|
BDE AddUriXmlRpcMethod::process(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
if(params.empty() || !params[0].isList() || params[0].empty()) {
|
|
throw DL_ABORT_EX("URI is not provided.");
|
|
}
|
|
std::deque<std::string> uris;
|
|
for(BDE::List::const_iterator i = params[0].listBegin();
|
|
i != params[0].listEnd(); ++i) {
|
|
if((*i).isString()) {
|
|
uris.push_back((*i).s());
|
|
}
|
|
}
|
|
|
|
SharedHandle<Option> requestOption(new Option(*e->option));
|
|
if(hasDictParam(params, 1)) {
|
|
gatherRequestOption(requestOption, params[1]);
|
|
}
|
|
size_t pos = 0;
|
|
bool posGiven = false;
|
|
getPosParam(params, 2, posGiven, pos);
|
|
|
|
std::deque<SharedHandle<RequestGroup> > result;
|
|
createRequestGroupForUri(result, requestOption, uris,
|
|
/* ignoreForceSeq = */ true,
|
|
/* ignoreNonURI = */ true);
|
|
|
|
if(!result.empty()) {
|
|
return addRequestGroup(result.front(), e, posGiven, pos);
|
|
} else {
|
|
throw DL_ABORT_EX("No URI to download.");
|
|
}
|
|
}
|
|
|
|
#ifdef ENABLE_BITTORRENT
|
|
BDE AddTorrentXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX("Torrent data is not provided.");
|
|
}
|
|
|
|
std::deque<std::string> uris;
|
|
if(params.size() > 1 && params[1].isList()) {
|
|
for(BDE::List::const_iterator i = params[1].listBegin();
|
|
i != params[1].listEnd(); ++i) {
|
|
if((*i).isString()) {
|
|
uris.push_back((*i).s());
|
|
}
|
|
}
|
|
}
|
|
SharedHandle<Option> requestOption(new Option(*e->option));
|
|
if(hasDictParam(params, 2)) {
|
|
gatherRequestOption(requestOption, params[2]);
|
|
}
|
|
size_t pos = 0;
|
|
bool posGiven = false;
|
|
getPosParam(params, 3, posGiven, pos);
|
|
|
|
std::deque<SharedHandle<RequestGroup> > result;
|
|
createRequestGroupForBitTorrent(result, requestOption,
|
|
uris,
|
|
params[0].s());
|
|
|
|
if(!result.empty()) {
|
|
return addRequestGroup(result.front(), e, posGiven, pos);
|
|
} else {
|
|
throw DL_ABORT_EX("No Torrent to download.");
|
|
}
|
|
}
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
#ifdef ENABLE_METALINK
|
|
BDE AddMetalinkXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX("Metalink data is not provided.");
|
|
}
|
|
|
|
SharedHandle<Option> requestOption(new Option(*e->option));
|
|
if(hasDictParam(params, 1)) {
|
|
gatherRequestOption(requestOption, params[1]);
|
|
};
|
|
size_t pos = 0;
|
|
bool posGiven = false;
|
|
getPosParam(params, 2, posGiven, pos);
|
|
|
|
std::deque<SharedHandle<RequestGroup> > result;
|
|
createRequestGroupForMetalink(result, requestOption, params[0].s());
|
|
if(!result.empty()) {
|
|
if(posGiven) {
|
|
e->_requestGroupMan->insertReservedGroup(pos, result);
|
|
} else {
|
|
e->_requestGroupMan->addReservedGroup(result);
|
|
}
|
|
BDE gids = BDE::list();
|
|
for(std::deque<SharedHandle<RequestGroup> >::const_iterator i =
|
|
result.begin(); i != result.end(); ++i) {
|
|
gids << BDE(util::itos((*i)->getGID()));
|
|
}
|
|
return gids;
|
|
} else {
|
|
throw DL_ABORT_EX("No files to download.");
|
|
}
|
|
}
|
|
#endif // ENABLE_METALINK
|
|
|
|
BDE RemoveXmlRpcMethod::process(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX(MSG_GID_NOT_PROVIDED);
|
|
}
|
|
|
|
int32_t gid = util::parseInt(params[0].s());
|
|
|
|
SharedHandle<RequestGroup> group = e->_requestGroupMan->findRequestGroup(gid);
|
|
|
|
if(group.isNull()) {
|
|
group = e->_requestGroupMan->findReservedGroup(gid);
|
|
if(group.isNull()) {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("Active Download not found for GID#%d", gid).str());
|
|
}
|
|
if(group->isDependencyResolved()) {
|
|
e->_requestGroupMan->removeReservedGroup(gid);
|
|
} else {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("GID#%d cannot be removed now", gid).str());
|
|
}
|
|
} else {
|
|
group->setHaltRequested(true, RequestGroup::USER_REQUEST);
|
|
}
|
|
|
|
return createGIDResponse(gid);
|
|
}
|
|
|
|
static void gatherProgressCommon
|
|
(BDE& entryDict, const SharedHandle<RequestGroup>& group)
|
|
{
|
|
entryDict["gid"] = util::itos(group->getGID());
|
|
// This is "filtered" total length if --select-file is used.
|
|
entryDict["totalLength"] = util::uitos(group->getTotalLength());
|
|
// This is "filtered" total length if --select-file is used.
|
|
entryDict["completedLength"] = util::uitos(group->getCompletedLength());
|
|
TransferStat stat = group->calculateStat();
|
|
entryDict["downloadSpeed"] = util::uitos(stat.getDownloadSpeed());
|
|
entryDict["uploadSpeed"] = util::uitos(stat.getUploadSpeed());
|
|
entryDict["uploadLength"] = util::uitos(stat.getAllTimeUploadLength());
|
|
entryDict["connections"] = util::uitos(group->getNumConnection());
|
|
SharedHandle<PieceStorage> ps = group->getPieceStorage();
|
|
if(!ps.isNull()) {
|
|
if(ps->getBitfieldLength() > 0) {
|
|
entryDict["bitfield"] = util::toHex(ps->getBitfield(),
|
|
ps->getBitfieldLength());
|
|
}
|
|
}
|
|
entryDict["pieceLength"] =
|
|
util::uitos(group->getDownloadContext()->getPieceLength());
|
|
entryDict["numPieces"] =
|
|
util::uitos(group->getDownloadContext()->getNumPieces());
|
|
}
|
|
|
|
#ifdef ENABLE_BITTORRENT
|
|
static void gatherProgressBitTorrent
|
|
(BDE& entryDict, const BDE& torrentAttrs, const BtObject& btObject)
|
|
{
|
|
const std::string& infoHash = torrentAttrs[bittorrent::INFO_HASH].s();
|
|
entryDict["infoHash"] = util::toHex(infoHash);
|
|
|
|
if(!btObject.isNull()) {
|
|
SharedHandle<PeerStorage> peerStorage = btObject._peerStorage;
|
|
assert(!peerStorage.isNull());
|
|
|
|
std::deque<SharedHandle<Peer> > peers;
|
|
peerStorage->getActivePeers(peers);
|
|
entryDict["numSeeders"] = countSeeder(peers.begin(), peers.end());
|
|
}
|
|
}
|
|
|
|
static void gatherPeer(BDE& peers, const SharedHandle<PeerStorage>& ps)
|
|
{
|
|
std::deque<SharedHandle<Peer> > activePeers;
|
|
ps->getActivePeers(activePeers);
|
|
for(std::deque<SharedHandle<Peer> >::const_iterator i =
|
|
activePeers.begin(); i != activePeers.end(); ++i) {
|
|
BDE peerEntry = BDE::dict();
|
|
peerEntry["peerId"] = util::torrentUrlencode((*i)->getPeerId(),
|
|
PEER_ID_LENGTH);
|
|
peerEntry["ip"] = (*i)->ipaddr;
|
|
peerEntry["port"] = util::uitos((*i)->port);
|
|
peerEntry["bitfield"] = util::toHex((*i)->getBitfield(),
|
|
(*i)->getBitfieldLength());
|
|
peerEntry["amChoking"] = (*i)->amChoking()?BDE_TRUE:BDE_FALSE;
|
|
peerEntry["peerChoking"] = (*i)->peerChoking()?BDE_TRUE:BDE_FALSE;
|
|
TransferStat stat = ps->getTransferStatFor(*i);
|
|
peerEntry["downloadSpeed"] = util::uitos(stat.getDownloadSpeed());
|
|
peerEntry["uploadSpeed"] = util::uitos(stat.getUploadSpeed());
|
|
peerEntry["seeder"] = (*i)->isSeeder()?BDE_TRUE:BDE_FALSE;
|
|
peers << peerEntry;
|
|
}
|
|
}
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
static void gatherProgress
|
|
(BDE& entryDict, const SharedHandle<RequestGroup>& group, DownloadEngine* e)
|
|
{
|
|
gatherProgressCommon(entryDict, group);
|
|
#ifdef ENABLE_BITTORRENT
|
|
if(group->getDownloadContext()->hasAttribute(bittorrent::BITTORRENT)) {
|
|
const BDE& torrentAttrs =
|
|
group->getDownloadContext()->getAttribute(bittorrent::BITTORRENT);
|
|
BtObject btObject = e->getBtRegistry()->get(group->getGID());
|
|
gatherProgressBitTorrent(entryDict, torrentAttrs, btObject);
|
|
}
|
|
#endif // ENABLE_BITTORRENT
|
|
}
|
|
|
|
static void gatherStoppedDownload
|
|
(BDE& entryDict, const SharedHandle<DownloadResult>& ds)
|
|
{
|
|
entryDict["gid"] = util::itos(ds->gid);
|
|
entryDict["errorCode"] = util::itos(static_cast<int>(ds->result));
|
|
if(ds->result == downloadresultcode::IN_PROGRESS) {
|
|
entryDict["status"] = BDE_REMOVED;
|
|
} else if(ds->result == downloadresultcode::FINISHED) {
|
|
entryDict["status"] = BDE_COMPLETE;
|
|
} else {
|
|
entryDict["status"] = BDE_ERROR;
|
|
}
|
|
}
|
|
|
|
static
|
|
SharedHandle<RequestGroup>
|
|
findRequestGroup(const SharedHandle<RequestGroupMan>& rgman, int32_t gid)
|
|
{
|
|
SharedHandle<RequestGroup> group = rgman->findRequestGroup(gid);
|
|
if(group.isNull()) {
|
|
group = rgman->findReservedGroup(gid);
|
|
}
|
|
return group;
|
|
}
|
|
|
|
template<typename InputIterator>
|
|
static void createFileEntry(BDE& files, InputIterator first, InputIterator last)
|
|
{
|
|
size_t index = 1;
|
|
for(; first != last; ++first, ++index) {
|
|
BDE entry = BDE::dict();
|
|
entry["index"] = util::uitos(index);
|
|
entry["path"] = (*first)->getPath();
|
|
entry["selected"] = (*first)->isRequested()?BDE_TRUE:BDE_FALSE;
|
|
entry["length"] = util::uitos((*first)->getLength());
|
|
files << entry;
|
|
}
|
|
}
|
|
|
|
BDE GetFilesXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX(MSG_GID_NOT_PROVIDED);
|
|
}
|
|
|
|
int32_t gid = util::parseInt(params[0].s());
|
|
|
|
BDE files = BDE::list();
|
|
SharedHandle<RequestGroup> group = findRequestGroup(e->_requestGroupMan, gid);
|
|
if(group.isNull()) {
|
|
SharedHandle<DownloadResult> dr =
|
|
e->_requestGroupMan->findDownloadResult(gid);
|
|
if(dr.isNull()) {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("No file data is available for GID#%d", gid).str());
|
|
} else {
|
|
createFileEntry(files, dr->fileEntries.begin(), dr->fileEntries.end());
|
|
}
|
|
} else {
|
|
createFileEntry(files,
|
|
group->getDownloadContext()->getFileEntries().begin(),
|
|
group->getDownloadContext()->getFileEntries().end());
|
|
}
|
|
return files;
|
|
}
|
|
|
|
BDE GetUrisXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX(MSG_GID_NOT_PROVIDED);
|
|
}
|
|
|
|
int32_t gid = util::parseInt(params[0].s());
|
|
|
|
SharedHandle<RequestGroup> group = findRequestGroup(e->_requestGroupMan, gid);
|
|
if(group.isNull()) {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("No URI data is available for GID#%d", gid).str());
|
|
}
|
|
BDE uriList = BDE::list();
|
|
std::deque<std::string> uris;
|
|
// TODO Current implementation just returns first FileEntry's URIs.
|
|
if(!group->getDownloadContext()->getFileEntries().empty()) {
|
|
group->getDownloadContext()->getFirstFileEntry()->getUris(uris);
|
|
for(std::deque<std::string>::const_iterator i = uris.begin();
|
|
i != uris.end(); ++i) {
|
|
BDE entry = BDE::dict();
|
|
entry["uri"] = *i;
|
|
uriList << entry;
|
|
}
|
|
}
|
|
return uriList;
|
|
}
|
|
|
|
#ifdef ENABLE_BITTORRENT
|
|
BDE GetPeersXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX(MSG_GID_NOT_PROVIDED);
|
|
}
|
|
|
|
int32_t gid = util::parseInt(params[0].s());
|
|
|
|
SharedHandle<RequestGroup> group = findRequestGroup(e->_requestGroupMan, gid);
|
|
if(group.isNull()) {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("No peer data is available for GID#%d", gid).str());
|
|
}
|
|
BDE peers = BDE::list();
|
|
BtObject btObject = e->getBtRegistry()->get(group->getGID());
|
|
if(!btObject.isNull()) {
|
|
assert(!btObject._peerStorage.isNull());
|
|
gatherPeer(peers, btObject._peerStorage);
|
|
}
|
|
return peers;
|
|
}
|
|
#endif // ENABLE_BITTORRENT
|
|
|
|
BDE TellStatusXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX(MSG_GID_NOT_PROVIDED);
|
|
}
|
|
|
|
int32_t gid = util::parseInt(params[0].s());
|
|
|
|
SharedHandle<RequestGroup> group = e->_requestGroupMan->findRequestGroup(gid);
|
|
|
|
BDE entryDict = BDE::dict();
|
|
if(group.isNull()) {
|
|
group = e->_requestGroupMan->findReservedGroup(gid);
|
|
if(group.isNull()) {
|
|
SharedHandle<DownloadResult> ds =
|
|
e->_requestGroupMan->findDownloadResult(gid);
|
|
if(ds.isNull()) {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("No such download for GID#%d", gid).str());
|
|
}
|
|
gatherStoppedDownload(entryDict, ds);
|
|
} else {
|
|
entryDict["status"] = BDE_WAITING;
|
|
gatherProgress(entryDict, group, e);
|
|
}
|
|
} else {
|
|
entryDict["status"] = BDE_ACTIVE;
|
|
gatherProgress(entryDict, group, e);
|
|
}
|
|
return entryDict;
|
|
}
|
|
|
|
BDE TellActiveXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
BDE list = BDE::list();
|
|
const std::deque<SharedHandle<RequestGroup> >& groups =
|
|
e->_requestGroupMan->getRequestGroups();
|
|
for(std::deque<SharedHandle<RequestGroup> >::const_iterator i =
|
|
groups.begin(); i != groups.end(); ++i) {
|
|
BDE entryDict = BDE::dict();
|
|
entryDict["status"] = BDE_ACTIVE;
|
|
gatherProgress(entryDict, *i, e);
|
|
list << entryDict;
|
|
}
|
|
return list;
|
|
}
|
|
|
|
BDE TellWaitingXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
|
|
if(params.size() != 2 ||
|
|
!params[0].isInteger() || !params[1].isInteger() ||
|
|
params[0].i() < 0 || params[1].i() < 0) {
|
|
throw DL_ABORT_EX("Invalid argument. Specify offset and num in integer.");
|
|
}
|
|
|
|
size_t offset = params[0].i();
|
|
size_t num = params[1].i();
|
|
|
|
BDE list = BDE::list();
|
|
const std::deque<SharedHandle<RequestGroup> >& waitings =
|
|
e->_requestGroupMan->getReservedGroups();
|
|
if(waitings.size() <= offset) {
|
|
return list;
|
|
}
|
|
size_t lastDistance;
|
|
if(waitings.size() < offset+num) {
|
|
lastDistance = waitings.size();
|
|
} else {
|
|
lastDistance = offset+num;
|
|
}
|
|
std::deque<SharedHandle<RequestGroup> >::const_iterator first =
|
|
waitings.begin();
|
|
std::advance(first, offset);
|
|
std::deque<SharedHandle<RequestGroup> >::const_iterator last =
|
|
waitings.begin();
|
|
std::advance(last, lastDistance);
|
|
for(; first != last; ++first) {
|
|
BDE entryDict = BDE::dict();
|
|
entryDict["status"] = BDE_WAITING;
|
|
gatherProgress(entryDict, *first, e);
|
|
list << entryDict;
|
|
}
|
|
return list;
|
|
}
|
|
|
|
BDE PurgeDownloadResultXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
e->_requestGroupMan->purgeDownloadResult();
|
|
return BDE_OK;
|
|
}
|
|
|
|
BDE ChangeOptionXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
if(params.empty() || !params[0].isString()) {
|
|
throw DL_ABORT_EX(MSG_GID_NOT_PROVIDED);
|
|
}
|
|
int32_t gid = util::parseInt(params[0].s());
|
|
|
|
SharedHandle<RequestGroup> group = findRequestGroup(e->_requestGroupMan, gid);
|
|
if(group.isNull()) {
|
|
throw DL_ABORT_EX
|
|
(StringFormat("Cannot change option for GID#%d", gid).str());
|
|
}
|
|
SharedHandle<Option> option(new Option());
|
|
if(params.size() > 1 && params[1].isDict()) {
|
|
gatherChangeableOption(option, params[1]);
|
|
applyChangeableOption(group->getOption().get(), option.get());
|
|
if(option->defined(PREF_MAX_DOWNLOAD_LIMIT)) {
|
|
group->setMaxDownloadSpeedLimit
|
|
(option->getAsInt(PREF_MAX_DOWNLOAD_LIMIT));
|
|
}
|
|
if(option->defined(PREF_MAX_UPLOAD_LIMIT)) {
|
|
group->setMaxUploadSpeedLimit(option->getAsInt(PREF_MAX_UPLOAD_LIMIT));
|
|
}
|
|
#ifdef ENABLE_BITTORRENT
|
|
BtObject btObject = e->getBtRegistry()->get(group->getGID());
|
|
if(!btObject.isNull()) {
|
|
if(option->defined(PREF_BT_MAX_PEERS)) {
|
|
btObject._btRuntime->setMaxPeers(option->getAsInt(PREF_BT_MAX_PEERS));
|
|
}
|
|
}
|
|
#endif // ENABLE_BITTORRENT
|
|
}
|
|
return BDE_OK;
|
|
}
|
|
|
|
BDE ChangeGlobalOptionXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
const BDE& params = req._params;
|
|
assert(params.isList());
|
|
if(params.empty() || !params[0].isDict()) {
|
|
return BDE_OK;
|
|
}
|
|
SharedHandle<Option> option(new Option());
|
|
gatherChangeableGlobalOption(option, params[0]);
|
|
applyChangeableGlobalOption(e->option, option.get());
|
|
|
|
if(option->defined(PREF_MAX_OVERALL_DOWNLOAD_LIMIT)) {
|
|
e->_requestGroupMan->setMaxOverallDownloadSpeedLimit
|
|
(option->getAsInt(PREF_MAX_OVERALL_DOWNLOAD_LIMIT));
|
|
}
|
|
if(option->defined(PREF_MAX_OVERALL_UPLOAD_LIMIT)) {
|
|
e->_requestGroupMan->setMaxOverallUploadSpeedLimit
|
|
(option->getAsInt(PREF_MAX_OVERALL_UPLOAD_LIMIT));
|
|
}
|
|
if(option->defined(PREF_MAX_CONCURRENT_DOWNLOADS)) {
|
|
e->_requestGroupMan->setMaxSimultaneousDownloads
|
|
(option->getAsInt(PREF_MAX_CONCURRENT_DOWNLOADS));
|
|
}
|
|
return BDE_OK;
|
|
}
|
|
|
|
BDE GetVersionXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
BDE result = BDE::dict();
|
|
result["version"] = std::string(PACKAGE_VERSION);
|
|
BDE featureList = BDE::list();
|
|
const FeatureMap& features = FeatureConfig::getInstance()->getFeatures();
|
|
for(FeatureMap::const_iterator i = features.begin(); i != features.end();++i){
|
|
if((*i).second) {
|
|
featureList << (*i).first;
|
|
}
|
|
}
|
|
result["enabledFeatures"] = featureList;
|
|
return result;
|
|
}
|
|
|
|
BDE NoSuchMethodXmlRpcMethod::process
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
|
{
|
|
throw DL_ABORT_EX
|
|
(StringFormat("No such method: %s", req._methodName.c_str()).str());
|
|
}
|
|
|
|
} // namespace xmlrpc
|
|
|
|
} // namespace aria2
|