/* */ #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, getRemoteNode()->getIPAddress(), getRemoteNode()->getPort()); // Check to see localhost has the contents which has same infohash std::vector > peers; _peerAnnounceStorage->getPeers(peers, _infoHash); SharedHandle reply; if(peers.empty()) { std::vector > nodes; getRoutingTable()->getClosestKNodes(nodes, _infoHash); reply = getMessageFactory()->createGetPeersReplyMessage (getRemoteNode(), nodes, token, getTransactionID()); } else { reply = getMessageFactory()->createGetPeersReplyMessage (getRemoteNode(), peers, token, getTransactionID()); } getMessageDispatcher()->addMessageToQueue(reply); } BDE DHTGetPeersMessage::getArgument() { BDE aDict = BDE::dict(); aDict[DHTMessage::ID] = BDE(getLocalNode()->getID(), DHT_ID_LENGTH); aDict[INFO_HASH] = BDE(_infoHash, DHT_ID_LENGTH); return aDict; } const std::string& DHTGetPeersMessage::getMessageType() const { return GET_PEERS; } 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