PeerSessionResource.cc 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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 "PeerSessionResource.h"
  36. #include <cassert>
  37. #include <algorithm>
  38. #include "BitfieldMan.h"
  39. #include "A2STR.h"
  40. #include "BtMessageDispatcher.h"
  41. #include "wallclock.h"
  42. namespace aria2 {
  43. PeerSessionResource::PeerSessionResource(size_t pieceLength, uint64_t totalLength):
  44. amChoking_(true),
  45. amInterested_(false),
  46. peerChoking_(true),
  47. peerInterested_(false),
  48. chokingRequired_(true),
  49. optUnchoking_(false),
  50. snubbing_(false),
  51. bitfieldMan_(new BitfieldMan(pieceLength, totalLength)),
  52. fastExtensionEnabled_(false),
  53. extendedMessagingEnabled_(false),
  54. dhtEnabled_(false),
  55. lastDownloadUpdate_(0),
  56. lastAmUnchoking_(0)
  57. {}
  58. PeerSessionResource::~PeerSessionResource()
  59. {
  60. delete bitfieldMan_;
  61. }
  62. void PeerSessionResource::amChoking(bool b)
  63. {
  64. amChoking_ = b;
  65. if(!b) {
  66. lastAmUnchoking_ = global::wallclock;
  67. }
  68. }
  69. void PeerSessionResource::amInterested(bool b)
  70. {
  71. amInterested_ = b;
  72. }
  73. void PeerSessionResource::peerChoking(bool b)
  74. {
  75. peerChoking_ = b;
  76. }
  77. void PeerSessionResource::peerInterested(bool b)
  78. {
  79. peerInterested_ = b;
  80. }
  81. void PeerSessionResource::chokingRequired(bool b)
  82. {
  83. chokingRequired_ = b;
  84. }
  85. void PeerSessionResource::optUnchoking(bool b)
  86. {
  87. optUnchoking_ = b;
  88. }
  89. bool PeerSessionResource::shouldBeChoking() const
  90. {
  91. if(optUnchoking_) {
  92. return false;
  93. }
  94. return chokingRequired_;
  95. }
  96. void PeerSessionResource::snubbing(bool b)
  97. {
  98. snubbing_ = b;
  99. if(snubbing_) {
  100. chokingRequired(true);
  101. optUnchoking(false);
  102. }
  103. }
  104. bool PeerSessionResource::hasAllPieces() const
  105. {
  106. return bitfieldMan_->isAllBitSet();
  107. }
  108. void PeerSessionResource::updateBitfield(size_t index, int operation)
  109. {
  110. if(operation == 1) {
  111. bitfieldMan_->setBit(index);
  112. } else if(operation == 0) {
  113. bitfieldMan_->unsetBit(index);
  114. }
  115. }
  116. void PeerSessionResource::setBitfield(const unsigned char* bitfield, size_t bitfieldLength)
  117. {
  118. bitfieldMan_->setBitfield(bitfield, bitfieldLength);
  119. }
  120. const unsigned char* PeerSessionResource::getBitfield() const
  121. {
  122. return bitfieldMan_->getBitfield();
  123. }
  124. size_t PeerSessionResource::getBitfieldLength() const
  125. {
  126. return bitfieldMan_->getBitfieldLength();
  127. }
  128. bool PeerSessionResource::hasPiece(size_t index) const
  129. {
  130. return bitfieldMan_->isBitSet(index);
  131. }
  132. void PeerSessionResource::markSeeder()
  133. {
  134. bitfieldMan_->setAllBit();
  135. }
  136. void PeerSessionResource::fastExtensionEnabled(bool b)
  137. {
  138. fastExtensionEnabled_ = b;
  139. }
  140. const std::vector<size_t>& PeerSessionResource::peerAllowedIndexSet() const
  141. {
  142. return peerAllowedIndexSet_;
  143. }
  144. static void updateIndexSet(std::vector<size_t>& c, size_t index)
  145. {
  146. std::vector<size_t>::iterator i = std::lower_bound(c.begin(), c.end(), index);
  147. if(i == c.end() || (*i) != index) {
  148. c.insert(i, index);
  149. }
  150. }
  151. void PeerSessionResource::addPeerAllowedIndex(size_t index)
  152. {
  153. updateIndexSet(peerAllowedIndexSet_, index);
  154. }
  155. bool PeerSessionResource::peerAllowedIndexSetContains(size_t index) const
  156. {
  157. return std::binary_search(peerAllowedIndexSet_.begin(),
  158. peerAllowedIndexSet_.end(),
  159. index);
  160. }
  161. void PeerSessionResource::addAmAllowedIndex(size_t index)
  162. {
  163. updateIndexSet(amAllowedIndexSet_, index);
  164. }
  165. bool PeerSessionResource::amAllowedIndexSetContains(size_t index) const
  166. {
  167. return std::binary_search(amAllowedIndexSet_.begin(),
  168. amAllowedIndexSet_.end(),
  169. index);
  170. }
  171. void PeerSessionResource::extendedMessagingEnabled(bool b)
  172. {
  173. extendedMessagingEnabled_ = b;
  174. }
  175. uint8_t
  176. PeerSessionResource::getExtensionMessageID(const std::string& name) const
  177. {
  178. Extensions::const_iterator itr = extensions_.find(name);
  179. if(itr == extensions_.end()) {
  180. return 0;
  181. } else {
  182. return (*itr).second;
  183. }
  184. }
  185. std::string PeerSessionResource::getExtensionName(uint8_t id) const
  186. {
  187. for(Extensions::const_iterator itr = extensions_.begin(),
  188. eoi = extensions_.end(); itr != eoi; ++itr) {
  189. const Extensions::value_type& p = *itr;
  190. if(p.second == id) {
  191. return p.first;
  192. }
  193. }
  194. return A2STR::NIL;
  195. }
  196. void PeerSessionResource::addExtension(const std::string& name, uint8_t id)
  197. {
  198. extensions_[name] = id;
  199. }
  200. void PeerSessionResource::dhtEnabled(bool b)
  201. {
  202. dhtEnabled_ = b;
  203. }
  204. uint64_t PeerSessionResource::uploadLength() const
  205. {
  206. return peerStat_.getSessionUploadLength();
  207. }
  208. void PeerSessionResource::updateUploadLength(size_t bytes)
  209. {
  210. peerStat_.updateUploadLength(bytes);
  211. }
  212. uint64_t PeerSessionResource::downloadLength() const
  213. {
  214. return peerStat_.getSessionDownloadLength();
  215. }
  216. void PeerSessionResource::updateDownloadLength(size_t bytes)
  217. {
  218. peerStat_.updateDownloadLength(bytes);
  219. lastDownloadUpdate_ = global::wallclock;
  220. }
  221. uint64_t PeerSessionResource::getCompletedLength() const
  222. {
  223. return bitfieldMan_->getCompletedLength();
  224. }
  225. void PeerSessionResource::setBtMessageDispatcher
  226. (const WeakHandle<BtMessageDispatcher>& dpt)
  227. {
  228. dispatcher_ = dpt;
  229. }
  230. size_t PeerSessionResource::countOutstandingUpload() const
  231. {
  232. assert(!dispatcher_.isNull());
  233. return dispatcher_->countOutstandingUpload();
  234. }
  235. void PeerSessionResource::reconfigure(size_t pieceLength, uint64_t totalLenth)
  236. {
  237. delete bitfieldMan_;
  238. bitfieldMan_ = new BitfieldMan(pieceLength, totalLenth);
  239. }
  240. } // namespace aria2