DHTPeerAnnounceStorage.cc 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 "DHTPeerAnnounceStorage.h"
  36. #include <cstring>
  37. #include <algorithm>
  38. #include "DHTPeerAnnounceEntry.h"
  39. #include "Peer.h"
  40. #include "DHTConstants.h"
  41. #include "DHTTaskQueue.h"
  42. #include "DHTTaskFactory.h"
  43. #include "DHTTask.h"
  44. #include "LogFactory.h"
  45. #include "Logger.h"
  46. #include "util.h"
  47. #include "a2functional.h"
  48. #include "wallclock.h"
  49. namespace aria2 {
  50. DHTPeerAnnounceStorage::DHTPeerAnnounceStorage():
  51. _logger(LogFactory::getInstance()) {}
  52. DHTPeerAnnounceStorage::~DHTPeerAnnounceStorage() {}
  53. class InfoHashLess
  54. {
  55. public:
  56. bool operator()(const SharedHandle<DHTPeerAnnounceEntry>& lhs,
  57. const SharedHandle<DHTPeerAnnounceEntry>& rhs)
  58. {
  59. return memcmp(lhs->getInfoHash(), rhs->getInfoHash(), DHT_ID_LENGTH) < 0;
  60. }
  61. };
  62. SharedHandle<DHTPeerAnnounceEntry>
  63. DHTPeerAnnounceStorage::getPeerAnnounceEntry(const unsigned char* infoHash)
  64. {
  65. SharedHandle<DHTPeerAnnounceEntry> entry(new DHTPeerAnnounceEntry(infoHash));
  66. std::deque<SharedHandle<DHTPeerAnnounceEntry> >::iterator i =
  67. std::lower_bound(_entries.begin(), _entries.end(), entry, InfoHashLess());
  68. if(i != _entries.end() &&
  69. memcmp(infoHash, (*i)->getInfoHash(), DHT_ID_LENGTH) == 0) {
  70. entry = *i;
  71. } else {
  72. _entries.insert(i, entry);
  73. }
  74. return entry;
  75. }
  76. void
  77. DHTPeerAnnounceStorage::addPeerAnnounce(const unsigned char* infoHash,
  78. const std::string& ipaddr, uint16_t port)
  79. {
  80. if(_logger->debug()) {
  81. _logger->debug("Adding %s:%u to peer announce list: infoHash=%s",
  82. ipaddr.c_str(), port,
  83. util::toHex(infoHash, DHT_ID_LENGTH).c_str());
  84. }
  85. getPeerAnnounceEntry(infoHash)->addPeerAddrEntry(PeerAddrEntry(ipaddr, port));
  86. }
  87. bool DHTPeerAnnounceStorage::contains(const unsigned char* infoHash) const
  88. {
  89. SharedHandle<DHTPeerAnnounceEntry> entry(new DHTPeerAnnounceEntry(infoHash));
  90. return
  91. std::binary_search(_entries.begin(), _entries.end(), entry, InfoHashLess());
  92. }
  93. void DHTPeerAnnounceStorage::getPeers(std::vector<SharedHandle<Peer> >& peers,
  94. const unsigned char* infoHash)
  95. {
  96. SharedHandle<DHTPeerAnnounceEntry> entry(new DHTPeerAnnounceEntry(infoHash));
  97. std::deque<SharedHandle<DHTPeerAnnounceEntry> >::iterator i =
  98. std::lower_bound(_entries.begin(), _entries.end(), entry, InfoHashLess());
  99. if(i != _entries.end() &&
  100. memcmp(infoHash, (*i)->getInfoHash(), DHT_ID_LENGTH) == 0 &&
  101. !(*i)->empty()) {
  102. (*i)->getPeers(peers);
  103. }
  104. }
  105. class RemoveStalePeerAddrEntry
  106. {
  107. public:
  108. void operator()(const SharedHandle<DHTPeerAnnounceEntry>& e)
  109. {
  110. e->removeStalePeerAddrEntry(DHT_PEER_ANNOUNCE_PURGE_INTERVAL);
  111. }
  112. };
  113. void DHTPeerAnnounceStorage::handleTimeout()
  114. {
  115. if(_logger->debug()) {
  116. _logger->debug("Now purge peer announces(%lu entries) which are timed out.",
  117. static_cast<unsigned long>(_entries.size()));
  118. }
  119. std::for_each(_entries.begin(), _entries.end(), RemoveStalePeerAddrEntry());
  120. _entries.erase(std::remove_if(_entries.begin(), _entries.end(),
  121. mem_fun_sh(&DHTPeerAnnounceEntry::empty)),
  122. _entries.end());
  123. if(_logger->debug()) {
  124. _logger->debug("Currently %lu peer announce entries",
  125. static_cast<unsigned long>(_entries.size()));
  126. }
  127. }
  128. void DHTPeerAnnounceStorage::announcePeer()
  129. {
  130. if(_logger->debug()) {
  131. _logger->debug("Now announcing peer.");
  132. }
  133. for(std::deque<SharedHandle<DHTPeerAnnounceEntry> >::iterator i =
  134. _entries.begin(), eoi = _entries.end(); i != eoi; ++i) {
  135. if((*i)->getLastUpdated().
  136. difference(global::wallclock) >= DHT_PEER_ANNOUNCE_INTERVAL) {
  137. (*i)->notifyUpdate();
  138. SharedHandle<DHTTask> task =
  139. _taskFactory->createPeerAnnounceTask((*i)->getInfoHash());
  140. _taskQueue->addPeriodicTask2(task);
  141. if(_logger->debug()) {
  142. _logger->debug("Added 1 peer announce: infoHash=%s",
  143. util::toHex((*i)->getInfoHash(), DHT_ID_LENGTH).c_str());
  144. }
  145. }
  146. }
  147. }
  148. void DHTPeerAnnounceStorage::setTaskQueue(const SharedHandle<DHTTaskQueue>& taskQueue)
  149. {
  150. _taskQueue = taskQueue;
  151. }
  152. void DHTPeerAnnounceStorage::setTaskFactory(const SharedHandle<DHTTaskFactory>& taskFactory)
  153. {
  154. _taskFactory = taskFactory;
  155. }
  156. } // namespace aria2