/* */ #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" #include "array_fun.h" #include "XmlRpcMethodFactory.h" #include "XmlRpcResponse.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 { namespace { const BDE BDE_TRUE = BDE("true"); const BDE BDE_FALSE = BDE("false"); const BDE BDE_OK = BDE("OK"); const BDE BDE_ACTIVE = BDE("active"); const BDE BDE_WAITING = BDE("waiting"); const BDE BDE_REMOVED = BDE("removed"); const BDE BDE_ERROR = BDE("error"); const BDE BDE_COMPLETE = BDE("complete"); const BDE BDE_USED = BDE("used"); const std::string KEY_GID = "gid"; const std::string KEY_ERROR_CODE = "errorCode"; const std::string KEY_STATUS = "status"; const std::string KEY_TOTAL_LENGTH = "totalLength"; const std::string KEY_COMPLETED_LENGTH = "completedLength"; const std::string KEY_DOWNLOAD_SPEED = "downloadSpeed"; const std::string KEY_UPLOAD_SPEED = "uploadSpeed"; const std::string KEY_UPLOAD_LENGTH = "uploadLength"; const std::string KEY_CONNECTIONS = "connections"; const std::string KEY_BITFIELD = "bitfield"; const std::string KEY_PIECE_LENGTH = "pieceLength"; const std::string KEY_NUM_PIECES = "numPieces"; const std::string KEY_FOLLOWED_BY = "followedBy"; const std::string KEY_BELONGS_TO = "belongsTo"; const std::string KEY_INFO_HASH = "infoHash"; const std::string KEY_NUM_SEEDERS = "numSeeders"; const std::string KEY_PEER_ID = "peerId"; const std::string KEY_IP = "ip"; const std::string KEY_PORT = "port"; const std::string KEY_AM_CHOKING = "amChoking"; const std::string KEY_PEER_CHOKING = "peerChoking"; const std::string KEY_SEEDER = "seeder"; const std::string KEY_INDEX = "index"; const std::string KEY_PATH = "path"; const std::string KEY_SELECTED = "selected"; const std::string KEY_LENGTH = "length"; const std::string KEY_URI = "uri"; const std::string KEY_CURRENT_URI = "currentUri"; const std::string KEY_VERSION = "version"; const std::string KEY_ENABLED_FEATURES = "enabledFeatures"; const std::string KEY_METHOD_NAME = "methodName"; const std::string KEY_PARAMS = "params"; const std::string KEY_SESSION_ID = "sessionId"; const std::string KEY_FILES = "files"; const std::string KEY_DIR = "dir"; const std::string KEY_URIS = "uris"; const std::string KEY_BITTORRENT = "bittorrent"; const std::string KEY_INFO = "info"; const std::string KEY_NAME = "name"; const std::string KEY_ANNOUNCE_LIST = "announceList"; const std::string KEY_COMMENT = "comment"; const std::string KEY_CREATION_DATE = "creationDate"; const std::string KEY_MODE = "mode"; const std::string KEY_SERVERS = "servers"; } 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; } } template static void extractUris(OutputIterator out, const BDE& src) { for(BDE::List::const_iterator i = src.listBegin(), eoi = src.listEnd(); i != eoi; ++i) { if((*i).isString()) { out++ = (*i).s(); } } } 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::vector uris; extractUris(std::back_inserter(uris), params[0]); SharedHandle