blob: 52c08941f3f81d2cc2421f9e41674e88498302bc [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 Shi7f02c1e2014-01-29 22:57:01 -070030#include "core/event-emitter.hpp"
Junxiao Shi61e3cc52014-03-03 20:40:28 -070031#include "core/face-uri.hpp"
Junxiao Shi33152f12014-07-16 19:54:32 -070032#include "face-counters.hpp"
Junxiao Shi2c29f3a2014-01-24 19:59:00 -070033
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -070034#include <ndn-cxx/management/nfd-face-status.hpp>
35
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
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700166 /** \return FaceStatus data structure filled with the current Face status
167 */
168 virtual ndn::nfd::FaceStatus
169 getFaceStatus() const;
170
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800171protected:
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800172 // this is a non-virtual method
173 bool
174 decodeAndDispatchInput(const Block& element);
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700175
Junxiao Shi7860d482014-02-21 23:57:20 -0700176 FaceCounters&
177 getMutableCounters();
178
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700179 void
180 setOnDemand(bool isOnDemand);
181
Junxiao Shi08d07a72014-06-09 23:17:57 -0700182 /** \brief fail the face and raise onFail event if it's UP; otherwise do nothing
183 */
184 void
185 fail(const std::string& reason);
186
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700187private:
Alexander Afanasyev46f66472014-01-31 16:50:58 -0800188 void
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700189 setId(FaceId faceId);
190
191private:
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700192 FaceId m_id;
193 std::string m_description;
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800194 bool m_isLocal; // for scoping purposes
Junxiao Shi7860d482014-02-21 23:57:20 -0700195 FaceCounters m_counters;
Junxiao Shi79494162014-04-02 18:25:11 -0700196 FaceUri m_remoteUri;
197 FaceUri m_localUri;
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700198 bool m_isOnDemand;
Junxiao Shi08d07a72014-06-09 23:17:57 -0700199 bool m_isFailed;
Junxiao Shi7860d482014-02-21 23:57:20 -0700200
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700201 // allow setting FaceId
Junxiao Shia4f2be82014-03-02 22:56:41 -0700202 friend class FaceTable;
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700203};
204
Junxiao Shi7860d482014-02-21 23:57:20 -0700205
Davide Pesavento0ff10db2014-02-28 03:12:27 +0100206inline bool
207Face::isLocal() const
208{
209 return m_isLocal;
210}
211
Junxiao Shi7860d482014-02-21 23:57:20 -0700212inline const FaceCounters&
213Face::getCounters() const
214{
215 return m_counters;
216}
217
218inline FaceCounters&
219Face::getMutableCounters()
220{
221 return m_counters;
222}
223
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000224inline const FaceUri&
Junxiao Shi79494162014-04-02 18:25:11 -0700225Face::getRemoteUri() const
226{
227 return m_remoteUri;
228}
229
230inline const FaceUri&
231Face::getLocalUri() const
232{
233 return m_localUri;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000234}
235
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700236inline void
237Face::setOnDemand(bool isOnDemand)
238{
239 m_isOnDemand = isOnDemand;
240}
241
242inline bool
243Face::isOnDemand() const
244{
245 return m_isOnDemand;
246}
247
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800248} // namespace nfd
Junxiao Shi2c29f3a2014-01-24 19:59:00 -0700249
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700250#endif // NFD_DAEMON_FACE_FACE_HPP