blob: 3f92adaa9ed068e635b5dd901a46234cbd611677 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi5dd26c32014-07-20 23:15:14 -07003 * Copyright (c) 2014, Regents of the University of California,
4 * 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"
Giulio Grassi624f6c62014-02-18 19:42:14 +010030
31namespace nfd {
32
33namespace udp {
Junxiao Shi61e3cc52014-03-03 20:40:28 -070034typedef boost::asio::ip::udp::endpoint Endpoint;
Giulio Grassi624f6c62014-02-18 19:42:14 +010035} // namespace udp
36
Davide Pesavento6ad890a2015-03-09 03:43:17 +010037class UdpFace;
38
Giulio Grassi624f6c62014-02-18 19:42:14 +010039/**
40 * \brief Class implementing UDP-based channel to create faces
Giulio Grassi624f6c62014-02-18 19:42:14 +010041 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070042class UdpChannel : public Channel
Giulio Grassi624f6c62014-02-18 19:42:14 +010043{
44public:
Giulio Grassi624f6c62014-02-18 19:42:14 +010045 /**
Giulio Grassi624f6c62014-02-18 19:42:14 +010046 * \brief Create UDP channel for the local endpoint
47 *
48 * To enable creation of faces upon incoming connections,
49 * one needs to explicitly call UdpChannel::listen method.
50 * The created socket is bound to the localEndpoint.
51 * reuse_address option is set
52 *
53 * \throw UdpChannel::Error if bind on the socket fails
54 */
55 UdpChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070056 const time::seconds& timeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010057
58 /**
59 * \brief Enable listening on the local endpoint, accept connections,
60 * and create faces when remote host makes a connection
61 * \param onFaceCreated Callback to notify successful creation of the face
62 * \param onAcceptFailed Callback to notify when channel fails
63 *
Alexander Afanasyev5959b012014-06-02 19:18:12 +030064 * Once a face is created, if it doesn't send/receive anything for
65 * a period of time equal to timeout, it will be destroyed
66 * \todo this functionality has to be implemented
67 *
Giulio Grassi624f6c62014-02-18 19:42:14 +010068 * \throws UdpChannel::Error if called multiple times
69 */
70 void
71 listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento6ad890a2015-03-09 03:43:17 +010072 const ConnectFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010073
74 /**
75 * \brief Create a face by establishing connection to remote endpoint
76 *
77 * \throw UdpChannel::Error if bind or connect on the socket fail
78 */
79 void
80 connect(const udp::Endpoint& remoteEndpoint,
Yukai Tu375dcb02015-08-01 13:04:43 +080081 ndn::nfd::FacePersistency persistency,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060082 const FaceCreatedCallback& onFaceCreated,
83 const ConnectFailedCallback& onConnectFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010084
85 /**
86 * \brief Get number of faces in the channel
87 */
88 size_t
89 size() const;
90
Davide Pesavento6ad890a2015-03-09 03:43:17 +010091 bool
92 isListening() const;
93
Giulio Grassi624f6c62014-02-18 19:42:14 +010094private:
Davide Pesavento292e5e12015-03-13 02:08:33 +010095 std::pair<bool, shared_ptr<UdpFace>>
Yukai Tu375dcb02015-08-01 13:04:43 +080096 createFace(const udp::Endpoint& remoteEndpoint, ndn::nfd::FacePersistency persistency);
Giulio Grassi624f6c62014-02-18 19:42:14 +010097
98 /**
Davide Pesavento6ad890a2015-03-09 03:43:17 +010099 * \brief The channel has received a new packet from a remote
100 * endpoint that is not associated with any UdpFace yet
Giulio Grassi624f6c62014-02-18 19:42:14 +0100101 */
102 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100103 handleNewPeer(const boost::system::error_code& error,
104 size_t nBytesReceived,
105 const FaceCreatedCallback& onFaceCreated,
106 const ConnectFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100107
Giulio Grassi624f6c62014-02-18 19:42:14 +0100108private:
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100109 std::map<udp::Endpoint, shared_ptr<UdpFace>> m_channelFaces;
110
Giulio Grassi624f6c62014-02-18 19:42:14 +0100111 udp::Endpoint m_localEndpoint;
112
113 /**
Davide Pesavento292e5e12015-03-13 02:08:33 +0100114 * \brief The latest peer that started communicating with us
Giulio Grassi624f6c62014-02-18 19:42:14 +0100115 */
Davide Pesavento292e5e12015-03-13 02:08:33 +0100116 udp::Endpoint m_remoteEndpoint;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100117
118 /**
Giulio Grassi624f6c62014-02-18 19:42:14 +0100119 * \brief Socket used to "accept" new communication
Giulio Grassi624f6c62014-02-18 19:42:14 +0100120 */
Davide Pesavento292e5e12015-03-13 02:08:33 +0100121 boost::asio::ip::udp::socket m_socket;
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -0700122
Giulio Grassi69871f02014-03-09 16:14:44 +0100123 /**
Davide Pesavento292e5e12015-03-13 02:08:33 +0100124 * \brief When this timeout expires, all idle on-demand faces will be closed
Giulio Grassi69871f02014-03-09 16:14:44 +0100125 */
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700126 time::seconds m_idleFaceTimeout;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100127
128 uint8_t m_inputBuffer[ndn::MAX_NDN_PACKET_SIZE];
Giulio Grassi624f6c62014-02-18 19:42:14 +0100129};
130
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100131inline bool
132UdpChannel::isListening() const
133{
Davide Pesavento292e5e12015-03-13 02:08:33 +0100134 return m_socket.is_open();
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100135}
136
Giulio Grassi624f6c62014-02-18 19:42:14 +0100137} // namespace nfd
138
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700139#endif // NFD_DAEMON_FACE_UDP_CHANNEL_HPP