blob: 240e2709e8fed28eb094e6a6e56af7f45cbee96e [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
56/// pratical limit of packet size in octets
Davide Pesavento0ff10db2014-02-28 03:12:27 +010057const size_t MAX_NDN_PACKET_SIZE = 8800;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080058
Junxiao Shi16b8bc92014-02-17 22:24:55 -070059
Junxiao Shi9b0d3e92014-02-15 12:27:12 -070060/** \brief represents a face
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070061 */
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080062class Face : noncopyable, public enable_shared_from_this<Face>
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070063{
Junxiao Shi32bfeb32014-01-25 18:22:02 -070064public:
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080065 /**
66 * \brief Face-related error
67 */
Junxiao Shi79494162014-04-02 18:25:11 -070068 class Error : public std::runtime_error
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080069 {
Junxiao Shi79494162014-04-02 18:25:11 -070070 public:
71 explicit
72 Error(const std::string& what)
73 : std::runtime_error(what)
74 {
75 }
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080076 };
77
Junxiao Shi79494162014-04-02 18:25:11 -070078 Face(const FaceUri& remoteUri, const FaceUri& localUri, bool isLocal = false);
Junxiao Shi16b8bc92014-02-17 22:24:55 -070079
Junxiao Shi32bfeb32014-01-25 18:22:02 -070080 virtual
81 ~Face();
Junxiao Shi16b8bc92014-02-17 22:24:55 -070082
Junxiao Shi32bfeb32014-01-25 18:22:02 -070083 /// fires when an Interest is received
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080084 EventEmitter<Interest> onReceiveInterest;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070085
Junxiao Shi32bfeb32014-01-25 18:22:02 -070086 /// fires when a Data is received
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080087 EventEmitter<Data> onReceiveData;
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080088
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000089 /// fires when an Interest is sent out
90 EventEmitter<Interest> onSendInterest;
91
92 /// fires when a Data is sent out
93 EventEmitter<Data> onSendData;
94
Alexander Afanasyevd32cb962014-01-28 12:43:47 -080095 /// fires when face disconnects or fails to perform properly
Alexander Afanasyevd6cf4552014-02-11 17:15:22 -080096 EventEmitter<std::string/*reason*/> onFail;
Junxiao Shi16b8bc92014-02-17 22:24:55 -070097
Junxiao Shi32bfeb32014-01-25 18:22:02 -070098 /// send an Interest
99 virtual void
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800100 sendInterest(const Interest& interest) = 0;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700101
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700102 /// send a Data
103 virtual void
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800104 sendData(const Data& data) = 0;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800105
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800106 /** \brief Close the face
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800107 *
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800108 * This terminates all communication on the face and cause
109 * onFail() method event to be invoked
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800110 */
111 virtual void
112 close() = 0;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700113
Junxiao Shi79494162014-04-02 18:25:11 -0700114public: // attributes
115 FaceId
116 getId() const;
117
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700118 /** \brief Set the description
Junxiao Shi88884492014-02-15 15:57:43 -0700119 *
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700120 * This is typically invoked by mgmt on set description command
121 */
122 virtual void
123 setDescription(const std::string& description);
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700124
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700125 /// Get the description
126 virtual const std::string&
127 getDescription() const;
Junxiao Shi88884492014-02-15 15:57:43 -0700128
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100129 /** \brief Get whether face is connected to a local app
130 */
131 bool
132 isLocal() const;
133
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700134 /** \brief Get whether packets sent this Face may reach multiple peers
Junxiao Shi88884492014-02-15 15:57:43 -0700135 *
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700136 * In this base class this property is always false.
137 */
138 virtual bool
139 isMultiAccess() const;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700140
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100141 /** \brief Get whether underlying communication is up
142 *
143 * In this base class this property is always true.
144 */
145 virtual bool
146 isUp() const;
147
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700148 /** \brief Get whether face is created on demand or explicitly via FaceManagement protocol
149 */
150 bool
151 isOnDemand() const;
152
Junxiao Shi7860d482014-02-21 23:57:20 -0700153 const FaceCounters&
154 getCounters() const;
155
Junxiao Shi79494162014-04-02 18:25:11 -0700156 /** \return a FaceUri that represents the remote endpoint
157 */
158 const FaceUri&
159 getRemoteUri() const;
160
161 /** \return a FaceUri that represents the local endpoint (NFD side)
162 */
163 const FaceUri&
164 getLocalUri() const;
165
Chengyu Fanf9c2bb12014-10-06 11:52:44 -0600166 /** \return FaceTraits data structure filled with the current FaceTraits status
167 */
168 template<typename FaceTraits>
169 void
170 copyStatusTo(FaceTraits& traits) const;
171
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700172 /** \return FaceStatus data structure filled with the current Face status
173 */
174 virtual ndn::nfd::FaceStatus
175 getFaceStatus() const;
176
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800177protected:
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800178 // this is a non-virtual method
179 bool
180 decodeAndDispatchInput(const Block& element);
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700181
Junxiao Shi7860d482014-02-21 23:57:20 -0700182 FaceCounters&
183 getMutableCounters();
184
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700185 void
186 setOnDemand(bool isOnDemand);
187
Junxiao Shi08d07a72014-06-09 23:17:57 -0700188 /** \brief fail the face and raise onFail event if it's UP; otherwise do nothing
189 */
190 void
191 fail(const std::string& reason);
192
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700193private:
Alexander Afanasyev46f66472014-01-31 16:50:58 -0800194 void
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700195 setId(FaceId faceId);
196
197private:
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700198 FaceId m_id;
199 std::string m_description;
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800200 bool m_isLocal; // for scoping purposes
Junxiao Shi7860d482014-02-21 23:57:20 -0700201 FaceCounters m_counters;
Junxiao Shi79494162014-04-02 18:25:11 -0700202 FaceUri m_remoteUri;
203 FaceUri m_localUri;
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700204 bool m_isOnDemand;
Junxiao Shi08d07a72014-06-09 23:17:57 -0700205 bool m_isFailed;
Junxiao Shi7860d482014-02-21 23:57:20 -0700206
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700207 // allow setting FaceId
Junxiao Shia4f2be82014-03-02 22:56:41 -0700208 friend class FaceTable;
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700209};
210
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100211inline bool
212Face::isLocal() const
213{
214 return m_isLocal;
215}
216
Junxiao Shi7860d482014-02-21 23:57:20 -0700217inline const FaceCounters&
218Face::getCounters() const
219{
220 return m_counters;
221}
222
223inline FaceCounters&
224Face::getMutableCounters()
225{
226 return m_counters;
227}
228
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000229inline const FaceUri&
Junxiao Shi79494162014-04-02 18:25:11 -0700230Face::getRemoteUri() const
231{
232 return m_remoteUri;
233}
234
235inline const FaceUri&
236Face::getLocalUri() const
237{
238 return m_localUri;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000239}
240
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700241inline void
242Face::setOnDemand(bool isOnDemand)
243{
244 m_isOnDemand = isOnDemand;
245}
246
247inline bool
248Face::isOnDemand() const
249{
250 return m_isOnDemand;
251}
252
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800253} // namespace nfd
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700254
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700255#endif // NFD_DAEMON_FACE_FACE_HPP