blob: 803d62ac898ac566cd557c26d7b769b77f4ae040 [file] [log] [blame]
Junxiao Shi2c29f3a2014-01-24 19:59:00 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi08d07a72014-06-09 23:17:57 -07003 * Copyright (c) 2014, 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
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shi33152f12014-07-16 19:54:32 -070024 */
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_FACE_HPP
27#define NFD_DAEMON_FACE_FACE_HPP
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070028
29#include "common.hpp"
Junxiao Shi33152f12014-07-16 19:54:32 -070030#include "face-counters.hpp"
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070031
Junxiao Shia1937bf2014-11-06 11:43:40 -070032#include <ndn-cxx/util/face-uri.hpp>
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070033#include <ndn-cxx/management/nfd-face-status.hpp>
Chengyu Fanf9c2bb12014-10-06 11:52:44 -060034#include <ndn-cxx/management/nfd-face-event-notification.hpp>
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070035
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080036namespace nfd {
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070037
38/** \class FaceId
39 * \brief identifies a face
40 */
41typedef int FaceId;
42
Junxiao Shi7b984c62014-07-17 22:18:34 -070043/// indicates an invalid FaceId
Junxiao Shi8c8d2182014-01-30 22:33:00 -070044const FaceId INVALID_FACEID = -1;
45
Junxiao Shi7b984c62014-07-17 22:18:34 -070046/// identifies the InternalFace used in management
47const FaceId FACEID_INTERNAL_FACE = 1;
48/// identifies a packet comes from the ContentStore, in LocalControlHeader incomingFaceId
49const FaceId FACEID_CONTENT_STORE = 254;
50/// identifies the NullFace that drops every packet
51const FaceId FACEID_NULL = 255;
52/// upper bound of reserved FaceIds
53const FaceId FACEID_RESERVED_MAX = 255;
54
Junxiao Shia1937bf2014-11-06 11:43:40 -070055using ndn::util::FaceUri;
Junxiao Shi7b984c62014-07-17 22:18:34 -070056
Junxiao Shi9b0d3e92014-02-15 12:27:12 -070057/** \brief represents a face
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070058 */
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080059class Face : noncopyable, public enable_shared_from_this<Face>
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070060{
Junxiao Shi32bfeb32014-01-25 18:22:02 -070061public:
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080062 /**
63 * \brief Face-related error
64 */
Junxiao Shi79494162014-04-02 18:25:11 -070065 class Error : public std::runtime_error
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080066 {
Junxiao Shi79494162014-04-02 18:25:11 -070067 public:
68 explicit
69 Error(const std::string& what)
70 : std::runtime_error(what)
71 {
72 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080073 };
74
Junxiao Shi79494162014-04-02 18:25:11 -070075 Face(const FaceUri& remoteUri, const FaceUri& localUri, bool isLocal = false);
Junxiao Shi16b8bc92014-02-17 22:24:55 -070076
Junxiao Shi32bfeb32014-01-25 18:22:02 -070077 virtual
78 ~Face();
Junxiao Shi16b8bc92014-02-17 22:24:55 -070079
Junxiao Shi32bfeb32014-01-25 18:22:02 -070080 /// fires when an Interest is received
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080081 EventEmitter<Interest> onReceiveInterest;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070082
Junxiao Shi32bfeb32014-01-25 18:22:02 -070083 /// fires when a Data is received
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080084 EventEmitter<Data> onReceiveData;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080085
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000086 /// fires when an Interest is sent out
87 EventEmitter<Interest> onSendInterest;
88
89 /// fires when a Data is sent out
90 EventEmitter<Data> onSendData;
91
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080092 /// fires when face disconnects or fails to perform properly
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080093 EventEmitter<std::string/*reason*/> onFail;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070094
Junxiao Shi32bfeb32014-01-25 18:22:02 -070095 /// send an Interest
96 virtual void
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080097 sendInterest(const Interest& interest) = 0;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070098
Junxiao Shi32bfeb32014-01-25 18:22:02 -070099 /// send a Data
100 virtual void
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800101 sendData(const Data& data) = 0;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800102
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800103 /** \brief Close the face
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800104 *
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800105 * This terminates all communication on the face and cause
106 * onFail() method event to be invoked
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800107 */
108 virtual void
109 close() = 0;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700110
Junxiao Shi79494162014-04-02 18:25:11 -0700111public: // attributes
112 FaceId
113 getId() const;
114
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700115 /** \brief Set the description
Junxiao Shi88884492014-02-15 15:57:43 -0700116 *
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700117 * This is typically invoked by mgmt on set description command
118 */
119 virtual void
120 setDescription(const std::string& description);
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700121
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700122 /// Get the description
123 virtual const std::string&
124 getDescription() const;
Junxiao Shi88884492014-02-15 15:57:43 -0700125
Alexander Afanasyev0fb253e2014-12-31 00:11:43 -0800126 void
127 setMetric(uint64_t metric);
128
129 uint64_t
130 getMetric() const;
131
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100132 /** \brief Get whether face is connected to a local app
133 */
134 bool
135 isLocal() const;
136
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700137 /** \brief Get whether packets sent this Face may reach multiple peers
Junxiao Shi88884492014-02-15 15:57:43 -0700138 *
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700139 * In this base class this property is always false.
140 */
141 virtual bool
142 isMultiAccess() const;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700143
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100144 /** \brief Get whether underlying communication is up
145 *
146 * In this base class this property is always true.
147 */
148 virtual bool
149 isUp() const;
150
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700151 /** \brief Get whether face is created on demand or explicitly via FaceManagement protocol
152 */
153 bool
154 isOnDemand() const;
155
Junxiao Shi7860d482014-02-21 23:57:20 -0700156 const FaceCounters&
157 getCounters() const;
158
Junxiao Shi79494162014-04-02 18:25:11 -0700159 /** \return a FaceUri that represents the remote endpoint
160 */
161 const FaceUri&
162 getRemoteUri() const;
163
164 /** \return a FaceUri that represents the local endpoint (NFD side)
165 */
166 const FaceUri&
167 getLocalUri() const;
168
Chengyu Fanf9c2bb12014-10-06 11:52:44 -0600169 /** \return FaceTraits data structure filled with the current FaceTraits status
170 */
171 template<typename FaceTraits>
172 void
173 copyStatusTo(FaceTraits& traits) const;
174
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700175 /** \return FaceStatus data structure filled with the current Face status
176 */
177 virtual ndn::nfd::FaceStatus
178 getFaceStatus() const;
179
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800180protected:
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800181 // this is a non-virtual method
182 bool
183 decodeAndDispatchInput(const Block& element);
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700184
Junxiao Shi7860d482014-02-21 23:57:20 -0700185 FaceCounters&
186 getMutableCounters();
187
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700188 void
189 setOnDemand(bool isOnDemand);
190
Junxiao Shi08d07a72014-06-09 23:17:57 -0700191 /** \brief fail the face and raise onFail event if it's UP; otherwise do nothing
192 */
193 void
194 fail(const std::string& reason);
195
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700196private:
Alexander Afanasyev46f66472014-01-31 16:50:58 -0800197 void
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700198 setId(FaceId faceId);
199
200private:
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700201 FaceId m_id;
202 std::string m_description;
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800203 bool m_isLocal; // for scoping purposes
Junxiao Shi7860d482014-02-21 23:57:20 -0700204 FaceCounters m_counters;
Junxiao Shi79494162014-04-02 18:25:11 -0700205 FaceUri m_remoteUri;
206 FaceUri m_localUri;
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700207 bool m_isOnDemand;
Junxiao Shi08d07a72014-06-09 23:17:57 -0700208 bool m_isFailed;
Alexander Afanasyev0fb253e2014-12-31 00:11:43 -0800209 uint64_t m_metric;
Junxiao Shi7860d482014-02-21 23:57:20 -0700210
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700211 // allow setting FaceId
Junxiao Shia4f2be82014-03-02 22:56:41 -0700212 friend class FaceTable;
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700213};
214
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100215inline bool
216Face::isLocal() const
217{
218 return m_isLocal;
219}
220
Junxiao Shi7860d482014-02-21 23:57:20 -0700221inline const FaceCounters&
222Face::getCounters() const
223{
224 return m_counters;
225}
226
227inline FaceCounters&
228Face::getMutableCounters()
229{
230 return m_counters;
231}
232
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000233inline const FaceUri&
Junxiao Shi79494162014-04-02 18:25:11 -0700234Face::getRemoteUri() const
235{
236 return m_remoteUri;
237}
238
239inline const FaceUri&
240Face::getLocalUri() const
241{
242 return m_localUri;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000243}
244
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700245inline void
246Face::setOnDemand(bool isOnDemand)
247{
248 m_isOnDemand = isOnDemand;
249}
250
251inline bool
252Face::isOnDemand() const
253{
254 return m_isOnDemand;
255}
256
Alexander Afanasyev0fb253e2014-12-31 00:11:43 -0800257inline void
258Face::setMetric(uint64_t metric)
259{
260 m_metric = metric;
261}
262
263inline uint64_t
264Face::getMetric() const
265{
266 return m_metric;
267}
268
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800269} // namespace nfd
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700270
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700271#endif // NFD_DAEMON_FACE_FACE_HPP