blob: c623622e55b3f7063fb5208fa26cb76ced9cc1c5 [file] [log] [blame]
Eric Newberrya98bf932015-09-21 00:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry41aba102017-11-01 16:42:13 -07002/*
Eric Newberrycb6551e2020-03-02 14:12:16 -08003 * Copyright (c) 2014-2020, Regents of the University of California,
Eric Newberrya98bf932015-09-21 00:58:47 -07004 * 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_LINK_SERVICE_HPP
27#define NFD_DAEMON_FACE_LINK_SERVICE_HPP
28
Davide Pesaventocb425e82019-07-14 21:48:22 -040029#include "face-common.hpp"
Eric Newberry41aba102017-11-01 16:42:13 -070030#include "transport.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040031#include "common/counter.hpp"
Eric Newberrya98bf932015-09-21 00:58:47 -070032
33namespace nfd {
34namespace face {
35
Junxiao Shi57df2882015-11-11 06:12:35 -070036/** \brief counters provided by LinkService
37 * \note The type name 'LinkServiceCounters' is implementation detail.
38 * Use 'LinkService::Counters' in public API.
39 */
40class LinkServiceCounters
41{
42public:
43 /** \brief count of incoming Interests
44 */
45 PacketCounter nInInterests;
46
47 /** \brief count of outgoing Interests
48 */
49 PacketCounter nOutInterests;
50
Eric Newberry41aba102017-11-01 16:42:13 -070051 /** \brief count of Interests dropped by reliability system for exceeding allowed number of retx
52 */
Eric Newberry9d283ad2020-04-12 23:37:17 -070053 PacketCounter nInterestsExceededRetx;
Eric Newberry41aba102017-11-01 16:42:13 -070054
55 /** \brief count of incoming Data packets
Junxiao Shi57df2882015-11-11 06:12:35 -070056 */
57 PacketCounter nInData;
58
Eric Newberry41aba102017-11-01 16:42:13 -070059 /** \brief count of outgoing Data packets
Junxiao Shi57df2882015-11-11 06:12:35 -070060 */
61 PacketCounter nOutData;
62
63 /** \brief count of incoming Nacks
64 */
65 PacketCounter nInNacks;
66
67 /** \brief count of outgoing Nacks
68 */
69 PacketCounter nOutNacks;
70};
71
Junxiao Shicde37ad2015-12-24 01:02:05 -070072/** \brief the upper part of a Face
73 * \sa Face
Eric Newberrya98bf932015-09-21 00:58:47 -070074 */
Junxiao Shi57df2882015-11-11 06:12:35 -070075class LinkService : protected virtual LinkServiceCounters, noncopyable
Eric Newberrya98bf932015-09-21 00:58:47 -070076{
77public:
Junxiao Shi57df2882015-11-11 06:12:35 -070078 /** \brief counters provided by LinkService
79 */
80 typedef LinkServiceCounters Counters;
81
82public:
Eric Newberrya98bf932015-09-21 00:58:47 -070083 LinkService();
84
85 virtual
86 ~LinkService();
87
88 /** \brief set Face and Transport for LinkService
89 * \pre setFaceAndTransport has not been called
90 */
91 void
Junxiao Shicde37ad2015-12-24 01:02:05 -070092 setFaceAndTransport(Face& face, Transport& transport);
Eric Newberrya98bf932015-09-21 00:58:47 -070093
94 /** \return Face to which this LinkService is attached
95 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070096 const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -070097 getFace() const;
98
99 /** \return Transport to which this LinkService is attached
100 */
101 const Transport*
102 getTransport() const;
103
104 /** \return Transport to which this LinkService is attached
105 */
106 Transport*
107 getTransport();
108
Junxiao Shi57df2882015-11-11 06:12:35 -0700109 virtual const Counters&
110 getCounters() const;
111
Eric Newberrycb6551e2020-03-02 14:12:16 -0800112 virtual ssize_t
113 getEffectiveMtu() const;
114
Eric Newberrya98bf932015-09-21 00:58:47 -0700115public: // upper interface to be used by forwarding
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700116 /** \brief Send Interest
Eric Newberrya98bf932015-09-21 00:58:47 -0700117 * \pre setTransport has been called
118 */
119 void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700120 sendInterest(const Interest& interest);
Eric Newberrya98bf932015-09-21 00:58:47 -0700121
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700122 /** \brief Send Data
Eric Newberrya98bf932015-09-21 00:58:47 -0700123 * \pre setTransport has been called
124 */
125 void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700126 sendData(const Data& data);
Eric Newberrya98bf932015-09-21 00:58:47 -0700127
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700128 /** \brief Send Nack
Eric Newberrya98bf932015-09-21 00:58:47 -0700129 * \pre setTransport has been called
130 */
131 void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700132 sendNack(const ndn::lp::Nack& nack);
Eric Newberrya98bf932015-09-21 00:58:47 -0700133
134 /** \brief signals on Interest received
135 */
ashiqopu075bb7d2019-03-10 01:38:21 +0000136 signal::Signal<LinkService, Interest, EndpointId> afterReceiveInterest;
Eric Newberrya98bf932015-09-21 00:58:47 -0700137
138 /** \brief signals on Data received
139 */
ashiqopu075bb7d2019-03-10 01:38:21 +0000140 signal::Signal<LinkService, Data, EndpointId> afterReceiveData;
Eric Newberrya98bf932015-09-21 00:58:47 -0700141
142 /** \brief signals on Nack received
143 */
ashiqopu075bb7d2019-03-10 01:38:21 +0000144 signal::Signal<LinkService, lp::Nack, EndpointId> afterReceiveNack;
Eric Newberrya98bf932015-09-21 00:58:47 -0700145
Eric Newberry41aba102017-11-01 16:42:13 -0700146 /** \brief signals on Interest dropped by reliability system for exceeding allowed number of retx
147 */
148 signal::Signal<LinkService, Interest> onDroppedInterest;
149
Junxiao Shi57df2882015-11-11 06:12:35 -0700150public: // lower interface to be invoked by Transport
151 /** \brief performs LinkService specific operations to receive a lower-layer packet
Eric Newberrya98bf932015-09-21 00:58:47 -0700152 */
Junxiao Shi57df2882015-11-11 06:12:35 -0700153 void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400154 receivePacket(const Block& packet, const EndpointId& endpoint);
Eric Newberrya98bf932015-09-21 00:58:47 -0700155
156protected: // upper interface to be invoked in subclass (receive path termination)
157 /** \brief delivers received Interest to forwarding
158 */
159 void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400160 receiveInterest(const Interest& interest, const EndpointId& endpoint);
Eric Newberrya98bf932015-09-21 00:58:47 -0700161
162 /** \brief delivers received Data to forwarding
163 */
164 void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400165 receiveData(const Data& data, const EndpointId& endpoint);
Eric Newberrya98bf932015-09-21 00:58:47 -0700166
167 /** \brief delivers received Nack to forwarding
168 */
169 void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400170 receiveNack(const lp::Nack& nack, const EndpointId& endpoint);
Eric Newberrya98bf932015-09-21 00:58:47 -0700171
Eric Newberrya98bf932015-09-21 00:58:47 -0700172protected: // lower interface to be invoked in subclass (send path termination)
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700173 /** \brief send a lower-layer packet via Transport
Eric Newberrya98bf932015-09-21 00:58:47 -0700174 */
175 void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700176 sendPacket(const Block& packet);
Eric Newberrya98bf932015-09-21 00:58:47 -0700177
Eric Newberry41aba102017-11-01 16:42:13 -0700178protected:
179 void
180 notifyDroppedInterest(const Interest& packet);
181
Junxiao Shi57df2882015-11-11 06:12:35 -0700182private: // upper interface to be overridden in subclass (send path entrypoint)
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700183 /** \brief performs LinkService specific operations to send an Interest
Junxiao Shi57df2882015-11-11 06:12:35 -0700184 */
185 virtual void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700186 doSendInterest(const Interest& interest) = 0;
Junxiao Shi57df2882015-11-11 06:12:35 -0700187
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700188 /** \brief performs LinkService specific operations to send a Data
Junxiao Shi57df2882015-11-11 06:12:35 -0700189 */
190 virtual void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700191 doSendData(const Data& data) = 0;
Junxiao Shi57df2882015-11-11 06:12:35 -0700192
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700193 /** \brief performs LinkService specific operations to send a Nack
Junxiao Shi57df2882015-11-11 06:12:35 -0700194 */
195 virtual void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700196 doSendNack(const lp::Nack& nack) = 0;
Junxiao Shi57df2882015-11-11 06:12:35 -0700197
Eric Newberrya98bf932015-09-21 00:58:47 -0700198private: // lower interface to be overridden in subclass
199 virtual void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400200 doReceivePacket(const Block& packet, const EndpointId& endpoint) = 0;
Eric Newberrya98bf932015-09-21 00:58:47 -0700201
202private:
Junxiao Shicde37ad2015-12-24 01:02:05 -0700203 Face* m_face;
Eric Newberrya98bf932015-09-21 00:58:47 -0700204 Transport* m_transport;
Eric Newberrya98bf932015-09-21 00:58:47 -0700205};
206
Junxiao Shicde37ad2015-12-24 01:02:05 -0700207inline const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -0700208LinkService::getFace() const
209{
210 return m_face;
211}
212
213inline const Transport*
214LinkService::getTransport() const
215{
216 return m_transport;
217}
218
219inline Transport*
220LinkService::getTransport()
221{
222 return m_transport;
223}
224
Junxiao Shi57df2882015-11-11 06:12:35 -0700225inline const LinkService::Counters&
226LinkService::getCounters() const
227{
228 return *this;
229}
230
Eric Newberrycb6551e2020-03-02 14:12:16 -0800231inline ssize_t
232LinkService::getEffectiveMtu() const
233{
234 return m_transport->getMtu();
235}
236
Eric Newberrya98bf932015-09-21 00:58:47 -0700237inline void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400238LinkService::receivePacket(const Block& packet, const EndpointId& endpoint)
Eric Newberrya98bf932015-09-21 00:58:47 -0700239{
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400240 doReceivePacket(packet, endpoint);
Eric Newberrya98bf932015-09-21 00:58:47 -0700241}
242
243inline void
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700244LinkService::sendPacket(const Block& packet)
Eric Newberrya98bf932015-09-21 00:58:47 -0700245{
Teng Liangf3bc3ae2020-06-08 10:19:25 -0700246 m_transport->send(packet);
Eric Newberrya98bf932015-09-21 00:58:47 -0700247}
248
249std::ostream&
250operator<<(std::ostream& os, const FaceLogHelper<LinkService>& flh);
251
252template<typename T>
253typename std::enable_if<std::is_base_of<LinkService, T>::value &&
254 !std::is_same<LinkService, T>::value, std::ostream&>::type
255operator<<(std::ostream& os, const FaceLogHelper<T>& flh)
256{
257 return os << FaceLogHelper<LinkService>(flh.obj);
258}
259
260} // namespace face
261} // namespace nfd
262
263#endif // NFD_DAEMON_FACE_LINK_SERVICE_HPP