blob: f5dd16e80b920c057a202a273704837b1802c70b [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (C) 2014 Named Data Networking Project
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NFD_FACE_UDP_CHANNEL_HPP
8#define NFD_FACE_UDP_CHANNEL_HPP
9
Junxiao Shi61e3cc52014-03-03 20:40:28 -070010#include "channel.hpp"
Junxiao Shi61e3cc52014-03-03 20:40:28 -070011#include "core/global-io.hpp"
Giulio Grassi69871f02014-03-09 16:14:44 +010012#include "core/scheduler.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010013#include "udp-face.hpp"
14
15namespace nfd {
16
17namespace udp {
Junxiao Shi61e3cc52014-03-03 20:40:28 -070018typedef boost::asio::ip::udp::endpoint Endpoint;
Giulio Grassi624f6c62014-02-18 19:42:14 +010019} // namespace udp
20
21/**
22 * \brief Class implementing UDP-based channel to create faces
23 *
24 *
25 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070026class UdpChannel : public Channel
Giulio Grassi624f6c62014-02-18 19:42:14 +010027{
28public:
Giulio Grassi624f6c62014-02-18 19:42:14 +010029 /**
30 * \brief Exception of UdpChannel
31 */
32 struct Error : public std::runtime_error
33 {
34 Error(const std::string& what) : runtime_error(what) {}
35 };
Giulio Grassi624f6c62014-02-18 19:42:14 +010036
37 /**
38 * \brief Create UDP channel for the local endpoint
39 *
40 * To enable creation of faces upon incoming connections,
41 * one needs to explicitly call UdpChannel::listen method.
42 * The created socket is bound to the localEndpoint.
43 * reuse_address option is set
44 *
45 * \throw UdpChannel::Error if bind on the socket fails
46 */
47 UdpChannel(const udp::Endpoint& localEndpoint,
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070048 const time::seconds& timeout);
Giulio Grassi624f6c62014-02-18 19:42:14 +010049
Junxiao Shi61e3cc52014-03-03 20:40:28 -070050 virtual
51 ~UdpChannel();
52
Giulio Grassi624f6c62014-02-18 19:42:14 +010053 /**
54 * \brief Enable listening on the local endpoint, accept connections,
55 * and create faces when remote host makes a connection
56 * \param onFaceCreated Callback to notify successful creation of the face
57 * \param onAcceptFailed Callback to notify when channel fails
58 *
59 * \throws UdpChannel::Error if called multiple times
60 */
61 void
62 listen(const FaceCreatedCallback& onFaceCreated,
63 const ConnectFailedCallback& onAcceptFailed);
64
65 /**
66 * \brief Create a face by establishing connection to remote endpoint
67 *
68 * \throw UdpChannel::Error if bind or connect on the socket fail
69 */
70 void
71 connect(const udp::Endpoint& remoteEndpoint,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060072 const FaceCreatedCallback& onFaceCreated,
73 const ConnectFailedCallback& onConnectFailed);
Giulio Grassi624f6c62014-02-18 19:42:14 +010074 /**
75 * \brief Create a face by establishing connection to the specified
76 * remote host and remote port
77 *
78 * This method will never block and will return immediately. All
79 * necessary hostname and port resolution and connection will happen
80 * in asynchronous mode.
81 *
82 * If connection cannot be established within specified timeout, it
83 * will be aborted.
84 */
85 void
86 connect(const std::string& remoteHost, const std::string& remotePort,
87 const FaceCreatedCallback& onFaceCreated,
88 const ConnectFailedCallback& onConnectFailed);
89
90 /**
91 * \brief Get number of faces in the channel
92 */
93 size_t
94 size() const;
95
96private:
97 shared_ptr<UdpFace>
98 createFace(const shared_ptr<boost::asio::ip::udp::socket>& socket,
Giulio Grassi69871f02014-03-09 16:14:44 +010099 const FaceCreatedCallback& onFaceCreated,
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700100 bool isOnDemand);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100101 void
102 afterFaceFailed(udp::Endpoint& endpoint);
103
104 /**
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700105 * \brief The UdpChannel has received a new pkt from a remote endpoint not yet
Giulio Grassi624f6c62014-02-18 19:42:14 +0100106 * associated with any UdpFace
107 */
108 void
109 newPeer(const boost::system::error_code& error,
110 std::size_t nBytesReceived);
111
112 void
113 handleEndpointResolution(const boost::system::error_code& error,
114 boost::asio::ip::udp::resolver::iterator remoteEndpoint,
115 const FaceCreatedCallback& onFaceCreated,
116 const ConnectFailedCallback& onConnectFailed,
117 const shared_ptr<boost::asio::ip::udp::resolver>& resolver);
118
Giulio Grassi69871f02014-03-09 16:14:44 +0100119 void
120 closeIdleFaces();
121
Giulio Grassi624f6c62014-02-18 19:42:14 +0100122private:
123 udp::Endpoint m_localEndpoint;
124
125 /**
126 * \brief Endpoint used to store the information about the last new remote endpoint
127 */
128 udp::Endpoint m_newRemoteEndpoint;
129
130 /**
131 * Callbacks for face creation.
132 * New communications are detected using async_receive_from.
133 * Its handler has a fixed signature. No space for the face callback
134 */
135 FaceCreatedCallback onFaceCreatedNewPeerCallback;
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700136
Giulio Grassi624f6c62014-02-18 19:42:14 +0100137 // @todo remove the onConnectFailedNewPeerCallback if it remains unused
138 ConnectFailedCallback onConnectFailedNewPeerCallback;
139
140 /**
141 * \brief Socket used to "accept" new communication
142 **/
143 shared_ptr<boost::asio::ip::udp::socket> m_socket;
144
145 uint8_t m_inputBuffer[MAX_NDN_PACKET_SIZE];
146
147 typedef std::map< udp::Endpoint, shared_ptr<UdpFace> > ChannelFaceMap;
148 ChannelFaceMap m_channelFaces;
149
150 /**
151 * \brief If true, it means the function listen has already been called
152 */
153 bool m_isListening;
Giulio Grassi69871f02014-03-09 16:14:44 +0100154
155 /**
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700156 * \brief every time m_idleFaceTimeout expires all the idle (and on-demand)
Giulio Grassi69871f02014-03-09 16:14:44 +0100157 * faces will be removed
158 */
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700159 time::seconds m_idleFaceTimeout;
Giulio Grassi69871f02014-03-09 16:14:44 +0100160
161 EventId m_closeIdleFaceEvent;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100162
163};
164
165} // namespace nfd
166
167#endif // NFD_FACE_UDP_CHANNEL_HPP