blob: a79c40588e2c9bf2313480c3344dbdb1fc760c90 [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 Shi61e3cc52014-03-03 20:40:28 -070030#include "core/face-uri.hpp"
Junxiao Shi33152f12014-07-16 19:54:32 -070031#include "face-counters.hpp"
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070032
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
55
Junxiao Shi9b0d3e92014-02-15 12:27:12 -070056/** \brief represents a face
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070057 */
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080058class Face : noncopyable, public enable_shared_from_this<Face>
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070059{
Junxiao Shi32bfeb32014-01-25 18:22:02 -070060public:
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080061 /**
62 * \brief Face-related error
63 */
Junxiao Shi79494162014-04-02 18:25:11 -070064 class Error : public std::runtime_error
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080065 {
Junxiao Shi79494162014-04-02 18:25:11 -070066 public:
67 explicit
68 Error(const std::string& what)
69 : std::runtime_error(what)
70 {
71 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080072 };
73
Junxiao Shi79494162014-04-02 18:25:11 -070074 Face(const FaceUri& remoteUri, const FaceUri& localUri, bool isLocal = false);
Junxiao Shi16b8bc92014-02-17 22:24:55 -070075
Junxiao Shi32bfeb32014-01-25 18:22:02 -070076 virtual
77 ~Face();
Junxiao Shi16b8bc92014-02-17 22:24:55 -070078
Junxiao Shi32bfeb32014-01-25 18:22:02 -070079 /// fires when an Interest is received
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080080 EventEmitter<Interest> onReceiveInterest;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070081
Junxiao Shi32bfeb32014-01-25 18:22:02 -070082 /// fires when a Data is received
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080083 EventEmitter<Data> onReceiveData;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080084
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000085 /// fires when an Interest is sent out
86 EventEmitter<Interest> onSendInterest;
87
88 /// fires when a Data is sent out
89 EventEmitter<Data> onSendData;
90
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080091 /// fires when face disconnects or fails to perform properly
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080092 EventEmitter<std::string/*reason*/> onFail;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070093
Junxiao Shi32bfeb32014-01-25 18:22:02 -070094 /// send an Interest
95 virtual void
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080096 sendInterest(const Interest& interest) = 0;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070097
Junxiao Shi32bfeb32014-01-25 18:22:02 -070098 /// send a Data
99 virtual void
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800100 sendData(const Data& data) = 0;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800101
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800102 /** \brief Close the face
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800103 *
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800104 * This terminates all communication on the face and cause
105 * onFail() method event to be invoked
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800106 */
107 virtual void
108 close() = 0;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700109
Junxiao Shi79494162014-04-02 18:25:11 -0700110public: // attributes
111 FaceId
112 getId() const;
113
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700114 /** \brief Set the description
Junxiao Shi88884492014-02-15 15:57:43 -0700115 *
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700116 * This is typically invoked by mgmt on set description command
117 */
118 virtual void
119 setDescription(const std::string& description);
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700120
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700121 /// Get the description
122 virtual const std::string&
123 getDescription() const;
Junxiao Shi88884492014-02-15 15:57:43 -0700124
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100125 /** \brief Get whether face is connected to a local app
126 */
127 bool
128 isLocal() const;
129
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700130 /** \brief Get whether packets sent this Face may reach multiple peers
Junxiao Shi88884492014-02-15 15:57:43 -0700131 *
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700132 * In this base class this property is always false.
133 */
134 virtual bool
135 isMultiAccess() const;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700136
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100137 /** \brief Get whether underlying communication is up
138 *
139 * In this base class this property is always true.
140 */
141 virtual bool
142 isUp() const;
143
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700144 /** \brief Get whether face is created on demand or explicitly via FaceManagement protocol
145 */
146 bool
147 isOnDemand() const;
148
Junxiao Shi7860d482014-02-21 23:57:20 -0700149 const FaceCounters&
150 getCounters() const;
151
Junxiao Shi79494162014-04-02 18:25:11 -0700152 /** \return a FaceUri that represents the remote endpoint
153 */
154 const FaceUri&
155 getRemoteUri() const;
156
157 /** \return a FaceUri that represents the local endpoint (NFD side)
158 */
159 const FaceUri&
160 getLocalUri() const;
161
Chengyu Fanf9c2bb12014-10-06 11:52:44 -0600162 /** \return FaceTraits data structure filled with the current FaceTraits status
163 */
164 template<typename FaceTraits>
165 void
166 copyStatusTo(FaceTraits& traits) const;
167
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700168 /** \return FaceStatus data structure filled with the current Face status
169 */
170 virtual ndn::nfd::FaceStatus
171 getFaceStatus() const;
172
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800173protected:
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800174 // this is a non-virtual method
175 bool
176 decodeAndDispatchInput(const Block& element);
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700177
Junxiao Shi7860d482014-02-21 23:57:20 -0700178 FaceCounters&
179 getMutableCounters();
180
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700181 void
182 setOnDemand(bool isOnDemand);
183
Junxiao Shi08d07a72014-06-09 23:17:57 -0700184 /** \brief fail the face and raise onFail event if it's UP; otherwise do nothing
185 */
186 void
187 fail(const std::string& reason);
188
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700189private:
Alexander Afanasyev46f66472014-01-31 16:50:58 -0800190 void
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700191 setId(FaceId faceId);
192
193private:
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700194 FaceId m_id;
195 std::string m_description;
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800196 bool m_isLocal; // for scoping purposes
Junxiao Shi7860d482014-02-21 23:57:20 -0700197 FaceCounters m_counters;
Junxiao Shi79494162014-04-02 18:25:11 -0700198 FaceUri m_remoteUri;
199 FaceUri m_localUri;
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700200 bool m_isOnDemand;
Junxiao Shi08d07a72014-06-09 23:17:57 -0700201 bool m_isFailed;
Junxiao Shi7860d482014-02-21 23:57:20 -0700202
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700203 // allow setting FaceId
Junxiao Shia4f2be82014-03-02 22:56:41 -0700204 friend class FaceTable;
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700205};
206
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100207inline bool
208Face::isLocal() const
209{
210 return m_isLocal;
211}
212
Junxiao Shi7860d482014-02-21 23:57:20 -0700213inline const FaceCounters&
214Face::getCounters() const
215{
216 return m_counters;
217}
218
219inline FaceCounters&
220Face::getMutableCounters()
221{
222 return m_counters;
223}
224
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000225inline const FaceUri&
Junxiao Shi79494162014-04-02 18:25:11 -0700226Face::getRemoteUri() const
227{
228 return m_remoteUri;
229}
230
231inline const FaceUri&
232Face::getLocalUri() const
233{
234 return m_localUri;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000235}
236
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700237inline void
238Face::setOnDemand(bool isOnDemand)
239{
240 m_isOnDemand = isOnDemand;
241}
242
243inline bool
244Face::isOnDemand() const
245{
246 return m_isOnDemand;
247}
248
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800249} // namespace nfd
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700250
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700251#endif // NFD_DAEMON_FACE_FACE_HPP