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