2009-05-08 07:58:50 +00:00
|
|
|
/* <!-- 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 "XmlRpcMethod.h"
|
|
|
|
#include "DownloadEngine.h"
|
|
|
|
#include "BDE.h"
|
|
|
|
#include "LogFactory.h"
|
|
|
|
#include "RecoverableException.h"
|
|
|
|
#include "message.h"
|
|
|
|
#include "OptionParser.h"
|
|
|
|
#include "OptionHandler.h"
|
|
|
|
#include "Option.h"
|
|
|
|
#include "array_fun.h"
|
|
|
|
#include "download_helper.h"
|
|
|
|
#include "XmlRpcRequest.h"
|
2009-05-14 12:59:52 +00:00
|
|
|
#include "XmlRpcResponse.h"
|
2009-05-13 15:23:01 +00:00
|
|
|
#include "prefs.h"
|
2009-10-04 09:01:11 +00:00
|
|
|
#include "StringFormat.h"
|
2009-05-08 07:58:50 +00:00
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
|
|
|
namespace xmlrpc {
|
|
|
|
|
|
|
|
XmlRpcMethod::XmlRpcMethod():
|
|
|
|
_optionParser(OptionParser::getInstance()),
|
|
|
|
_logger(LogFactory::getInstance()) {}
|
|
|
|
|
|
|
|
static BDE createErrorResponse(const Exception& e)
|
|
|
|
{
|
2009-05-09 04:55:53 +00:00
|
|
|
BDE params = BDE::dict();
|
|
|
|
params["faultCode"] = BDE(1);
|
|
|
|
params["faultString"] = BDE(e.what());
|
2009-05-08 07:58:50 +00:00
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
2009-05-14 12:59:52 +00:00
|
|
|
XmlRpcResponse XmlRpcMethod::execute
|
|
|
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
2009-05-08 07:58:50 +00:00
|
|
|
{
|
|
|
|
try {
|
2009-05-14 12:59:52 +00:00
|
|
|
return XmlRpcResponse(0, process(req, e));
|
2009-05-08 07:58:50 +00:00
|
|
|
} catch(RecoverableException& e) {
|
|
|
|
_logger->debug(EX_EXCEPTION_CAUGHT, e);
|
2009-05-14 12:59:52 +00:00
|
|
|
return XmlRpcResponse(1, createErrorResponse(e));
|
2009-05-08 07:58:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 15:23:50 +00:00
|
|
|
template<typename InputIterator>
|
|
|
|
static void gatherOption
|
|
|
|
(InputIterator first, InputIterator last,
|
2009-10-04 09:01:11 +00:00
|
|
|
const std::set<std::string>& changeableOptions,
|
|
|
|
const SharedHandle<Option>& option,
|
2009-05-14 15:23:50 +00:00
|
|
|
const SharedHandle<OptionParser>& optionParser)
|
2009-05-08 07:58:50 +00:00
|
|
|
{
|
2009-05-14 15:23:50 +00:00
|
|
|
for(; first != last; ++first) {
|
2009-10-04 09:01:11 +00:00
|
|
|
const std::string& optionName = (*first).first;
|
|
|
|
if(changeableOptions.find(optionName) == changeableOptions.end()) {
|
|
|
|
throw DL_ABORT_EX
|
|
|
|
(StringFormat
|
|
|
|
("%s cannot be changed or unknown option.", optionName.c_str()).str());
|
|
|
|
} else {
|
2009-05-14 15:23:50 +00:00
|
|
|
SharedHandle<OptionHandler> optionHandler =
|
2009-10-04 09:01:11 +00:00
|
|
|
optionParser->findByName(optionName);
|
2009-05-27 17:27:05 +00:00
|
|
|
if(optionHandler.isNull()) {
|
2009-10-04 09:01:11 +00:00
|
|
|
throw DL_ABORT_EX
|
|
|
|
(StringFormat
|
|
|
|
("We don't know how to deal with %s option",
|
|
|
|
optionName.c_str()).str());
|
2009-05-27 17:27:05 +00:00
|
|
|
}
|
2009-05-13 15:23:01 +00:00
|
|
|
// header and index-out option can take array as value
|
2009-10-04 09:01:11 +00:00
|
|
|
const BDE& value = (*first).second;
|
|
|
|
if((optionName == PREF_HEADER || optionName == PREF_INDEX_OUT) &&
|
|
|
|
value.isList()){
|
2009-05-13 15:23:01 +00:00
|
|
|
for(BDE::List::const_iterator argiter = value.listBegin();
|
|
|
|
argiter != value.listEnd(); ++argiter) {
|
|
|
|
if((*argiter).isString()) {
|
|
|
|
optionHandler->parse(*option.get(), (*argiter).s());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if(value.isString()) {
|
|
|
|
optionHandler->parse(*option.get(), value.s());
|
2009-05-08 07:58:50 +00:00
|
|
|
}
|
|
|
|
}
|
2009-05-14 15:23:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlRpcMethod::gatherRequestOption
|
|
|
|
(const SharedHandle<Option>& option, const BDE& optionsDict)
|
|
|
|
{
|
2009-10-04 09:01:11 +00:00
|
|
|
gatherOption(optionsDict.dictBegin(), optionsDict.dictEnd(),
|
|
|
|
listRequestOptions(),
|
|
|
|
option, _optionParser);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy option in the range [optNameFirst, optNameLast) from src to
|
|
|
|
// dest.
|
|
|
|
template<typename InputIterator>
|
|
|
|
static void applyOption(InputIterator optNameFirst,
|
|
|
|
InputIterator optNameLast,
|
|
|
|
Option* dest,
|
|
|
|
Option* src)
|
|
|
|
{
|
|
|
|
for(; optNameFirst != optNameLast; ++optNameFirst) {
|
|
|
|
if(src->defined(*optNameFirst)) {
|
|
|
|
dest->put(*optNameFirst, src->get(*optNameFirst));
|
|
|
|
}
|
|
|
|
}
|
2009-05-14 15:23:50 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 09:01:11 +00:00
|
|
|
const std::set<std::string>& listChangeableOptions()
|
2009-05-14 15:23:50 +00:00
|
|
|
{
|
|
|
|
static const std::string OPTIONS[] = {
|
|
|
|
PREF_MAX_UPLOAD_LIMIT,
|
|
|
|
PREF_MAX_DOWNLOAD_LIMIT,
|
|
|
|
};
|
2009-10-04 09:01:11 +00:00
|
|
|
static std::set<std::string> options
|
2009-05-14 15:44:59 +00:00
|
|
|
(&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);
|
2009-05-14 15:23:50 +00:00
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlRpcMethod::gatherChangeableOption
|
|
|
|
(const SharedHandle<Option>& option, const BDE& optionsDict)
|
|
|
|
{
|
2009-10-04 09:01:11 +00:00
|
|
|
gatherOption(optionsDict.dictBegin(), optionsDict.dictEnd(),
|
|
|
|
listChangeableOptions(),
|
|
|
|
option, _optionParser);
|
2009-05-08 07:58:50 +00:00
|
|
|
}
|
|
|
|
|
2009-10-04 09:01:11 +00:00
|
|
|
void XmlRpcMethod::applyChangeableOption(Option* dest, Option* src) const
|
|
|
|
{
|
|
|
|
applyOption(listChangeableOptions().begin(), listChangeableOptions().end(),
|
|
|
|
dest, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::set<std::string>& listChangeableGlobalOptions()
|
2009-05-14 15:44:59 +00:00
|
|
|
{
|
|
|
|
static const std::string OPTIONS[] = {
|
|
|
|
PREF_MAX_OVERALL_UPLOAD_LIMIT,
|
|
|
|
PREF_MAX_OVERALL_DOWNLOAD_LIMIT,
|
2009-05-30 14:28:18 +00:00
|
|
|
PREF_MAX_CONCURRENT_DOWNLOADS,
|
2009-05-14 15:44:59 +00:00
|
|
|
};
|
2009-10-04 09:01:11 +00:00
|
|
|
static std::set<std::string> options
|
2009-05-14 15:44:59 +00:00
|
|
|
(&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlRpcMethod::gatherChangeableGlobalOption
|
|
|
|
(const SharedHandle<Option>& option, const BDE& optionsDict)
|
|
|
|
{
|
2009-10-04 09:01:11 +00:00
|
|
|
gatherOption(optionsDict.dictBegin(), optionsDict.dictEnd(),
|
|
|
|
listChangeableGlobalOptions(),
|
|
|
|
option, _optionParser);
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlRpcMethod::applyChangeableGlobalOption(Option* dest, Option* src) const
|
|
|
|
{
|
|
|
|
applyOption(listChangeableGlobalOptions().begin(),
|
|
|
|
listChangeableGlobalOptions().end(),
|
|
|
|
dest, src);
|
2009-05-14 15:44:59 +00:00
|
|
|
}
|
|
|
|
|
2009-05-08 07:58:50 +00:00
|
|
|
} // namespace xmlrpc
|
|
|
|
|
|
|
|
} // namespace aria2
|