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 | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 2 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 3 | * Copyright (C) 2013 Regents of the University of California. |
| 4 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 5 | * See COPYING for copyright and distribution information. |
| 6 | */ |
| 7 | |
| 8 | #ifndef NDN_NODE_HPP |
| 9 | #define NDN_NODE_HPP |
| 10 | |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 11 | #include "common.hpp" |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 12 | #include "interest.hpp" |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 13 | #include "data.hpp" |
| 14 | #include "transport/tcp-transport.hpp" |
Jeff Thompson | 1f8a31a | 2013-09-30 16:18:47 -0700 | [diff] [blame] | 15 | #include "forwarding-flags.hpp" |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 16 | #include "encoding/element-listener.hpp" |
| 17 | |
| 18 | struct ndn_Interest; |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 19 | |
| 20 | namespace ndn { |
| 21 | |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 22 | /** |
| 23 | * An OnData function object is used to pass a callback to expressInterest. |
| 24 | */ |
Jeff Thompson | a6d15c8 | 2013-09-17 15:34:32 -0700 | [diff] [blame] | 25 | typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&, const ptr_lib::shared_ptr<Data>&)> OnData; |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 26 | |
| 27 | /** |
| 28 | * An OnTimeout function object is used to pass a callback to expressInterest. |
| 29 | */ |
Jeff Thompson | a6d15c8 | 2013-09-17 15:34:32 -0700 | [diff] [blame] | 30 | typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&)> OnTimeout; |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 31 | |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 32 | /** |
| 33 | * An OnInterest function object is used to pass a callback to registerPrefix. |
| 34 | */ |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 35 | typedef func_lib::function<void |
Jeff Thompson | b510e3e | 2013-10-07 18:53:20 -0700 | [diff] [blame] | 36 | (const ptr_lib::shared_ptr<const Name>&, const ptr_lib::shared_ptr<const Interest>&, Transport&, uint64_t)> OnInterest; |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 37 | |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 38 | /** |
| 39 | * An OnRegisterFailed function object is used to report when registerPrefix fails. |
| 40 | */ |
| 41 | typedef func_lib::function<void(const ptr_lib::shared_ptr<const Name>&)> OnRegisterFailed; |
| 42 | |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 43 | class Face; |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 44 | class KeyChain; |
| 45 | |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 46 | class Node : public ElementListener { |
| 47 | public: |
| 48 | /** |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 49 | * Create a new Node for communication with an NDN hub with the given Transport object and connectionInfo. |
| 50 | * @param transport A shared_ptr to a Transport object used for communication. |
| 51 | * @param transport A shared_ptr to a Transport::ConnectionInfo to be used to connect to the transport. |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 52 | */ |
Jeff Thompson | 1656e6a | 2013-08-29 18:01:48 -0700 | [diff] [blame] | 53 | Node(const ptr_lib::shared_ptr<Transport>& transport, const ptr_lib::shared_ptr<const Transport::ConnectionInfo>& connectionInfo); |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 54 | |
| 55 | /** |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 56 | * Send the Interest through the transport, read the entire response and call onData(interest, data). |
| 57 | * @param interest A reference to the Interest. This copies the Interest. |
| 58 | * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to |
| 59 | * use func_lib::ref() as appropriate. |
| 60 | * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it. |
| 61 | * This copies the function object, so you may need to use func_lib::ref() as appropriate. |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 62 | * @return The pending interest ID which can be used with removePendingInterest. |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 63 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 64 | uint64_t |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 65 | expressInterest(const Interest& interest, const OnData& onData, const OnTimeout& onTimeout); |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 66 | |
| 67 | /** |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 68 | * Remove the pending interest entry with the pendingInterestId from the pending interest table. |
| 69 | * This does not affect another pending interest with a different pendingInterestId, even it if has the same interest name. |
| 70 | * If there is no entry with the pendingInterestId, do nothing. |
| 71 | * @param pendingInterestId The ID returned from expressInterest. |
| 72 | */ |
| 73 | void |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 74 | removePendingInterest(uint64_t pendingInterestId); |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 75 | |
| 76 | /** |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 77 | * Register prefix with the connected NDN hub and call onInterest when a matching interest is received. |
| 78 | * @param prefix A reference to a Name for the prefix to register. This copies the Name. |
| 79 | * @param onInterest A function object to call when a matching interest is received. This copies the function object, so you may need to |
| 80 | * use func_lib::ref() as appropriate. |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 81 | * @param onRegisterFailed A function object to call if failed to retrieve the connected hub’s ID or failed to register the prefix. |
| 82 | * This calls onRegisterFailed(prefix) where prefix is the prefix given to registerPrefix. |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 83 | * @param flags The flags for finer control of which interests are forward to the application. |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 84 | * @param wireFormat A WireFormat object used to encode the input. If omitted, use WireFormat getDefaultWireFormat(). |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 85 | * @return The registered prefix ID which can be used with removeRegisteredPrefix. |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 86 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 87 | uint64_t |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 88 | registerPrefix |
Jeff Thompson | 1f8a31a | 2013-09-30 16:18:47 -0700 | [diff] [blame] | 89 | (const Name& prefix, const OnInterest& onInterest, const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags, |
| 90 | WireFormat& wireFormat); |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 91 | |
| 92 | /** |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 93 | * Remove the registered prefix entry with the registeredPrefixId from the pending interest table. |
| 94 | * This does not affect another registered prefix with a different registeredPrefixId, even it if has the same prefix name. |
| 95 | * If there is no entry with the registeredPrefixId, do nothing. |
| 96 | * @param registeredPrefixId The ID returned from registerPrefix. |
| 97 | */ |
| 98 | void |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 99 | removeRegisteredPrefix(uint64_t registeredPrefixId); |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 100 | |
| 101 | /** |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 102 | * Process any data to receive. For each element received, call onReceivedElement. |
| 103 | * This is non-blocking and will return immediately if there is no data to receive. |
| 104 | * You should repeatedly call this from an event loop, with calls to sleep as needed so that the loop doesn't use 100% of the CPU. |
| 105 | * @throw This may throw an exception for reading data or in the callback for processing the data. If you |
| 106 | * call this from an main event loop, you may want to catch and log/disregard all exceptions. |
| 107 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 108 | void |
| 109 | processEvents(); |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 110 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 111 | const ptr_lib::shared_ptr<Transport>& |
| 112 | getTransport() { return transport_; } |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 113 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 114 | const ptr_lib::shared_ptr<const Transport::ConnectionInfo>& |
| 115 | getConnectionInfo() { return connectionInfo_; } |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 116 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 117 | void |
Jeff Thompson | 97223af | 2013-09-24 17:01:27 -0700 | [diff] [blame] | 118 | onReceivedElement(const uint8_t *element, size_t elementLength); |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 119 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 120 | void |
| 121 | shutdown(); |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 122 | |
| 123 | private: |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 124 | class PendingInterest { |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 125 | public: |
| 126 | /** |
| 127 | * Create a new PitEntry and set the timeoutTime_ based on the current time and the interest lifetime. |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 128 | * @param pendingInterestId A unique ID for this entry, which you should get with getNextPendingInteresId(). |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 129 | * @param interest A shared_ptr for the interest. |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 130 | * @param onData A function object to call when a matching data packet is received. |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 131 | * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it. |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 132 | */ |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 133 | PendingInterest |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 134 | (uint64_t pendingInterestId, const ptr_lib::shared_ptr<const Interest>& interest, const OnData& onData, |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 135 | const OnTimeout& onTimeout); |
| 136 | |
| 137 | /** |
| 138 | * Return the next unique pending interest ID. |
| 139 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 140 | static uint64_t |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 141 | getNextPendingInterestId() |
| 142 | { |
| 143 | return ++lastPendingInterestId_; |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Return the pendingInterestId given to the constructor. |
| 148 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 149 | uint64_t |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 150 | getPendingInterestId() { return pendingInterestId_; } |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 151 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 152 | const ptr_lib::shared_ptr<const Interest>& |
| 153 | getInterest() { return interest_; } |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 154 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 155 | const OnData& |
| 156 | getOnData() { return onData_; } |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 157 | |
| 158 | /** |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 159 | * Get the struct ndn_Interest for the interest_. |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 160 | * WARNING: Assume that this PitEntry was created with new, so that no copy constructor is invoked between calls. |
| 161 | * This class is private to Node and only used by its methods, so this should be OK. |
| 162 | * TODO: Doesn't this functionality belong in the Interest class? |
| 163 | * @return A reference to the ndn_Interest struct. |
| 164 | * WARNING: The resulting pointers in are invalid uses getInterest() to manipulate the object which could reallocate memory. |
| 165 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 166 | const struct ndn_Interest& |
| 167 | getInterestStruct() |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 168 | { |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 169 | return *interestStruct_; |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /** |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 173 | * If this interest is timed out, call onTimeout_ (if defined) and return true. |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 174 | * @param parent The parent Node for the UpcallInfo. |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 175 | * @param nowMilliseconds The current time in milliseconds from ndn_getNowMilliseconds. |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 176 | * @return true if this interest timed out and the timeout callback was called, otherwise false. |
| 177 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 178 | bool |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 179 | checkTimeout(Node *parent, MillisecondsSince1970 nowMilliseconds); |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 180 | |
| 181 | private: |
Jeff Thompson | 48917f0 | 2013-08-21 17:12:45 -0700 | [diff] [blame] | 182 | ptr_lib::shared_ptr<const Interest> interest_; |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 183 | std::vector<struct ndn_NameComponent> nameComponents_; |
| 184 | std::vector<struct ndn_ExcludeEntry> excludeEntries_; |
Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 185 | ptr_lib::shared_ptr<struct ndn_Interest> interestStruct_; |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 186 | |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 187 | static uint64_t lastPendingInterestId_; /**< A class variable used to get the next unique ID. */ |
| 188 | uint64_t pendingInterestId_; /**< A unique identifier for this entry so it can be deleted */ |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 189 | const OnData onData_; |
| 190 | const OnTimeout onTimeout_; |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 191 | MillisecondsSince1970 timeoutTimeMilliseconds_; /**< The time when the interest times out in milliseconds according to ndn_getNowMilliseconds, or -1 for no timeout. */ |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 192 | }; |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 193 | |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 194 | class RegisteredPrefix { |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 195 | public: |
| 196 | /** |
| 197 | * Create a new PrefixEntry. |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 198 | * @param registeredPrefixId A unique ID for this entry, which you should get with getNextRegisteredPrefixId(). |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 199 | * @param prefix A shared_ptr for the prefix. |
| 200 | * @param onInterest A function object to call when a matching data packet is received. |
| 201 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 202 | RegisteredPrefix(uint64_t registeredPrefixId, const ptr_lib::shared_ptr<const Name>& prefix, const OnInterest& onInterest) |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 203 | : registeredPrefixId_(registeredPrefixId), prefix_(prefix), onInterest_(onInterest) |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 204 | { |
| 205 | } |
| 206 | |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 207 | /** |
| 208 | * Return the next unique entry ID. |
| 209 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 210 | static uint64_t |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 211 | getNextRegisteredPrefixId() |
| 212 | { |
| 213 | return ++lastRegisteredPrefixId_; |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Return the registeredPrefixId given to the constructor. |
| 218 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 219 | uint64_t |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 220 | getRegisteredPrefixId() { return registeredPrefixId_; } |
| 221 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 222 | const ptr_lib::shared_ptr<const Name>& |
| 223 | getPrefix() { return prefix_; } |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 224 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 225 | const OnInterest& |
| 226 | getOnInterest() { return onInterest_; } |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 227 | |
| 228 | private: |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 229 | static uint64_t lastRegisteredPrefixId_; /**< A class variable used to get the next unique ID. */ |
| 230 | uint64_t registeredPrefixId_; /**< A unique identifier for this entry so it can be deleted */ |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 231 | ptr_lib::shared_ptr<const Name> prefix_; |
| 232 | const OnInterest onInterest_; |
| 233 | }; |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 234 | |
| 235 | /** |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 236 | * An NdndIdFetcher receives the Data packet with the publisher public key digest for the connected NDN hub. |
| 237 | * This class is a function object for the callbacks. It only holds a pointer to an Info object, so it is OK to copy the pointer. |
| 238 | */ |
| 239 | class NdndIdFetcher { |
| 240 | public: |
| 241 | class Info; |
| 242 | NdndIdFetcher(ptr_lib::shared_ptr<NdndIdFetcher::Info> info) |
| 243 | : info_(info) |
| 244 | { |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * We received the ndnd ID. |
| 249 | * @param interest |
| 250 | * @param data |
| 251 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 252 | void |
| 253 | operator()(const ptr_lib::shared_ptr<const Interest>& interest, const ptr_lib::shared_ptr<Data>& ndndIdData); |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 254 | |
| 255 | /** |
| 256 | * We timed out fetching the ndnd ID. |
| 257 | * @param interest |
| 258 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 259 | void |
| 260 | operator()(const ptr_lib::shared_ptr<const Interest>& timedOutInterest); |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 261 | |
| 262 | class Info { |
| 263 | public: |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 264 | /** |
| 265 | * |
| 266 | * @param node |
| 267 | * @param registeredPrefixId The PrefixEntry::getNextRegisteredPrefixId() which registerPrefix got so it could return it to the caller. |
| 268 | * @param prefix |
| 269 | * @param onInterest |
| 270 | * @param onRegisterFailed |
| 271 | * @param flags |
| 272 | * @param wireFormat |
| 273 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 274 | Info(Node *node, uint64_t registeredPrefixId, const Name& prefix, const OnInterest& onInterest, |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 275 | const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags, WireFormat& wireFormat) |
| 276 | : node_(*node), registeredPrefixId_(registeredPrefixId), prefix_(new Name(prefix)), onInterest_(onInterest), onRegisterFailed_(onRegisterFailed), |
Jeff Thompson | 6d7369b | 2013-09-19 14:40:21 -0700 | [diff] [blame] | 277 | flags_(flags), wireFormat_(wireFormat) |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 278 | { |
| 279 | } |
| 280 | |
Jeff Thompson | 1656e6a | 2013-08-29 18:01:48 -0700 | [diff] [blame] | 281 | Node& node_; |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 282 | uint64_t registeredPrefixId_; |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 283 | ptr_lib::shared_ptr<const Name> prefix_; |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 284 | const OnInterest onInterest_; |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 285 | const OnRegisterFailed onRegisterFailed_; |
Jeff Thompson | 1f8a31a | 2013-09-30 16:18:47 -0700 | [diff] [blame] | 286 | ForwardingFlags flags_; |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 287 | WireFormat& wireFormat_; |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 288 | }; |
| 289 | |
| 290 | private: |
| 291 | ptr_lib::shared_ptr<Info> info_; |
| 292 | }; |
| 293 | |
| 294 | /** |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 295 | * Find the entry from the pit_ where the name conforms to the entry's interest selectors, and |
| 296 | * the entry interest name is the longest that matches name. |
| 297 | * @param name The name to find the interest for (from the incoming data packet). |
| 298 | * @return The index in pit_ of the pit entry, or -1 if not found. |
| 299 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 300 | int |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 301 | getEntryIndexForExpressedInterest(const Name& name); |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 302 | |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 303 | /** |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 304 | * Find the first entry from the registeredPrefixTable_ where the entry prefix is the longest that matches name. |
| 305 | * @param name The name to find the PrefixEntry for (from the incoming interest packet). |
| 306 | * @return A pointer to the entry, or 0 if not found. |
| 307 | */ |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 308 | RegisteredPrefix* |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 309 | getEntryForRegisteredPrefix(const Name& name); |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 310 | |
Jeff Thompson | 9cc4be4 | 2013-08-27 18:12:41 -0700 | [diff] [blame] | 311 | /** |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 312 | * Do the work of registerPrefix once we know we are connected with an ndndId_. |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 313 | * @param registeredPrefixId The PrefixEntry::getNextRegisteredPrefixId() which registerPrefix got so it could return it to the caller. |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 314 | * @param prefix |
| 315 | * @param onInterest |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 316 | * @param onRegisterFailed |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 317 | * @param flags |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 318 | * @param wireFormat |
| 319 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 320 | void |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 321 | registerPrefixHelper |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 322 | (uint64_t registeredPrefixId, const ptr_lib::shared_ptr<const Name>& prefix, const OnInterest& onInterest, |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 323 | const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags, WireFormat& wireFormat); |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 324 | |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 325 | ptr_lib::shared_ptr<Transport> transport_; |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 326 | ptr_lib::shared_ptr<const Transport::ConnectionInfo> connectionInfo_; |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 327 | std::vector<ptr_lib::shared_ptr<PendingInterest> > pendingInterestTable_; |
| 328 | std::vector<ptr_lib::shared_ptr<RegisteredPrefix> > registeredPrefixTable_; |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 329 | Interest ndndIdFetcherInterest_; |
Jeff Thompson | 03616c9 | 2013-09-12 14:30:01 -0700 | [diff] [blame] | 330 | Blob ndndId_; |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 331 | }; |
| 332 | |
| 333 | } |
| 334 | |
| 335 | #endif |