blob: a12ce7c50e74a70bb63a2e44f21209e4ae7bbc8c [file] [log] [blame]
Eric Newberrya98bf932015-09-21 00:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * 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.
10 *
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/>.
24 */
25
26#ifndef NFD_DAEMON_FACE_TRANSPORT_HPP
27#define NFD_DAEMON_FACE_TRANSPORT_HPP
28
Junxiao Shida93f1f2015-11-11 06:13:16 -070029#include "core/counter.hpp"
Eric Newberrya98bf932015-09-21 00:58:47 -070030#include "face-log.hpp"
Junxiao Shi0de23a22015-12-03 20:07:02 +000031#include <ndn-cxx/encoding/nfd-constants.hpp>
Eric Newberrya98bf932015-09-21 00:58:47 -070032
33namespace nfd {
34namespace face {
35
Junxiao Shicde37ad2015-12-24 01:02:05 -070036class Face;
Eric Newberrya98bf932015-09-21 00:58:47 -070037class LinkService;
38
39/** \brief indicates the state of a transport
40 */
41enum class TransportState {
42 NONE,
43 UP, ///< the transport is up
44 DOWN, ///< the transport is down temporarily, and is being recovered
45 CLOSING, ///< the transport is requested to be closed
46 FAILED, ///< the transport is being closed due to a failure
47 CLOSED ///< the transport is closed, and can be safely deallocated
48};
49
50std::ostream&
51operator<<(std::ostream& os, TransportState state);
52
Junxiao Shi57df2882015-11-11 06:12:35 -070053/** \brief counters provided by Transport
54 * \note The type name 'TransportCounters' is implementation detail.
55 * Use 'Transport::Counters' in public API.
56 */
57class TransportCounters
58{
59public:
60 /** \brief count of incoming packets
61 *
62 * A 'packet' typically means a top-level TLV block.
63 * For a datagram-based transport, an incoming packet that cannot be parsed as TLV
64 * would not be counted.
65 */
66 PacketCounter nInPackets;
67
68 /** \brief count of outgoing packets
69 *
70 * A 'packet' typically means a top-level TLV block.
71 * This counter is incremented only if transport is UP.
72 */
73 PacketCounter nOutPackets;
74
75 /** \brief total incoming bytes
76 *
77 * This counter includes headers imposed by NFD (such as NDNLP),
78 * but excludes overhead of underlying protocol (such as IP header).
79 * For a datagram-based transport, an incoming packet that cannot be parsed as TLV
80 * would not be counted.
81 */
82 ByteCounter nInBytes;
83
84 /** \brief total outgoing bytes
85 *
86 * This counter includes headers imposed by NFD (such as NDNLP),
87 * but excludes overhead of underlying protocol (such as IP header).
88 * This counter is increased only if transport is UP.
89 */
90 ByteCounter nOutBytes;
91};
92
Junxiao Shi13546112015-10-14 19:33:07 -070093/** \brief indicates the transport has no limit on payload size
94 */
95const ssize_t MTU_UNLIMITED = -1;
96
Junxiao Shi5b8a2b22015-10-22 17:20:44 -070097/** \brief (for internal use) indicates MTU field is unset
98 */
99const ssize_t MTU_INVALID = -2;
100
Junxiao Shicde37ad2015-12-24 01:02:05 -0700101/** \brief the lower part of a Face
102 * \sa Face
Eric Newberrya98bf932015-09-21 00:58:47 -0700103 */
Junxiao Shi57df2882015-11-11 06:12:35 -0700104class Transport : protected virtual TransportCounters, noncopyable
Eric Newberrya98bf932015-09-21 00:58:47 -0700105{
106public:
107 /** \brief identifies an endpoint on the link
108 */
109 typedef uint64_t EndpointId;
110
111 /** \brief stores a packet along with the remote endpoint
112 */
113 class Packet
114 {
115 public:
116 Packet() = default;
117
118 explicit
119 Packet(Block&& packet);
120
121 public:
122 /** \brief the packet as a TLV block
123 */
124 Block packet;
125
126 /** \brief identifies the remote endpoint
127 *
128 * This ID is only meaningful in the context of the same Transport.
129 * Incoming packets from the same remote endpoint have the same EndpointId,
130 * and incoming packets from different remote endpoints have different EndpointIds.
131 */
132 EndpointId remoteEndpoint;
133 };
134
Junxiao Shi57df2882015-11-11 06:12:35 -0700135 /** \brief counters provided by Transport
136 */
137 typedef TransportCounters Counters;
138
Junxiao Shi5b8a2b22015-10-22 17:20:44 -0700139 /** \brief constructor
140 *
141 * Transport constructor initializes static properties to invalid values.
142 * Subclass constructor must explicitly set every static property.
143 *
144 * This constructor initializes TransportState to UP;
145 * subclass constructor can rely on this default value.
146 */
Eric Newberrya98bf932015-09-21 00:58:47 -0700147 Transport();
148
149 virtual
150 ~Transport();
151
152public:
153 /** \brief set Face and LinkService for Transport
154 * \pre setFaceAndLinkService has not been called
155 */
156 void
Junxiao Shicde37ad2015-12-24 01:02:05 -0700157 setFaceAndLinkService(Face& face, LinkService& service);
Eric Newberrya98bf932015-09-21 00:58:47 -0700158
159 /** \return Face to which this Transport is attached
160 */
Junxiao Shicde37ad2015-12-24 01:02:05 -0700161 const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -0700162 getFace() const;
163
164 /** \return LinkService to which this Transport is attached
165 */
166 const LinkService*
167 getLinkService() const;
168
169 /** \return LinkService to which this Transport is attached
170 */
171 LinkService*
172 getLinkService();
173
Junxiao Shi57df2882015-11-11 06:12:35 -0700174 virtual const Counters&
175 getCounters() const;
176
Eric Newberrya98bf932015-09-21 00:58:47 -0700177public: // upper interface
178 /** \brief request the transport to be closed
179 *
180 * This operation is effective only if transport is in UP or DOWN state,
181 * otherwise it has no effect.
182 * The transport changes state to CLOSING, and performs cleanup procedure.
183 * The state will be changed to CLOSED when cleanup is complete, which may
184 * happen synchronously or asynchronously.
185 */
186 void
187 close();
188
189 /** \brief send a link-layer packet
Junxiao Shi13546112015-10-14 19:33:07 -0700190 * \note This operation has no effect if \p getState() is neither UP nor DOWN
191 * \warning undefined behavior if packet size exceeds MTU limit
Eric Newberrya98bf932015-09-21 00:58:47 -0700192 */
193 void
194 send(Packet&& packet);
195
196protected: // upper interface to be invoked by subclass
197 /** \brief receive a link-layer packet
Junxiao Shi13546112015-10-14 19:33:07 -0700198 * \warning undefined behavior if packet size exceeds MTU limit
Eric Newberrya98bf932015-09-21 00:58:47 -0700199 */
200 void
201 receive(Packet&& packet);
202
203public: // static properties
204 /** \return a FaceUri representing local endpoint
205 */
206 FaceUri
207 getLocalUri() const;
208
209 /** \return a FaceUri representing remote endpoint
210 */
211 FaceUri
212 getRemoteUri() const;
213
214 /** \return whether face is local or non-local for scope control purpose
215 */
216 ndn::nfd::FaceScope
217 getScope() const;
218
219 /** \return face persistency setting
220 */
221 ndn::nfd::FacePersistency
222 getPersistency() const;
223
224 /** \brief changes face persistency setting
225 */
226 void
227 setPersistency(ndn::nfd::FacePersistency persistency);
228
229 /** \return whether face is point-to-point or multi-access
230 */
231 ndn::nfd::LinkType
232 getLinkType() const;
233
Junxiao Shi13546112015-10-14 19:33:07 -0700234 /** \return maximum payload size
235 * \retval MTU_UNLIMITED transport has no limit on payload size
236 *
237 * This size is the maximum packet size that can be sent or received through this transport.
238 *
239 * For a datagram-based transport, this is typically the Maximum Transmission Unit (MTU),
240 * after the overhead of headers introduced by the transport has been accounted for.
241 * For a stream-based transport, this is typically unlimited (MTU_UNLIMITED).
242 */
243 ssize_t
244 getMtu() const;
245
Eric Newberrya98bf932015-09-21 00:58:47 -0700246public: // dynamic properties
247 /** \return transport state
248 */
249 TransportState
250 getState() const;
251
252 /** \brief signals when transport state changes
253 */
254 signal::Signal<Transport, TransportState/*old*/, TransportState/*new*/> afterStateChange;
255
Eric Newberryc64d30a2015-12-26 11:07:27 -0700256 /** \return expiration time of the transport
257 * \retval time::steady_clock::TimePoint::max() the transport has indefinite lifetime
258 */
259 time::steady_clock::TimePoint
260 getExpirationTime() const;
261
Eric Newberrya98bf932015-09-21 00:58:47 -0700262protected: // properties to be set by subclass
263 void
264 setLocalUri(const FaceUri& uri);
265
266 void
267 setRemoteUri(const FaceUri& uri);
268
269 void
270 setScope(ndn::nfd::FaceScope scope);
271
272 void
273 setLinkType(ndn::nfd::LinkType linkType);
274
Junxiao Shi13546112015-10-14 19:33:07 -0700275 void
276 setMtu(ssize_t mtu);
277
Eric Newberrya98bf932015-09-21 00:58:47 -0700278 /** \brief set transport state
279 *
280 * Only the following transitions are valid:
281 * UP->DOWN, DOWN->UP, UP/DOWN->CLOSING/FAILED, CLOSING/FAILED->CLOSED
282 *
283 * \throw std::runtime_error transition is invalid.
284 */
285 void
286 setState(TransportState newState);
287
Eric Newberryc64d30a2015-12-26 11:07:27 -0700288 void
289 setExpirationTime(const time::steady_clock::TimePoint& expirationTime);
290
Eric Newberrya98bf932015-09-21 00:58:47 -0700291protected: // to be overridden by subclass
292 /** \brief invoked before persistency is changed
293 * \throw std::invalid_argument new persistency is not supported
294 * \throw std::runtime_error transition is disallowed
Eric Newberrya98bf932015-09-21 00:58:47 -0700295 */
296 virtual void
Davide Pesavento8728a252015-11-06 04:01:22 +0100297 beforeChangePersistency(ndn::nfd::FacePersistency newPersistency) = 0;
Eric Newberrya98bf932015-09-21 00:58:47 -0700298
299 /** \brief performs Transport specific operations to close the transport
300 *
Junxiao Shi13546112015-10-14 19:33:07 -0700301 * This is invoked once by \p close() after changing state to CLOSING.
302 * It will not be invoked by Transport class if the transport is already CLOSING or CLOSED.
303 *
Eric Newberrya98bf932015-09-21 00:58:47 -0700304 * When the cleanup procedure is complete, this method should change state to CLOSED.
Junxiao Shi13546112015-10-14 19:33:07 -0700305 * This transition can happen synchronously or asynchronously.
Eric Newberrya98bf932015-09-21 00:58:47 -0700306 */
307 virtual void
308 doClose() = 0;
309
310private: // to be overridden by subclass
311 /** \brief performs Transport specific operations to send a packet
312 * \param packet the packet, which must be a well-formed TLV block
Junxiao Shi13546112015-10-14 19:33:07 -0700313 * \pre state is either UP or DOWN
Eric Newberrya98bf932015-09-21 00:58:47 -0700314 */
315 virtual void
316 doSend(Packet&& packet) = 0;
317
318private:
Junxiao Shicde37ad2015-12-24 01:02:05 -0700319 Face* m_face;
Eric Newberrya98bf932015-09-21 00:58:47 -0700320 LinkService* m_service;
321 FaceUri m_localUri;
322 FaceUri m_remoteUri;
323 ndn::nfd::FaceScope m_scope;
324 ndn::nfd::FacePersistency m_persistency;
325 ndn::nfd::LinkType m_linkType;
Junxiao Shi13546112015-10-14 19:33:07 -0700326 ssize_t m_mtu;
Eric Newberrya98bf932015-09-21 00:58:47 -0700327 TransportState m_state;
Eric Newberryc64d30a2015-12-26 11:07:27 -0700328 time::steady_clock::TimePoint m_expirationTime;
Eric Newberrya98bf932015-09-21 00:58:47 -0700329};
330
Junxiao Shicde37ad2015-12-24 01:02:05 -0700331inline const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -0700332Transport::getFace() const
333{
334 return m_face;
335}
336
337inline const LinkService*
338Transport::getLinkService() const
339{
340 return m_service;
341}
342
343inline LinkService*
344Transport::getLinkService()
345{
346 return m_service;
347}
348
Junxiao Shi57df2882015-11-11 06:12:35 -0700349inline const Transport::Counters&
350Transport::getCounters() const
351{
352 return *this;
353}
354
Eric Newberrya98bf932015-09-21 00:58:47 -0700355inline FaceUri
356Transport::getLocalUri() const
357{
358 return m_localUri;
359}
360
Junxiao Shi13546112015-10-14 19:33:07 -0700361inline void
362Transport::setLocalUri(const FaceUri& uri)
363{
364 m_localUri = uri;
365}
366
Eric Newberrya98bf932015-09-21 00:58:47 -0700367inline FaceUri
368Transport::getRemoteUri() const
369{
370 return m_remoteUri;
371}
372
Junxiao Shi13546112015-10-14 19:33:07 -0700373inline void
374Transport::setRemoteUri(const FaceUri& uri)
375{
376 m_remoteUri = uri;
377}
378
Eric Newberrya98bf932015-09-21 00:58:47 -0700379inline ndn::nfd::FaceScope
380Transport::getScope() const
381{
382 return m_scope;
383}
384
Junxiao Shi13546112015-10-14 19:33:07 -0700385inline void
386Transport::setScope(ndn::nfd::FaceScope scope)
387{
388 m_scope = scope;
389}
390
Eric Newberrya98bf932015-09-21 00:58:47 -0700391inline ndn::nfd::FacePersistency
392Transport::getPersistency() const
393{
394 return m_persistency;
395}
396
Eric Newberrya98bf932015-09-21 00:58:47 -0700397inline ndn::nfd::LinkType
398Transport::getLinkType() const
399{
400 return m_linkType;
401}
402
Eric Newberrya98bf932015-09-21 00:58:47 -0700403inline void
404Transport::setLinkType(ndn::nfd::LinkType linkType)
405{
406 m_linkType = linkType;
407}
408
Junxiao Shi13546112015-10-14 19:33:07 -0700409inline ssize_t
410Transport::getMtu() const
411{
412 return m_mtu;
413}
414
415inline void
416Transport::setMtu(ssize_t mtu)
417{
418 BOOST_ASSERT(mtu == MTU_UNLIMITED || mtu > 0);
419 m_mtu = mtu;
420}
421
422inline TransportState
423Transport::getState() const
424{
425 return m_state;
426}
427
Eric Newberryc64d30a2015-12-26 11:07:27 -0700428inline time::steady_clock::TimePoint
429Transport::getExpirationTime() const
430{
431 return m_expirationTime;
432}
433
434inline void
435Transport::setExpirationTime(const time::steady_clock::TimePoint& expirationTime)
436{
437 m_expirationTime = expirationTime;
438}
439
Eric Newberrya98bf932015-09-21 00:58:47 -0700440std::ostream&
441operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh);
442
443template<typename T>
444typename std::enable_if<std::is_base_of<Transport, T>::value &&
445 !std::is_same<Transport, T>::value, std::ostream&>::type
446operator<<(std::ostream& os, const FaceLogHelper<T>& flh)
447{
448 return os << FaceLogHelper<Transport>(flh.obj);
449}
450
451} // namespace face
452} // namespace nfd
453
454#endif // NFD_DAEMON_FACE_TRANSPORT_HPP