download_helper.cc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  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. PREF_RETRY_WAIT,
  166. PREF_METALINK_BASE_URI
  167. };
  168. static std::set<std::string> requestOptions
  169. (vbegin(REQUEST_OPTIONS), vend(REQUEST_OPTIONS));
  170. return requestOptions;
  171. }
  172. namespace {
  173. void unfoldURI
  174. (std::vector<std::string>& result, const std::vector<std::string>& args)
  175. {
  176. ParameterizedStringParser p;
  177. PStringBuildVisitor v;
  178. for(std::vector<std::string>::const_iterator itr = args.begin(),
  179. eoi = args.end(); itr != eoi; ++itr) {
  180. v.reset();
  181. p.parse(*itr)->accept(v);
  182. result.insert(result.end(), v.getURIs().begin(), v.getURIs().end());
  183. }
  184. }
  185. } // namespace
  186. namespace {
  187. template<typename InputIterator>
  188. void splitURI(std::vector<std::string>& result,
  189. InputIterator begin,
  190. InputIterator end,
  191. size_t numSplit,
  192. size_t maxIter)
  193. {
  194. size_t numURIs = std::distance(begin, end);
  195. if(numURIs >= numSplit) {
  196. result.insert(result.end(), begin, end);
  197. } else if(numURIs > 0) {
  198. size_t num = std::min(numSplit/numURIs, maxIter);
  199. for(size_t i = 0; i < num; ++i) {
  200. result.insert(result.end(), begin, end);
  201. }
  202. if(num < maxIter) {
  203. result.insert(result.end(), begin, begin+(numSplit%numURIs));
  204. }
  205. }
  206. }
  207. } // namespace
  208. namespace {
  209. SharedHandle<RequestGroup> createRequestGroup
  210. (const SharedHandle<Option>& option, const std::vector<std::string>& uris,
  211. bool useOutOption = false)
  212. {
  213. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  214. SharedHandle<DownloadContext> dctx
  215. (new DownloadContext
  216. (option->getAsInt(PREF_SEGMENT_SIZE),
  217. 0,
  218. useOutOption&&!option->blank(PREF_OUT)?
  219. util::applyDir(option->get(PREF_DIR), option->get(PREF_OUT)):A2STR::NIL));
  220. dctx->getFirstFileEntry()->setUris(uris);
  221. dctx->getFirstFileEntry()->setMaxConnectionPerServer
  222. (option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER));
  223. rg->setDownloadContext(dctx);
  224. return rg;
  225. }
  226. } // namespace
  227. #if defined ENABLE_BITTORRENT || ENABLE_METALINK
  228. namespace {
  229. SharedHandle<MetadataInfo> createMetadataInfo(const std::string& uri)
  230. {
  231. return SharedHandle<MetadataInfo>(new MetadataInfo(uri));
  232. }
  233. } // namespace
  234. namespace {
  235. SharedHandle<MetadataInfo> createMetadataInfoDataOnly()
  236. {
  237. return SharedHandle<MetadataInfo>(new MetadataInfo());
  238. }
  239. } // namespace
  240. #endif // ENABLE_BITTORRENT || ENABLE_METALINK
  241. #ifdef ENABLE_BITTORRENT
  242. namespace {
  243. SharedHandle<RequestGroup>
  244. createBtRequestGroup(const std::string& torrentFilePath,
  245. const SharedHandle<Option>& option,
  246. const std::vector<std::string>& auxUris,
  247. const std::string& torrentData = "",
  248. bool adjustAnnounceUri = true)
  249. {
  250. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  251. SharedHandle<DownloadContext> dctx(new DownloadContext());
  252. if(torrentData.empty()) {
  253. // may throw exception
  254. bittorrent::load(torrentFilePath, dctx, option, auxUris);
  255. rg->setMetadataInfo(createMetadataInfo(torrentFilePath));
  256. } else {
  257. // may throw exception
  258. bittorrent::loadFromMemory(torrentData, dctx, option, auxUris, "default");
  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(option->get(PREF_DIR), (*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. {
  285. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  286. SharedHandle<DownloadContext> dctx
  287. (new DownloadContext(METADATA_PIECE_SIZE, 0,
  288. A2STR::NIL));
  289. // We only know info hash. Total Length is unknown at this moment.
  290. dctx->markTotalLengthIsUnknown();
  291. rg->setFileAllocationEnabled(false);
  292. rg->setPreLocalFileCheckEnabled(false);
  293. bittorrent::loadMagnet(magnetLink, dctx);
  294. SharedHandle<TorrentAttribute> torrentAttrs =
  295. bittorrent::getTorrentAttrs(dctx);
  296. bittorrent::adjustAnnounceUri(torrentAttrs, rg->getOption());
  297. dctx->getFirstFileEntry()->setPath(torrentAttrs->name);
  298. rg->setDownloadContext(dctx);
  299. rg->clearPostDownloadHandler();
  300. SharedHandle<UTMetadataPostDownloadHandler> utMetadataPostHandler
  301. (new UTMetadataPostDownloadHandler());
  302. rg->addPostDownloadHandler(utMetadataPostHandler);
  303. rg->setDiskWriterFactory
  304. (SharedHandle<DiskWriterFactory>(new ByteArrayDiskWriterFactory()));
  305. rg->setMetadataInfo(createMetadataInfo(magnetLink));
  306. rg->markInMemoryDownload();
  307. return rg;
  308. }
  309. } // namespace
  310. void createRequestGroupForBitTorrent
  311. (std::vector<SharedHandle<RequestGroup> >& result,
  312. const SharedHandle<Option>& option,
  313. const std::vector<std::string>& uris,
  314. const std::string& torrentData,
  315. bool adjustAnnounceUri)
  316. {
  317. std::vector<std::string> nargs;
  318. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  319. unfoldURI(nargs, uris);
  320. } else {
  321. nargs = uris;
  322. }
  323. // we ignore -Z option here
  324. size_t numSplit = option->getAsInt(PREF_SPLIT);
  325. SharedHandle<RequestGroup> rg =
  326. createBtRequestGroup(option->get(PREF_TORRENT_FILE), option, nargs,
  327. torrentData, adjustAnnounceUri);
  328. rg->setNumConcurrentCommand(numSplit);
  329. result.push_back(rg);
  330. }
  331. #endif // ENABLE_BITTORRENT
  332. #ifdef ENABLE_METALINK
  333. void createRequestGroupForMetalink
  334. (std::vector<SharedHandle<RequestGroup> >& result,
  335. const SharedHandle<Option>& option,
  336. const std::string& metalinkData)
  337. {
  338. if(metalinkData.empty()) {
  339. Metalink2RequestGroup().generate(result,
  340. option->get(PREF_METALINK_FILE),
  341. option,
  342. option->get(PREF_METALINK_BASE_URI));
  343. } else {
  344. SharedHandle<ByteArrayDiskWriter> dw(new ByteArrayDiskWriter());
  345. dw->setString(metalinkData);
  346. Metalink2RequestGroup().generate(result, dw, option,
  347. option->get(PREF_METALINK_BASE_URI));
  348. }
  349. }
  350. #endif // ENABLE_METALINK
  351. namespace {
  352. class AccRequestGroup {
  353. private:
  354. std::vector<SharedHandle<RequestGroup> >& requestGroups_;
  355. ProtocolDetector detector_;
  356. SharedHandle<Option> option_;
  357. bool ignoreLocalPath_;
  358. bool throwOnError_;
  359. public:
  360. AccRequestGroup(std::vector<SharedHandle<RequestGroup> >& requestGroups,
  361. const SharedHandle<Option>& option,
  362. bool ignoreLocalPath = false,
  363. bool throwOnError = false):
  364. requestGroups_(requestGroups), option_(option),
  365. ignoreLocalPath_(ignoreLocalPath),
  366. throwOnError_(throwOnError)
  367. {}
  368. void
  369. operator()(const std::string& uri)
  370. {
  371. if(detector_.isStreamProtocol(uri)) {
  372. std::vector<std::string> streamURIs;
  373. size_t numIter = option_->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  374. size_t numSplit = option_->getAsInt(PREF_SPLIT);
  375. size_t num = std::min(numIter, numSplit);
  376. for(size_t i = 0; i < num; ++i) {
  377. streamURIs.push_back(uri);
  378. }
  379. SharedHandle<RequestGroup> rg = createRequestGroup(option_, streamURIs);
  380. rg->setNumConcurrentCommand(numSplit);
  381. requestGroups_.push_back(rg);
  382. }
  383. #ifdef ENABLE_BITTORRENT
  384. else if(detector_.guessTorrentMagnet(uri)) {
  385. SharedHandle<RequestGroup> group =
  386. createBtMagnetRequestGroup(uri, option_);
  387. requestGroups_.push_back(group);
  388. } else if(!ignoreLocalPath_ && detector_.guessTorrentFile(uri)) {
  389. try {
  390. requestGroups_.push_back
  391. (createBtRequestGroup(uri, option_, std::vector<std::string>()));
  392. } catch(RecoverableException& e) {
  393. if(throwOnError_) {
  394. throw;
  395. } else {
  396. // error occurred while parsing torrent file.
  397. // We simply ignore it.
  398. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  399. }
  400. }
  401. }
  402. #endif // ENABLE_BITTORRENT
  403. #ifdef ENABLE_METALINK
  404. else if(!ignoreLocalPath_ && detector_.guessMetalinkFile(uri)) {
  405. try {
  406. Metalink2RequestGroup().generate(requestGroups_, uri, option_,
  407. option_->get(PREF_METALINK_BASE_URI));
  408. } catch(RecoverableException& e) {
  409. if(throwOnError_) {
  410. throw;
  411. } else {
  412. // error occurred while parsing metalink file.
  413. // We simply ignore it.
  414. A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
  415. }
  416. }
  417. }
  418. #endif // ENABLE_METALINK
  419. else {
  420. if(throwOnError_) {
  421. throw DL_ABORT_EX(fmt(MSG_UNRECOGNIZED_URI, uri.c_str()));
  422. } else {
  423. A2_LOG_ERROR(fmt(MSG_UNRECOGNIZED_URI, uri.c_str()));
  424. }
  425. }
  426. }
  427. };
  428. } // namespace
  429. namespace {
  430. class StreamProtocolFilter {
  431. private:
  432. ProtocolDetector detector_;
  433. public:
  434. bool operator()(const std::string& uri) {
  435. return detector_.isStreamProtocol(uri);
  436. }
  437. };
  438. } // namespace
  439. void createRequestGroupForUri
  440. (std::vector<SharedHandle<RequestGroup> >& result,
  441. const SharedHandle<Option>& option,
  442. const std::vector<std::string>& uris,
  443. bool ignoreForceSequential,
  444. bool ignoreLocalPath,
  445. bool throwOnError)
  446. {
  447. std::vector<std::string> nargs;
  448. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  449. unfoldURI(nargs, uris);
  450. } else {
  451. nargs = uris;
  452. }
  453. if(!ignoreForceSequential && option->get(PREF_FORCE_SEQUENTIAL) == A2_V_TRUE) {
  454. std::for_each(nargs.begin(), nargs.end(),
  455. AccRequestGroup(result, option, ignoreLocalPath,
  456. throwOnError));
  457. } else {
  458. std::vector<std::string>::iterator strmProtoEnd =
  459. std::stable_partition(nargs.begin(), nargs.end(), StreamProtocolFilter());
  460. // let's process http/ftp protocols first.
  461. if(nargs.begin() != strmProtoEnd) {
  462. size_t numIter = option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  463. size_t numSplit = option->getAsInt(PREF_SPLIT);
  464. std::vector<std::string> streamURIs;
  465. splitURI(streamURIs, nargs.begin(), strmProtoEnd, numSplit, numIter);
  466. SharedHandle<RequestGroup> rg =
  467. createRequestGroup(option, streamURIs, true);
  468. rg->setNumConcurrentCommand(numSplit);
  469. result.push_back(rg);
  470. }
  471. // process remaining URIs(local metalink, BitTorrent files)
  472. std::for_each(strmProtoEnd, nargs.end(),
  473. AccRequestGroup(result, option, ignoreLocalPath,
  474. throwOnError));
  475. }
  476. }
  477. namespace {
  478. void createRequestGroupForUriList
  479. (std::vector<SharedHandle<RequestGroup> >& result,
  480. const SharedHandle<Option>& option,
  481. std::istream& in)
  482. {
  483. UriListParser p(in);
  484. while(p.hasNext()) {
  485. std::vector<std::string> uris;
  486. SharedHandle<Option> tempOption(new Option());
  487. p.parseNext(uris, *tempOption.get());
  488. if(uris.empty()) {
  489. continue;
  490. }
  491. SharedHandle<Option> requestOption(new Option(*option.get()));
  492. for(std::set<std::string>::const_iterator i =
  493. listRequestOptions().begin(), eoi = listRequestOptions().end();
  494. i != eoi; ++i) {
  495. if(tempOption->defined(*i)) {
  496. requestOption->put(*i, tempOption->get(*i));
  497. }
  498. }
  499. createRequestGroupForUri(result, requestOption, uris);
  500. }
  501. }
  502. } // namespace
  503. void createRequestGroupForUriList
  504. (std::vector<SharedHandle<RequestGroup> >& result,
  505. const SharedHandle<Option>& option)
  506. {
  507. if(option->get(PREF_INPUT_FILE) == "-") {
  508. createRequestGroupForUriList(result, option, std::cin);
  509. } else {
  510. if(!File(option->get(PREF_INPUT_FILE)).isFile()) {
  511. throw DL_ABORT_EX
  512. (fmt(EX_FILE_OPEN, option->get(PREF_INPUT_FILE).c_str(),
  513. "No such file"));
  514. }
  515. std::ifstream f(option->get(PREF_INPUT_FILE).c_str(), std::ios::binary);
  516. createRequestGroupForUriList(result, option, f);
  517. }
  518. }
  519. SharedHandle<MetadataInfo>
  520. createMetadataInfoFromFirstFileEntry(const SharedHandle<DownloadContext>& dctx)
  521. {
  522. if(dctx->getFileEntries().empty()) {
  523. return SharedHandle<MetadataInfo>();
  524. } else {
  525. std::vector<std::string> uris;
  526. dctx->getFileEntries()[0]->getUris(uris);
  527. if(uris.empty()) {
  528. return SharedHandle<MetadataInfo>();
  529. }
  530. return SharedHandle<MetadataInfo>(new MetadataInfo(uris[0]));
  531. }
  532. }
  533. } // namespace aria2