/* */ #include "DHTGetPeersMessage.h" #include #include "DHTNode.h" #include "DHTRoutingTable.h" #include "DHTMessageFactory.h" #include "DHTMessageDispatcher.h" #include "DHTMessageCallback.h" #include "DHTPeerAnnounceStorage.h" #include "Peer.h" #include "DHTTokenTracker.h" #include "util.h" #include "bencode.h" namespace aria2 { const std::string DHTGetPeersMessage::GET_PEERS("get_peers"); const std::string DHTGetPeersMessage::INFO_HASH("info_hash"); DHTGetPeersMessage::DHTGetPeersMessage(const SharedHandle& localNode, const SharedHandle& remoteNode, const unsigned char* infoHash, const std::string& transactionID): DHTQueryMessage(localNode, remoteNode, transactionID) { memcpy(_infoHash, infoHash, DHT_ID_LENGTH); } DHTGetPeersMessage::~DHTGetPeersMessage() {} void DHTGetPeersMessage::doReceivedAction() { std::string token = _tokenTracker->generateToken(_infoHash, _remoteNode->getIPAddress(), _remoteNode->getPort()); // Check to see localhost has the contents which has same infohash std::deque > peers; _peerAnnounceStorage->getPeers(peers, _infoHash); SharedHandle reply; if(peers.empty()) { std::deque > nodes; _routingTable->getClosestKNodes(nodes, _infoHash); reply = _factory->createGetPeersReplyMessage(_remoteNode, nodes, token, _transactionID); } else { reply = _factory->createGetPeersReplyMessage(_remoteNode, peers, token, _transactionID); } _dispatcher->addMessageToQueue(reply); } BDE DHTGetPeersMessage::getArgument() { BDE aDict = BDE::dict(); aDict[DHTMessage::ID] = BDE(_localNode->getID(), DHT_ID_LENGTH); aDict[INFO_HASH] = BDE(_infoHash, DHT_ID_LENGTH); return aDict; } std::string DHTGetPeersMessage::getMessageType() const { return GET_PEERS; } void DHTGetPeersMessage::validate() const {} void DHTGetPeersMessage::setPeerAnnounceStorage(const WeakHandle& storage) { _peerAnnounceStorage = storage; } void DHTGetPeersMessage::setTokenTracker(const WeakHandle& tokenTracker) { _tokenTracker = tokenTracker; } std::string DHTGetPeersMessage::toStringOptional() const { return "info_hash="+util::toHex(_infoHash, INFO_HASH_LENGTH); } } // namespace aria2