blob: a07e293546017223e28e1452f4942f0a4076b64d [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07002/**
Alexander Afanasyev9d158f02015-02-17 21:30:19 -08003 * Copyright (c) 2013-2015 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070020 */
21
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070022#ifndef NDN_FACE_HPP
Jeff Thompsona0d18c92013-08-06 13:55:32 -070023#define NDN_FACE_HPP
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070024
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080025#include "common.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070026
27#include "name.hpp"
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080028#include "interest.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070029#include "interest-filter.hpp"
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080030#include "data.hpp"
Joao Pereira0b3cac52015-07-02 14:49:49 -040031#include "security/signing-info.hpp"
Eric Newberry83872fd2015-08-06 17:01:24 -070032#include "lp/nack.hpp"
Joao Pereira0b3cac52015-07-02 14:49:49 -040033
34#define NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
35
36#ifdef NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
Alexander Afanasyev984ad192014-05-02 19:11:15 -070037#include "security/identity-certificate.hpp"
Joao Pereira0b3cac52015-07-02 14:49:49 -040038#endif // NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080039
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070040namespace boost {
41namespace asio {
42class io_service;
43}
44}
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080045
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070046namespace ndn {
47
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070048class Transport;
49
50class PendingInterestId;
51class RegisteredPrefixId;
52class InterestFilterId;
53
Yingdi Yu1b0311c2015-06-10 14:58:47 -070054namespace security {
55class KeyChain;
56}
57using security::KeyChain;
58
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -070059namespace nfd {
60class Controller;
61}
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -070062
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070063/**
Eric Newberry83872fd2015-08-06 17:01:24 -070064 * @brief Callback called when expressed Interest gets satisfied with a Data packet
65 */
66typedef function<void(const Interest&, const Data&)> DataCallback;
67
68/**
69 * @brief Callback called when Nack is sent in response to expressed Interest
70 */
71typedef function<void(const Interest&, const lp::Nack&)> NackCallback;
72
73/**
74 * @brief Callback called when expressed Interest times out
75 */
76typedef function<void(const Interest&)> TimeoutCallback;
77
78/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070079 * @brief Callback called when expressed Interest gets satisfied with Data packet
Eric Newberry83872fd2015-08-06 17:01:24 -070080 * @deprecated use DataCallback
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080081 */
82typedef function<void(const Interest&, Data&)> OnData;
83
84/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070085 * @brief Callback called when expressed Interest times out
Eric Newberry83872fd2015-08-06 17:01:24 -070086 * @deprecated use TimeoutCallback
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080087 */
88typedef function<void(const Interest&)> OnTimeout;
89
90/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070091 * @brief Callback called when incoming Interest matches the specified InterestFilter
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080092 */
Alexander Afanasyev90164962014-03-06 08:29:59 +000093typedef function<void (const InterestFilter&, const Interest&)> OnInterest;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080094
95/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070096 * @brief Callback called when registerPrefix or setInterestFilter command succeeds
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080097 */
Alexander Afanasyev984ad192014-05-02 19:11:15 -070098typedef function<void(const Name&)> RegisterPrefixSuccessCallback;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080099
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700100/**
101 * @brief Callback called when registerPrefix or setInterestFilter command fails
102 */
103typedef function<void(const Name&, const std::string&)> RegisterPrefixFailureCallback;
104
105/**
106 * @brief Callback called when unregisterPrefix or unsetInterestFilter command succeeds
107 */
108typedef function<void()> UnregisterPrefixSuccessCallback;
109
110/**
111 * @brief Callback called when unregisterPrefix or unsetInterestFilter command fails
112 */
113typedef function<void(const std::string&)> UnregisterPrefixFailureCallback;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800114
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800115/**
116 * @brief Abstraction to communicate with local or remote NDN forwarder
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -0700117 */
Alexander Afanasyev8460afb2014-02-15 20:31:42 -0800118class Face : noncopyable
119{
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700120public:
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700121 class Error : public std::runtime_error
122 {
123 public:
124 explicit
125 Error(const std::string& what)
126 : std::runtime_error(what)
127 {
128 }
129 };
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800130
Junxiao Shiedd834e2014-10-28 20:28:58 -0700131public: // constructors
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800132 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700133 * @brief Create a new Face using the default transport (UnixTransport)
134 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600135 * @throws ConfigFile::Error on configuration file parse failure
136 * @throws Face::Error on unsupported protocol
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800137 */
Alexander Afanasyevf7ca3202014-02-14 22:28:31 -0800138 Face();
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -0800139
140 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700141 * @brief Create a new Face using the default transport (UnixTransport)
142 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700143 * @par Usage examples:
144 *
145 * Face face1;
146 * Face face2(face1.getIoService());
147 *
148 * // Now the following ensures that events on both faces are processed
149 * face1.processEvents();
150 * // or face1.getIoService().run();
151 *
152 * @par or
153 *
154 * boost::asio::io_service ioService;
155 * Face face1(ioService);
156 * Face face2(ioService);
157 * ...
158 *
159 * ioService.run();
160 *
161 * @param ioService A reference to boost::io_service object that should control all
162 * IO operations.
163 * @throws ConfigFile::Error on configuration file parse failure
164 * @throws Face::Error on unsupported protocol
165 */
166 explicit
167 Face(boost::asio::io_service& ioService);
168
169 /**
170 * @brief Create a new Face using TcpTransport
171 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700172 * @param host The host of the NDN forwarder
173 * @param port (optional) The port or service name of the NDN forwarder (**default**: "6363")
174 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600175 * @throws Face::Error on unsupported protocol
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -0700176 */
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800177 Face(const std::string& host, const std::string& port = "6363");
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800178
179 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700180 * @brief Create a new Face using the given Transport
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700181 *
182 * @param transport A shared_ptr to a Transport object used for communication
183 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600184 * @throws Face::Error on unsupported protocol
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800185 */
Alexander Afanasyevf7ca3202014-02-14 22:28:31 -0800186 explicit
187 Face(const shared_ptr<Transport>& transport);
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800188
189 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700190 * @brief Create a new Face using the given Transport and IO service object
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800191 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700192 * @sa Face(boost::asio::io_service&)
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800193 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600194 * @throws Face::Error on unsupported protocol
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800195 */
196 Face(const shared_ptr<Transport>& transport,
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700197 boost::asio::io_service& ioService);
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800198
Jeff Thompson4fe45512013-08-23 14:06:38 -0700199 /**
Junxiao Shiedd834e2014-10-28 20:28:58 -0700200 * @brief Create a new Face using the given Transport and IO service object
201 * @param transport the Transport used for communication
202 * @param ioService the io_service that controls all IO operations
203 * @param keyChain the KeyChain to sign commands
204 * @throws Face::Error on unsupported protocol
205 * @note shared_ptr is passed by value because ownership is shared with this class
206 */
207 Face(shared_ptr<Transport> transport,
208 boost::asio::io_service& ioService,
209 KeyChain& keyChain);
210
211 ~Face();
212
213public: // consumer
214 /**
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800215 * @brief Express Interest
Eric Newberry83872fd2015-08-06 17:01:24 -0700216 * @param interest the Interest; a copy will be made, so that the caller is not
217 * required to maintain the argument unchanged
218 * @param afterSatisfied function to be invoked if Data is returned
219 * @param afterNacked function to be invoked if Network NACK is returned
220 * @param afterTimeout function to be invoked if neither Data nor Network NACK
221 * is returned within InterestLifetime
222 */
223 const PendingInterestId*
224 expressInterest(const Interest& interest,
225 const DataCallback& afterSatisfied,
226 const NackCallback& afterNacked,
227 const TimeoutCallback& afterTimeout);
228
229 /**
230 * @brief Express Interest
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800231 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700232 * @param interest An Interest to be expressed
233 * @param onData Callback to be called when a matching data packet is received
Eric Newberry83872fd2015-08-06 17:01:24 -0700234 * @param onTimeout (optional) A function object to call if the interest times out or is Nacked
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800235 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700236 * @return The pending interest ID which can be used with removePendingInterest
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -0700237 *
238 * @throws Error when Interest size exceeds maximum limit (MAX_NDN_PACKET_SIZE)
Eric Newberry83872fd2015-08-06 17:01:24 -0700239 *
240 * @deprecated use expressInterest(Interest, DataCallback, NackCallback, TimeoutCallback)
Jeff Thompson4fe45512013-08-23 14:06:38 -0700241 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800242 const PendingInterestId*
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800243 expressInterest(const Interest& interest,
Eric Newberry83872fd2015-08-06 17:01:24 -0700244 const OnData& onData,
245 const OnTimeout& onTimeout = nullptr);
Jeff Thompson4fe45512013-08-23 14:06:38 -0700246
247 /**
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800248 * @brief Express Interest using name and Interest template
249 *
250 * @param name Name of the Interest
251 * @param tmpl Interest template to fill parameters
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700252 * @param onData Callback to be called when a matching data packet is received
Eric Newberry83872fd2015-08-06 17:01:24 -0700253 * @param onTimeout (optional) A function object to call if the interest times out or is Nacked
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800254 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700255 * @return Opaque pending interest ID which can be used with removePendingInterest
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -0700256 *
257 * @throws Error when Interest size exceeds maximum limit (MAX_NDN_PACKET_SIZE)
Eric Newberry83872fd2015-08-06 17:01:24 -0700258 *
259 * @deprecated use expressInterest(Interest, DataCallback, NackCallback, TimeoutCallback)
Jeff Thompson7aec0252013-08-22 17:29:57 -0700260 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800261 const PendingInterestId*
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800262 expressInterest(const Name& name,
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800263 const Interest& tmpl,
Eric Newberry83872fd2015-08-06 17:01:24 -0700264 const OnData& onData,
265 const OnTimeout& onTimeout = nullptr);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700266
Jeff Thompson11095142013-10-01 16:20:28 -0700267 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700268 * @brief Cancel previously expressed Interest
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700269 *
Jeff Thompson11095142013-10-01 16:20:28 -0700270 * @param pendingInterestId The ID returned from expressInterest.
271 */
272 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800273 removePendingInterest(const PendingInterestId* pendingInterestId);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700274
Jeff Thompson432c8be2013-08-09 16:16:08 -0700275 /**
Alexander Afanasyev6fcdde22014-08-22 19:03:36 -0700276 * @brief Get number of pending Interests
277 */
278 size_t
279 getNPendingInterests() const;
280
Junxiao Shiedd834e2014-10-28 20:28:58 -0700281public: // producer
Alexander Afanasyev6fcdde22014-08-22 19:03:36 -0700282 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700283 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
284 * callback and register the filtered prefix with the connected NDN forwarder
285 *
286 * This version of setInterestFilter combines setInterestFilter and registerPrefix
287 * operations and is intended to be used when only one filter for the same prefix needed
288 * to be set. When multiple names sharing the same prefix should be dispatched to
289 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
290 * a series of setInterestFilter calls.
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700291 *
Alexander Afanasyev90164962014-03-06 08:29:59 +0000292 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700293 * @param onInterest A callback to be called when a matching interest is received
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700294 * @param onFailure A callback to be called when prefixRegister command fails
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400295 * @param flags (optional) RIB flags
Joao Pereira0b3cac52015-07-02 14:49:49 -0400296 * @param signingInfo (optional) Signing parameters. When omitted, a default parameters
297 * used in the signature will be used.
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700298 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700299 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
300 * removeRegisteredPrefix
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700301 */
302 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000303 setInterestFilter(const InterestFilter& interestFilter,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700304 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700305 const RegisterPrefixFailureCallback& onFailure,
Joao Pereira0b3cac52015-07-02 14:49:49 -0400306 const security::SigningInfo& signingInfo = security::SigningInfo(),
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700307 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700308
309 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700310 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
311 * callback and register the filtered prefix with the connected NDN forwarder
312 *
313 * This version of setInterestFilter combines setInterestFilter and registerPrefix
314 * operations and is intended to be used when only one filter for the same prefix needed
315 * to be set. When multiple names sharing the same prefix should be dispatched to
316 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
317 * a series of setInterestFilter calls.
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700318 *
Alexander Afanasyev90164962014-03-06 08:29:59 +0000319 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700320 * @param onInterest A callback to be called when a matching interest is received
321 * @param onSuccess A callback to be called when prefixRegister command succeeds
322 * @param onFailure A callback to be called when prefixRegister command fails
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400323 * @param flags (optional) RIB flags
Joao Pereira0b3cac52015-07-02 14:49:49 -0400324 * @param signingInfo (optional) Signing parameters. When omitted, a default parameters
325 * used in the signature will be used.
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700326 *
Joao Pereira0b3cac52015-07-02 14:49:49 -0400327 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
328 * removeRegisteredPrefix
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700329 */
330 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000331 setInterestFilter(const InterestFilter& interestFilter,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700332 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700333 const RegisterPrefixSuccessCallback& onSuccess,
334 const RegisterPrefixFailureCallback& onFailure,
Joao Pereira0b3cac52015-07-02 14:49:49 -0400335 const security::SigningInfo& signingInfo = security::SigningInfo(),
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700336 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700337
338 /**
339 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest callback
340 *
341 * @param interestFilter Interest
342 * @param onInterest A callback to be called when a matching interest is received
343 *
344 * This method modifies library's FIB only, and does not register the prefix with the
345 * forwarder. It will always succeed. To register prefix with the forwarder, use
346 * registerPrefix, or use the setInterestFilter overload taking two callbacks.
347 *
348 * @return Opaque interest filter ID which can be used with unsetInterestFilter
349 */
350 const InterestFilterId*
351 setInterestFilter(const InterestFilter& interestFilter,
352 const OnInterest& onInterest);
353
Joao Pereira0b3cac52015-07-02 14:49:49 -0400354#ifdef NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
355 /**
356 * @deprecated Use override with SigningInfo instead of this function
357 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
358 * callback and register the filtered prefix with the connected NDN forwarder
359 *
360 * This version of setInterestFilter combines setInterestFilter and registerPrefix
361 * operations and is intended to be used when only one filter for the same prefix needed
362 * to be set. When multiple names sharing the same prefix should be dispatched to
363 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
364 * a series of setInterestFilter calls.
365 *
366 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
367 * @param onInterest A callback to be called when a matching interest is received
368 * @param onSuccess A callback to be called when prefixRegister command succeeds
369 * @param onFailure A callback to be called when prefixRegister command fails
370 * @param flags (optional) RIB flags
371 * @param certificate (optional) A certificate under which the prefix registration
372 * command is signed. When omitted, a default certificate of
373 * the default identity is used to sign the registration command
374 *
375 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
376 * removeRegisteredPrefix
377 */
philobb778e72015-08-25 14:49:19 -0700378 DEPRECATED(
Joao Pereira0b3cac52015-07-02 14:49:49 -0400379 const RegisteredPrefixId*
380 setInterestFilter(const InterestFilter& interestFilter,
381 const OnInterest& onInterest,
382 const RegisterPrefixSuccessCallback& onSuccess,
383 const RegisterPrefixFailureCallback& onFailure,
384 const IdentityCertificate& certificate,
philobb778e72015-08-25 14:49:19 -0700385 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT));
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700386
387 /**
Joao Pereira0b3cac52015-07-02 14:49:49 -0400388 * @deprecated Use override with SigningInfo instead of this function
389 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
390 * callback and register the filtered prefix with the connected NDN forwarder
391 *
392 * This version of setInterestFilter combines setInterestFilter and registerPrefix
393 * operations and is intended to be used when only one filter for the same prefix needed
394 * to be set. When multiple names sharing the same prefix should be dispatched to
395 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
396 * a series of setInterestFilter calls.
397 *
398 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
399 * @param onInterest A callback to be called when a matching interest is received
400 * @param onFailure A callback to be called when prefixRegister command fails
401 * @param flags (optional) RIB flags
402 * @param certificate (optional) A certificate under which the prefix registration
403 * command is signed. When omitted, a default certificate of
404 * the default identity is used to sign the registration command
405 *
406 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
407 * removeRegisteredPrefix
408 */
philobb778e72015-08-25 14:49:19 -0700409 DEPRECATED(
Joao Pereira0b3cac52015-07-02 14:49:49 -0400410 const RegisteredPrefixId*
411 setInterestFilter(const InterestFilter& interestFilter,
412 const OnInterest& onInterest,
413 const RegisterPrefixFailureCallback& onFailure,
414 const IdentityCertificate& certificate,
philobb778e72015-08-25 14:49:19 -0700415 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT));
Joao Pereira0b3cac52015-07-02 14:49:49 -0400416
417 /**
418 * @deprecated Use override with SigningInfo instead of this function
419 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
420 * callback and register the filtered prefix with the connected NDN forwarder
421 *
422 * This version of setInterestFilter combines setInterestFilter and registerPrefix
423 * operations and is intended to be used when only one filter for the same prefix needed
424 * to be set. When multiple names sharing the same prefix should be dispatched to
425 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
426 * a series of setInterestFilter calls.
427 *
428 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
429 * @param onInterest A callback to be called when a matching interest is received
430 * @param onSuccess A callback to be called when prefixRegister command succeeds
431 * @param onFailure A callback to be called when prefixRegister command fails
432 * @param identity A signing identity. A prefix registration command is signed
433 * under the default certificate of this identity
434 * @param flags (optional) RIB flags
435 *
436 * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix
437 */
philobb778e72015-08-25 14:49:19 -0700438 DEPRECATED(
Joao Pereira0b3cac52015-07-02 14:49:49 -0400439 const RegisteredPrefixId*
440 setInterestFilter(const InterestFilter& interestFilter,
441 const OnInterest& onInterest,
442 const RegisterPrefixSuccessCallback& onSuccess,
443 const RegisterPrefixFailureCallback& onFailure,
444 const Name& identity,
philobb778e72015-08-25 14:49:19 -0700445 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT));
Joao Pereira0b3cac52015-07-02 14:49:49 -0400446
447 /**
448 * @deprecated Use override with SigningInfo instead of this function
449 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
450 * callback and register the filtered prefix with the connected NDN forwarder
451 *
452 * This version of setInterestFilter combines setInterestFilter and registerPrefix
453 * operations and is intended to be used when only one filter for the same prefix needed
454 * to be set. When multiple names sharing the same prefix should be dispatched to
455 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
456 * a series of setInterestFilter calls.
457 *
458 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
459 * @param onInterest A callback to be called when a matching interest is received
460 * @param onFailure A callback to be called when prefixRegister command fails
461 * @param identity A signing identity. A prefix registration command is signed
462 * under the default certificate of this identity
463 * @param flags (optional) RIB flags
464 *
465 * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix
466 */
philobb778e72015-08-25 14:49:19 -0700467 DEPRECATED(
Joao Pereira0b3cac52015-07-02 14:49:49 -0400468 const RegisteredPrefixId*
469 setInterestFilter(const InterestFilter& interestFilter,
470 const OnInterest& onInterest,
471 const RegisterPrefixFailureCallback& onFailure,
472 const Name& identity,
philobb778e72015-08-25 14:49:19 -0700473 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT));
Joao Pereira0b3cac52015-07-02 14:49:49 -0400474#endif // NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
475
476 /**
477 * @brief Register prefix with the connected NDN forwarder
478 *
479 * This method only modifies forwarder's RIB and does not associate any
480 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
481 * the right callbacks.
482 *
483 * @param prefix A prefix to register with the connected NDN forwarder
484 * @param onSuccess A callback to be called when prefixRegister command succeeds
485 * @param onFailure A callback to be called when prefixRegister command fails
486 * @param signingInfo (optional) Signing parameters. When omitted, a default parameters
487 * used in the signature will be used.
Alexander Afanasyevf2a46222015-09-17 18:01:30 -0700488 * @param flags Prefix registration flags
Joao Pereira0b3cac52015-07-02 14:49:49 -0400489 *
490 * @return The registered prefix ID which can be used with unregisterPrefix
Alexander Afanasyevf2a46222015-09-17 18:01:30 -0700491 * @see nfd::RouteFlags
Joao Pereira0b3cac52015-07-02 14:49:49 -0400492 */
493 const RegisteredPrefixId*
494 registerPrefix(const Name& prefix,
495 const RegisterPrefixSuccessCallback& onSuccess,
496 const RegisterPrefixFailureCallback& onFailure,
497 const security::SigningInfo& signingInfo = security::SigningInfo(),
498 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
499
500#ifdef NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
501 /**
502 * @deprecated Use override with SigningInfo instead of this function
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700503 * @brief Register prefix with the connected NDN forwarder
504 *
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400505 * This method only modifies forwarder's RIB and does not associate any
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700506 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
507 * the right callbacks.
508 *
509 * @param prefix A prefix to register with the connected NDN forwarder
510 * @param onSuccess A callback to be called when prefixRegister command succeeds
511 * @param onFailure A callback to be called when prefixRegister command fails
512 * @param certificate (optional) A certificate under which the prefix registration
Junxiao Shi6a90f372014-10-13 20:29:30 -0700513 * command is signed. When omitted, a default certificate of
514 * the default identity is used to sign the registration command
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400515 * @param flags (optional) RIB flags
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700516 *
517 * @return The registered prefix ID which can be used with unregisterPrefix
518 */
philobb778e72015-08-25 14:49:19 -0700519 DEPRECATED(
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700520 const RegisteredPrefixId*
521 registerPrefix(const Name& prefix,
522 const RegisterPrefixSuccessCallback& onSuccess,
523 const RegisterPrefixFailureCallback& onFailure,
Joao Pereira0b3cac52015-07-02 14:49:49 -0400524 const IdentityCertificate& certificate,
philobb778e72015-08-25 14:49:19 -0700525 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT));
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700526
527 /**
Joao Pereira0b3cac52015-07-02 14:49:49 -0400528 * @deprecated Use override with SigningInfo instead of this function
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700529 * @brief Register prefix with the connected NDN forwarder and call onInterest when a matching
530 * interest is received.
531 *
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400532 * This method only modifies forwarder's RIB and does not associate any
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700533 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
534 * the right callbacks.
535 *
536 * @param prefix A prefix to register with the connected NDN forwarder
537 * @param onSuccess A callback to be called when prefixRegister command succeeds
538 * @param onFailure A callback to be called when prefixRegister command fails
Junxiao Shi6a90f372014-10-13 20:29:30 -0700539 * @param identity A signing identity. A prefix registration command is signed
540 * under the default certificate of this identity
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400541 * @param flags (optional) RIB flags
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700542 *
543 * @return The registered prefix ID which can be used with unregisterPrefix
544 */
philobb778e72015-08-25 14:49:19 -0700545 DEPRECATED(
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700546 const RegisteredPrefixId*
547 registerPrefix(const Name& prefix,
548 const RegisterPrefixSuccessCallback& onSuccess,
549 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700550 const Name& identity,
philobb778e72015-08-25 14:49:19 -0700551 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT));
Joao Pereira0b3cac52015-07-02 14:49:49 -0400552#endif // NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700553
554 /**
Alexander Afanasyev1b01c312014-05-26 16:58:10 +0300555 * @brief Remove the registered prefix entry with the registeredPrefixId
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700556 *
557 * This does not affect another registered prefix with a different registeredPrefixId,
558 * even it if has the same prefix name. If there is no entry with the
559 * registeredPrefixId, do nothing.
560 *
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700561 * unsetInterestFilter will use the same credentials as original
562 * setInterestFilter/registerPrefix command
563 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700564 * @param registeredPrefixId The ID returned from registerPrefix
Jeff Thompson11095142013-10-01 16:20:28 -0700565 */
566 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800567 unsetInterestFilter(const RegisteredPrefixId* registeredPrefixId);
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800568
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700569 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700570 * @brief Remove previously set InterestFilter from library's FIB
571 *
572 * This method always succeeds and will **NOT** send any request to the connected
573 * forwarder.
574 *
575 * @param interestFilterId The ID returned from setInterestFilter.
576 */
577 void
578 unsetInterestFilter(const InterestFilterId* interestFilterId);
579
580 /**
Joao Pereiraba1e3b92015-06-01 17:50:37 -0400581 * @brief Unregister prefix from RIB
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700582 *
583 * unregisterPrefix will use the same credentials as original
584 * setInterestFilter/registerPrefix command
585 *
586 * If registeredPrefixId was obtained using setInterestFilter, the corresponding
587 * InterestFilter will be unset too.
588 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700589 * @param registeredPrefixId The ID returned from registerPrefix
590 * @param onSuccess Callback to be called when operation succeeds
591 * @param onFailure Callback to be called when operation fails
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700592 */
593 void
594 unregisterPrefix(const RegisteredPrefixId* registeredPrefixId,
595 const UnregisterPrefixSuccessCallback& onSuccess,
596 const UnregisterPrefixFailureCallback& onFailure);
597
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800598 /**
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800599 * @brief Publish data packet
600 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700601 * This method can be called to satisfy the incoming Interest or to put Data packet into
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700602 * the cache of the local NDN forwarder.
603 *
604 * @param data Data packet to publish. It is highly recommended to use Data packet that
605 * was created using make_shared<Data>(...). Otherwise, put() will make an
606 * extra copy of the Data packet to ensure validity of published Data until
607 * asynchronous put() operation finishes.
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -0700608 *
609 * @throws Error when Data size exceeds maximum limit (MAX_NDN_PACKET_SIZE)
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800610 */
611 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800612 put(const Data& data);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700613
Eric Newberry83872fd2015-08-06 17:01:24 -0700614 /**
615 * @brief sends a Network NACK
616 * @param nack the Nack; a copy will be made, so that the caller is not required to
617 * maintain the argument unchanged
618 */
619 void
620 put(const lp::Nack& nack);
621
Junxiao Shiedd834e2014-10-28 20:28:58 -0700622public: // IO routine
Jeff Thompson86507bc2013-08-23 20:51:38 -0700623 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700624 * @brief Process any data to receive or call timeout callbacks.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800625 *
626 * This call will block forever (default timeout == 0) to process IO on the face.
627 * To exit, one expected to call face.shutdown() from one of the callback methods.
628 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700629 * If positive timeout is specified, then processEvents will exit after this timeout, if
630 * not stopped earlier with face.shutdown() or when all active events finish. The call
631 * can be called repeatedly, if desired.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800632 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700633 * If negative timeout is specified, then processEvents will not block and process only
634 * pending events.
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800635 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700636 * @param timeout maximum time to block the thread
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700637 * @param keepThread Keep thread in a blocked state (in event processing), even when
638 * there are no outstanding events (e.g., no Interest/Data is expected)
639 *
640 * @throw This may throw an exception for reading data or in the callback for processing
641 * the data. If you call this from an main event loop, you may want to catch and
642 * log/disregard all exceptions.
Jeff Thompson432c8be2013-08-09 16:16:08 -0700643 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700644 void
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700645 processEvents(const time::milliseconds& timeout = time::milliseconds::zero(),
646 bool keepThread = false);
Jeff Thompson432c8be2013-08-09 16:16:08 -0700647
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700648 /**
649 * @brief Shutdown face operations
650 *
651 * This method cancels all pending operations and closes connection to NDN Forwarder.
652 *
653 * Note that this method does not stop IO service and if the same IO service is shared
654 * between multiple Faces or with other IO objects (e.g., Scheduler).
655 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700656 void
Jeff Thompson0050abe2013-09-17 12:50:25 -0700657 shutdown();
Yingdi Yu0d920812014-01-30 14:50:57 -0800658
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700659 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700660 * @brief Get reference to IO service object
661 */
662 boost::asio::io_service&
663 getIoService()
664 {
Junxiao Shi2cced062014-11-02 21:27:38 -0700665 return m_ioService;
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700666 }
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800667
668private:
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -0700669
670 /**
671 * @throws ConfigFile::Error on parse error and unsupported protocols
672 */
673 void
Joao Pereira68c0d882015-05-19 14:27:55 -0400674 construct(KeyChain& keyChain);
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -0700675
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600676 /**
677 * @throws Face::Error on unsupported protocol
Junxiao Shi2cced062014-11-02 21:27:38 -0700678 * @note shared_ptr is passed by value because ownership is transferred to this function
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600679 */
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800680 void
Joao Pereira68c0d882015-05-19 14:27:55 -0400681 construct(shared_ptr<Transport> transport, KeyChain& keyChain);
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600682
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700683 void
Eric Newberry83872fd2015-08-06 17:01:24 -0700684 onReceiveElement(const Block& blockFromDaemon);
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800685
Alexander Afanasyev7dced462014-03-19 15:12:32 -0700686 void
687 asyncShutdown();
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700688
Jeff Thompsonb982b6d2013-07-15 18:15:45 -0700689private:
Junxiao Shi2cced062014-11-02 21:27:38 -0700690 /// the IO service owned by this Face, could be null
691 unique_ptr<boost::asio::io_service> m_internalIoService;
692 /// the IO service used by this Face
693 boost::asio::io_service& m_ioService;
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700694
Alexander Afanasyevf39c5372014-02-17 19:42:56 -0800695 shared_ptr<Transport> m_transport;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800696
Junxiao Shiedd834e2014-10-28 20:28:58 -0700697 /** @brief if not null, a pointer to an internal KeyChain owned by Face
698 * @note if a KeyChain is supplied to constructor, this pointer will be null,
699 * and the passed KeyChain is given to nfdController;
700 * currently Face does not keep the KeyChain passed in constructor
701 * because it's not needed, but this may change in the future
702 */
Joao Pereira68c0d882015-05-19 14:27:55 -0400703 unique_ptr<KeyChain> m_internalKeyChain;
Junxiao Shiedd834e2014-10-28 20:28:58 -0700704
Joao Pereira68c0d882015-05-19 14:27:55 -0400705 unique_ptr<nfd::Controller> m_nfdController;
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600706
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700707 class Impl;
Joao Pereira68c0d882015-05-19 14:27:55 -0400708 unique_ptr<Impl> m_impl;
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700709};
710
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800711} // namespace ndn
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700712
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800713#endif // NDN_FACE_HPP