blob: 9d6d565088b6f9844cc603ee5c117a68ff36c062 [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_LINK_SERVICE_HPP
27#define NFD_DAEMON_FACE_LINK_SERVICE_HPP
28
Junxiao Shida93f1f2015-11-11 06:13:16 -070029#include "core/counter.hpp"
Eric Newberrya98bf932015-09-21 00:58:47 -070030#include "transport.hpp"
31#include "face-log.hpp"
32
33namespace nfd {
34namespace face {
35
Junxiao Shicde37ad2015-12-24 01:02:05 -070036class Face;
Eric Newberrya98bf932015-09-21 00:58:47 -070037
Junxiao Shi57df2882015-11-11 06:12:35 -070038/** \brief counters provided by LinkService
39 * \note The type name 'LinkServiceCounters' is implementation detail.
40 * Use 'LinkService::Counters' in public API.
41 */
42class LinkServiceCounters
43{
44public:
45 /** \brief count of incoming Interests
46 */
47 PacketCounter nInInterests;
48
49 /** \brief count of outgoing Interests
50 */
51 PacketCounter nOutInterests;
52
53 /** \brief count of incoming Data
54 */
55 PacketCounter nInData;
56
57 /** \brief count of outgoing Data
58 */
59 PacketCounter nOutData;
60
61 /** \brief count of incoming Nacks
62 */
63 PacketCounter nInNacks;
64
65 /** \brief count of outgoing Nacks
66 */
67 PacketCounter nOutNacks;
68};
69
Junxiao Shicde37ad2015-12-24 01:02:05 -070070/** \brief the upper part of a Face
71 * \sa Face
Eric Newberrya98bf932015-09-21 00:58:47 -070072 */
Junxiao Shi57df2882015-11-11 06:12:35 -070073class LinkService : protected virtual LinkServiceCounters, noncopyable
Eric Newberrya98bf932015-09-21 00:58:47 -070074{
75public:
Junxiao Shi57df2882015-11-11 06:12:35 -070076 /** \brief counters provided by LinkService
77 */
78 typedef LinkServiceCounters Counters;
79
80public:
Eric Newberrya98bf932015-09-21 00:58:47 -070081 LinkService();
82
83 virtual
84 ~LinkService();
85
86 /** \brief set Face and Transport for LinkService
87 * \pre setFaceAndTransport has not been called
88 */
89 void
Junxiao Shicde37ad2015-12-24 01:02:05 -070090 setFaceAndTransport(Face& face, Transport& transport);
Eric Newberrya98bf932015-09-21 00:58:47 -070091
92 /** \return Face to which this LinkService is attached
93 */
Junxiao Shicde37ad2015-12-24 01:02:05 -070094 const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -070095 getFace() const;
96
97 /** \return Transport to which this LinkService is attached
98 */
99 const Transport*
100 getTransport() const;
101
102 /** \return Transport to which this LinkService is attached
103 */
104 Transport*
105 getTransport();
106
Junxiao Shi57df2882015-11-11 06:12:35 -0700107 virtual const Counters&
108 getCounters() const;
109
Eric Newberrya98bf932015-09-21 00:58:47 -0700110public: // upper interface to be used by forwarding
111 /** \brief send Interest
112 * \pre setTransport has been called
113 */
114 void
115 sendInterest(const Interest& interest);
116
117 /** \brief send Data
118 * \pre setTransport has been called
119 */
120 void
121 sendData(const Data& data);
122
123 /** \brief send Nack
124 * \pre setTransport has been called
125 */
126 void
127 sendNack(const ndn::lp::Nack& nack);
128
129 /** \brief signals on Interest received
130 */
131 signal::Signal<LinkService, Interest> afterReceiveInterest;
132
133 /** \brief signals on Data received
134 */
135 signal::Signal<LinkService, Data> afterReceiveData;
136
137 /** \brief signals on Nack received
138 */
139 signal::Signal<LinkService, lp::Nack> afterReceiveNack;
140
Spyridon Mastorakis9e9084a2016-09-20 19:49:21 -0700141 /** \brief signals on Interest sent
142 */
143 signal::Signal<LinkService, Interest> afterSendInterest;
144
145 /** \brief signals on Data sent
146 */
147 signal::Signal<LinkService, Data> afterSendData;
148
149 /** \brief signals on Nack sent
150 */
151 signal::Signal<LinkService, lp::Nack> afterSendNack;
152
Junxiao Shi57df2882015-11-11 06:12:35 -0700153public: // lower interface to be invoked by Transport
154 /** \brief performs LinkService specific operations to receive a lower-layer packet
Eric Newberrya98bf932015-09-21 00:58:47 -0700155 */
Junxiao Shi57df2882015-11-11 06:12:35 -0700156 void
157 receivePacket(Transport::Packet&& packet);
Eric Newberrya98bf932015-09-21 00:58:47 -0700158
159protected: // upper interface to be invoked in subclass (receive path termination)
160 /** \brief delivers received Interest to forwarding
161 */
162 void
163 receiveInterest(const Interest& interest);
164
165 /** \brief delivers received Data to forwarding
166 */
167 void
168 receiveData(const Data& data);
169
170 /** \brief delivers received Nack to forwarding
171 */
172 void
173 receiveNack(const lp::Nack& nack);
174
Eric Newberrya98bf932015-09-21 00:58:47 -0700175protected: // lower interface to be invoked in subclass (send path termination)
176 /** \brief sends a lower-layer packet via Transport
177 */
178 void
179 sendPacket(Transport::Packet&& packet);
180
Junxiao Shi57df2882015-11-11 06:12:35 -0700181private: // upper interface to be overridden in subclass (send path entrypoint)
182 /** \brief performs LinkService specific operations to send an Interest
183 */
184 virtual void
185 doSendInterest(const Interest& interest) = 0;
186
187 /** \brief performs LinkService specific operations to send a Data
188 */
189 virtual void
190 doSendData(const Data& data) = 0;
191
192 /** \brief performs LinkService specific operations to send a Nack
193 */
194 virtual void
195 doSendNack(const lp::Nack& nack) = 0;
196
Eric Newberrya98bf932015-09-21 00:58:47 -0700197private: // lower interface to be overridden in subclass
198 virtual void
199 doReceivePacket(Transport::Packet&& packet) = 0;
200
201private:
Junxiao Shicde37ad2015-12-24 01:02:05 -0700202 Face* m_face;
Eric Newberrya98bf932015-09-21 00:58:47 -0700203 Transport* m_transport;
Eric Newberrya98bf932015-09-21 00:58:47 -0700204};
205
Junxiao Shicde37ad2015-12-24 01:02:05 -0700206inline const Face*
Eric Newberrya98bf932015-09-21 00:58:47 -0700207LinkService::getFace() const
208{
209 return m_face;
210}
211
212inline const Transport*
213LinkService::getTransport() const
214{
215 return m_transport;
216}
217
218inline Transport*
219LinkService::getTransport()
220{
221 return m_transport;
222}
223
Junxiao Shi57df2882015-11-11 06:12:35 -0700224inline const LinkService::Counters&
225LinkService::getCounters() const
226{
227 return *this;
228}
229
Eric Newberrya98bf932015-09-21 00:58:47 -0700230inline void
231LinkService::receivePacket(Transport::Packet&& packet)
232{
233 doReceivePacket(std::move(packet));
234}
235
236inline void
237LinkService::sendPacket(Transport::Packet&& packet)
238{
239 m_transport->send(std::move(packet));
240}
241
242std::ostream&
243operator<<(std::ostream& os, const FaceLogHelper<LinkService>& flh);
244
245template<typename T>
246typename std::enable_if<std::is_base_of<LinkService, T>::value &&
247 !std::is_same<LinkService, T>::value, std::ostream&>::type
248operator<<(std::ostream& os, const FaceLogHelper<T>& flh)
249{
250 return os << FaceLogHelper<LinkService>(flh.obj);
251}
252
253} // namespace face
254} // namespace nfd
255
256#endif // NFD_DAEMON_FACE_LINK_SERVICE_HPP