blob: 974aa698d2b496258264c9fda79bfed96507fc22 [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
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -0700195 *
196 * @throws Error when Interest size exceeds maximum limit (MAX_NDN_PACKET_SIZE)
Jeff Thompson4fe45512013-08-23 14:06:38 -0700197 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800198 const PendingInterestId*
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800199 expressInterest(const Interest& interest,
200 const OnData& onData, const OnTimeout& onTimeout = OnTimeout());
Jeff Thompson4fe45512013-08-23 14:06:38 -0700201
202 /**
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800203 * @brief Express Interest using name and Interest template
204 *
205 * @param name Name of the Interest
206 * @param tmpl Interest template to fill parameters
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700207 * @param onData Callback to be called when a matching data packet is received
208 * @param onTimeout (optional) A function object to call if the interest times out
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800209 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700210 * @return Opaque pending interest ID which can be used with removePendingInterest
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -0700211 *
212 * @throws Error when Interest size exceeds maximum limit (MAX_NDN_PACKET_SIZE)
Jeff Thompson7aec0252013-08-22 17:29:57 -0700213 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800214 const PendingInterestId*
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800215 expressInterest(const Name& name,
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800216 const Interest& tmpl,
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800217 const OnData& onData, const OnTimeout& onTimeout = OnTimeout());
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700218
Jeff Thompson11095142013-10-01 16:20:28 -0700219 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700220 * @brief Cancel previously expressed Interest
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700221 *
Jeff Thompson11095142013-10-01 16:20:28 -0700222 * @param pendingInterestId The ID returned from expressInterest.
223 */
224 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800225 removePendingInterest(const PendingInterestId* pendingInterestId);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700226
Jeff Thompson432c8be2013-08-09 16:16:08 -0700227 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700228 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
229 * callback and register the filtered prefix with the connected NDN forwarder
230 *
231 * This version of setInterestFilter combines setInterestFilter and registerPrefix
232 * operations and is intended to be used when only one filter for the same prefix needed
233 * to be set. When multiple names sharing the same prefix should be dispatched to
234 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
235 * a series of setInterestFilter calls.
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700236 *
Alexander Afanasyev90164962014-03-06 08:29:59 +0000237 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700238 * @param onInterest A callback to be called when a matching interest is received
239 * @param onSuccess A callback to be called when prefixRegister command succeeds
240 * @param onFailure A callback to be called when prefixRegister command fails
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700241 * @param flags (optional) RIB flags (not used when direct FIB management is requested)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700242 * @param certificate (optional) A certificate under which the prefix registration
243 * command interest is signed. When omitted, a default certificate
244 * of the default identity is used to sign the registration command
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700245 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700246 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
247 * removeRegisteredPrefix
Jeff Thompson86507bc2013-08-23 20:51:38 -0700248 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800249 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000250 setInterestFilter(const InterestFilter& interestFilter,
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800251 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700252 const RegisterPrefixSuccessCallback& onSuccess,
253 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700254 const IdentityCertificate& certificate = IdentityCertificate(),
255 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Jeff Thompson11095142013-10-01 16:20:28 -0700256
257 /**
Alexander Afanasyev1b01c312014-05-26 16:58:10 +0300258 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
259 * callback and register the filtered prefix with the connected NDN forwarder
260 *
261 * This version of setInterestFilter combines setInterestFilter and registerPrefix
262 * operations and is intended to be used when only one filter for the same prefix needed
263 * to be set. When multiple names sharing the same prefix should be dispatched to
264 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
265 * a series of setInterestFilter calls.
266 *
267 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
268 * @param onInterest A callback to be called when a matching interest is received
269 * @param onFailure A callback to be called when prefixRegister command fails
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700270 * @param flags (optional) RIB flags (not used when direct FIB management is requested)
Alexander Afanasyev1b01c312014-05-26 16:58:10 +0300271 * @param certificate (optional) A certificate under which the prefix registration
272 * command interest is signed. When omitted, a default certificate
273 * of the default identity is used to sign the registration command
274 *
275 * @return Opaque registered prefix ID which can be used with unsetInterestFilter or
276 * removeRegisteredPrefix
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700277 */
278 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000279 setInterestFilter(const InterestFilter& interestFilter,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700280 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700281 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700282 const IdentityCertificate& certificate = IdentityCertificate(),
283 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700284
285 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700286 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
287 * callback and register the filtered prefix with the connected NDN forwarder
288 *
289 * This version of setInterestFilter combines setInterestFilter and registerPrefix
290 * operations and is intended to be used when only one filter for the same prefix needed
291 * to be set. When multiple names sharing the same prefix should be dispatched to
292 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
293 * a series of setInterestFilter calls.
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700294 *
Alexander Afanasyev90164962014-03-06 08:29:59 +0000295 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700296 * @param onInterest A callback to be called when a matching interest is received
297 * @param onSuccess A callback to be called when prefixRegister command succeeds
298 * @param onFailure A callback to be called when prefixRegister command fails
299 * @param identity A signing identity. A command interest is signed under the default
300 * certificate of this identity
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700301 * @param flags (optional) RIB flags (not used when direct FIB management is requested)
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700302 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700303 * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700304 */
305 const RegisteredPrefixId*
Alexander Afanasyev90164962014-03-06 08:29:59 +0000306 setInterestFilter(const InterestFilter& interestFilter,
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700307 const OnInterest& onInterest,
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700308 const RegisterPrefixSuccessCallback& onSuccess,
309 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700310 const Name& identity,
311 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700312
313 /**
Alexander Afanasyev1b01c312014-05-26 16:58:10 +0300314 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest
315 * callback and register the filtered prefix with the connected NDN forwarder
316 *
317 * This version of setInterestFilter combines setInterestFilter and registerPrefix
318 * operations and is intended to be used when only one filter for the same prefix needed
319 * to be set. When multiple names sharing the same prefix should be dispatched to
320 * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by
321 * a series of setInterestFilter calls.
322 *
323 * @param interestFilter Interest filter (prefix part will be registered with the forwarder)
324 * @param onInterest A callback to be called when a matching interest is received
325 * @param onFailure A callback to be called when prefixRegister command fails
326 * @param identity A signing identity. A command interest is signed under the default
327 * certificate of this identity
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700328 * @param flags (optional) RIB flags (not used when direct FIB management is requested)
Alexander Afanasyev1b01c312014-05-26 16:58:10 +0300329 *
330 * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700331 */
332 const RegisteredPrefixId*
333 setInterestFilter(const InterestFilter& interestFilter,
334 const OnInterest& onInterest,
335 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700336 const Name& identity,
337 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700338
339 /**
340 * @brief Set InterestFilter to dispatch incoming matching interest to onInterest callback
341 *
342 * @param interestFilter Interest
343 * @param onInterest A callback to be called when a matching interest is received
344 *
345 * This method modifies library's FIB only, and does not register the prefix with the
346 * forwarder. It will always succeed. To register prefix with the forwarder, use
347 * registerPrefix, or use the setInterestFilter overload taking two callbacks.
348 *
349 * @return Opaque interest filter ID which can be used with unsetInterestFilter
350 */
351 const InterestFilterId*
352 setInterestFilter(const InterestFilter& interestFilter,
353 const OnInterest& onInterest);
354
355
356 /**
357 * @brief Register prefix with the connected NDN forwarder
358 *
359 * This method only modifies forwarder's RIB (or FIB) and does not associate any
360 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
361 * the right callbacks.
362 *
363 * @param prefix A prefix to register with the connected NDN forwarder
364 * @param onSuccess A callback to be called when prefixRegister command succeeds
365 * @param onFailure A callback to be called when prefixRegister command fails
366 * @param certificate (optional) A certificate under which the prefix registration
367 * command interest is signed. When omitted, a default certificate
368 * of the default identity is used to sign the registration command
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700369 * @param flags (optional) RIB flags (not used when direct FIB management is requested)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700370 *
371 * @return The registered prefix ID which can be used with unregisterPrefix
372 */
373 const RegisteredPrefixId*
374 registerPrefix(const Name& prefix,
375 const RegisterPrefixSuccessCallback& onSuccess,
376 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700377 const IdentityCertificate& certificate = IdentityCertificate(),
378 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700379
380 /**
381 * @brief Register prefix with the connected NDN forwarder and call onInterest when a matching
382 * interest is received.
383 *
384 * This method only modifies forwarder's RIB (or FIB) and does not associate any
385 * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to
386 * the right callbacks.
387 *
388 * @param prefix A prefix to register with the connected NDN forwarder
389 * @param onSuccess A callback to be called when prefixRegister command succeeds
390 * @param onFailure A callback to be called when prefixRegister command fails
391 * @param identity A signing identity. A command interest is signed under the default
392 * certificate of this identity
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700393 * @param flags (optional) RIB flags (not used when direct FIB management is requested)
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700394 *
395 * @return The registered prefix ID which can be used with unregisterPrefix
396 */
397 const RegisteredPrefixId*
398 registerPrefix(const Name& prefix,
399 const RegisterPrefixSuccessCallback& onSuccess,
400 const RegisterPrefixFailureCallback& onFailure,
Alexander Afanasyev0866f512014-08-11 13:25:09 -0700401 const Name& identity,
402 uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT);
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700403
404 /**
Alexander Afanasyev1b01c312014-05-26 16:58:10 +0300405 * @brief Remove the registered prefix entry with the registeredPrefixId
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700406 *
407 * This does not affect another registered prefix with a different registeredPrefixId,
408 * even it if has the same prefix name. If there is no entry with the
409 * registeredPrefixId, do nothing.
410 *
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700411 * unsetInterestFilter will use the same credentials as original
412 * setInterestFilter/registerPrefix command
413 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700414 * @param registeredPrefixId The ID returned from registerPrefix
Jeff Thompson11095142013-10-01 16:20:28 -0700415 */
416 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800417 unsetInterestFilter(const RegisteredPrefixId* registeredPrefixId);
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800418
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700419 /**
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700420 * @brief Remove previously set InterestFilter from library's FIB
421 *
422 * This method always succeeds and will **NOT** send any request to the connected
423 * forwarder.
424 *
425 * @param interestFilterId The ID returned from setInterestFilter.
426 */
427 void
428 unsetInterestFilter(const InterestFilterId* interestFilterId);
429
430 /**
431 * @brief Deregister prefix from RIB (or FIB)
432 *
433 * unregisterPrefix will use the same credentials as original
434 * setInterestFilter/registerPrefix command
435 *
436 * If registeredPrefixId was obtained using setInterestFilter, the corresponding
437 * InterestFilter will be unset too.
438 *
Alexander Afanasyev770827c2014-05-13 17:42:55 -0700439 * @param registeredPrefixId The ID returned from registerPrefix
440 * @param onSuccess Callback to be called when operation succeeds
441 * @param onFailure Callback to be called when operation fails
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700442 */
443 void
444 unregisterPrefix(const RegisteredPrefixId* registeredPrefixId,
445 const UnregisterPrefixSuccessCallback& onSuccess,
446 const UnregisterPrefixFailureCallback& onFailure);
447
448 /**
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700449 * @brief (FOR DEBUG PURPOSES ONLY) Request direct NFD FIB management
450 */
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700451 void
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700452 setDirectFibManagement(bool isDirectFibManagementRequested = false);
Yingdi Yue66bf2a2014-04-28 17:07:36 -0700453
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800454 /**
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800455 * @brief Publish data packet
456 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700457 * This method can be called to satisfy the incoming Interest or to put Data packet into
Alexander Afanasyev6a05b4b2014-07-18 17:23:00 -0700458 * the cache of the local NDN forwarder.
459 *
460 * @param data Data packet to publish. It is highly recommended to use Data packet that
461 * was created using make_shared<Data>(...). Otherwise, put() will make an
462 * extra copy of the Data packet to ensure validity of published Data until
463 * asynchronous put() operation finishes.
Alexander Afanasyev49bb1fb2014-07-21 12:54:01 -0700464 *
465 * @throws Error when Data size exceeds maximum limit (MAX_NDN_PACKET_SIZE)
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800466 */
467 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800468 put(const Data& data);
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700469
Jeff Thompson86507bc2013-08-23 20:51:38 -0700470 /**
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700471 * @brief Process any data to receive or call timeout callbacks.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800472 *
473 * This call will block forever (default timeout == 0) to process IO on the face.
474 * To exit, one expected to call face.shutdown() from one of the callback methods.
475 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700476 * If positive timeout is specified, then processEvents will exit after this timeout, if
477 * not stopped earlier with face.shutdown() or when all active events finish. The call
478 * can be called repeatedly, if desired.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800479 *
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700480 * If negative timeout is specified, then processEvents will not block and process only
481 * pending events.
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800482 *
Alexander Afanasyev984ad192014-05-02 19:11:15 -0700483 * @param timeout maximum time to block the thread
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700484 * @param keepThread Keep thread in a blocked state (in event processing), even when
485 * there are no outstanding events (e.g., no Interest/Data is expected)
486 *
487 * @throw This may throw an exception for reading data or in the callback for processing
488 * the data. If you call this from an main event loop, you may want to catch and
489 * log/disregard all exceptions.
Jeff Thompson432c8be2013-08-09 16:16:08 -0700490 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700491 void
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700492 processEvents(const time::milliseconds& timeout = time::milliseconds::zero(),
493 bool keepThread = false);
Jeff Thompson432c8be2013-08-09 16:16:08 -0700494
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700495 /**
496 * @brief Shutdown face operations
497 *
498 * This method cancels all pending operations and closes connection to NDN Forwarder.
499 *
500 * Note that this method does not stop IO service and if the same IO service is shared
501 * between multiple Faces or with other IO objects (e.g., Scheduler).
502 */
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700503 void
Jeff Thompson0050abe2013-09-17 12:50:25 -0700504 shutdown();
Yingdi Yu0d920812014-01-30 14:50:57 -0800505
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700506 /**
507 * @brief Get shared_ptr of the IO service object
508 *
509 * @deprecated Use getIoService instead
510 */
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700511 DEPRECATED(
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700512 shared_ptr<boost::asio::io_service>
Alexander Afanasyev9c578182014-05-14 17:28:28 -0700513 ioService())
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700514 {
515 return m_ioService;
516 }
517
518 /**
519 * @brief Get reference to IO service object
520 */
521 boost::asio::io_service&
522 getIoService()
523 {
524 return *m_ioService;
525 }
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800526
527private:
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600528 /**
529 * @throws Face::Error on unsupported protocol
530 */
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800531 void
Alexander Afanasyev7682ccb2014-02-20 10:29:35 -0800532 construct(const shared_ptr<Transport>& transport,
Alexander Afanasyev505646e2014-02-24 20:13:37 -0800533 const shared_ptr<boost::asio::io_service>& ioService);
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600534
535 bool
536 isSupportedNfdProtocol(const std::string& protocol);
537
538 bool
539 isSupportedNrdProtocol(const std::string& protocol);
540
Alexander Afanasyev691c3ce2014-04-23 14:28:04 -0700541 class ProcessEventsTimeout
542 {
543 };
544
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700545 void
Alexander Afanasyev6d48bc12014-02-18 00:10:51 -0800546 onReceiveElement(const Block& wire);
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800547
Alexander Afanasyev7dced462014-03-19 15:12:32 -0700548 void
549 asyncShutdown();
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700550
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800551 static void
552 fireProcessEventsTimeout(const boost::system::error_code& error);
553
Jeff Thompsonb982b6d2013-07-15 18:15:45 -0700554private:
Alexander Afanasyevf39c5372014-02-17 19:42:56 -0800555 shared_ptr<boost::asio::io_service> m_ioService;
Alexander Afanasyevfdbfc6d2014-04-14 15:12:11 -0700556
Alexander Afanasyevf39c5372014-02-17 19:42:56 -0800557 shared_ptr<Transport> m_transport;
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800558
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700559 shared_ptr<nfd::Controller> m_nfdController;
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700560 bool m_isDirectNfdFibManagementRequested;
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600561
Alexander Afanasyev258ec2b2014-05-14 16:15:37 -0700562 class Impl;
563 shared_ptr<Impl> m_impl;
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700564};
565
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600566inline bool
567Face::isSupportedNfdProtocol(const std::string& protocol)
568{
569 return protocol == "nfd-0.1";
570}
571
572inline bool
573Face::isSupportedNrdProtocol(const std::string& protocol)
574{
575 return protocol == "nrd-0.1";
576}
577
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700578inline void
579Face::setDirectFibManagement(bool isDirectFibManagementRequested/* = false*/)
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600580{
Alexander Afanasyevee8bb1e2014-05-02 17:39:54 -0700581 m_isDirectNfdFibManagementRequested = isDirectFibManagementRequested;
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600582}
583
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800584} // namespace ndn
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700585
Alexander Afanasyev0222fba2014-02-09 23:16:02 -0800586#endif // NDN_FACE_HPP