blob: bbb0a96ef10cbca90d3452e7498afabae75c9401 [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 Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 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.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * Based on code originally written by Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070022 */
23
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070024#ifndef NDN_FACE_HPP
Jeff Thompsona0d18c92013-08-06 13:55:32 -070025#define NDN_FACE_HPP
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070026
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080027#include "common.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070028
29#include "name.hpp"
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080030#include "interest.hpp"
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070031#include "interest-filter.hpp"
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080032#include "data.hpp"
Alexander Afanasyev984ad192014-05-02 19:11:15 -070033#include "security/identity-certificate.hpp"
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080034
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070035namespace boost {
36namespace asio {
37class io_service;
38}
39}
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080040
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070041namespace ndn {
42
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -070043class Transport;
44
45class PendingInterestId;
46class RegisteredPrefixId;
47class InterestFilterId;
48
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -070049namespace nfd {
50class Controller;
51}
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -070052
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070053/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070054 * @brief Callback called when expressed Interest gets satisfied with Data packet
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080055 */
56typedef function<void(const Interest&, Data&)> OnData;
57
58/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070059 * @brief Callback called when expressed Interest times out
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080060 */
61typedef function<void(const Interest&)> OnTimeout;
62
63/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070064 * @brief Callback called when incoming Interest matches the specified InterestFilter
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080065 */
Alexander Afanasyev90164962014-03-06 08:29:59 +000066typedef function<void (const InterestFilter&, const Interest&)> OnInterest;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080067
68/**
Alexander Afanasyev984ad192014-05-02 19:11:15 -070069 * @brief Callback called when registerPrefix or setInterestFilter command succeeds
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080070 */
Alexander Afanasyev984ad192014-05-02 19:11:15 -070071typedef function<void(const Name&)> RegisterPrefixSuccessCallback;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080072
Alexander Afanasyev984ad192014-05-02 19:11:15 -070073/**
74 * @brief Callback called when registerPrefix or setInterestFilter command fails
75 */
76typedef function<void(const Name&, const std::string&)> RegisterPrefixFailureCallback;
77
78/**
79 * @brief Callback called when unregisterPrefix or unsetInterestFilter command succeeds
80 */
81typedef function<void()> UnregisterPrefixSuccessCallback;
82
83/**
84 * @brief Callback called when unregisterPrefix or unsetInterestFilter command fails
85 */
86typedef function<void(const std::string&)> UnregisterPrefixFailureCallback;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -080087
88
89/**
90 * @brief Abstraction to communicate with local or remote NDN forwarder
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070091 */
Alexander Afanasyev8460afb2014-02-15 20:31:42 -080092class Face : noncopyable
93{
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070094public:
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -070095 class Error : public std::runtime_error
96 {
97 public:
98 explicit
99 Error(const std::string& what)
100 : std::runtime_error(what)
101 {
102 }
103 };
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800104
105 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700106 * @brief Create a new Face using the default transport (UnixTransport)
107 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600108 * @throws ConfigFile::Error on configuration file parse failure
109 * @throws Face::Error on unsupported protocol
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800110 */
Alexander Afanasyevf7ca3202014-02-14 22:28:31 -0800111 Face();
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -0800112
113 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700114 * @brief Create a new Face using the default transport (UnixTransport)
115 *
116 * @deprecated This constructor is deprecated. Use `Face(boost::asio::io_service&)`
117 * instead.
118 *
119 * @param ioService A shared pointer to boost::io_service object that should control all
120 * IO operations
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600121 * @throws ConfigFile::Error on configuration file parse failure
122 * @throws Face::Error on unsupported protocol
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -0700123 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700124 DEPRECATED(
Alexander Afanasyevf7ca3202014-02-14 22:28:31 -0800125 explicit
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700126 Face(const shared_ptr<boost::asio::io_service>& ioService));
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800127
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -0700128 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700129 * @brief Create a new Face using the default transport (UnixTransport)
130 *
131 * @par Usage examples:
132 *
133 * Face face1;
134 * Face face2(face1.getIoService());
135 *
136 * // Now the following ensures that events on both faces are processed
137 * face1.processEvents();
138 * // or face1.getIoService().run();
139 *
140 * @par or
141 *
142 * boost::asio::io_service ioService;
143 * Face face1(ioService);
144 * Face face2(ioService);
145 * ...
146 *
147 * ioService.run();
148 *
149 * @param ioService A reference to boost::io_service object that should control all
150 * IO operations.
151 * @throws ConfigFile::Error on configuration file parse failure
152 * @throws Face::Error on unsupported protocol
153 */
154 explicit
155 Face(boost::asio::io_service& ioService);
156
157 /**
158 * @brief Create a new Face using TcpTransport
159 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700160 * @param host The host of the NDN forwarder
161 * @param port (optional) The port or service name of the NDN forwarder (**default**: "6363")
162 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600163 * @throws Face::Error on unsupported protocol
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -0700164 */
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800165 Face(const std::string& host, const std::string& port = "6363");
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800166
167 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700168 * @brief Create a new Face using the given Transport
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700169 *
170 * @param transport A shared_ptr to a Transport object used for communication
171 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600172 * @throws Face::Error on unsupported protocol
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800173 */
Alexander Afanasyevf7ca3202014-02-14 22:28:31 -0800174 explicit
175 Face(const shared_ptr<Transport>& transport);
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800176
177 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700178 * @brief Create a new Face using the given Transport and IO service object
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800179 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700180 * @sa Face(boost::asio::io_service&)
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800181 *
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600182 * @throws Face::Error on unsupported protocol
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800183 */
184 Face(const shared_ptr<Transport>& transport,
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700185 boost::asio::io_service& ioService);
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800186
Jeff Thompson4fe45512013-08-23 14:06:38 -0700187 /**
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800188 * @brief Express Interest
189 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700190 * @param interest An Interest to be expressed
191 * @param onData Callback to be called when a matching data packet is received
192 * @param onTimeout (optional) A function object to call if the interest times out
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800193 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700194 * @return The pending interest ID which can be used with removePendingInterest
Jeff Thompson4fe45512013-08-23 14:06:38 -0700195 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800196 const PendingInterestId*
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800197 expressInterest(const Interest& interest,
198 const OnData& onData, const OnTimeout& onTimeout = OnTimeout());
Jeff Thompson4fe45512013-08-23 14:06:38 -0700199
200 /**
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800201 * @brief Express Interest using name and Interest template
202 *
203 * @param name Name of the Interest
204 * @param tmpl Interest template to fill parameters
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700205 * @param onData Callback to be called when a matching data packet is received
206 * @param onTimeout (optional) A function object to call if the interest times out
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800207 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700208 * @return Opaque pending interest ID which can be used with removePendingInterest
Jeff Thompson7aec0252013-08-22 17:29:57 -0700209 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800210 const PendingInterestId*
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800211 expressInterest(const Name& name,
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800212 const Interest& tmpl,
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800213 const OnData& onData, const OnTimeout& onTimeout = OnTimeout());
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700214
Jeff Thompson11095142013-10-01 16:20:28 -0700215 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700216 * @brief Cancel previously expressed Interest
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700217 *
Jeff Thompson11095142013-10-01 16:20:28 -0700218 * @param pendingInterestId The ID returned from expressInterest.
219 */
220 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800221 removePendingInterest(const PendingInterestId* pendingInterestId);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700222
Jeff Thompson432c8be2013-08-09 16:16:08 -0700223 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700224 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
225 * callback and register the filtered prefix with the connected NDN forwarder
226 *
227 * This version of setInterestFilter combines setInterestFilter and registerPrefix
228 * operations and is intended to be used when only one filter for the same prefix needed
229 * to be set. When multiple names sharing the same prefix should be dispatched to
230 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
231 * a series of setInterestFilter calls.
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700232 *
Alexander Afanasyev90164962014-03-06 08:29:59 +0000233 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700234 * @param onInterest A callback to be called when a matching interest is received
235 * @param onSuccess A callback to be called when prefixRegister command succeeds
236 * @param onFailure A callback to be called when prefixRegister command fails
237 * @param certificate (optional) A certificate under which the prefix registration
238 * command interest is signed. When omitted, a default certificate
239 * of the default identity is used to sign the registration command
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700240 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700241 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
242 * removeRegisteredPrefix
Jeff Thompson86507bc2013-08-23 20:51:38 -0700243 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800244 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000245 setInterestFilter(const InterestFilter& interestFilter,
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800246 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700247 const RegisterPrefixSuccessCallback& onSuccess,
248 const RegisterPrefixFailureCallback& onFailure,
249 const IdentityCertificate& certificate = IdentityCertificate());
Jeff Thompson11095142013-10-01 16:20:28 -0700250
251 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700252 * @deprecated Use the other overload
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700253 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700254 DEPRECATED(
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700255 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000256 setInterestFilter(const InterestFilter& interestFilter,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700257 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700258 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700259 const IdentityCertificate& certificate = IdentityCertificate()));
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700260
261 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700262 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
263 * callback and register the filtered prefix with the connected NDN forwarder
264 *
265 * This version of setInterestFilter combines setInterestFilter and registerPrefix
266 * operations and is intended to be used when only one filter for the same prefix needed
267 * to be set. When multiple names sharing the same prefix should be dispatched to
268 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
269 * a series of setInterestFilter calls.
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700270 *
Alexander Afanasyev90164962014-03-06 08:29:59 +0000271 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700272 * @param onInterest A callback to be called when a matching interest is received
273 * @param onSuccess A callback to be called when prefixRegister command succeeds
274 * @param onFailure A callback to be called when prefixRegister command fails
275 * @param identity A signing identity. A command interest is signed under the default
276 * certificate of this identity
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700277 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700278 * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700279 */
280 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000281 setInterestFilter(const InterestFilter& interestFilter,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700282 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700283 const RegisterPrefixSuccessCallback& onSuccess,
284 const RegisterPrefixFailureCallback& onFailure,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700285 const Name& identity);
286
287 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700288 * @deprecated Use the other overload
289 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700290 DEPRECATED(
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700291 const RegisteredPrefixId*
292 setInterestFilter(const InterestFilter& interestFilter,
293 const OnInterest& onInterest,
294 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700295 const Name& identity));
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700296
297 /**
298 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest callback
299 *
300 * @param interestFilter Interest
301 * @param onInterest A callback to be called when a matching interest is received
302 *
303 * This method modifies library's FIB only, and does not register the prefix with the
304 * forwarder. It will always succeed. To register prefix with the forwarder, use
305 * registerPrefix, or use the setInterestFilter overload taking two callbacks.
306 *
307 * @return Opaque interest filter ID which can be used with unsetInterestFilter
308 */
309 const InterestFilterId*
310 setInterestFilter(const InterestFilter& interestFilter,
311 const OnInterest& onInterest);
312
313
314 /**
315 * @brief Register prefix with the connected NDN forwarder
316 *
317 * This method only modifies forwarder's RIB (or FIB) and does not associate any
318 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
319 * the right callbacks.
320 *
321 * @param prefix A prefix to register with the connected NDN forwarder
322 * @param onSuccess A callback to be called when prefixRegister command succeeds
323 * @param onFailure A callback to be called when prefixRegister command fails
324 * @param certificate (optional) A certificate under which the prefix registration
325 * command interest is signed. When omitted, a default certificate
326 * of the default identity is used to sign the registration command
327 *
328 * @return The registered prefix ID which can be used with unregisterPrefix
329 */
330 const RegisteredPrefixId*
331 registerPrefix(const Name& prefix,
332 const RegisterPrefixSuccessCallback& onSuccess,
333 const RegisterPrefixFailureCallback& onFailure,
334 const IdentityCertificate& certificate = IdentityCertificate());
335
336 /**
337 * @brief Register prefix with the connected NDN forwarder and call onInterest when a matching
338 * interest is received.
339 *
340 * This method only modifies forwarder's RIB (or FIB) and does not associate any
341 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
342 * the right callbacks.
343 *
344 * @param prefix A prefix to register with the connected NDN forwarder
345 * @param onSuccess A callback to be called when prefixRegister command succeeds
346 * @param onFailure A callback to be called when prefixRegister command fails
347 * @param identity A signing identity. A command interest is signed under the default
348 * certificate of this identity
349 *
350 * @return The registered prefix ID which can be used with unregisterPrefix
351 */
352 const RegisteredPrefixId*
353 registerPrefix(const Name& prefix,
354 const RegisterPrefixSuccessCallback& onSuccess,
355 const RegisterPrefixFailureCallback& onFailure,
356 const Name& identity);
357
358
359 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700360 * @brief Remove the registered prefix entry with the registeredPrefixId from the
361 * pending interest table.
362 *
363 * This does not affect another registered prefix with a different registeredPrefixId,
364 * even it if has the same prefix name. If there is no entry with the
365 * registeredPrefixId, do nothing.
366 *
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700367 * unsetInterestFilter will use the same credentials as original
368 * setInterestFilter/registerPrefix command
369 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700370 * @param registeredPrefixId The ID returned from registerPrefix
Jeff Thompson11095142013-10-01 16:20:28 -0700371 */
372 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800373 unsetInterestFilter(const RegisteredPrefixId* registeredPrefixId);
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800374
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700375 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700376 * @brief Remove previously set InterestFilter from library's FIB
377 *
378 * This method always succeeds and will **NOT** send any request to the connected
379 * forwarder.
380 *
381 * @param interestFilterId The ID returned from setInterestFilter.
382 */
383 void
384 unsetInterestFilter(const InterestFilterId* interestFilterId);
385
386 /**
387 * @brief Deregister prefix from RIB (or FIB)
388 *
389 * unregisterPrefix will use the same credentials as original
390 * setInterestFilter/registerPrefix command
391 *
392 * If registeredPrefixId was obtained using setInterestFilter, the corresponding
393 * InterestFilter will be unset too.
394 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700395 * @param registeredPrefixId The ID returned from registerPrefix
396 * @param onSuccess Callback to be called when operation succeeds
397 * @param onFailure Callback to be called when operation fails
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700398 */
399 void
400 unregisterPrefix(const RegisteredPrefixId* registeredPrefixId,
401 const UnregisterPrefixSuccessCallback& onSuccess,
402 const UnregisterPrefixFailureCallback& onFailure);
403
404 /**
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700405 * @brief (FOR DEBUG PURPOSES ONLY) Request direct NFD FIB management
406 */
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700407 void
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700408 setDirectFibManagement(bool isDirectFibManagementRequested = false);
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700409
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800410 /**
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800411 * @brief Publish data packet
412 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700413 * This method can be called to satisfy the incoming Interest or to put Data packet into
414 * the cache of the local NDN forwarder
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800415 */
416 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800417 put(const Data& data);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700418
Jeff Thompson86507bc2013-08-23 20:51:38 -0700419 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700420 * @brief Process any data to receive or call timeout callbacks.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800421 *
422 * This call will block forever (default timeout == 0) to process IO on the face.
423 * To exit, one expected to call face.shutdown() from one of the callback methods.
424 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700425 * If positive timeout is specified, then processEvents will exit after this timeout, if
426 * not stopped earlier with face.shutdown() or when all active events finish. The call
427 * can be called repeatedly, if desired.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800428 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700429 * If negative timeout is specified, then processEvents will not block and process only
430 * pending events.
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800431 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700432 * @param timeout maximum time to block the thread
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700433 * @param keepThread Keep thread in a blocked state (in event processing), even when
434 * there are no outstanding events (e.g., no Interest/Data is expected)
435 *
436 * @throw This may throw an exception for reading data or in the callback for processing
437 * the data. If you call this from an main event loop, you may want to catch and
438 * log/disregard all exceptions.
Jeff Thompson432c8be2013-08-09 16:16:08 -0700439 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700440 void
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700441 processEvents(const time::milliseconds& timeout = time::milliseconds::zero(),
442 bool keepThread = false);
Jeff Thompson432c8be2013-08-09 16:16:08 -0700443
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700444 /**
445 * @brief Shutdown face operations
446 *
447 * This method cancels all pending operations and closes connection to NDN Forwarder.
448 *
449 * Note that this method does not stop IO service and if the same IO service is shared
450 * between multiple Faces or with other IO objects (e.g., Scheduler).
451 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700452 void
Jeff Thompson0050abe2013-09-17 12:50:25 -0700453 shutdown();
Yingdi Yu0d920812014-01-30 14:50:57 -0800454
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700455 /**
456 * @brief Get shared_ptr of the IO service object
457 *
458 * @deprecated Use getIoService instead
459 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700460 DEPRECATED(
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700461 shared_ptr<boost::asio::io_service>
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700462 ioService())
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700463 {
464 return m_ioService;
465 }
466
467 /**
468 * @brief Get reference to IO service object
469 */
470 boost::asio::io_service&
471 getIoService()
472 {
473 return *m_ioService;
474 }
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800475
476private:
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600477 /**
478 * @throws Face::Error on unsupported protocol
479 */
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800480 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800481 construct(const shared_ptr<Transport>& transport,
Alexander Afanasyev505646e2014-02-24 20:13:37 -0800482 const shared_ptr<boost::asio::io_service>& ioService);
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600483
484 bool
485 isSupportedNfdProtocol(const std::string& protocol);
486
487 bool
488 isSupportedNrdProtocol(const std::string& protocol);
489
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700490 class ProcessEventsTimeout
491 {
492 };
493
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700494 void
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800495 onReceiveElement(const Block& wire);
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800496
Alexander Afanasyev7dced462014-03-19 15:12:32 -0700497 void
498 asyncShutdown();
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700499
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800500 static void
501 fireProcessEventsTimeout(const boost::system::error_code& error);
502
Jeff Thompsonb982b6d2013-07-15 18:15:45 -0700503private:
Alexander Afanasyevf39c5372014-02-17 19:42:56 -0800504 shared_ptr<boost::asio::io_service> m_ioService;
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700505
Alexander Afanasyevf39c5372014-02-17 19:42:56 -0800506 shared_ptr<Transport> m_transport;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800507
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700508 shared_ptr<nfd::Controller> m_nfdController;
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700509 bool m_isDirectNfdFibManagementRequested;
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600510
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700511 class Impl;
512 shared_ptr<Impl> m_impl;
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700513};
514
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600515inline bool
516Face::isSupportedNfdProtocol(const std::string& protocol)
517{
518 return protocol == "nfd-0.1";
519}
520
521inline bool
522Face::isSupportedNrdProtocol(const std::string& protocol)
523{
524 return protocol == "nrd-0.1";
525}
526
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700527inline void
528Face::setDirectFibManagement(bool isDirectFibManagementRequested/* = false*/)
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600529{
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700530 m_isDirectNfdFibManagementRequested = isDirectFibManagementRequested;
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600531}
532
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800533} // namespace ndn
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700534
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800535#endif // NDN_FACE_HPP