| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #include "tcp-channel-factory.hpp" |
| |
| namespace nfd { |
| |
| TcpChannelFactory::TcpChannelFactory(boost::asio::io_service& ioService) |
| : m_ioService(ioService) |
| { |
| } |
| |
| shared_ptr<TcpChannel> |
| TcpChannelFactory::create(const tcp::Endpoint& endpoint) |
| { |
| shared_ptr<TcpChannel> channel = find(endpoint); |
| if(static_cast<bool>(channel)) |
| return channel; |
| |
| channel = make_shared<TcpChannel>(boost::ref(m_ioService), boost::cref(endpoint)); |
| m_channels[endpoint] = channel; |
| return channel; |
| } |
| |
| shared_ptr<TcpChannel> |
| TcpChannelFactory::create(const std::string& localHost, const std::string& localPort) |
| { |
| using boost::asio::ip::tcp; |
| |
| tcp::resolver::query query(localHost, localPort); |
| // shared_ptr<tcp::resolver> resolver = |
| // make_shared<tcp::resolver>(boost::ref(m_ioService)); |
| tcp::resolver resolver(m_ioService); |
| |
| tcp::resolver::iterator end; |
| tcp::resolver::iterator i = resolver.resolve(query); |
| if (i == end) |
| return shared_ptr<TcpChannel>(); |
| |
| return create(*i); |
| } |
| |
| shared_ptr<TcpChannel> |
| TcpChannelFactory::find(const tcp::Endpoint& localEndpoint) |
| { |
| ChannelMap::iterator i = m_channels.find(localEndpoint); |
| if (i != m_channels.end()) |
| return i->second; |
| else |
| return shared_ptr<TcpChannel>(); |
| } |
| |
| } // namespace nfd |