BtDependency.cc 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 "BtDependency.h"
  36. #include "RequestGroup.h"
  37. #include "Option.h"
  38. #include "LogFactory.h"
  39. #include "Logger.h"
  40. #include "DownloadContext.h"
  41. #include "RecoverableException.h"
  42. #include "message.h"
  43. #include "prefs.h"
  44. #include "util.h"
  45. #include "PieceStorage.h"
  46. #include "DiskAdaptor.h"
  47. #include "File.h"
  48. #include "bittorrent_helper.h"
  49. #include "DlAbortEx.h"
  50. #include "StringFormat.h"
  51. namespace aria2 {
  52. BtDependency::BtDependency(const WeakHandle<RequestGroup>& dependant,
  53. const SharedHandle<RequestGroup>& dependee):
  54. dependant_(dependant),
  55. dependee_(dependee),
  56. logger_(LogFactory::getInstance()) {}
  57. BtDependency::~BtDependency() {}
  58. static void copyValues(const SharedHandle<FileEntry>& d,
  59. const SharedHandle<FileEntry>& s)
  60. {
  61. d->setRequested(true);
  62. d->setPath(s->getPath());
  63. d->addUris(s->getRemainingUris().begin(),
  64. s->getRemainingUris().end());
  65. d->setMaxConnectionPerServer(s->getMaxConnectionPerServer());
  66. d->setUniqueProtocol(s->isUniqueProtocol());
  67. }
  68. bool BtDependency::resolve()
  69. {
  70. if(dependee_->getNumCommand() == 0 && dependee_->downloadFinished()) {
  71. SharedHandle<RequestGroup> dependee = dependee_;
  72. // cut reference here
  73. dependee_.reset();
  74. SharedHandle<DownloadContext> context(new DownloadContext());
  75. context->setDir(dependant_->getDownloadContext()->getDir());
  76. try {
  77. SharedHandle<DiskAdaptor> diskAdaptor =
  78. dependee->getPieceStorage()->getDiskAdaptor();
  79. diskAdaptor->openExistingFile();
  80. std::string content = util::toString(diskAdaptor);
  81. if(dependee->getDownloadContext()->hasAttribute(bittorrent::BITTORRENT)) {
  82. SharedHandle<TorrentAttribute> attrs =
  83. bittorrent::getTorrentAttrs(dependee->getDownloadContext());
  84. bittorrent::loadFromMemory
  85. (bittorrent::metadata2Torrent(content, attrs), context, "default");
  86. // We don't call bittorrent::adjustAnnounceUri() because it
  87. // has already been called with attrs.
  88. } else {
  89. bittorrent::loadFromMemory
  90. (content, context, File(dependee->getFirstFilePath()).getBasename());
  91. bittorrent::adjustAnnounceUri(bittorrent::getTorrentAttrs(context),
  92. dependant_->getOption());
  93. }
  94. const std::vector<SharedHandle<FileEntry> >& fileEntries =
  95. context->getFileEntries();
  96. const std::vector<SharedHandle<FileEntry> >& dependantFileEntries =
  97. dependant_->getDownloadContext()->getFileEntries();
  98. // If dependant's FileEntry::getOriginalName() is empty, we
  99. // assume that torrent is single file. In Metalink3, this is
  100. // always assumed.
  101. if(fileEntries.size() == 1 && dependantFileEntries.size() == 1 &&
  102. dependantFileEntries[0]->getOriginalName().empty()) {
  103. copyValues(fileEntries[0], dependantFileEntries[0]);
  104. } else {
  105. std::for_each(fileEntries.begin(), fileEntries.end(),
  106. std::bind2nd(mem_fun_sh(&FileEntry::setRequested),false));
  107. // Copy file path in dependant_'s FileEntries to newly created
  108. // context's FileEntries to endorse the path structure of
  109. // dependant_. URIs and singleHostMultiConnection are also copied.
  110. std::vector<SharedHandle<FileEntry> >::const_iterator ctxFilesEnd =
  111. fileEntries.end();
  112. for(std::vector<SharedHandle<FileEntry> >::const_iterator s =
  113. dependantFileEntries.begin(), eoi = dependantFileEntries.end();
  114. s != eoi; ++s){
  115. std::vector<SharedHandle<FileEntry> >::const_iterator d =
  116. fileEntries.begin();
  117. for(; d != ctxFilesEnd; ++d) {
  118. if((*d)->getOriginalName() == (*s)->getOriginalName()) {
  119. break;
  120. }
  121. }
  122. if(d == ctxFilesEnd) {
  123. throw DL_ABORT_EX
  124. (StringFormat("No entry %s in torrent file",
  125. (*s)->getOriginalName().c_str()).str());
  126. }
  127. copyValues(*d, *s);
  128. }
  129. }
  130. } catch(RecoverableException& e) {
  131. logger_->error(EX_EXCEPTION_CAUGHT, e);
  132. if(logger_->info()) {
  133. logger_->info("BtDependency for GID#%s failed. Go without Bt.",
  134. util::itos(dependant_->getGID()).c_str());
  135. }
  136. return true;
  137. }
  138. if(logger_->info()) {
  139. logger_->info("Dependency resolved for GID#%s",
  140. util::itos(dependant_->getGID()).c_str());
  141. }
  142. dependant_->setDownloadContext(context);
  143. return true;
  144. } else if(dependee_->getNumCommand() == 0) {
  145. // dependee_'s download failed.
  146. // cut reference here
  147. dependee_.reset();
  148. if(logger_->info()) {
  149. logger_->info("BtDependency for GID#%s failed. Go without Bt.",
  150. util::itos(dependant_->getGID()).c_str());
  151. }
  152. return true;
  153. } else {
  154. return false;
  155. }
  156. }
  157. } // namespace aria2