mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
2009-05-15 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added changeGlobalOption command. Currently, max-overall-download-limit and max-overall-upload-limit option are available. * src/RequestGroupMan.h * src/XmlRpcMethod.cc * src/XmlRpcMethod.h * src/XmlRpcMethodFactory.cc * src/XmlRpcMethodImpl.cc * src/XmlRpcMethodImpl.h * test/XmlRpcMethodTest.cc
This commit is contained in:
parent
850458f7b1
commit
3e2ccbf359
8 changed files with 103 additions and 1 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
||||||
|
2009-05-15 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Added changeGlobalOption command. Currently,
|
||||||
|
max-overall-download-limit and max-overall-upload-limit option are
|
||||||
|
available.
|
||||||
|
* src/RequestGroupMan.h
|
||||||
|
* src/XmlRpcMethod.cc
|
||||||
|
* src/XmlRpcMethod.h
|
||||||
|
* src/XmlRpcMethodFactory.cc
|
||||||
|
* src/XmlRpcMethodImpl.cc
|
||||||
|
* src/XmlRpcMethodImpl.h
|
||||||
|
* test/XmlRpcMethodTest.cc
|
||||||
|
|
||||||
2009-05-15 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2009-05-15 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Added changeOption command. Currently, max-download-limit,
|
Added changeOption command. Currently, max-download-limit,
|
||||||
|
|
|
@ -193,10 +193,30 @@ public:
|
||||||
// _maxOverallDownloadSpeedLimit == 0. Otherwise returns false.
|
// _maxOverallDownloadSpeedLimit == 0. Otherwise returns false.
|
||||||
bool doesOverallDownloadSpeedExceed();
|
bool doesOverallDownloadSpeedExceed();
|
||||||
|
|
||||||
|
void setMaxOverallDownloadSpeedLimit(unsigned int speed)
|
||||||
|
{
|
||||||
|
_maxOverallDownloadSpeedLimit = speed;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int getMaxOverallDownloadSpeedLimit() const
|
||||||
|
{
|
||||||
|
return _maxOverallDownloadSpeedLimit;
|
||||||
|
}
|
||||||
|
|
||||||
// Returns true if current upload speed exceeds
|
// Returns true if current upload speed exceeds
|
||||||
// _maxOverallUploadSpeedLimit. Always returns false if
|
// _maxOverallUploadSpeedLimit. Always returns false if
|
||||||
// _maxOverallUploadSpeedLimit == 0. Otherwise returns false.
|
// _maxOverallUploadSpeedLimit == 0. Otherwise returns false.
|
||||||
bool doesOverallUploadSpeedExceed();
|
bool doesOverallUploadSpeedExceed();
|
||||||
|
|
||||||
|
void setMaxOverallUploadSpeedLimit(unsigned int speed)
|
||||||
|
{
|
||||||
|
_maxOverallUploadSpeedLimit = speed;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int getMaxOverallUploadSpeedLimit() const
|
||||||
|
{
|
||||||
|
return _maxOverallUploadSpeedLimit;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef SharedHandle<RequestGroupMan> RequestGroupManHandle;
|
typedef SharedHandle<RequestGroupMan> RequestGroupManHandle;
|
||||||
|
|
|
@ -115,7 +115,7 @@ const std::vector<std::string>& listChangeableOptions()
|
||||||
PREF_MAX_DOWNLOAD_LIMIT,
|
PREF_MAX_DOWNLOAD_LIMIT,
|
||||||
};
|
};
|
||||||
static std::vector<std::string> options
|
static std::vector<std::string> options
|
||||||
(&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);;
|
(&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,6 +126,25 @@ void XmlRpcMethod::gatherChangeableOption
|
||||||
option, optionsDict, _optionParser);
|
option, optionsDict, _optionParser);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const std::vector<std::string>& listChangeableGlobalOptions()
|
||||||
|
{
|
||||||
|
static const std::string OPTIONS[] = {
|
||||||
|
PREF_MAX_OVERALL_UPLOAD_LIMIT,
|
||||||
|
PREF_MAX_OVERALL_DOWNLOAD_LIMIT,
|
||||||
|
};
|
||||||
|
static std::vector<std::string> options
|
||||||
|
(&OPTIONS[0], &OPTIONS[arrayLength(OPTIONS)]);
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
void XmlRpcMethod::gatherChangeableGlobalOption
|
||||||
|
(const SharedHandle<Option>& option, const BDE& optionsDict)
|
||||||
|
{
|
||||||
|
gatherOption(listChangeableGlobalOptions().begin(),
|
||||||
|
listChangeableGlobalOptions().end(),
|
||||||
|
option, optionsDict, _optionParser);
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace xmlrpc
|
} // namespace xmlrpc
|
||||||
|
|
||||||
} // namespace aria2
|
} // namespace aria2
|
||||||
|
|
|
@ -67,6 +67,9 @@ protected:
|
||||||
|
|
||||||
void gatherChangeableOption(const SharedHandle<Option>& option,
|
void gatherChangeableOption(const SharedHandle<Option>& option,
|
||||||
const BDE& optionDict);
|
const BDE& optionDict);
|
||||||
|
|
||||||
|
void gatherChangeableGlobalOption(const SharedHandle<Option>& option,
|
||||||
|
const BDE& optionDict);
|
||||||
public:
|
public:
|
||||||
XmlRpcMethod();
|
XmlRpcMethod();
|
||||||
|
|
||||||
|
|
|
@ -64,6 +64,8 @@ XmlRpcMethodFactory::create(const std::string& methodName)
|
||||||
return SharedHandle<XmlRpcMethod>(new TellActiveXmlRpcMethod());
|
return SharedHandle<XmlRpcMethod>(new TellActiveXmlRpcMethod());
|
||||||
} else if(methodName == "aria2.changeOption") {
|
} else if(methodName == "aria2.changeOption") {
|
||||||
return SharedHandle<XmlRpcMethod>(new ChangeOptionXmlRpcMethod());
|
return SharedHandle<XmlRpcMethod>(new ChangeOptionXmlRpcMethod());
|
||||||
|
} else if(methodName == "aria2.changeGlobalOption") {
|
||||||
|
return SharedHandle<XmlRpcMethod>(new ChangeGlobalOptionXmlRpcMethod());
|
||||||
} else if(methodName == "aria2.purgeDownloadResult") {
|
} else if(methodName == "aria2.purgeDownloadResult") {
|
||||||
return SharedHandle<XmlRpcMethod>(new PurgeDownloadResultXmlRpcMethod());
|
return SharedHandle<XmlRpcMethod>(new PurgeDownloadResultXmlRpcMethod());
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -488,6 +488,27 @@ BDE ChangeOptionXmlRpcMethod::process
|
||||||
return BDE("OK");
|
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(*e->option));
|
||||||
|
gatherChangeableGlobalOption(option, params[0]);
|
||||||
|
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));
|
||||||
|
}
|
||||||
|
return BDE("OK");
|
||||||
|
}
|
||||||
|
|
||||||
BDE NoSuchMethodXmlRpcMethod::process
|
BDE NoSuchMethodXmlRpcMethod::process
|
||||||
(const XmlRpcRequest& req, DownloadEngine* e)
|
(const XmlRpcRequest& req, DownloadEngine* e)
|
||||||
{
|
{
|
||||||
|
|
|
@ -96,6 +96,11 @@ protected:
|
||||||
virtual BDE process(const XmlRpcRequest& req, DownloadEngine* e);
|
virtual BDE process(const XmlRpcRequest& req, DownloadEngine* e);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class ChangeGlobalOptionXmlRpcMethod:public XmlRpcMethod {
|
||||||
|
protected:
|
||||||
|
virtual BDE process(const XmlRpcRequest& req, DownloadEngine* e);
|
||||||
|
};
|
||||||
|
|
||||||
class NoSuchMethodXmlRpcMethod:public XmlRpcMethod {
|
class NoSuchMethodXmlRpcMethod:public XmlRpcMethod {
|
||||||
protected:
|
protected:
|
||||||
virtual BDE process(const XmlRpcRequest& req, DownloadEngine* e);
|
virtual BDE process(const XmlRpcRequest& req, DownloadEngine* e);
|
||||||
|
|
|
@ -25,6 +25,7 @@ class XmlRpcMethodTest:public CppUnit::TestFixture {
|
||||||
CPPUNIT_TEST_SUITE(XmlRpcMethodTest);
|
CPPUNIT_TEST_SUITE(XmlRpcMethodTest);
|
||||||
CPPUNIT_TEST(testAddUri);
|
CPPUNIT_TEST(testAddUri);
|
||||||
CPPUNIT_TEST(testChangeOption);
|
CPPUNIT_TEST(testChangeOption);
|
||||||
|
CPPUNIT_TEST(testChangeGlobalOption);
|
||||||
CPPUNIT_TEST(testNoSuchMethod);
|
CPPUNIT_TEST(testNoSuchMethod);
|
||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
private:
|
private:
|
||||||
|
@ -46,6 +47,7 @@ public:
|
||||||
|
|
||||||
void testAddUri();
|
void testAddUri();
|
||||||
void testChangeOption();
|
void testChangeOption();
|
||||||
|
void testChangeGlobalOption();
|
||||||
void testNoSuchMethod();
|
void testNoSuchMethod();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -88,6 +90,23 @@ void XmlRpcMethodTest::testChangeOption()
|
||||||
CPPUNIT_ASSERT_EQUAL((unsigned int)50*1024, group->getMaxUploadSpeedLimit());
|
CPPUNIT_ASSERT_EQUAL((unsigned int)50*1024, group->getMaxUploadSpeedLimit());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void XmlRpcMethodTest::testChangeGlobalOption()
|
||||||
|
{
|
||||||
|
ChangeGlobalOptionXmlRpcMethod m;
|
||||||
|
XmlRpcRequest req("aria2.changeGlobalOption", BDE::list());
|
||||||
|
BDE opt = BDE::dict();
|
||||||
|
opt[PREF_MAX_OVERALL_DOWNLOAD_LIMIT] = BDE("100K");
|
||||||
|
opt[PREF_MAX_OVERALL_UPLOAD_LIMIT] = BDE("50K");
|
||||||
|
req._params << opt;
|
||||||
|
XmlRpcResponse res = m.execute(req, _e.get());
|
||||||
|
|
||||||
|
CPPUNIT_ASSERT_EQUAL(0, res._code);
|
||||||
|
CPPUNIT_ASSERT_EQUAL((unsigned int)100*1024,
|
||||||
|
_e->_requestGroupMan->getMaxOverallDownloadSpeedLimit());
|
||||||
|
CPPUNIT_ASSERT_EQUAL((unsigned int)50*1024,
|
||||||
|
_e->_requestGroupMan->getMaxOverallUploadSpeedLimit());
|
||||||
|
}
|
||||||
|
|
||||||
void XmlRpcMethodTest::testNoSuchMethod()
|
void XmlRpcMethodTest::testNoSuchMethod()
|
||||||
{
|
{
|
||||||
NoSuchMethodXmlRpcMethod m;
|
NoSuchMethodXmlRpcMethod m;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue