blob: 0825ad474909f3b37a748339f7254f760d4f16e0 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yukai Tu0a49d342015-09-13 12:54:22 +08003 * Copyright (c) 2014-2015, 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"
Yukai Tu0a49d342015-09-13 12:54:22 +080030#include "lp-face-wrapper.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010031
32namespace nfd {
33
34namespace udp {
Junxiao Shi61e3cc52014-03-03 20:40:28 -070035typedef boost::asio::ip::udp::endpoint Endpoint;
Giulio Grassi624f6c62014-02-18 19:42:14 +010036} // namespace udp
37
38/**
39 * \brief Class implementing UDP-based channel to create faces
Giulio Grassi624f6c62014-02-18 19:42:14 +010040 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070041class UdpChannel : public Channel
Giulio Grassi624f6c62014-02-18 19:42:14 +010042{
43public:
Giulio Grassi624f6c62014-02-18 19:42:14 +010044 /**
Giulio Grassi624f6c62014-02-18 19:42:14 +010045 * \brief Create UDP channel for the local endpoint
46 *
47 * To enable creation of faces upon incoming connections,
48 * one needs to explicitly call UdpChannel::listen method.
49 * The created socket is bound to the localEndpoint.
50 * reuse_address option is set
51 *
52 * \throw UdpChannel::Error if bind on the socket fails
53 */
54 UdpChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070055 const time::seconds& timeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010056
57 /**
58 * \brief Enable listening on the local endpoint, accept connections,
59 * and create faces when remote host makes a connection
60 * \param onFaceCreated Callback to notify successful creation of the face
61 * \param onAcceptFailed Callback to notify when channel fails
62 *
Alexander Afanasyev5959b012014-06-02 19:18:12 +030063 * Once a face is created, if it doesn't send/receive anything for
64 * a period of time equal to timeout, it will be destroyed
65 * \todo this functionality has to be implemented
66 *
Giulio Grassi624f6c62014-02-18 19:42:14 +010067 * \throws UdpChannel::Error if called multiple times
68 */
69 void
70 listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento6ad890a2015-03-09 03:43:17 +010071 const ConnectFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010072
73 /**
74 * \brief Create a face by establishing connection to remote endpoint
75 *
76 * \throw UdpChannel::Error if bind or connect on the socket fail
77 */
78 void
79 connect(const udp::Endpoint& remoteEndpoint,
Yukai Tu375dcb02015-08-01 13:04:43 +080080 ndn::nfd::FacePersistency persistency,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060081 const FaceCreatedCallback& onFaceCreated,
82 const ConnectFailedCallback& onConnectFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010083
84 /**
85 * \brief Get number of faces in the channel
86 */
87 size_t
88 size() const;
89
Davide Pesavento6ad890a2015-03-09 03:43:17 +010090 bool
91 isListening() const;
92
Giulio Grassi624f6c62014-02-18 19:42:14 +010093private:
Yukai Tu0a49d342015-09-13 12:54:22 +080094 std::pair<bool, shared_ptr<face::LpFaceWrapper>>
Yukai Tu375dcb02015-08-01 13:04:43 +080095 createFace(const udp::Endpoint& remoteEndpoint, ndn::nfd::FacePersistency persistency);
Giulio Grassi624f6c62014-02-18 19:42:14 +010096
97 /**
Davide Pesavento6ad890a2015-03-09 03:43:17 +010098 * \brief The channel has received a new packet from a remote
99 * endpoint that is not associated with any UdpFace yet
Giulio Grassi624f6c62014-02-18 19:42:14 +0100100 */
101 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100102 handleNewPeer(const boost::system::error_code& error,
103 size_t nBytesReceived,
104 const FaceCreatedCallback& onFaceCreated,
105 const ConnectFailedCallback& onReceiveFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100106
Giulio Grassi624f6c62014-02-18 19:42:14 +0100107private:
Yukai Tu0a49d342015-09-13 12:54:22 +0800108 std::map<udp::Endpoint, shared_ptr<face::LpFaceWrapper>> m_channelFaces;
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100109
Giulio Grassi624f6c62014-02-18 19:42:14 +0100110 udp::Endpoint m_localEndpoint;
111
112 /**
Davide Pesavento292e5e12015-03-13 02:08:33 +0100113 * \brief The latest peer that started communicating with us
Giulio Grassi624f6c62014-02-18 19:42:14 +0100114 */
Davide Pesavento292e5e12015-03-13 02:08:33 +0100115 udp::Endpoint m_remoteEndpoint;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100116
117 /**
Giulio Grassi624f6c62014-02-18 19:42:14 +0100118 * \brief Socket used to "accept" new communication
Giulio Grassi624f6c62014-02-18 19:42:14 +0100119 */
Davide Pesavento292e5e12015-03-13 02:08:33 +0100120 boost::asio::ip::udp::socket m_socket;
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -0700121
Giulio Grassi69871f02014-03-09 16:14:44 +0100122 /**
Davide Pesavento292e5e12015-03-13 02:08:33 +0100123 * \brief When this timeout expires, all idle on-demand faces will be closed
Giulio Grassi69871f02014-03-09 16:14:44 +0100124 */
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700125 time::seconds m_idleFaceTimeout;
Davide Pesavento292e5e12015-03-13 02:08:33 +0100126
127 uint8_t m_inputBuffer[ndn::MAX_NDN_PACKET_SIZE];
Giulio Grassi624f6c62014-02-18 19:42:14 +0100128};
129
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100130inline bool
131UdpChannel::isListening() const
132{
Davide Pesavento292e5e12015-03-13 02:08:33 +0100133 return m_socket.is_open();
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100134}
135
Giulio Grassi624f6c62014-02-18 19:42:14 +0100136} // namespace nfd
137
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700138#endif // NFD_DAEMON_FACE_UDP_CHANNEL_HPP