blob: 9038f59bcea22d58dc771a38a13494c3ec1feb30 [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento8fd15e62017-04-06 19:58:54 -04003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shi1e46be32015-01-08 20:18:05 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shi1e46be32015-01-08 20:18:05 -070024 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_TCP_CHANNEL_HPP
27#define NFD_DAEMON_FACE_TCP_CHANNEL_HPP
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080028
Junxiao Shi61e3cc52014-03-03 20:40:28 -070029#include "channel.hpp"
Alexander Afanasyev18861802014-06-13 17:49:03 -070030#include "core/scheduler.hpp"
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080031
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080032namespace nfd {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080033
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010034namespace tcp {
Junxiao Shi61e3cc52014-03-03 20:40:28 -070035typedef boost::asio::ip::tcp::endpoint Endpoint;
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010036} // namespace tcp
37
Davide Pesavento8fd15e62017-04-06 19:58:54 -040038namespace face {
39
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080040/**
41 * \brief Class implementing TCP-based channel to create faces
42 *
43 * Channel can create faces as a response to incoming TCP
44 * connections (TcpChannel::listen needs to be called for that
45 * to work) or explicitly after using TcpChannel::connect method.
46 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070047class TcpChannel : public Channel
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080048{
49public:
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080050 /**
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080051 * \brief Create TCP channel for the local endpoint
52 *
53 * To enable creation faces upon incoming connections,
54 * one needs to explicitly call TcpChannel::listen method.
55 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070056 explicit
57 TcpChannel(const tcp::Endpoint& localEndpoint);
58
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080059 /**
60 * \brief Enable listening on the local endpoint, accept connections,
61 * and create faces when remote host makes a connection
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080062 * \param onFaceCreated Callback to notify successful creation of the face
63 * \param onAcceptFailed Callback to notify when channel fails (accept call
64 * returns an error)
65 * \param backlog The maximum length of the queue of pending incoming
66 * connections
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080067 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080068 void
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080069 listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010070 const FaceCreationFailedCallback& onAcceptFailed,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080071 int backlog = boost::asio::ip::tcp::acceptor::max_connections);
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080072
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080073 /**
74 * \brief Create a face by establishing connection to remote endpoint
75 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080076 void
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080077 connect(const tcp::Endpoint& remoteEndpoint,
Eric Newberryf40551a2016-09-05 15:41:16 -070078 bool wantLocalFieldsEnabled,
Alexander Afanasyev855a53c2014-01-27 12:03:00 -080079 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010080 const FaceCreationFailedCallback& onConnectFailed,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070081 const time::seconds& timeout = time::seconds(4));
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080082
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080083 /**
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080084 * \brief Get number of faces in the channel
85 */
86 size_t
Junxiao Shi61e3cc52014-03-03 20:40:28 -070087 size() const;
88
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -070089 bool
90 isListening() const;
91
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080092private:
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -080093 void
Yukai Tu16aabbc2015-10-06 05:08:42 -070094 createFace(boost::asio::ip::tcp::socket&& socket,
Eric Newberryf40551a2016-09-05 15:41:16 -070095 bool isOnDemand,
96 bool wantLocalFieldsEnabled,
97 const FaceCreatedCallback& onFaceCreated);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -080098
99 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100100 accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100101 const FaceCreationFailedCallback& onAcceptFailed);
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800102
103 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100104 handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100105 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100106 const FaceCreationFailedCallback& onAcceptFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800107
108 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100109 handleConnect(const boost::system::error_code& error,
110 const shared_ptr<boost::asio::ip::tcp::socket>& socket,
Eric Newberryf40551a2016-09-05 15:41:16 -0700111 bool wantLocalFieldsEnabled,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100112 const scheduler::EventId& connectTimeoutEvent,
113 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100114 const FaceCreationFailedCallback& onConnectFailed);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700115
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800116 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100117 handleConnectTimeout(const shared_ptr<boost::asio::ip::tcp::socket>& socket,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100118 const FaceCreationFailedCallback& onConnectFailed);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800119
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800120private:
Junxiao Shicde37ad2015-12-24 01:02:05 -0700121 std::map<tcp::Endpoint, shared_ptr<Face>> m_channelFaces;
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100122
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800123 tcp::Endpoint m_localEndpoint;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100124 boost::asio::ip::tcp::acceptor m_acceptor;
125 boost::asio::ip::tcp::socket m_acceptSocket;
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800126};
127
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700128inline bool
129TcpChannel::isListening() const
130{
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100131 return m_acceptor.is_open();
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700132}
133
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400134} // namespace face
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800135} // namespace nfd
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700136
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700137#endif // NFD_DAEMON_FACE_TCP_CHANNEL_HPP