download_helper.cc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "download_helper.h"
  36. #include <iostream>
  37. #include <fstream>
  38. #include <algorithm>
  39. #include <sstream>
  40. #include "RequestGroup.h"
  41. #include "Option.h"
  42. #include "prefs.h"
  43. #include "Metalink2RequestGroup.h"
  44. #include "ProtocolDetector.h"
  45. #include "ParameterizedStringParser.h"
  46. #include "PStringBuildVisitor.h"
  47. #include "UriListParser.h"
  48. #include "DownloadContext.h"
  49. #include "RecoverableException.h"
  50. #include "DlAbortEx.h"
  51. #include "message.h"
  52. #include "fmt.h"
  53. #include "FileEntry.h"
  54. #include "LogFactory.h"
  55. #include "File.h"
  56. #include "util.h"
  57. #include "array_fun.h"
  58. #include "OptionHandler.h"
  59. #include "ByteArrayDiskWriter.h"
  60. #include "a2functional.h"
  61. #include "ByteArrayDiskWriterFactory.h"
  62. #include "MetadataInfo.h"
  63. #ifdef ENABLE_BITTORRENT
  64. # include "bittorrent_helper.h"
  65. # include "BtConstants.h"
  66. # include "UTMetadataPostDownloadHandler.h"
  67. #endif // ENABLE_BITTORRENT
  68. namespace aria2 {
  69. const std::set<std::string>& listRequestOptions()
  70. {
  71. static const std::string REQUEST_OPTIONS[] = {
  72. PREF_DIR,
  73. PREF_CHECK_INTEGRITY,
  74. PREF_CONTINUE,
  75. PREF_ALL_PROXY,
  76. PREF_ALL_PROXY_USER,
  77. PREF_ALL_PROXY_PASSWD,
  78. PREF_CONNECT_TIMEOUT,
  79. PREF_DRY_RUN,
  80. PREF_LOWEST_SPEED_LIMIT,
  81. PREF_MAX_FILE_NOT_FOUND,
  82. PREF_MAX_TRIES,
  83. PREF_NO_PROXY,
  84. PREF_OUT,
  85. PREF_PROXY_METHOD,
  86. PREF_REMOTE_TIME,
  87. PREF_SPLIT,
  88. PREF_TIMEOUT,
  89. PREF_HTTP_AUTH_CHALLENGE,
  90. PREF_HTTP_NO_CACHE,
  91. PREF_HTTP_USER,
  92. PREF_HTTP_PASSWD,
  93. PREF_HTTP_PROXY,
  94. PREF_HTTP_PROXY_USER,
  95. PREF_HTTP_PROXY_PASSWD,
  96. PREF_HTTPS_PROXY,
  97. PREF_HTTPS_PROXY_USER,
  98. PREF_HTTPS_PROXY_PASSWD,
  99. PREF_REFERER,
  100. PREF_ENABLE_HTTP_KEEP_ALIVE,
  101. PREF_ENABLE_HTTP_PIPELINING,
  102. PREF_HEADER,
  103. PREF_USE_HEAD,
  104. PREF_USER_AGENT,
  105. PREF_FTP_USER,
  106. PREF_FTP_PASSWD,
  107. PREF_FTP_PASV,
  108. PREF_FTP_PROXY,
  109. PREF_FTP_PROXY_USER,
  110. PREF_FTP_PROXY_PASSWD,
  111. PREF_FTP_TYPE,
  112. PREF_FTP_REUSE_CONNECTION,
  113. PREF_NO_NETRC,
  114. PREF_REUSE_URI,
  115. PREF_SELECT_FILE,
  116. PREF_BT_ENABLE_LPD,
  117. PREF_BT_EXTERNAL_IP,
  118. PREF_BT_HASH_CHECK_SEED,
  119. PREF_BT_MAX_OPEN_FILES,
  120. PREF_BT_MAX_PEERS,
  121. PREF_BT_METADATA_ONLY,
  122. PREF_BT_MIN_CRYPTO_LEVEL,
  123. PREF_BT_PRIORITIZE_PIECE,
  124. PREF_BT_REQUIRE_CRYPTO,
  125. PREF_BT_REQUEST_PEER_SPEED_LIMIT,
  126. PREF_BT_SAVE_METADATA,
  127. PREF_BT_SEED_UNVERIFIED,
  128. PREF_BT_STOP_TIMEOUT,
  129. PREF_BT_TRACKER_INTERVAL,
  130. PREF_BT_TRACKER_TIMEOUT,
  131. PREF_BT_TRACKER_CONNECT_TIMEOUT,
  132. PREF_ENABLE_PEER_EXCHANGE,
  133. PREF_FOLLOW_TORRENT,
  134. PREF_INDEX_OUT,
  135. PREF_MAX_UPLOAD_LIMIT,
  136. PREF_SEED_RATIO,
  137. PREF_SEED_TIME,
  138. PREF_FOLLOW_METALINK,
  139. PREF_METALINK_SERVERS,
  140. PREF_METALINK_LANGUAGE,
  141. PREF_METALINK_LOCATION,
  142. PREF_METALINK_OS,
  143. PREF_METALINK_VERSION,
  144. PREF_METALINK_PREFERRED_PROTOCOL,
  145. PREF_METALINK_ENABLE_UNIQUE_PROTOCOL,
  146. PREF_ALLOW_OVERWRITE,
  147. PREF_ALLOW_PIECE_LENGTH_CHANGE,
  148. PREF_ASYNC_DNS,
  149. PREF_AUTO_FILE_RENAMING,
  150. PREF_FILE_ALLOCATION,
  151. PREF_MAX_DOWNLOAD_LIMIT,
  152. PREF_NO_FILE_ALLOCATION_LIMIT,
  153. PREF_PARAMETERIZED_URI,
  154. PREF_REALTIME_CHUNK_CHECKSUM,
  155. PREF_REMOVE_CONTROL_FILE,
  156. PREF_ALWAYS_RESUME,
  157. PREF_MAX_RESUME_FAILURE_TRIES,
  158. PREF_HTTP_ACCEPT_GZIP,
  159. PREF_MAX_CONNECTION_PER_SERVER,
  160. PREF_MIN_SPLIT_SIZE,
  161. PREF_CONDITIONAL_GET,
  162. PREF_ENABLE_ASYNC_DNS6,
  163. PREF_BT_TRACKER,
  164. PREF_BT_EXCLUDE_TRACKER
  165. };
  166. static std::set<std::string> requestOptions
  167. (vbegin(REQUEST_OPTIONS), vend(REQUEST_OPTIONS));
  168. return requestOptions;
  169. }
  170. namespace {
  171. void unfoldURI
  172. (std::vector<std::string>& result, const std::vector<std::string>& args)
  173. {
  174. ParameterizedStringParser p;
  175. PStringBuildVisitor v;
  176. for(std::vector<std::string>::const_iterator itr = args.begin(),
  177. eoi = args.end(); itr != eoi; ++itr) {
  178. v.reset();
  179. p.parse(*itr)->accept(v);
  180. result.insert(result.end(), v.getURIs().begin(), v.getURIs().end());
  181. }
  182. }
  183. } // namespace
  184. namespace {
  185. template<typename InputIterator>
  186. void splitURI(std::vector<std::string>& result,
  187. InputIterator begin,
  188. InputIterator end,
  189. size_t numSplit,
  190. size_t maxIter)
  191. {
  192. size_t numURIs = std::distance(begin, end);
  193. if(numURIs >= numSplit) {
  194. result.insert(result.end(), begin, end);
  195. } else if(numURIs > 0) {
  196. size_t num = std::min(numSplit/numURIs, maxIter);
  197. for(size_t i = 0; i < num; ++i) {
  198. result.insert(result.end(), begin, end);
  199. }
  200. if(num < maxIter) {
  201. result.insert(result.end(), begin, begin+(numSplit%numURIs));
  202. }
  203. }
  204. }
  205. } // namespace
  206. namespace {
  207. SharedHandle<RequestGroup> createRequestGroup
  208. (const SharedHandle<Option>& option, const std::vector<std::string>& uris,
  209. bool useOutOption = false)
  210. {
  211. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  212. SharedHandle<DownloadContext> dctx
  213. (new DownloadContext
  214. (option->getAsInt(PREF_SEGMENT_SIZE),
  215. 0,
  216. useOutOption&&!option->blank(PREF_OUT)?
  217. util::applyDir(option->get(PREF_DIR), option->get(PREF_OUT)):A2STR::NIL));
  218. dctx->setDir(option->get(PREF_DIR));
  219. dctx->getFirstFileEntry()->setUris(uris);
  220. dctx->getFirstFileEntry()->setMaxConnectionPerServer
  221. (option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER));
  222. rg->setDownloadContext(dctx);
  223. return rg;
  224. }
  225. } // namespace
  226. #if defined ENABLE_BITTORRENT || ENABLE_METALINK
  227. namespace {
  228. SharedHandle<MetadataInfo> createMetadataInfo(const std::string& uri)
  229. {
  230. return SharedHandle<MetadataInfo>(new MetadataInfo(uri));
  231. }
  232. } // namespace
  233. namespace {
  234. SharedHandle<MetadataInfo> createMetadataInfoDataOnly()
  235. {
  236. return SharedHandle<MetadataInfo>(new MetadataInfo());
  237. }
  238. } // namespace
  239. #endif // ENABLE_BITTORRENT || ENABLE_METALINK
  240. #ifdef ENABLE_BITTORRENT
  241. namespace {
  242. SharedHandle<RequestGroup>
  243. createBtRequestGroup(const std::string& torrentFilePath,
  244. const SharedHandle<Option>& option,
  245. const std::vector<std::string>& auxUris,
  246. const std::string& torrentData = "",
  247. bool adjustAnnounceUri = true)
  248. {
  249. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  250. SharedHandle<DownloadContext> dctx(new DownloadContext());
  251. dctx->setDir(option->get(PREF_DIR));
  252. if(torrentData.empty()) {
  253. bittorrent::load(torrentFilePath, dctx, auxUris);// may throw exception
  254. rg->setMetadataInfo(createMetadataInfo(torrentFilePath));
  255. } else {
  256. bittorrent::loadFromMemory(torrentData, dctx, auxUris, "default"); // may
  257. // throw
  258. // exception
  259. rg->setMetadataInfo(createMetadataInfoDataOnly());
  260. }
  261. if(adjustAnnounceUri) {
  262. bittorrent::adjustAnnounceUri(bittorrent::getTorrentAttrs(dctx), option);
  263. }
  264. dctx->setFileFilter(util::parseIntRange(option->get(PREF_SELECT_FILE)));
  265. std::istringstream indexOutIn(option->get(PREF_INDEX_OUT));
  266. std::map<size_t, std::string> indexPathMap =
  267. util::createIndexPathMap(indexOutIn);
  268. for(std::map<size_t, std::string>::const_iterator i = indexPathMap.begin(),
  269. eoi = indexPathMap.end(); i != eoi; ++i) {
  270. dctx->setFilePathWithIndex
  271. ((*i).first, util::applyDir(dctx->getDir(), (*i).second));
  272. }
  273. rg->setDownloadContext(dctx);
  274. // Remove "metalink" from Accept Type list to avoid server from
  275. // responding Metalink file for web-seeding URIs.
  276. util::removeMetalinkContentTypes(rg);
  277. return rg;
  278. }
  279. } // namespace
  280. namespace {
  281. SharedHandle<RequestGroup>
  282. createBtMagnetRequestGroup(const std::string& magnetLink,
  283. const SharedHandle<Option>& option,
  284. const std::vector<std::string>& auxUris)
  285. {
  286. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  287. SharedHandle<DownloadContext> dctx
  288. (new DownloadContext(METADATA_PIECE_SIZE, 0,
  289. A2STR::NIL));
  290. dctx->setDir(A2STR::NIL);
  291. // We only know info hash. Total Length is unknown at this moment.
  292. dctx->markTotalLengthIsUnknown();
  293. rg->setFileAllocationEnabled(false);
  294. rg->setPreLocalFileCheckEnabled(false);
  295. bittorrent::loadMagnet(magnetLink, dctx);
  296. SharedHandle<TorrentAttribute> torrentAttrs =
  297. bittorrent::getTorrentAttrs(dctx);
  298. bittorrent::adjustAnnounceUri(torrentAttrs, rg->getOption());
  299. dctx->getFirstFileEntry()->setPath(torrentAttrs->name);
  300. rg->setDownloadContext(dctx);
  301. rg->clearPostDownloadHandler();
  302. SharedHandle<UTMetadataPostDownloadHandler> utMetadataPostHandler
  303. (new UTMetadataPostDownloadHandler());
  304. rg->addPostDownloadHandler(utMetadataPostHandler);
  305. rg->setDiskWriterFactory
  306. (SharedHandle<DiskWriterFactory>(new ByteArrayDiskWriterFactory()));
  307. rg->setMetadataInfo(createMetadataInfo(magnetLink));
  308. return rg;
  309. }
  310. } // namespace
  311. void createRequestGroupForBitTorrent
  312. (std::vector<SharedHandle<RequestGroup> >& result,
  313. const SharedHandle<Option>& option,
  314. const std::vector<std::string>& uris,
  315. const std::string& torrentData,
  316. bool adjustAnnounceUri)
  317. {
  318. std::vector<std::string> nargs;
  319. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  320. unfoldURI(nargs, uris);
  321. } else {
  322. nargs = uris;
  323. }
  324. // we ignore -Z option here
  325. size_t numSplit = option->getAsInt(PREF_SPLIT);
  326. SharedHandle<RequestGroup> rg =
  327. createBtRequestGroup(option->get(PREF_TORRENT_FILE), option, nargs,
  328. torrentData, adjustAnnounceUri);
  329. rg->setNumConcurrentCommand(numSplit);
  330. result.push_back(rg);
  331. }
  332. #endif // ENABLE_BITTORRENT
  333. #ifdef ENABLE_METALINK
  334. void createRequestGroupForMetalink
  335. (std::vector<SharedHandle<RequestGroup> >& result,
  336. const SharedHandle<Option>& option,
  337. const std::string& metalinkData)
  338. {
  339. if(metalinkData.empty()) {
  340. Metalink2RequestGroup().generate(result,
  341. option->get(PREF_METALINK_FILE),
  342. option);
  343. } else {
  344. SharedHandle<ByteArrayDiskWriter> dw(new ByteArrayDiskWriter());
  345. dw->setString(metalinkData);
  346. Metalink2RequestGroup().generate(result, dw, option);
  347. }
  348. }
  349. #endif // ENABLE_METALINK
  350. namespace {
  351. class AccRequestGroup {
  352. private:
  353. std::vector<SharedHandle<RequestGroup> >& requestGroups_;
  354. ProtocolDetector detector_;
  355. SharedHandle<Option> option_;
  356. bool ignoreLocalPath_;
  357. public:
  358. AccRequestGroup(std::vector<SharedHandle<RequestGroup> >& requestGroups,
  359. const SharedHandle<Option>& option,
  360. bool ignoreLocalPath = false):
  361. requestGroups_(requestGroups), option_(option),
  362. ignoreLocalPath_(ignoreLocalPath) {}
  363. void
  364. operator()(const std::string& uri)
  365. {
  366. if(detector_.isStreamProtocol(uri)) {
  367. std::vector<std::string> streamURIs;
  368. size_t numIter = option_->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  369. size_t numSplit = option_->getAsInt(PREF_SPLIT);
  370. size_t num = std::min(numIter, numSplit);
  371. for(size_t i = 0; i < num; ++i) {
  372. streamURIs.push_back(uri);
  373. }
  374. SharedHandle<RequestGroup> rg = createRequestGroup(option_, streamURIs);
  375. rg->setNumConcurrentCommand(numSplit);
  376. requestGroups_.push_back(rg);
  377. }
  378. #ifdef ENABLE_BITTORRENT
  379. else if(detector_.guessTorrentMagnet(uri)) {
  380. try {
  381. SharedHandle<RequestGroup> group =
  382. createBtMagnetRequestGroup(uri, option_, std::vector<std::string>());
  383. requestGroups_.push_back(group);
  384. } catch(RecoverableException& e) {
  385. // error occurred while parsing torrent file.
  386. // We simply ignore it.
  387. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  388. }
  389. } else if(!ignoreLocalPath_ && detector_.guessTorrentFile(uri)) {
  390. try {
  391. requestGroups_.push_back
  392. (createBtRequestGroup(uri, option_, std::vector<std::string>()));
  393. } catch(RecoverableException& e) {
  394. // error occurred while parsing torrent file.
  395. // We simply ignore it.
  396. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  397. }
  398. }
  399. #endif // ENABLE_BITTORRENT
  400. #ifdef ENABLE_METALINK
  401. else if(!ignoreLocalPath_ && detector_.guessMetalinkFile(uri)) {
  402. try {
  403. Metalink2RequestGroup().generate(requestGroups_, uri, option_);
  404. } catch(RecoverableException& e) {
  405. // error occurred while parsing metalink file.
  406. // We simply ignore it.
  407. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  408. }
  409. }
  410. #endif // ENABLE_METALINK
  411. else {
  412. A2_LOG_ERROR(fmt(MSG_UNRECOGNIZED_URI, (uri).c_str()));
  413. }
  414. }
  415. };
  416. } // namespace
  417. namespace {
  418. class StreamProtocolFilter {
  419. private:
  420. ProtocolDetector detector_;
  421. public:
  422. bool operator()(const std::string& uri) {
  423. return detector_.isStreamProtocol(uri);
  424. }
  425. };
  426. } // namespace
  427. void createRequestGroupForUri
  428. (std::vector<SharedHandle<RequestGroup> >& result,
  429. const SharedHandle<Option>& option,
  430. const std::vector<std::string>& uris,
  431. bool ignoreForceSequential,
  432. bool ignoreLocalPath)
  433. {
  434. std::vector<std::string> nargs;
  435. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  436. unfoldURI(nargs, uris);
  437. } else {
  438. nargs = uris;
  439. }
  440. if(!ignoreForceSequential && option->get(PREF_FORCE_SEQUENTIAL) == A2_V_TRUE) {
  441. std::for_each(nargs.begin(), nargs.end(),
  442. AccRequestGroup(result, option, ignoreLocalPath));
  443. } else {
  444. std::vector<std::string>::iterator strmProtoEnd =
  445. std::stable_partition(nargs.begin(), nargs.end(), StreamProtocolFilter());
  446. // let's process http/ftp protocols first.
  447. if(nargs.begin() != strmProtoEnd) {
  448. size_t numIter = option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  449. size_t numSplit = option->getAsInt(PREF_SPLIT);
  450. std::vector<std::string> streamURIs;
  451. splitURI(streamURIs, nargs.begin(), strmProtoEnd, numSplit, numIter);
  452. SharedHandle<RequestGroup> rg =
  453. createRequestGroup(option, streamURIs, true);
  454. rg->setNumConcurrentCommand(numSplit);
  455. result.push_back(rg);
  456. }
  457. // process remaining URIs(local metalink, BitTorrent files)
  458. std::for_each(strmProtoEnd, nargs.end(),
  459. AccRequestGroup(result, option, ignoreLocalPath));
  460. }
  461. }
  462. namespace {
  463. void createRequestGroupForUriList
  464. (std::vector<SharedHandle<RequestGroup> >& result,
  465. const SharedHandle<Option>& option,
  466. std::istream& in)
  467. {
  468. UriListParser p(in);
  469. while(p.hasNext()) {
  470. std::vector<std::string> uris;
  471. SharedHandle<Option> tempOption(new Option());
  472. p.parseNext(uris, *tempOption.get());
  473. if(uris.empty()) {
  474. continue;
  475. }
  476. SharedHandle<Option> requestOption(new Option(*option.get()));
  477. for(std::set<std::string>::const_iterator i =
  478. listRequestOptions().begin(), eoi = listRequestOptions().end();
  479. i != eoi; ++i) {
  480. if(tempOption->defined(*i)) {
  481. requestOption->put(*i, tempOption->get(*i));
  482. }
  483. }
  484. createRequestGroupForUri(result, requestOption, uris);
  485. }
  486. }
  487. } // namespace
  488. void createRequestGroupForUriList
  489. (std::vector<SharedHandle<RequestGroup> >& result,
  490. const SharedHandle<Option>& option)
  491. {
  492. if(option->get(PREF_INPUT_FILE) == "-") {
  493. createRequestGroupForUriList(result, option, std::cin);
  494. } else {
  495. if(!File(option->get(PREF_INPUT_FILE)).isFile()) {
  496. throw DL_ABORT_EX
  497. (fmt(EX_FILE_OPEN, option->get(PREF_INPUT_FILE).c_str(),
  498. "No such file"));
  499. }
  500. std::ifstream f(option->get(PREF_INPUT_FILE).c_str(), std::ios::binary);
  501. createRequestGroupForUriList(result, option, f);
  502. }
  503. }
  504. SharedHandle<MetadataInfo>
  505. createMetadataInfoFromFirstFileEntry(const SharedHandle<DownloadContext>& dctx)
  506. {
  507. if(dctx->getFileEntries().empty()) {
  508. return SharedHandle<MetadataInfo>();
  509. } else {
  510. std::vector<std::string> uris;
  511. dctx->getFileEntries()[0]->getUris(uris);
  512. if(uris.empty()) {
  513. return SharedHandle<MetadataInfo>();
  514. }
  515. return SharedHandle<MetadataInfo>(new MetadataInfo(uris[0]));
  516. }
  517. }
  518. } // namespace aria2