blob: 56ff73050815fcdb5726f8566b423bd688b6bd73 [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
256protected: // properties to be set by subclass
257 void
258 setLocalUri(const FaceUri& uri);
259
260 void
261 setRemoteUri(const FaceUri& uri);
262
263 void
264 setScope(ndn::nfd::FaceScope scope);
265
266 void
267 setLinkType(ndn::nfd::LinkType linkType);
268
Junxiao Shi13546112015-10-14 19:33:07 -0700269 void
270 setMtu(ssize_t mtu);
271
Eric Newberrya98bf932015-09-21 00:58:47 -0700272 /** \brief set transport state
273 *
274 * Only the following transitions are valid:
275 * UP->DOWN, DOWN->UP, UP/DOWN->CLOSING/FAILED, CLOSING/FAILED->CLOSED
276 *
277 * \throw std::runtime_error transition is invalid.
278 */
279 void
280 setState(TransportState newState);
281
282protected: // to be overridden by subclass
283 /** \brief invoked before persistency is changed
284 * \throw std::invalid_argument new persistency is not supported
285 * \throw std::runtime_error transition is disallowed
Eric Newberrya98bf932015-09-21 00:58:47 -0700286 */
287 virtual void
Davide Pesavento8728a252015-11-06 04:01:22 +0100288 beforeChangePersistency(ndn::nfd::FacePersistency newPersistency) = 0;
Eric Newberrya98bf932015-09-21 00:58:47 -0700289
290 /** \brief performs Transport specific operations to close the transport
291 *
Junxiao Shi13546112015-10-14 19:33:07 -0700292 * This is invoked once by \p close() after changing state to CLOSING.
293 * It will not be invoked by Transport class if the transport is already CLOSING or CLOSED.
294 *
Eric Newberrya98bf932015-09-21 00:58:47 -0700295 * When the cleanup procedure is complete, this method should change state to CLOSED.
Junxiao Shi13546112015-10-14 19:33:07 -0700296 * This transition can happen synchronously or asynchronously.
Eric Newberrya98bf932015-09-21 00:58:47 -0700297 */
298 virtual void
299 doClose() = 0;
300
301private: // to be overridden by subclass
302 /** \brief performs Transport specific operations to send a packet
303 * \param packet the packet, which must be a well-formed TLV block
Junxiao Shi13546112015-10-14 19:33:07 -0700304 * \pre state is either UP or DOWN
Eric Newberrya98bf932015-09-21 00:58:47 -0700305 */
306 virtual void
307 doSend(Packet&& packet) = 0;
308
309private:
Junxiao Shicde37ad2015-12-24 01:02:05 -0700310 Face* m_face;
Eric Newberrya98bf932015-09-21 00:58:47 -0700311 LinkService* m_service;
312 FaceUri m_localUri;
313 FaceUri m_remoteUri;
314 ndn::nfd::FaceScope m_scope;
315 ndn::nfd::FacePersistency m_persistency;
316 ndn::nfd::LinkType m_linkType;
Junxiao Shi13546112015-10-14 19:33:07 -0700317 ssize_t m_mtu;
Eric Newberrya98bf932015-09-21 00:58:47 -0700318 TransportState m_state;
Eric Newberrya98bf932015-09-21 00:58:47 -0700319};
320
Junxiao Shicde37ad2015-12-24 01:02:05 -0700321inline const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -0700322Transport::getFace() const
323{
324 return m_face;
325}
326
327inline const LinkService*
328Transport::getLinkService() const
329{
330 return m_service;
331}
332
333inline LinkService*
334Transport::getLinkService()
335{
336 return m_service;
337}
338
Junxiao Shi57df2882015-11-11 06:12:35 -0700339inline const Transport::Counters&
340Transport::getCounters() const
341{
342 return *this;
343}
344
Eric Newberrya98bf932015-09-21 00:58:47 -0700345inline FaceUri
346Transport::getLocalUri() const
347{
348 return m_localUri;
349}
350
Junxiao Shi13546112015-10-14 19:33:07 -0700351inline void
352Transport::setLocalUri(const FaceUri& uri)
353{
354 m_localUri = uri;
355}
356
Eric Newberrya98bf932015-09-21 00:58:47 -0700357inline FaceUri
358Transport::getRemoteUri() const
359{
360 return m_remoteUri;
361}
362
Junxiao Shi13546112015-10-14 19:33:07 -0700363inline void
364Transport::setRemoteUri(const FaceUri& uri)
365{
366 m_remoteUri = uri;
367}
368
Eric Newberrya98bf932015-09-21 00:58:47 -0700369inline ndn::nfd::FaceScope
370Transport::getScope() const
371{
372 return m_scope;
373}
374
Junxiao Shi13546112015-10-14 19:33:07 -0700375inline void
376Transport::setScope(ndn::nfd::FaceScope scope)
377{
378 m_scope = scope;
379}
380
Eric Newberrya98bf932015-09-21 00:58:47 -0700381inline ndn::nfd::FacePersistency
382Transport::getPersistency() const
383{
384 return m_persistency;
385}
386
Eric Newberrya98bf932015-09-21 00:58:47 -0700387inline ndn::nfd::LinkType
388Transport::getLinkType() const
389{
390 return m_linkType;
391}
392
Eric Newberrya98bf932015-09-21 00:58:47 -0700393inline void
394Transport::setLinkType(ndn::nfd::LinkType linkType)
395{
396 m_linkType = linkType;
397}
398
Junxiao Shi13546112015-10-14 19:33:07 -0700399inline ssize_t
400Transport::getMtu() const
401{
402 return m_mtu;
403}
404
405inline void
406Transport::setMtu(ssize_t mtu)
407{
408 BOOST_ASSERT(mtu == MTU_UNLIMITED || mtu > 0);
409 m_mtu = mtu;
410}
411
412inline TransportState
413Transport::getState() const
414{
415 return m_state;
416}
417
Eric Newberrya98bf932015-09-21 00:58:47 -0700418std::ostream&
419operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh);
420
421template<typename T>
422typename std::enable_if<std::is_base_of<Transport, T>::value &&
423 !std::is_same<Transport, T>::value, std::ostream&>::type
424operator<<(std::ostream& os, const FaceLogHelper<T>& flh)
425{
426 return os << FaceLogHelper<Transport>(flh.obj);
427}
428
429} // namespace face
430} // namespace nfd
431
432#endif // NFD_DAEMON_FACE_TRANSPORT_HPP