blob: c4d261e7997d6854a6ddf6379e6a52f7047aac87 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi64d99f22017-01-21 23:06:36 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Yukai Tu0a49d342015-09-13 12:54:22 +08004 * 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 Shi5dd26c32014-07-20 23:15:14 -070024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_UDP_CHANNEL_HPP
27#define NFD_DAEMON_FACE_UDP_CHANNEL_HPP
Giulio Grassi624f6c62014-02-18 19:42:14 +010028
Junxiao Shi61e3cc52014-03-03 20:40:28 -070029#include "channel.hpp"
Junxiao Shi64d99f22017-01-21 23:06:36 +000030#include "udp-protocol.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031
32namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040033namespace face {
Giulio Grassi624f6c62014-02-18 19:42:14 +010034
Giulio Grassi624f6c62014-02-18 19:42:14 +010035/**
36 * \brief Class implementing UDP-based channel to create faces
Giulio Grassi624f6c62014-02-18 19:42:14 +010037 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070038class UdpChannel : public Channel
Giulio Grassi624f6c62014-02-18 19:42:14 +010039{
40public:
Giulio Grassi624f6c62014-02-18 19:42:14 +010041 /**
Giulio Grassi624f6c62014-02-18 19:42:14 +010042 * \brief Create UDP channel for the local endpoint
43 *
44 * To enable creation of faces upon incoming connections,
45 * one needs to explicitly call UdpChannel::listen method.
46 * The created socket is bound to the localEndpoint.
47 * reuse_address option is set
48 *
49 * \throw UdpChannel::Error if bind on the socket fails
50 */
51 UdpChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070052 const time::seconds& timeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010053
Davide Pesaventoc19408d2017-04-08 00:42:55 -040054 bool
55 isListening() const override
56 {
57 return m_socket.is_open();
58 }
59
Junxiao Shic5401492015-12-23 16:33:21 -070060 size_t
Davide Pesaventoc19408d2017-04-08 00:42:55 -040061 size() const override
62 {
63 return m_channelFaces.size();
64 }
Junxiao Shic5401492015-12-23 16:33:21 -070065
66 /**
67 * \brief Create a face by establishing connection to remote endpoint
68 *
69 * \throw UdpChannel::Error if bind or connect on the socket fail
70 */
71 void
72 connect(const udp::Endpoint& remoteEndpoint,
73 ndn::nfd::FacePersistency persistency,
74 const FaceCreatedCallback& onFaceCreated,
75 const FaceCreationFailedCallback& onConnectFailed);
76
77 /**
Giulio Grassi624f6c62014-02-18 19:42:14 +010078 * \brief Enable listening on the local endpoint, accept connections,
79 * and create faces when remote host makes a connection
Davide Pesavento77911cc2017-04-08 22:12:30 -040080 *
81 * \param onFaceCreated Callback to notify successful creation of a face
82 * \param onFaceCreationFailed Callback to notify errors
Giulio Grassi624f6c62014-02-18 19:42:14 +010083 *
Alexander Afanasyev5959b012014-06-02 19:18:12 +030084 * Once a face is created, if it doesn't send/receive anything for
85 * a period of time equal to timeout, it will be destroyed
Giulio Grassi624f6c62014-02-18 19:42:14 +010086 */
87 void
88 listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento77911cc2017-04-08 22:12:30 -040089 const FaceCreationFailedCallback& onFaceCreationFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010090
Giulio Grassi624f6c62014-02-18 19:42:14 +010091private:
Junxiao Shic5401492015-12-23 16:33:21 -070092 void
93 waitForNewPeer(const FaceCreatedCallback& onFaceCreated,
94 const FaceCreationFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010095
96 /**
Davide Pesavento6ad890a2015-03-09 03:43:17 +010097 * \brief The channel has received a new packet from a remote
98 * endpoint that is not associated with any UdpFace yet
Giulio Grassi624f6c62014-02-18 19:42:14 +010099 */
100 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100101 handleNewPeer(const boost::system::error_code& error,
102 size_t nBytesReceived,
103 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100104 const FaceCreationFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100105
Junxiao Shicde37ad2015-12-24 01:02:05 -0700106 std::pair<bool, shared_ptr<Face>>
Davide Pesavento77911cc2017-04-08 22:12:30 -0400107 createFace(const udp::Endpoint& remoteEndpoint,
108 ndn::nfd::FacePersistency persistency);
Junxiao Shic5401492015-12-23 16:33:21 -0700109
Giulio Grassi624f6c62014-02-18 19:42:14 +0100110private:
Davide Pesavento77911cc2017-04-08 22:12:30 -0400111 const udp::Endpoint m_localEndpoint;
112 udp::Endpoint m_remoteEndpoint; ///< The latest peer that started communicating with us
113 boost::asio::ip::udp::socket m_socket; ///< Socket used to "accept" new peers
Junxiao Shicde37ad2015-12-24 01:02:05 -0700114 std::map<udp::Endpoint, shared_ptr<Face>> m_channelFaces;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100115 uint8_t m_inputBuffer[ndn::MAX_NDN_PACKET_SIZE];
Davide Pesavento77911cc2017-04-08 22:12:30 -0400116 time::seconds m_idleFaceTimeout; ///< Timeout for automatic closure of idle on-demand faces
Giulio Grassi624f6c62014-02-18 19:42:14 +0100117};
118
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400119} // namespace face
Giulio Grassi624f6c62014-02-18 19:42:14 +0100120} // namespace nfd
121
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700122#endif // NFD_DAEMON_FACE_UDP_CHANNEL_HPP