Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | 9d158f0 | 2015-02-17 21:30:19 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * 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 Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 22 | #ifndef NDN_FACE_HPP |
Jeff Thompson | a0d18c9 | 2013-08-06 13:55:32 -0700 | [diff] [blame] | 23 | #define NDN_FACE_HPP |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 24 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 25 | #include "common.hpp" |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 26 | |
| 27 | #include "name.hpp" |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 28 | #include "interest.hpp" |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 29 | #include "interest-filter.hpp" |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 30 | #include "data.hpp" |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 31 | #include "security/signing-info.hpp" |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 32 | #include "lp/nack.hpp" |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 33 | |
| 34 | #define NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
| 35 | |
| 36 | #ifdef NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 37 | #include "security/identity-certificate.hpp" |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 38 | #endif // NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 39 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 40 | namespace boost { |
| 41 | namespace asio { |
| 42 | class io_service; |
| 43 | } |
| 44 | } |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 45 | |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 46 | namespace ndn { |
| 47 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 48 | class Transport; |
| 49 | |
| 50 | class PendingInterestId; |
| 51 | class RegisteredPrefixId; |
| 52 | class InterestFilterId; |
| 53 | |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 54 | namespace security { |
| 55 | class KeyChain; |
| 56 | } |
| 57 | using security::KeyChain; |
| 58 | |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 59 | namespace nfd { |
| 60 | class Controller; |
| 61 | } |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 62 | |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 63 | /** |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 64 | * @brief Callback called when expressed Interest gets satisfied with a Data packet |
| 65 | */ |
| 66 | typedef function<void(const Interest&, const Data&)> DataCallback; |
| 67 | |
| 68 | /** |
| 69 | * @brief Callback called when Nack is sent in response to expressed Interest |
| 70 | */ |
| 71 | typedef function<void(const Interest&, const lp::Nack&)> NackCallback; |
| 72 | |
| 73 | /** |
| 74 | * @brief Callback called when expressed Interest times out |
| 75 | */ |
| 76 | typedef function<void(const Interest&)> TimeoutCallback; |
| 77 | |
| 78 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 79 | * @brief Callback called when expressed Interest gets satisfied with Data packet |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 80 | * @deprecated use DataCallback |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 81 | */ |
| 82 | typedef function<void(const Interest&, Data&)> OnData; |
| 83 | |
| 84 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 85 | * @brief Callback called when expressed Interest times out |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 86 | * @deprecated use TimeoutCallback |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 87 | */ |
| 88 | typedef function<void(const Interest&)> OnTimeout; |
| 89 | |
| 90 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 91 | * @brief Callback called when incoming Interest matches the specified InterestFilter |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 92 | */ |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 93 | typedef function<void (const InterestFilter&, const Interest&)> OnInterest; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 94 | |
| 95 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 96 | * @brief Callback called when registerPrefix or setInterestFilter command succeeds |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 97 | */ |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 98 | typedef function<void(const Name&)> RegisterPrefixSuccessCallback; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 99 | |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 100 | /** |
| 101 | * @brief Callback called when registerPrefix or setInterestFilter command fails |
| 102 | */ |
| 103 | typedef function<void(const Name&, const std::string&)> RegisterPrefixFailureCallback; |
| 104 | |
| 105 | /** |
| 106 | * @brief Callback called when unregisterPrefix or unsetInterestFilter command succeeds |
| 107 | */ |
| 108 | typedef function<void()> UnregisterPrefixSuccessCallback; |
| 109 | |
| 110 | /** |
| 111 | * @brief Callback called when unregisterPrefix or unsetInterestFilter command fails |
| 112 | */ |
| 113 | typedef function<void(const std::string&)> UnregisterPrefixFailureCallback; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 114 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 115 | /** |
| 116 | * @brief Abstraction to communicate with local or remote NDN forwarder |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 117 | */ |
Alexander Afanasyev | 8460afb | 2014-02-15 20:31:42 -0800 | [diff] [blame] | 118 | class Face : noncopyable |
| 119 | { |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 120 | public: |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 121 | 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 Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 130 | |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 131 | public: // constructors |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 132 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 133 | * @brief Create a new Face using the default transport (UnixTransport) |
| 134 | * |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 135 | * @throws ConfigFile::Error on configuration file parse failure |
| 136 | * @throws Face::Error on unsupported protocol |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 137 | */ |
Alexander Afanasyev | f7ca320 | 2014-02-14 22:28:31 -0800 | [diff] [blame] | 138 | Face(); |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 139 | |
| 140 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 141 | * @brief Create a new Face using the default transport (UnixTransport) |
| 142 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 143 | * @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 Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 172 | * @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 DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 175 | * @throws Face::Error on unsupported protocol |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 176 | */ |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 177 | Face(const std::string& host, const std::string& port = "6363"); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 178 | |
| 179 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 180 | * @brief Create a new Face using the given Transport |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 181 | * |
| 182 | * @param transport A shared_ptr to a Transport object used for communication |
| 183 | * |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 184 | * @throws Face::Error on unsupported protocol |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 185 | */ |
Alexander Afanasyev | f7ca320 | 2014-02-14 22:28:31 -0800 | [diff] [blame] | 186 | explicit |
| 187 | Face(const shared_ptr<Transport>& transport); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 188 | |
| 189 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 190 | * @brief Create a new Face using the given Transport and IO service object |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 191 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 192 | * @sa Face(boost::asio::io_service&) |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 193 | * |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 194 | * @throws Face::Error on unsupported protocol |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 195 | */ |
| 196 | Face(const shared_ptr<Transport>& transport, |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 197 | boost::asio::io_service& ioService); |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 198 | |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 199 | /** |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 200 | * @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 | |
| 213 | public: // consumer |
| 214 | /** |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 215 | * @brief Express Interest |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 216 | * @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 Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 231 | * |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 232 | * @param interest An Interest to be expressed |
| 233 | * @param onData Callback to be called when a matching data packet is received |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 234 | * @param onTimeout (optional) A function object to call if the interest times out or is Nacked |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 235 | * |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 236 | * @return The pending interest ID which can be used with removePendingInterest |
Alexander Afanasyev | 49bb1fb | 2014-07-21 12:54:01 -0700 | [diff] [blame] | 237 | * |
| 238 | * @throws Error when Interest size exceeds maximum limit (MAX_NDN_PACKET_SIZE) |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 239 | * |
| 240 | * @deprecated use expressInterest(Interest, DataCallback, NackCallback, TimeoutCallback) |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 241 | */ |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 242 | const PendingInterestId* |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 243 | expressInterest(const Interest& interest, |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 244 | const OnData& onData, |
| 245 | const OnTimeout& onTimeout = nullptr); |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 246 | |
| 247 | /** |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 248 | * @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 Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 252 | * @param onData Callback to be called when a matching data packet is received |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 253 | * @param onTimeout (optional) A function object to call if the interest times out or is Nacked |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 254 | * |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 255 | * @return Opaque pending interest ID which can be used with removePendingInterest |
Alexander Afanasyev | 49bb1fb | 2014-07-21 12:54:01 -0700 | [diff] [blame] | 256 | * |
| 257 | * @throws Error when Interest size exceeds maximum limit (MAX_NDN_PACKET_SIZE) |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 258 | * |
| 259 | * @deprecated use expressInterest(Interest, DataCallback, NackCallback, TimeoutCallback) |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 260 | */ |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 261 | const PendingInterestId* |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 262 | expressInterest(const Name& name, |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 263 | const Interest& tmpl, |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 264 | const OnData& onData, |
| 265 | const OnTimeout& onTimeout = nullptr); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 266 | |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 267 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 268 | * @brief Cancel previously expressed Interest |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 269 | * |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 270 | * @param pendingInterestId The ID returned from expressInterest. |
| 271 | */ |
| 272 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 273 | removePendingInterest(const PendingInterestId* pendingInterestId); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 274 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 275 | /** |
Ilya Moiseenko | 56b0bf8 | 2015-11-08 11:14:28 -0500 | [diff] [blame] | 276 | * @brief Cancel all previously expressed Interests |
| 277 | */ |
| 278 | void |
| 279 | removeAllPendingInterests(); |
| 280 | |
| 281 | /** |
Alexander Afanasyev | 6fcdde2 | 2014-08-22 19:03:36 -0700 | [diff] [blame] | 282 | * @brief Get number of pending Interests |
| 283 | */ |
| 284 | size_t |
| 285 | getNPendingInterests() const; |
| 286 | |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 287 | public: // producer |
Alexander Afanasyev | 6fcdde2 | 2014-08-22 19:03:36 -0700 | [diff] [blame] | 288 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 289 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest |
| 290 | * callback and register the filtered prefix with the connected NDN forwarder |
| 291 | * |
| 292 | * This version of setInterestFilter combines setInterestFilter and registerPrefix |
| 293 | * operations and is intended to be used when only one filter for the same prefix needed |
| 294 | * to be set. When multiple names sharing the same prefix should be dispatched to |
| 295 | * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by |
| 296 | * a series of setInterestFilter calls. |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 297 | * |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 298 | * @param interestFilter Interest filter (prefix part will be registered with the forwarder) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 299 | * @param onInterest A callback to be called when a matching interest is received |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 300 | * @param onFailure A callback to be called when prefixRegister command fails |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 301 | * @param flags (optional) RIB flags |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 302 | * @param signingInfo (optional) Signing parameters. When omitted, a default parameters |
| 303 | * used in the signature will be used. |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 304 | * |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 305 | * @return Opaque registered prefix ID which can be used with unsetInterestFilter or |
| 306 | * removeRegisteredPrefix |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 307 | */ |
| 308 | const RegisteredPrefixId* |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 309 | setInterestFilter(const InterestFilter& interestFilter, |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 310 | const OnInterest& onInterest, |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 311 | const RegisterPrefixFailureCallback& onFailure, |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 312 | const security::SigningInfo& signingInfo = security::SigningInfo(), |
Alexander Afanasyev | 0866f51 | 2014-08-11 13:25:09 -0700 | [diff] [blame] | 313 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT); |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 314 | |
| 315 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 316 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest |
| 317 | * callback and register the filtered prefix with the connected NDN forwarder |
| 318 | * |
| 319 | * This version of setInterestFilter combines setInterestFilter and registerPrefix |
| 320 | * operations and is intended to be used when only one filter for the same prefix needed |
| 321 | * to be set. When multiple names sharing the same prefix should be dispatched to |
| 322 | * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by |
| 323 | * a series of setInterestFilter calls. |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 324 | * |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 325 | * @param interestFilter Interest filter (prefix part will be registered with the forwarder) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 326 | * @param onInterest A callback to be called when a matching interest is received |
| 327 | * @param onSuccess A callback to be called when prefixRegister command succeeds |
| 328 | * @param onFailure A callback to be called when prefixRegister command fails |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 329 | * @param flags (optional) RIB flags |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 330 | * @param signingInfo (optional) Signing parameters. When omitted, a default parameters |
| 331 | * used in the signature will be used. |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 332 | * |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 333 | * @return Opaque registered prefix ID which can be used with unsetInterestFilter or |
| 334 | * removeRegisteredPrefix |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 335 | */ |
| 336 | const RegisteredPrefixId* |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 337 | setInterestFilter(const InterestFilter& interestFilter, |
Yingdi Yu | e66bf2a | 2014-04-28 17:07:36 -0700 | [diff] [blame] | 338 | const OnInterest& onInterest, |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 339 | const RegisterPrefixSuccessCallback& onSuccess, |
| 340 | const RegisterPrefixFailureCallback& onFailure, |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 341 | const security::SigningInfo& signingInfo = security::SigningInfo(), |
Alexander Afanasyev | 0866f51 | 2014-08-11 13:25:09 -0700 | [diff] [blame] | 342 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 343 | |
| 344 | /** |
| 345 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest callback |
| 346 | * |
| 347 | * @param interestFilter Interest |
| 348 | * @param onInterest A callback to be called when a matching interest is received |
| 349 | * |
| 350 | * This method modifies library's FIB only, and does not register the prefix with the |
| 351 | * forwarder. It will always succeed. To register prefix with the forwarder, use |
| 352 | * registerPrefix, or use the setInterestFilter overload taking two callbacks. |
| 353 | * |
| 354 | * @return Opaque interest filter ID which can be used with unsetInterestFilter |
| 355 | */ |
| 356 | const InterestFilterId* |
| 357 | setInterestFilter(const InterestFilter& interestFilter, |
| 358 | const OnInterest& onInterest); |
| 359 | |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 360 | #ifdef NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
| 361 | /** |
| 362 | * @deprecated Use override with SigningInfo instead of this function |
| 363 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest |
| 364 | * callback and register the filtered prefix with the connected NDN forwarder |
| 365 | * |
| 366 | * This version of setInterestFilter combines setInterestFilter and registerPrefix |
| 367 | * operations and is intended to be used when only one filter for the same prefix needed |
| 368 | * to be set. When multiple names sharing the same prefix should be dispatched to |
| 369 | * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by |
| 370 | * a series of setInterestFilter calls. |
| 371 | * |
| 372 | * @param interestFilter Interest filter (prefix part will be registered with the forwarder) |
| 373 | * @param onInterest A callback to be called when a matching interest is received |
| 374 | * @param onSuccess A callback to be called when prefixRegister command succeeds |
| 375 | * @param onFailure A callback to be called when prefixRegister command fails |
| 376 | * @param flags (optional) RIB flags |
| 377 | * @param certificate (optional) A certificate under which the prefix registration |
| 378 | * command is signed. When omitted, a default certificate of |
| 379 | * the default identity is used to sign the registration command |
| 380 | * |
| 381 | * @return Opaque registered prefix ID which can be used with unsetInterestFilter or |
| 382 | * removeRegisteredPrefix |
| 383 | */ |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 384 | DEPRECATED( |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 385 | const RegisteredPrefixId* |
| 386 | setInterestFilter(const InterestFilter& interestFilter, |
| 387 | const OnInterest& onInterest, |
| 388 | const RegisterPrefixSuccessCallback& onSuccess, |
| 389 | const RegisterPrefixFailureCallback& onFailure, |
| 390 | const IdentityCertificate& certificate, |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 391 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT)); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 392 | |
| 393 | /** |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 394 | * @deprecated Use override with SigningInfo instead of this function |
| 395 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest |
| 396 | * callback and register the filtered prefix with the connected NDN forwarder |
| 397 | * |
| 398 | * This version of setInterestFilter combines setInterestFilter and registerPrefix |
| 399 | * operations and is intended to be used when only one filter for the same prefix needed |
| 400 | * to be set. When multiple names sharing the same prefix should be dispatched to |
| 401 | * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by |
| 402 | * a series of setInterestFilter calls. |
| 403 | * |
| 404 | * @param interestFilter Interest filter (prefix part will be registered with the forwarder) |
| 405 | * @param onInterest A callback to be called when a matching interest is received |
| 406 | * @param onFailure A callback to be called when prefixRegister command fails |
| 407 | * @param flags (optional) RIB flags |
| 408 | * @param certificate (optional) A certificate under which the prefix registration |
| 409 | * command is signed. When omitted, a default certificate of |
| 410 | * the default identity is used to sign the registration command |
| 411 | * |
| 412 | * @return Opaque registered prefix ID which can be used with unsetInterestFilter or |
| 413 | * removeRegisteredPrefix |
| 414 | */ |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 415 | DEPRECATED( |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 416 | const RegisteredPrefixId* |
| 417 | setInterestFilter(const InterestFilter& interestFilter, |
| 418 | const OnInterest& onInterest, |
| 419 | const RegisterPrefixFailureCallback& onFailure, |
| 420 | const IdentityCertificate& certificate, |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 421 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT)); |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 422 | |
| 423 | /** |
| 424 | * @deprecated Use override with SigningInfo instead of this function |
| 425 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest |
| 426 | * callback and register the filtered prefix with the connected NDN forwarder |
| 427 | * |
| 428 | * This version of setInterestFilter combines setInterestFilter and registerPrefix |
| 429 | * operations and is intended to be used when only one filter for the same prefix needed |
| 430 | * to be set. When multiple names sharing the same prefix should be dispatched to |
| 431 | * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by |
| 432 | * a series of setInterestFilter calls. |
| 433 | * |
| 434 | * @param interestFilter Interest filter (prefix part will be registered with the forwarder) |
| 435 | * @param onInterest A callback to be called when a matching interest is received |
| 436 | * @param onSuccess A callback to be called when prefixRegister command succeeds |
| 437 | * @param onFailure A callback to be called when prefixRegister command fails |
| 438 | * @param identity A signing identity. A prefix registration command is signed |
| 439 | * under the default certificate of this identity |
| 440 | * @param flags (optional) RIB flags |
| 441 | * |
| 442 | * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix |
| 443 | */ |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 444 | DEPRECATED( |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 445 | const RegisteredPrefixId* |
| 446 | setInterestFilter(const InterestFilter& interestFilter, |
| 447 | const OnInterest& onInterest, |
| 448 | const RegisterPrefixSuccessCallback& onSuccess, |
| 449 | const RegisterPrefixFailureCallback& onFailure, |
| 450 | const Name& identity, |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 451 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT)); |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 452 | |
| 453 | /** |
| 454 | * @deprecated Use override with SigningInfo instead of this function |
| 455 | * @brief Set InterestFilter to dispatch incoming matching interest to onInterest |
| 456 | * callback and register the filtered prefix with the connected NDN forwarder |
| 457 | * |
| 458 | * This version of setInterestFilter combines setInterestFilter and registerPrefix |
| 459 | * operations and is intended to be used when only one filter for the same prefix needed |
| 460 | * to be set. When multiple names sharing the same prefix should be dispatched to |
| 461 | * different callbacks, use one registerPrefix call, followed (in onSuccess callback) by |
| 462 | * a series of setInterestFilter calls. |
| 463 | * |
| 464 | * @param interestFilter Interest filter (prefix part will be registered with the forwarder) |
| 465 | * @param onInterest A callback to be called when a matching interest is received |
| 466 | * @param onFailure A callback to be called when prefixRegister command fails |
| 467 | * @param identity A signing identity. A prefix registration command is signed |
| 468 | * under the default certificate of this identity |
| 469 | * @param flags (optional) RIB flags |
| 470 | * |
| 471 | * @return Opaque registered prefix ID which can be used with removeRegisteredPrefix |
| 472 | */ |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 473 | DEPRECATED( |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 474 | const RegisteredPrefixId* |
| 475 | setInterestFilter(const InterestFilter& interestFilter, |
| 476 | const OnInterest& onInterest, |
| 477 | const RegisterPrefixFailureCallback& onFailure, |
| 478 | const Name& identity, |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 479 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT)); |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 480 | #endif // NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
| 481 | |
| 482 | /** |
| 483 | * @brief Register prefix with the connected NDN forwarder |
| 484 | * |
| 485 | * This method only modifies forwarder's RIB and does not associate any |
| 486 | * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to |
| 487 | * the right callbacks. |
| 488 | * |
| 489 | * @param prefix A prefix to register with the connected NDN forwarder |
| 490 | * @param onSuccess A callback to be called when prefixRegister command succeeds |
| 491 | * @param onFailure A callback to be called when prefixRegister command fails |
| 492 | * @param signingInfo (optional) Signing parameters. When omitted, a default parameters |
| 493 | * used in the signature will be used. |
Alexander Afanasyev | f2a4622 | 2015-09-17 18:01:30 -0700 | [diff] [blame] | 494 | * @param flags Prefix registration flags |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 495 | * |
| 496 | * @return The registered prefix ID which can be used with unregisterPrefix |
Alexander Afanasyev | f2a4622 | 2015-09-17 18:01:30 -0700 | [diff] [blame] | 497 | * @see nfd::RouteFlags |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 498 | */ |
| 499 | const RegisteredPrefixId* |
| 500 | registerPrefix(const Name& prefix, |
| 501 | const RegisterPrefixSuccessCallback& onSuccess, |
| 502 | const RegisterPrefixFailureCallback& onFailure, |
| 503 | const security::SigningInfo& signingInfo = security::SigningInfo(), |
| 504 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT); |
| 505 | |
| 506 | #ifdef NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
| 507 | /** |
| 508 | * @deprecated Use override with SigningInfo instead of this function |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 509 | * @brief Register prefix with the connected NDN forwarder |
| 510 | * |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 511 | * This method only modifies forwarder's RIB and does not associate any |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 512 | * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to |
| 513 | * the right callbacks. |
| 514 | * |
| 515 | * @param prefix A prefix to register with the connected NDN forwarder |
| 516 | * @param onSuccess A callback to be called when prefixRegister command succeeds |
| 517 | * @param onFailure A callback to be called when prefixRegister command fails |
| 518 | * @param certificate (optional) A certificate under which the prefix registration |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 519 | * command is signed. When omitted, a default certificate of |
| 520 | * the default identity is used to sign the registration command |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 521 | * @param flags (optional) RIB flags |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 522 | * |
| 523 | * @return The registered prefix ID which can be used with unregisterPrefix |
| 524 | */ |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 525 | DEPRECATED( |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 526 | const RegisteredPrefixId* |
| 527 | registerPrefix(const Name& prefix, |
| 528 | const RegisterPrefixSuccessCallback& onSuccess, |
| 529 | const RegisterPrefixFailureCallback& onFailure, |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 530 | const IdentityCertificate& certificate, |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 531 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT)); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 532 | |
| 533 | /** |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 534 | * @deprecated Use override with SigningInfo instead of this function |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 535 | * @brief Register prefix with the connected NDN forwarder and call onInterest when a matching |
| 536 | * interest is received. |
| 537 | * |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 538 | * This method only modifies forwarder's RIB and does not associate any |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 539 | * onInterest callbacks. Use setInterestFilter method to dispatch incoming Interests to |
| 540 | * the right callbacks. |
| 541 | * |
| 542 | * @param prefix A prefix to register with the connected NDN forwarder |
| 543 | * @param onSuccess A callback to be called when prefixRegister command succeeds |
| 544 | * @param onFailure A callback to be called when prefixRegister command fails |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 545 | * @param identity A signing identity. A prefix registration command is signed |
| 546 | * under the default certificate of this identity |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 547 | * @param flags (optional) RIB flags |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 548 | * |
| 549 | * @return The registered prefix ID which can be used with unregisterPrefix |
| 550 | */ |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 551 | DEPRECATED( |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 552 | const RegisteredPrefixId* |
| 553 | registerPrefix(const Name& prefix, |
| 554 | const RegisterPrefixSuccessCallback& onSuccess, |
| 555 | const RegisterPrefixFailureCallback& onFailure, |
Alexander Afanasyev | 0866f51 | 2014-08-11 13:25:09 -0700 | [diff] [blame] | 556 | const Name& identity, |
philo | bb778e7 | 2015-08-25 14:49:19 -0700 | [diff] [blame] | 557 | uint64_t flags = nfd::ROUTE_FLAG_CHILD_INHERIT)); |
Joao Pereira | 0b3cac5 | 2015-07-02 14:49:49 -0400 | [diff] [blame] | 558 | #endif // NDN_FACE_KEEP_DEPRECATED_REGISTRATION_SIGNING |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 559 | |
| 560 | /** |
Alexander Afanasyev | 1b01c31 | 2014-05-26 16:58:10 +0300 | [diff] [blame] | 561 | * @brief Remove the registered prefix entry with the registeredPrefixId |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 562 | * |
| 563 | * This does not affect another registered prefix with a different registeredPrefixId, |
| 564 | * even it if has the same prefix name. If there is no entry with the |
| 565 | * registeredPrefixId, do nothing. |
| 566 | * |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 567 | * unsetInterestFilter will use the same credentials as original |
| 568 | * setInterestFilter/registerPrefix command |
| 569 | * |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 570 | * @param registeredPrefixId The ID returned from registerPrefix |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 571 | */ |
| 572 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 573 | unsetInterestFilter(const RegisteredPrefixId* registeredPrefixId); |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 574 | |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 575 | /** |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 576 | * @brief Remove previously set InterestFilter from library's FIB |
| 577 | * |
| 578 | * This method always succeeds and will **NOT** send any request to the connected |
| 579 | * forwarder. |
| 580 | * |
| 581 | * @param interestFilterId The ID returned from setInterestFilter. |
| 582 | */ |
| 583 | void |
| 584 | unsetInterestFilter(const InterestFilterId* interestFilterId); |
| 585 | |
| 586 | /** |
Joao Pereira | ba1e3b9 | 2015-06-01 17:50:37 -0400 | [diff] [blame] | 587 | * @brief Unregister prefix from RIB |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 588 | * |
| 589 | * unregisterPrefix will use the same credentials as original |
| 590 | * setInterestFilter/registerPrefix command |
| 591 | * |
| 592 | * If registeredPrefixId was obtained using setInterestFilter, the corresponding |
| 593 | * InterestFilter will be unset too. |
| 594 | * |
Alexander Afanasyev | 770827c | 2014-05-13 17:42:55 -0700 | [diff] [blame] | 595 | * @param registeredPrefixId The ID returned from registerPrefix |
| 596 | * @param onSuccess Callback to be called when operation succeeds |
| 597 | * @param onFailure Callback to be called when operation fails |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 598 | */ |
| 599 | void |
| 600 | unregisterPrefix(const RegisteredPrefixId* registeredPrefixId, |
| 601 | const UnregisterPrefixSuccessCallback& onSuccess, |
| 602 | const UnregisterPrefixFailureCallback& onFailure); |
| 603 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 604 | /** |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 605 | * @brief Publish data packet |
| 606 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 607 | * This method can be called to satisfy the incoming Interest or to put Data packet into |
Alexander Afanasyev | 6a05b4b | 2014-07-18 17:23:00 -0700 | [diff] [blame] | 608 | * the cache of the local NDN forwarder. |
| 609 | * |
| 610 | * @param data Data packet to publish. It is highly recommended to use Data packet that |
| 611 | * was created using make_shared<Data>(...). Otherwise, put() will make an |
| 612 | * extra copy of the Data packet to ensure validity of published Data until |
| 613 | * asynchronous put() operation finishes. |
Alexander Afanasyev | 49bb1fb | 2014-07-21 12:54:01 -0700 | [diff] [blame] | 614 | * |
| 615 | * @throws Error when Data size exceeds maximum limit (MAX_NDN_PACKET_SIZE) |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 616 | */ |
| 617 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 618 | put(const Data& data); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 619 | |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 620 | /** |
| 621 | * @brief sends a Network NACK |
| 622 | * @param nack the Nack; a copy will be made, so that the caller is not required to |
| 623 | * maintain the argument unchanged |
| 624 | */ |
| 625 | void |
| 626 | put(const lp::Nack& nack); |
| 627 | |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 628 | public: // IO routine |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 629 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 630 | * @brief Process any data to receive or call timeout callbacks. |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 631 | * |
| 632 | * This call will block forever (default timeout == 0) to process IO on the face. |
| 633 | * To exit, one expected to call face.shutdown() from one of the callback methods. |
| 634 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 635 | * If positive timeout is specified, then processEvents will exit after this timeout, if |
| 636 | * not stopped earlier with face.shutdown() or when all active events finish. The call |
| 637 | * can be called repeatedly, if desired. |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 638 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 639 | * If negative timeout is specified, then processEvents will not block and process only |
| 640 | * pending events. |
Alexander Afanasyev | f75a0aa | 2014-01-09 14:29:22 -0800 | [diff] [blame] | 641 | * |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 642 | * @param timeout maximum time to block the thread |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 643 | * @param keepThread Keep thread in a blocked state (in event processing), even when |
| 644 | * there are no outstanding events (e.g., no Interest/Data is expected) |
| 645 | * |
| 646 | * @throw This may throw an exception for reading data or in the callback for processing |
| 647 | * the data. If you call this from an main event loop, you may want to catch and |
| 648 | * log/disregard all exceptions. |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 649 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 650 | void |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 651 | processEvents(const time::milliseconds& timeout = time::milliseconds::zero(), |
| 652 | bool keepThread = false); |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 653 | |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 654 | /** |
| 655 | * @brief Shutdown face operations |
| 656 | * |
| 657 | * This method cancels all pending operations and closes connection to NDN Forwarder. |
| 658 | * |
| 659 | * Note that this method does not stop IO service and if the same IO service is shared |
| 660 | * between multiple Faces or with other IO objects (e.g., Scheduler). |
| 661 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 662 | void |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 663 | shutdown(); |
Yingdi Yu | 0d92081 | 2014-01-30 14:50:57 -0800 | [diff] [blame] | 664 | |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 665 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 666 | * @brief Get reference to IO service object |
| 667 | */ |
| 668 | boost::asio::io_service& |
| 669 | getIoService() |
| 670 | { |
Junxiao Shi | 2cced06 | 2014-11-02 21:27:38 -0700 | [diff] [blame] | 671 | return m_ioService; |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 672 | } |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 673 | |
| 674 | private: |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 675 | |
| 676 | /** |
| 677 | * @throws ConfigFile::Error on parse error and unsupported protocols |
| 678 | */ |
| 679 | void |
Joao Pereira | 68c0d88 | 2015-05-19 14:27:55 -0400 | [diff] [blame] | 680 | construct(KeyChain& keyChain); |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 681 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 682 | /** |
| 683 | * @throws Face::Error on unsupported protocol |
Junxiao Shi | 2cced06 | 2014-11-02 21:27:38 -0700 | [diff] [blame] | 684 | * @note shared_ptr is passed by value because ownership is transferred to this function |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 685 | */ |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 686 | void |
Joao Pereira | 68c0d88 | 2015-05-19 14:27:55 -0400 | [diff] [blame] | 687 | construct(shared_ptr<Transport> transport, KeyChain& keyChain); |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 688 | |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 689 | void |
Eric Newberry | 83872fd | 2015-08-06 17:01:24 -0700 | [diff] [blame] | 690 | onReceiveElement(const Block& blockFromDaemon); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 691 | |
Alexander Afanasyev | 7dced46 | 2014-03-19 15:12:32 -0700 | [diff] [blame] | 692 | void |
| 693 | asyncShutdown(); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 694 | |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 695 | private: |
Junxiao Shi | 2cced06 | 2014-11-02 21:27:38 -0700 | [diff] [blame] | 696 | /// the IO service owned by this Face, could be null |
| 697 | unique_ptr<boost::asio::io_service> m_internalIoService; |
| 698 | /// the IO service used by this Face |
| 699 | boost::asio::io_service& m_ioService; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 700 | |
Alexander Afanasyev | f39c537 | 2014-02-17 19:42:56 -0800 | [diff] [blame] | 701 | shared_ptr<Transport> m_transport; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 702 | |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 703 | /** @brief if not null, a pointer to an internal KeyChain owned by Face |
| 704 | * @note if a KeyChain is supplied to constructor, this pointer will be null, |
| 705 | * and the passed KeyChain is given to nfdController; |
| 706 | * currently Face does not keep the KeyChain passed in constructor |
| 707 | * because it's not needed, but this may change in the future |
| 708 | */ |
Joao Pereira | 68c0d88 | 2015-05-19 14:27:55 -0400 | [diff] [blame] | 709 | unique_ptr<KeyChain> m_internalKeyChain; |
Junxiao Shi | edd834e | 2014-10-28 20:28:58 -0700 | [diff] [blame] | 710 | |
Joao Pereira | 68c0d88 | 2015-05-19 14:27:55 -0400 | [diff] [blame] | 711 | unique_ptr<nfd::Controller> m_nfdController; |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 712 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 713 | class Impl; |
Joao Pereira | 68c0d88 | 2015-05-19 14:27:55 -0400 | [diff] [blame] | 714 | unique_ptr<Impl> m_impl; |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 715 | }; |
| 716 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 717 | } // namespace ndn |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 718 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 719 | #endif // NDN_FACE_HPP |