123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- /* <!-- 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 --> */
- #ifndef D_RPC_METHOD_IMPL_H
- #define D_RPC_METHOD_IMPL_H
- #include "RpcMethod.h"
- #include <cassert>
- #include <deque>
- #include <algorithm>
- #include "RpcRequest.h"
- #include "ValueBase.h"
- #include "TorrentAttribute.h"
- #include "DlAbortEx.h"
- #include "fmt.h"
- #include "IndexedList.h"
- #include "GroupId.h"
- #include "RequestGroupMan.h"
- namespace aria2 {
- struct DownloadResult;
- class RequestGroup;
- namespace rpc {
- template<typename T>
- const T* checkParam(const RpcRequest& req, size_t index, bool required = false)
- {
- const T* p = 0;
- if(req.params->size() > index) {
- if((p = downcast<T>(req.params->get(index))) == 0) {
- throw DL_ABORT_EX(fmt("The parameter at %lu has wrong type.",
- static_cast<unsigned long>(index)));
- }
- } else if(required) {
- throw DL_ABORT_EX(fmt("The parameter at %lu is required but missing.",
- static_cast<unsigned long>(index)));
- }
- return p;
- }
- template<typename T>
- const T* checkRequiredParam(const RpcRequest& req, size_t index)
- {
- return checkParam<T>(req, index, true);
- }
- struct IntegerGE {
- IntegerGE(int32_t min):min(min) {}
- bool operator()(const Integer* param, std::string* error) const
- {
- if(min <= param->i()) {
- return true;
- } else {
- if(error) {
- *error = fmt("the value must be greater than or equal to %d.", min);
- }
- return false;
- }
- }
- int32_t min;
- };
- template<typename Validator>
- const Integer* checkRequiredInteger(const RpcRequest& req, size_t index,
- Validator validator)
- {
- const Integer* param = checkRequiredParam<Integer>(req, index);
- std::string error;
- if(!validator(param, &error)) {
- throw DL_ABORT_EX(fmt("The integer parameter at %lu has invalid value: %s",
- static_cast<unsigned long>(index), error.c_str()));
- }
- return param;
- }
- template<typename OutputIterator>
- void toStringList(OutputIterator out, const List* src)
- {
- if(!src) {
- return;
- }
- for(auto & elem : *src) {
- const String* s = downcast<String>(elem);
- if(s) {
- *out++ = s->s();
- }
- }
- }
- class AddUriRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.addUri";
- }
- };
- class RemoveRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.remove";
- }
- };
- class ForceRemoveRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.forceRemove";
- }
- };
- class PauseRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.pause";
- }
- };
- class ForcePauseRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.forcePause";
- }
- };
- class PauseAllRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.pauseAll";
- }
- };
- class ForcePauseAllRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.forcePauseAll";
- }
- };
- class UnpauseRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.unpause";
- }
- };
- class UnpauseAllRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.unpauseAll";
- }
- };
- #ifdef ENABLE_BITTORRENT
- class AddTorrentRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.addTorrent";
- }
- };
- #endif // ENABLE_BITTORRENT
- #ifdef ENABLE_METALINK
- class AddMetalinkRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.addMetalink";
- }
- };
- #endif // ENABLE_METALINK
- class PurgeDownloadResultRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.purgeDownloadResult";
- }
- };
- class RemoveDownloadResultRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.removeDownloadResult";
- }
- };
- class GetUrisRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getUris";
- }
- };
- class GetFilesRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getFiles";
- }
- };
- #ifdef ENABLE_BITTORRENT
- class GetPeersRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getPeers";
- }
- };
- #endif // ENABLE_BITTORRENT
- class GetServersRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getServers";
- }
- };
- class TellStatusRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.tellStatus";
- }
- };
- class TellActiveRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.tellActive";
- }
- };
- template<typename T>
- class AbstractPaginationRpcMethod:public RpcMethod {
- private:
- template<typename InputIterator>
- std::pair<InputIterator, InputIterator>
- getPaginationRange
- (int64_t offset, int64_t num, InputIterator first, InputIterator last)
- {
- if(num <= 0) {
- return std::make_pair(last, last);
- }
- int64_t size = std::distance(first, last);
- if(offset < 0) {
- int64_t tempoffset = offset+size;
- if(tempoffset < 0) {
- return std::make_pair(last, last);
- }
- offset = tempoffset-(num-1);
- if(offset < 0) {
- offset = 0;
- num = tempoffset+1;
- }
- } else if(size <= offset) {
- return std::make_pair(last, last);
- }
- int64_t lastDistance;
- if(size < offset+num) {
- lastDistance = size;
- } else {
- lastDistance = offset+num;
- }
- last = first;
- std::advance(first, offset);
- std::advance(last, lastDistance);
- return std::make_pair(first, last);
- }
- protected:
- typedef IndexedList<a2_gid_t, std::shared_ptr<T> > ItemListType;
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE
- {
- const Integer* offsetParam = checkRequiredParam<Integer>(req, 0);
- const Integer* numParam = checkRequiredInteger(req, 1, IntegerGE(0));
- const List* keysParam = checkParam<List>(req, 2);
- int64_t offset = offsetParam->i();
- int64_t num = numParam->i();
- std::vector<std::string> keys;
- toStringList(std::back_inserter(keys), keysParam);
- const ItemListType& items = getItems(e);
- auto range = getPaginationRange(offset, num,
- std::begin(items), std::end(items));
- auto list = List::g();
- for(; range.first != range.second; ++range.first) {
- auto entryDict = Dict::g();
- createEntry(entryDict.get(), *range.first, e, keys);
- list->append(std::move(entryDict));
- }
- if(offset < 0) {
- std::reverse(list->begin(), list->end());
- }
- return std::move(list);
- }
- virtual const ItemListType& getItems(DownloadEngine* e) const = 0;
- virtual void createEntry
- (Dict* entryDict,
- const std::shared_ptr<T>& item,
- DownloadEngine* e,
- const std::vector<std::string>& keys) const = 0;
- };
- class TellWaitingRpcMethod:
- public AbstractPaginationRpcMethod<RequestGroup> {
- protected:
- virtual const RequestGroupList& getItems(DownloadEngine* e) const
- CXX11_OVERRIDE;
- virtual void createEntry
- (Dict* entryDict,
- const std::shared_ptr<RequestGroup>& item,
- DownloadEngine* e,
- const std::vector<std::string>& keys) const CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.tellWaiting";
- }
- };
- class TellStoppedRpcMethod:
- public AbstractPaginationRpcMethod<DownloadResult> {
- protected:
- virtual const DownloadResultList& getItems(DownloadEngine* e) const
- CXX11_OVERRIDE;
- virtual void createEntry
- (Dict* entryDict,
- const std::shared_ptr<DownloadResult>& item,
- DownloadEngine* e,
- const std::vector<std::string>& keys) const CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.tellStopped";
- }
- };
- class ChangeOptionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.changeOption";
- }
- };
- class ChangeGlobalOptionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.changeGlobalOption";
- }
- };
- class GetVersionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getVersion";
- }
- };
- class GetOptionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getOption";
- }
- };
- class GetGlobalOptionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getGlobalOption";
- }
- };
- class ChangePositionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.changePosition";
- }
- };
- class ChangeUriRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.changeUri";
- }
- };
- class GetSessionInfoRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getSessionInfo";
- }
- };
- class ShutdownRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.shutdown";
- }
- };
- class GetGlobalStatRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.getGlobalStat";
- }
- };
- class ForceShutdownRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.forceShutdown";
- }
- };
- class SaveSessionRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- static const char* getMethodName()
- {
- return "aria2.saveSession";
- }
- };
- class SystemMulticallRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- public:
- virtual void authorize(RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE
- {
- // Batch calls (e.g., system.multicall) authorizes only nested
- // methods. This is because XML-RPC system.multicall only accpets
- // methods array and there is no room for us to insert token
- // parameter.
- }
- static const char* getMethodName()
- {
- return "system.multicall";
- }
- };
- class NoSuchMethodRpcMethod:public RpcMethod {
- protected:
- virtual std::unique_ptr<ValueBase> process
- (const RpcRequest& req, DownloadEngine* e) CXX11_OVERRIDE;
- };
- // Helper function to store data to entryDict from ds. This function
- // is used by tellStatus method.
- void gatherStoppedDownload
- (Dict* entryDict, const std::shared_ptr<DownloadResult>& ds,
- const std::vector<std::string>& keys);
- // Helper function to store data to entryDict from group. This
- // function is used by tellStatus/tellActive/tellWaiting method
- void gatherProgressCommon
- (Dict* entryDict, const std::shared_ptr<RequestGroup>& group,
- const std::vector<std::string>& keys);
- #ifdef ENABLE_BITTORRENT
- // Helper function to store BitTorrent metadata from torrentAttrs.
- void gatherBitTorrentMetadata(Dict* btDict, TorrentAttribute* torrentAttrs);
- #endif // ENABLE_BITTORRENT
- } // namespace rpc
- bool pauseRequestGroup
- (const std::shared_ptr<RequestGroup>& group, bool reserved, bool forcePause);
- void changeOption
- (const std::shared_ptr<RequestGroup>& group,
- const Option& option,
- DownloadEngine* e);
- void changeGlobalOption(const Option& option, DownloadEngine* e);
- } // namespace aria2
- #endif // D_RPC_METHOD_IMPL_H
|