/* */ #include "XmlRpcMethodImpl.h" #include #include #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& 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 uris; for(BDE::List::const_iterator i = params[0].listBegin(); i != params[0].listEnd(); ++i) { if((*i).isString()) { uris.push_back((*i).s()); } } SharedHandle