download_helper.cc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  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->getFirstFileEntry()->setUris(uris);
  219. dctx->getFirstFileEntry()->setMaxConnectionPerServer
  220. (option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER));
  221. rg->setDownloadContext(dctx);
  222. return rg;
  223. }
  224. } // namespace
  225. #if defined ENABLE_BITTORRENT || ENABLE_METALINK
  226. namespace {
  227. SharedHandle<MetadataInfo> createMetadataInfo(const std::string& uri)
  228. {
  229. return SharedHandle<MetadataInfo>(new MetadataInfo(uri));
  230. }
  231. } // namespace
  232. namespace {
  233. SharedHandle<MetadataInfo> createMetadataInfoDataOnly()
  234. {
  235. return SharedHandle<MetadataInfo>(new MetadataInfo());
  236. }
  237. } // namespace
  238. #endif // ENABLE_BITTORRENT || ENABLE_METALINK
  239. #ifdef ENABLE_BITTORRENT
  240. namespace {
  241. SharedHandle<RequestGroup>
  242. createBtRequestGroup(const std::string& torrentFilePath,
  243. const SharedHandle<Option>& option,
  244. const std::vector<std::string>& auxUris,
  245. const std::string& torrentData = "",
  246. bool adjustAnnounceUri = true)
  247. {
  248. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  249. SharedHandle<DownloadContext> dctx(new DownloadContext());
  250. if(torrentData.empty()) {
  251. // may throw exception
  252. bittorrent::load(torrentFilePath, dctx, option, auxUris);
  253. rg->setMetadataInfo(createMetadataInfo(torrentFilePath));
  254. } else {
  255. // may throw exception
  256. bittorrent::loadFromMemory(torrentData, dctx, option, auxUris, "default");
  257. rg->setMetadataInfo(createMetadataInfoDataOnly());
  258. }
  259. if(adjustAnnounceUri) {
  260. bittorrent::adjustAnnounceUri(bittorrent::getTorrentAttrs(dctx), option);
  261. }
  262. dctx->setFileFilter(util::parseIntRange(option->get(PREF_SELECT_FILE)));
  263. std::istringstream indexOutIn(option->get(PREF_INDEX_OUT));
  264. std::map<size_t, std::string> indexPathMap =
  265. util::createIndexPathMap(indexOutIn);
  266. for(std::map<size_t, std::string>::const_iterator i = indexPathMap.begin(),
  267. eoi = indexPathMap.end(); i != eoi; ++i) {
  268. dctx->setFilePathWithIndex
  269. ((*i).first, util::applyDir(option->get(PREF_DIR), (*i).second));
  270. }
  271. rg->setDownloadContext(dctx);
  272. // Remove "metalink" from Accept Type list to avoid server from
  273. // responding Metalink file for web-seeding URIs.
  274. util::removeMetalinkContentTypes(rg);
  275. return rg;
  276. }
  277. } // namespace
  278. namespace {
  279. SharedHandle<RequestGroup>
  280. createBtMagnetRequestGroup(const std::string& magnetLink,
  281. const SharedHandle<Option>& option)
  282. {
  283. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  284. SharedHandle<DownloadContext> dctx
  285. (new DownloadContext(METADATA_PIECE_SIZE, 0,
  286. A2STR::NIL));
  287. // We only know info hash. Total Length is unknown at this moment.
  288. dctx->markTotalLengthIsUnknown();
  289. rg->setFileAllocationEnabled(false);
  290. rg->setPreLocalFileCheckEnabled(false);
  291. bittorrent::loadMagnet(magnetLink, dctx);
  292. SharedHandle<TorrentAttribute> torrentAttrs =
  293. bittorrent::getTorrentAttrs(dctx);
  294. bittorrent::adjustAnnounceUri(torrentAttrs, rg->getOption());
  295. dctx->getFirstFileEntry()->setPath(torrentAttrs->name);
  296. rg->setDownloadContext(dctx);
  297. rg->clearPostDownloadHandler();
  298. SharedHandle<UTMetadataPostDownloadHandler> utMetadataPostHandler
  299. (new UTMetadataPostDownloadHandler());
  300. rg->addPostDownloadHandler(utMetadataPostHandler);
  301. rg->setDiskWriterFactory
  302. (SharedHandle<DiskWriterFactory>(new ByteArrayDiskWriterFactory()));
  303. rg->setMetadataInfo(createMetadataInfo(magnetLink));
  304. rg->markInMemoryDownload();
  305. return rg;
  306. }
  307. } // namespace
  308. void createRequestGroupForBitTorrent
  309. (std::vector<SharedHandle<RequestGroup> >& result,
  310. const SharedHandle<Option>& option,
  311. const std::vector<std::string>& uris,
  312. const std::string& torrentData,
  313. bool adjustAnnounceUri)
  314. {
  315. std::vector<std::string> nargs;
  316. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  317. unfoldURI(nargs, uris);
  318. } else {
  319. nargs = uris;
  320. }
  321. // we ignore -Z option here
  322. size_t numSplit = option->getAsInt(PREF_SPLIT);
  323. SharedHandle<RequestGroup> rg =
  324. createBtRequestGroup(option->get(PREF_TORRENT_FILE), option, nargs,
  325. torrentData, adjustAnnounceUri);
  326. rg->setNumConcurrentCommand(numSplit);
  327. result.push_back(rg);
  328. }
  329. #endif // ENABLE_BITTORRENT
  330. #ifdef ENABLE_METALINK
  331. void createRequestGroupForMetalink
  332. (std::vector<SharedHandle<RequestGroup> >& result,
  333. const SharedHandle<Option>& option,
  334. const std::string& metalinkData)
  335. {
  336. if(metalinkData.empty()) {
  337. Metalink2RequestGroup().generate(result,
  338. option->get(PREF_METALINK_FILE),
  339. option);
  340. } else {
  341. SharedHandle<ByteArrayDiskWriter> dw(new ByteArrayDiskWriter());
  342. dw->setString(metalinkData);
  343. Metalink2RequestGroup().generate(result, dw, option);
  344. }
  345. }
  346. #endif // ENABLE_METALINK
  347. namespace {
  348. class AccRequestGroup {
  349. private:
  350. std::vector<SharedHandle<RequestGroup> >& requestGroups_;
  351. ProtocolDetector detector_;
  352. SharedHandle<Option> option_;
  353. bool ignoreLocalPath_;
  354. bool throwOnError_;
  355. public:
  356. AccRequestGroup(std::vector<SharedHandle<RequestGroup> >& requestGroups,
  357. const SharedHandle<Option>& option,
  358. bool ignoreLocalPath = false,
  359. bool throwOnError = false):
  360. requestGroups_(requestGroups), option_(option),
  361. ignoreLocalPath_(ignoreLocalPath),
  362. throwOnError_(throwOnError)
  363. {}
  364. void
  365. operator()(const std::string& uri)
  366. {
  367. if(detector_.isStreamProtocol(uri)) {
  368. std::vector<std::string> streamURIs;
  369. size_t numIter = option_->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  370. size_t numSplit = option_->getAsInt(PREF_SPLIT);
  371. size_t num = std::min(numIter, numSplit);
  372. for(size_t i = 0; i < num; ++i) {
  373. streamURIs.push_back(uri);
  374. }
  375. SharedHandle<RequestGroup> rg = createRequestGroup(option_, streamURIs);
  376. rg->setNumConcurrentCommand(numSplit);
  377. requestGroups_.push_back(rg);
  378. }
  379. #ifdef ENABLE_BITTORRENT
  380. else if(detector_.guessTorrentMagnet(uri)) {
  381. SharedHandle<RequestGroup> group =
  382. createBtMagnetRequestGroup(uri, option_);
  383. requestGroups_.push_back(group);
  384. } else if(!ignoreLocalPath_ && detector_.guessTorrentFile(uri)) {
  385. try {
  386. requestGroups_.push_back
  387. (createBtRequestGroup(uri, option_, std::vector<std::string>()));
  388. } catch(RecoverableException& e) {
  389. if(throwOnError_) {
  390. throw;
  391. } else {
  392. // error occurred while parsing torrent file.
  393. // We simply ignore it.
  394. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  395. }
  396. }
  397. }
  398. #endif // ENABLE_BITTORRENT
  399. #ifdef ENABLE_METALINK
  400. else if(!ignoreLocalPath_ && detector_.guessMetalinkFile(uri)) {
  401. try {
  402. Metalink2RequestGroup().generate(requestGroups_, uri, option_);
  403. } catch(RecoverableException& e) {
  404. if(throwOnError_) {
  405. throw;
  406. } else {
  407. // error occurred while parsing metalink file.
  408. // We simply ignore it.
  409. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  410. }
  411. }
  412. }
  413. #endif // ENABLE_METALINK
  414. else {
  415. if(throwOnError_) {
  416. throw DL_ABORT_EX(fmt(MSG_UNRECOGNIZED_URI, uri.c_str()));
  417. } else {
  418. A2_LOG_ERROR(fmt(MSG_UNRECOGNIZED_URI, uri.c_str()));
  419. }
  420. }
  421. }
  422. };
  423. } // namespace
  424. namespace {
  425. class StreamProtocolFilter {
  426. private:
  427. ProtocolDetector detector_;
  428. public:
  429. bool operator()(const std::string& uri) {
  430. return detector_.isStreamProtocol(uri);
  431. }
  432. };
  433. } // namespace
  434. void createRequestGroupForUri
  435. (std::vector<SharedHandle<RequestGroup> >& result,
  436. const SharedHandle<Option>& option,
  437. const std::vector<std::string>& uris,
  438. bool ignoreForceSequential,
  439. bool ignoreLocalPath,
  440. bool throwOnError)
  441. {
  442. std::vector<std::string> nargs;
  443. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  444. unfoldURI(nargs, uris);
  445. } else {
  446. nargs = uris;
  447. }
  448. if(!ignoreForceSequential && option->get(PREF_FORCE_SEQUENTIAL) == A2_V_TRUE) {
  449. std::for_each(nargs.begin(), nargs.end(),
  450. AccRequestGroup(result, option, ignoreLocalPath,
  451. throwOnError));
  452. } else {
  453. std::vector<std::string>::iterator strmProtoEnd =
  454. std::stable_partition(nargs.begin(), nargs.end(), StreamProtocolFilter());
  455. // let's process http/ftp protocols first.
  456. if(nargs.begin() != strmProtoEnd) {
  457. size_t numIter = option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  458. size_t numSplit = option->getAsInt(PREF_SPLIT);
  459. std::vector<std::string> streamURIs;
  460. splitURI(streamURIs, nargs.begin(), strmProtoEnd, numSplit, numIter);
  461. SharedHandle<RequestGroup> rg =
  462. createRequestGroup(option, streamURIs, true);
  463. rg->setNumConcurrentCommand(numSplit);
  464. result.push_back(rg);
  465. }
  466. // process remaining URIs(local metalink, BitTorrent files)
  467. std::for_each(strmProtoEnd, nargs.end(),
  468. AccRequestGroup(result, option, ignoreLocalPath,
  469. throwOnError));
  470. }
  471. }
  472. namespace {
  473. void createRequestGroupForUriList
  474. (std::vector<SharedHandle<RequestGroup> >& result,
  475. const SharedHandle<Option>& option,
  476. std::istream& in)
  477. {
  478. UriListParser p(in);
  479. while(p.hasNext()) {
  480. std::vector<std::string> uris;
  481. SharedHandle<Option> tempOption(new Option());
  482. p.parseNext(uris, *tempOption.get());
  483. if(uris.empty()) {
  484. continue;
  485. }
  486. SharedHandle<Option> requestOption(new Option(*option.get()));
  487. for(std::set<std::string>::const_iterator i =
  488. listRequestOptions().begin(), eoi = listRequestOptions().end();
  489. i != eoi; ++i) {
  490. if(tempOption->defined(*i)) {
  491. requestOption->put(*i, tempOption->get(*i));
  492. }
  493. }
  494. createRequestGroupForUri(result, requestOption, uris);
  495. }
  496. }
  497. } // namespace
  498. void createRequestGroupForUriList
  499. (std::vector<SharedHandle<RequestGroup> >& result,
  500. const SharedHandle<Option>& option)
  501. {
  502. if(option->get(PREF_INPUT_FILE) == "-") {
  503. createRequestGroupForUriList(result, option, std::cin);
  504. } else {
  505. if(!File(option->get(PREF_INPUT_FILE)).isFile()) {
  506. throw DL_ABORT_EX
  507. (fmt(EX_FILE_OPEN, option->get(PREF_INPUT_FILE).c_str(),
  508. "No such file"));
  509. }
  510. std::ifstream f(option->get(PREF_INPUT_FILE).c_str(), std::ios::binary);
  511. createRequestGroupForUriList(result, option, f);
  512. }
  513. }
  514. SharedHandle<MetadataInfo>
  515. createMetadataInfoFromFirstFileEntry(const SharedHandle<DownloadContext>& dctx)
  516. {
  517. if(dctx->getFileEntries().empty()) {
  518. return SharedHandle<MetadataInfo>();
  519. } else {
  520. std::vector<std::string> uris;
  521. dctx->getFileEntries()[0]->getUris(uris);
  522. if(uris.empty()) {
  523. return SharedHandle<MetadataInfo>();
  524. }
  525. return SharedHandle<MetadataInfo>(new MetadataInfo(uris[0]));
  526. }
  527. }
  528. } // namespace aria2