From cf8cfeefbcfff1eebc2b5fde9f14ff3efff8d6e3 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 6 Jul 2013 22:55:00 +0900 Subject: [PATCH] DHTInteractionCommand: Use std::unique_ptr for DHTConnection Remove DHTConnection from DHTMessageReceiver because it is not used. --- src/DHTInteractionCommand.cc | 4 ++-- src/DHTInteractionCommand.h | 4 ++-- src/DHTMessageReceiver.cc | 6 ------ src/DHTMessageReceiver.h | 10 ---------- src/DHTSetup.cc | 5 ++--- 5 files changed, 6 insertions(+), 23 deletions(-) diff --git a/src/DHTInteractionCommand.cc b/src/DHTInteractionCommand.cc index fe193cd4..f39c4803 100644 --- a/src/DHTInteractionCommand.cc +++ b/src/DHTInteractionCommand.cc @@ -162,9 +162,9 @@ void DHTInteractionCommand::setTaskQueue(DHTTaskQueue* taskQueue) } void DHTInteractionCommand::setConnection -(const std::shared_ptr& connection) +(std::unique_ptr connection) { - connection_ = connection; + connection_ = std::move(connection); } void DHTInteractionCommand::setUDPTrackerClient diff --git a/src/DHTInteractionCommand.h b/src/DHTInteractionCommand.h index c53c4084..f2ebaea3 100644 --- a/src/DHTInteractionCommand.h +++ b/src/DHTInteractionCommand.h @@ -56,7 +56,7 @@ private: DHTMessageReceiver* receiver_; DHTTaskQueue* taskQueue_; std::shared_ptr readCheckSocket_; - std::shared_ptr connection_; + std::unique_ptr connection_; std::shared_ptr udpTrackerClient_; public: DHTInteractionCommand(cuid_t cuid, DownloadEngine* e); @@ -75,7 +75,7 @@ public: void setTaskQueue(DHTTaskQueue* taskQueue); - void setConnection(const std::shared_ptr& connection); + void setConnection(std::unique_ptr connection); void setUDPTrackerClient (const std::shared_ptr& udpTrackerClient); diff --git a/src/DHTMessageReceiver.cc b/src/DHTMessageReceiver.cc index b6c2cf49..d70e0245 100644 --- a/src/DHTMessageReceiver.cc +++ b/src/DHTMessageReceiver.cc @@ -38,7 +38,6 @@ #include #include "DHTMessageTracker.h" -#include "DHTConnection.h" #include "DHTMessage.h" #include "DHTQueryMessage.h" #include "DHTResponseMessage.h" @@ -143,11 +142,6 @@ DHTMessageReceiver::handleUnknownMessage(const unsigned char* data, return m; } -void DHTMessageReceiver::setConnection(const std::shared_ptr& connection) -{ - connection_ = connection; -} - void DHTMessageReceiver::setMessageFactory(DHTMessageFactory* factory) { factory_ = factory; diff --git a/src/DHTMessageReceiver.h b/src/DHTMessageReceiver.h index 04f5885b..3093193e 100644 --- a/src/DHTMessageReceiver.h +++ b/src/DHTMessageReceiver.h @@ -44,7 +44,6 @@ namespace aria2 { class DHTMessageTracker; class DHTMessage; -class DHTConnection; class DHTMessageFactory; class DHTRoutingTable; class DHTUnknownMessage; @@ -53,8 +52,6 @@ class DHTMessageReceiver { private: std::shared_ptr tracker_; - std::shared_ptr connection_; - DHTMessageFactory* factory_; DHTRoutingTable* routingTable_; @@ -73,18 +70,11 @@ public: void handleTimeout(); - const std::shared_ptr& getConnection() const - { - return connection_; - } - const std::shared_ptr& getMessageTracker() const { return tracker_; } - void setConnection(const std::shared_ptr& connection); - void setMessageFactory(DHTMessageFactory* factory); void setRoutingTable(DHTRoutingTable* routingTable); diff --git a/src/DHTSetup.cc b/src/DHTSetup.cc index c65baf97..89fff38a 100644 --- a/src/DHTSetup.cc +++ b/src/DHTSetup.cc @@ -111,7 +111,7 @@ std::vector> DHTSetup::setup } uint16_t port; - auto connection = std::make_shared(family); + auto connection = make_unique(family); { port = e->getBtRegistry()->getUdpPort(); const std::string& addr = @@ -156,7 +156,6 @@ std::vector> DHTSetup::setup dispatcher->setTimeout(messageTimeout); - receiver->setConnection(connection); receiver->setMessageFactory(factory.get()); receiver->setRoutingTable(routingTable.get()); @@ -210,7 +209,7 @@ std::vector> DHTSetup::setup command->setMessageReceiver(receiver.get()); command->setTaskQueue(taskQueue.get()); command->setReadCheckSocket(connection->getSocket()); - command->setConnection(connection); + command->setConnection(std::move(connection)); command->setUDPTrackerClient(udpTrackerClient); tempCommands.push_back(std::move(command)); }