Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [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 | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
| 11 | * |
| 12 | * Based on code originally written by Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 15 | #ifndef NDN_FACE_HPP |
Jeff Thompson | a0d18c9 | 2013-08-06 13:55:32 -0700 | [diff] [blame] | 16 | #define NDN_FACE_HPP |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 17 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 18 | #include "common.hpp" |
| 19 | #include "interest.hpp" |
| 20 | #include "data.hpp" |
| 21 | |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 22 | #include "transport/transport.hpp" |
| 23 | #include "transport/unix-transport.hpp" |
Alexander Afanasyev | 20d2c58 | 2014-01-26 15:32:51 -0800 | [diff] [blame] | 24 | #include "transport/tcp-transport.hpp" |
Jeff Thompson | beb8b7d | 2013-07-16 15:49:21 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 26 | #include "management/controller.hpp" |
| 27 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 28 | #include "util/scheduler.hpp" |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 29 | #include "detail/registered-prefix.hpp" |
| 30 | #include "detail/pending-interest.hpp" |
| 31 | |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 32 | namespace ndn { |
| 33 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 34 | struct PendingInterestId; |
| 35 | struct RegisteredPrefixId; |
| 36 | |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 37 | /** |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 38 | * An OnData function object is used to pass a callback to expressInterest. |
| 39 | */ |
| 40 | typedef function<void(const Interest&, Data&)> OnData; |
| 41 | |
| 42 | /** |
| 43 | * An OnTimeout function object is used to pass a callback to expressInterest. |
| 44 | */ |
| 45 | typedef function<void(const Interest&)> OnTimeout; |
| 46 | |
| 47 | /** |
| 48 | * An OnInterest function object is used to pass a callback to registerPrefix. |
| 49 | */ |
| 50 | typedef function<void (const Name&, const Interest&)> OnInterest; |
| 51 | |
| 52 | /** |
| 53 | * An OnRegisterFailed function object is used to report when registerPrefix fails. |
| 54 | */ |
| 55 | typedef function<void(const Name&, const std::string&)> OnSetInterestFilterFailed; |
| 56 | |
| 57 | |
| 58 | |
| 59 | /** |
| 60 | * @brief Abstraction to communicate with local or remote NDN forwarder |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 61 | */ |
Alexander Afanasyev | 8460afb | 2014-02-15 20:31:42 -0800 | [diff] [blame] | 62 | class Face : noncopyable |
| 63 | { |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 64 | public: |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 65 | class Error : public std::runtime_error |
| 66 | { |
| 67 | public: |
| 68 | explicit |
| 69 | Error(const std::string& what) |
| 70 | : std::runtime_error(what) |
| 71 | { |
| 72 | } |
| 73 | }; |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 74 | |
| 75 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 76 | * @brief Create a new Face using the default transport (UnixTransport) |
| 77 | * |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 78 | * @throws ConfigFile::Error on configuration file parse failure |
| 79 | * @throws Face::Error on unsupported protocol |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 80 | */ |
Alexander Afanasyev | f7ca320 | 2014-02-14 22:28:31 -0800 | [diff] [blame] | 81 | Face(); |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 82 | |
| 83 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 84 | * @brief Create a new Face using the default transport (UnixTransport) |
| 85 | * |
| 86 | * @deprecated This constructor is deprecated. Use `Face(boost::asio::io_service&)` |
| 87 | * instead. |
| 88 | * |
| 89 | * @param ioService A shared pointer to boost::io_service object that should control all |
| 90 | * IO operations |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 91 | * @throws ConfigFile::Error on configuration file parse failure |
| 92 | * @throws Face::Error on unsupported protocol |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 93 | */ |
Alexander Afanasyev | f7ca320 | 2014-02-14 22:28:31 -0800 | [diff] [blame] | 94 | explicit |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 95 | Face(const shared_ptr<boost::asio::io_service>& ioService); |
| 96 | |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 97 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 98 | * @brief Create a new Face using the default transport (UnixTransport) |
| 99 | * |
| 100 | * @par Usage examples: |
| 101 | * |
| 102 | * Face face1; |
| 103 | * Face face2(face1.getIoService()); |
| 104 | * |
| 105 | * // Now the following ensures that events on both faces are processed |
| 106 | * face1.processEvents(); |
| 107 | * // or face1.getIoService().run(); |
| 108 | * |
| 109 | * @par or |
| 110 | * |
| 111 | * boost::asio::io_service ioService; |
| 112 | * Face face1(ioService); |
| 113 | * Face face2(ioService); |
| 114 | * ... |
| 115 | * |
| 116 | * ioService.run(); |
| 117 | * |
| 118 | * @param ioService A reference to boost::io_service object that should control all |
| 119 | * IO operations. |
| 120 | * @throws ConfigFile::Error on configuration file parse failure |
| 121 | * @throws Face::Error on unsupported protocol |
| 122 | */ |
| 123 | explicit |
| 124 | Face(boost::asio::io_service& ioService); |
| 125 | |
| 126 | /** |
| 127 | * @brief Create a new Face using TcpTransport |
| 128 | * |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 129 | * @param host The host of the NDN hub. |
Alexander Afanasyev | 20d2c58 | 2014-01-26 15:32:51 -0800 | [diff] [blame] | 130 | * @param port The port or service name of the NDN hub. If omitted. use 6363. |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 131 | * @throws Face::Error on unsupported protocol |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 132 | */ |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 133 | Face(const std::string& host, const std::string& port = "6363"); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 134 | |
| 135 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 136 | * @brief Create a new Face using the given Transport |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 137 | * @param transport A shared_ptr to a Transport object used for communication. |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 138 | * @throws Face::Error on unsupported protocol |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 139 | */ |
Alexander Afanasyev | f7ca320 | 2014-02-14 22:28:31 -0800 | [diff] [blame] | 140 | explicit |
| 141 | Face(const shared_ptr<Transport>& transport); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 142 | |
| 143 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 144 | * @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] | 145 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 146 | * @sa Face(boost::asio::io_service&) |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 147 | * |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 148 | * @throws Face::Error on unsupported protocol |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 149 | */ |
| 150 | Face(const shared_ptr<Transport>& transport, |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 151 | boost::asio::io_service& ioService); |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 152 | |
| 153 | /** |
Alexander Afanasyev | 505646e | 2014-02-24 20:13:37 -0800 | [diff] [blame] | 154 | * @brief Set controller used for prefix registration |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 155 | */ |
Alexander Afanasyev | 505646e | 2014-02-24 20:13:37 -0800 | [diff] [blame] | 156 | void |
| 157 | setController(const shared_ptr<Controller>& controller); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 158 | |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 159 | /** |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 160 | * @brief Express Interest |
| 161 | * |
| 162 | * @param interest A reference to the Interest. This copies the Interest. |
| 163 | * @param onData A function object to call when a matching data packet is received. |
| 164 | * @param onTimeout A function object to call if the interest times out. |
| 165 | * If onTimeout is an empty OnTimeout(), this does not use it. |
| 166 | * |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 167 | * @return The pending interest ID which can be used with removePendingInterest. |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 168 | */ |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 169 | const PendingInterestId* |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 170 | expressInterest(const Interest& interest, |
| 171 | const OnData& onData, const OnTimeout& onTimeout = OnTimeout()); |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 172 | |
| 173 | /** |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 174 | * @brief Express Interest using name and Interest template |
| 175 | * |
| 176 | * @param name Name of the Interest |
| 177 | * @param tmpl Interest template to fill parameters |
| 178 | * @param onData A callback to call when a matching data packet is received. |
| 179 | * @param onTimeout A callback to call if the interest times out. |
| 180 | * If onTimeout is an empty OnTimeout(), this does not use it. |
| 181 | * |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 182 | * @return The pending interest ID which can be used with removePendingInterest. |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 183 | */ |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 184 | const PendingInterestId* |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 185 | expressInterest(const Name& name, |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 186 | const Interest& tmpl, |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 187 | const OnData& onData, const OnTimeout& onTimeout = OnTimeout()); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 188 | |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 189 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 190 | * @brief Remove the pending interest entry with the pendingInterestId from the pending |
| 191 | * interest table. |
| 192 | * |
| 193 | * This does not affect another pending interest with a different pendingInterestId, |
| 194 | * even it if has the same interest name. If there is no entry with the |
| 195 | * pendingInterestId, do nothing. |
| 196 | * |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 197 | * @param pendingInterestId The ID returned from expressInterest. |
| 198 | */ |
| 199 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 200 | removePendingInterest(const PendingInterestId* pendingInterestId); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 201 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 202 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 203 | * @brief Register prefix with the connected NDN hub and call onInterest when a matching |
| 204 | * interest is received. |
| 205 | * |
| 206 | * @param prefix A reference to a Name for the prefix to register |
| 207 | * @param onInterest A function object to call when a matching interest is received |
| 208 | * |
| 209 | * @param onRegisterFailed A function object to call if failed to retrieve the connected |
| 210 | * hub’s ID or failed to register the prefix. This calls |
| 211 | * onRegisterFailed(prefix) where prefix is the prefix given to |
| 212 | * registerPrefix. |
| 213 | * |
| 214 | * @param flags The flags for finer control of which interests are forward to the |
| 215 | * application. |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 216 | * @return The registered prefix ID which can be used with removeRegisteredPrefix. |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 217 | */ |
Alexander Afanasyev | b790d95 | 2014-01-24 12:07:53 -0800 | [diff] [blame] | 218 | const RegisteredPrefixId* |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 219 | setInterestFilter(const Name& prefix, |
| 220 | const OnInterest& onInterest, |
| 221 | const OnSetInterestFilterFailed& onSetInterestFilterFailed); |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 222 | |
| 223 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 224 | * @brief Remove the registered prefix entry with the registeredPrefixId from the |
| 225 | * pending interest table. |
| 226 | * |
| 227 | * This does not affect another registered prefix with a different registeredPrefixId, |
| 228 | * even it if has the same prefix name. If there is no entry with the |
| 229 | * registeredPrefixId, do nothing. |
| 230 | * |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 231 | * @param registeredPrefixId The ID returned from registerPrefix. |
| 232 | */ |
| 233 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 234 | unsetInterestFilter(const RegisteredPrefixId* registeredPrefixId); |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 235 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 236 | /** |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 237 | * @brief Publish data packet |
| 238 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 239 | * This method can be called to satisfy the incoming Interest or to put Data packet into |
| 240 | * the cache of the local NDN forwarder |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 241 | */ |
| 242 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 243 | put(const Data& data); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 244 | |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 245 | /** |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 246 | * @brief Process any data to receive or call timeout callbacks. |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 247 | * |
| 248 | * This call will block forever (default timeout == 0) to process IO on the face. |
| 249 | * To exit, one expected to call face.shutdown() from one of the callback methods. |
| 250 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 251 | * If positive timeout is specified, then processEvents will exit after this timeout, if |
| 252 | * not stopped earlier with face.shutdown() or when all active events finish. The call |
| 253 | * can be called repeatedly, if desired. |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 254 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 255 | * If negative timeout is specified, then processEvents will not block and process only |
| 256 | * pending events. |
Alexander Afanasyev | f75a0aa | 2014-01-09 14:29:22 -0800 | [diff] [blame] | 257 | * |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 258 | * @param timeout maximum time to block the thread. |
| 259 | * @param keepThread Keep thread in a blocked state (in event processing), even when |
| 260 | * there are no outstanding events (e.g., no Interest/Data is expected) |
| 261 | * |
| 262 | * @throw This may throw an exception for reading data or in the callback for processing |
| 263 | * the data. If you call this from an main event loop, you may want to catch and |
| 264 | * log/disregard all exceptions. |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 265 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 266 | void |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 267 | processEvents(const time::milliseconds& timeout = time::milliseconds::zero(), |
| 268 | bool keepThread = false); |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 269 | |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 270 | /** |
| 271 | * @brief Shutdown face operations |
| 272 | * |
| 273 | * This method cancels all pending operations and closes connection to NDN Forwarder. |
| 274 | * |
| 275 | * Note that this method does not stop IO service and if the same IO service is shared |
| 276 | * between multiple Faces or with other IO objects (e.g., Scheduler). |
| 277 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 278 | void |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 279 | shutdown(); |
Yingdi Yu | 0d92081 | 2014-01-30 14:50:57 -0800 | [diff] [blame] | 280 | |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 281 | /** |
| 282 | * @brief Get shared_ptr of the IO service object |
| 283 | * |
| 284 | * @deprecated Use getIoService instead |
| 285 | */ |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 286 | shared_ptr<boost::asio::io_service> |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 287 | ioService() |
| 288 | { |
| 289 | return m_ioService; |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * @brief Get reference to IO service object |
| 294 | */ |
| 295 | boost::asio::io_service& |
| 296 | getIoService() |
| 297 | { |
| 298 | return *m_ioService; |
| 299 | } |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 300 | |
| 301 | private: |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 302 | |
| 303 | /** |
| 304 | * @throws Face::Error on unsupported protocol |
| 305 | */ |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 306 | void |
Alexander Afanasyev | 7682ccb | 2014-02-20 10:29:35 -0800 | [diff] [blame] | 307 | construct(const shared_ptr<Transport>& transport, |
Alexander Afanasyev | 505646e | 2014-02-24 20:13:37 -0800 | [diff] [blame] | 308 | const shared_ptr<boost::asio::io_service>& ioService); |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 309 | |
| 310 | bool |
| 311 | isSupportedNfdProtocol(const std::string& protocol); |
| 312 | |
| 313 | bool |
| 314 | isSupportedNrdProtocol(const std::string& protocol); |
| 315 | |
| 316 | bool |
| 317 | isSupportedNdndProtocol(const std::string& protocol); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 318 | |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 319 | class ProcessEventsTimeout |
| 320 | { |
| 321 | }; |
| 322 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 323 | typedef std::list<shared_ptr<PendingInterest> > PendingInterestTable; |
| 324 | typedef std::list<shared_ptr<RegisteredPrefix> > RegisteredPrefixTable; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 325 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 326 | void |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 327 | asyncExpressInterest(const shared_ptr<const Interest>& interest, |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 328 | const OnData& onData, const OnTimeout& onTimeout); |
| 329 | |
| 330 | void |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 331 | asyncRemovePendingInterest(const PendingInterestId* pendingInterestId); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 332 | |
| 333 | void |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 334 | asyncUnsetInterestFilter(const RegisteredPrefixId* registeredPrefixId); |
Alexander Afanasyev | 12dfbad | 2014-02-11 14:42:46 -0800 | [diff] [blame] | 335 | |
| 336 | void |
Alexander Afanasyev | 52afb3f | 2014-03-07 09:05:35 +0000 | [diff] [blame] | 337 | finalizeUnsetInterestFilter(RegisteredPrefixTable::iterator item); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 338 | |
| 339 | void |
Alexander Afanasyev | 6d48bc1 | 2014-02-18 00:10:51 -0800 | [diff] [blame] | 340 | onReceiveElement(const Block& wire); |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 341 | |
Alexander Afanasyev | 7dced46 | 2014-03-19 15:12:32 -0700 | [diff] [blame] | 342 | void |
| 343 | asyncShutdown(); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 344 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 345 | static void |
| 346 | fireProcessEventsTimeout(const boost::system::error_code& error); |
| 347 | |
Alexander Afanasyev | 42c8185 | 2014-02-25 21:37:26 -0800 | [diff] [blame] | 348 | void |
| 349 | satisfyPendingInterests(Data& data); |
| 350 | |
| 351 | void |
| 352 | processInterestFilters(Interest& interest); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 353 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 354 | void |
| 355 | checkPitExpire(); |
Yingdi Yu | f9fa52f | 2014-02-06 12:27:32 -0800 | [diff] [blame] | 356 | |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 357 | private: |
Alexander Afanasyev | f39c537 | 2014-02-17 19:42:56 -0800 | [diff] [blame] | 358 | shared_ptr<boost::asio::io_service> m_ioService; |
Alexander Afanasyev | 691c3ce | 2014-04-23 14:28:04 -0700 | [diff] [blame] | 359 | shared_ptr<boost::asio::io_service::work> m_ioServiceWork; // if thread needs to be preserved |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 360 | shared_ptr<monotonic_deadline_timer> m_pitTimeoutCheckTimer; |
Alexander Afanasyev | f39c537 | 2014-02-17 19:42:56 -0800 | [diff] [blame] | 361 | bool m_pitTimeoutCheckTimerActive; |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 362 | shared_ptr<monotonic_deadline_timer> m_processEventsTimeoutTimer; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 363 | |
Alexander Afanasyev | f39c537 | 2014-02-17 19:42:56 -0800 | [diff] [blame] | 364 | shared_ptr<Transport> m_transport; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 365 | |
Alexander Afanasyev | f39c537 | 2014-02-17 19:42:56 -0800 | [diff] [blame] | 366 | PendingInterestTable m_pendingInterestTable; |
| 367 | RegisteredPrefixTable m_registeredPrefixTable; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 368 | |
| 369 | shared_ptr<Controller> m_fwController; |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 370 | |
| 371 | ConfigFile m_config; |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 372 | }; |
| 373 | |
Steve DiBenedetto | c07b3a2 | 2014-03-19 12:32:52 -0600 | [diff] [blame] | 374 | inline bool |
| 375 | Face::isSupportedNfdProtocol(const std::string& protocol) |
| 376 | { |
| 377 | return protocol == "nfd-0.1"; |
| 378 | } |
| 379 | |
| 380 | inline bool |
| 381 | Face::isSupportedNrdProtocol(const std::string& protocol) |
| 382 | { |
| 383 | return protocol == "nrd-0.1"; |
| 384 | } |
| 385 | |
| 386 | inline bool |
| 387 | Face::isSupportedNdndProtocol(const std::string& protocol) |
| 388 | { |
| 389 | return protocol == "ndnd-tlv-0.7"; |
| 390 | } |
| 391 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 392 | } // namespace ndn |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 393 | |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 394 | #endif // NDN_FACE_HPP |