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 | /** |
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 | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 5 | * See COPYING for copyright and distribution information. |
| 6 | */ |
| 7 | |
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 8 | #ifndef NDN_FACE_HPP |
Jeff Thompson | a0d18c9 | 2013-08-06 13:55:32 -0700 | [diff] [blame] | 9 | #define NDN_FACE_HPP |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 10 | |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 11 | #include "node.hpp" |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 12 | #include "transport/transport.hpp" |
| 13 | #include "transport/unix-transport.hpp" |
Jeff Thompson | beb8b7d | 2013-07-16 15:49:21 -0700 | [diff] [blame] | 14 | |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 15 | namespace ndn { |
| 16 | |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 17 | /** |
| 18 | * The Face class provides the main methods for NDN communication. |
| 19 | */ |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 20 | class Face { |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 21 | public: |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 22 | /** |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 23 | * Create a new Face for communication with an NDN hub at host:port using the default TcpTransport. |
| 24 | * @param host The host of the NDN hub. |
| 25 | * @param port The port of the NDN hub. If omitted. use 6363. |
| 26 | */ |
| 27 | Face() |
| 28 | : node_(ptr_lib::shared_ptr<UnixTransport>(new UnixTransport())) |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | /** |
Jeff Thompson | 10e3438 | 2013-08-22 13:34:46 -0700 | [diff] [blame] | 33 | * Create a new Face for communication with an NDN hub with the given Transport object and connectionInfo. |
| 34 | * @param transport A shared_ptr to a Transport object used for communication. |
| 35 | * @param transport A shared_ptr to a Transport::ConnectionInfo to be used to connect to the transport. |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 36 | */ |
Alexander Afanasyev | 0b688dc | 2013-12-18 16:43:37 -0800 | [diff] [blame] | 37 | Face(const ptr_lib::shared_ptr<Transport>& transport) |
| 38 | : node_(transport) |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 39 | { |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 42 | /** |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 43 | * Create a new Face for communication with an NDN hub at host:port using the default TcpTransport. |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 44 | * @param host The host of the NDN hub. |
Jeff Thompson | b629ddb | 2013-10-03 13:58:43 -0700 | [diff] [blame] | 45 | * @param port The port of the NDN hub. If omitted. use 6363. |
Jeff Thompson | fe08e5a | 2013-08-13 11:15:59 -0700 | [diff] [blame] | 46 | */ |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 47 | // Face(const char *host, unsigned short port = 6363) |
| 48 | // : node_(ptr_lib::shared_ptr<TcpTransport>(new TcpTransport(host, port))) |
| 49 | // { |
| 50 | // } |
Jeff Thompson | fb29cda | 2013-08-24 10:26:54 -0700 | [diff] [blame] | 51 | |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 52 | /** |
| 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 | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 59 | * @param wireFormat A WireFormat object used to encode the message. If omitted, use WireFormat getDefaultWireFormat(). |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 60 | * @return The pending interest ID which can be used with removePendingInterest. |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 61 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 62 | uint64_t |
Jeff Thompson | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 63 | expressInterest |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 64 | (const Interest& interest, const OnData& onData, const OnTimeout& onTimeout = OnTimeout()) |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 65 | { |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 66 | return node_.expressInterest(interest, onData, onTimeout); |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | /** |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 70 | * Encode name as an Interest. If interestTemplate is not 0, use its interest selectors. |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 71 | * Send the interest through the transport, read the entire response and call onData(interest, data). |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 72 | * @param name A reference to a Name for the interest. This copies the Name. |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 73 | * @param interestTemplate if not 0, copy interest selectors from the template. This does not keep a pointer to the Interest object. |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 74 | * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to |
| 75 | * use func_lib::ref() as appropriate. |
| 76 | * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it. |
| 77 | * This copies the function object, so you may need to use func_lib::ref() as appropriate. |
Jeff Thompson | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 78 | * @param wireFormat A WireFormat object used to encode the message. If omitted, use WireFormat getDefaultWireFormat(). |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 79 | * @return The pending interest ID which can be used with removePendingInterest. |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 80 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 81 | uint64_t |
Jeff Thompson | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 82 | expressInterest |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 83 | (const Name& name, const Interest *interestTemplate, const OnData& onData, const OnTimeout& onTimeout = OnTimeout()); |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 84 | |
| 85 | /** |
| 86 | * Encode name as an Interest, using a default interest lifetime. |
| 87 | * Send the interest through the transport, read the entire response and call onData(interest, data). |
Jeff Thompson | 4fe4551 | 2013-08-23 14:06:38 -0700 | [diff] [blame] | 88 | * @param name A reference to a Name for the interest. This copies the Name. |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 89 | * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to |
| 90 | * use func_lib::ref() as appropriate. |
| 91 | * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it. |
| 92 | * This copies the function object, so you may need to use func_lib::ref() as appropriate. |
Jeff Thompson | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 93 | * @param wireFormat A WireFormat object used to encode the message. If omitted, use WireFormat getDefaultWireFormat(). |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 94 | * @return The pending interest ID which can be used with removePendingInterest. |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 95 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 96 | uint64_t |
Jeff Thompson | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 97 | expressInterest |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 98 | (const Name& name, const OnData& onData, const OnTimeout& onTimeout = OnTimeout()) |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 99 | { |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 100 | return expressInterest(name, 0, onData, onTimeout); |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Remove the pending interest entry with the pendingInterestId from the pending interest table. |
| 105 | * This does not affect another pending interest with a different pendingInterestId, even it if has the same interest name. |
| 106 | * If there is no entry with the pendingInterestId, do nothing. |
| 107 | * @param pendingInterestId The ID returned from expressInterest. |
| 108 | */ |
| 109 | void |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 110 | removePendingInterest(uint64_t pendingInterestId) |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 111 | { |
| 112 | node_.removePendingInterest(pendingInterestId); |
Jeff Thompson | cdf7e25 | 2013-07-31 12:41:47 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 115 | /** |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 116 | * Register prefix with the connected NDN hub and call onInterest when a matching interest is received. |
| 117 | * @param prefix A reference to a Name for the prefix to register. This copies the Name. |
| 118 | * @param onInterest A function object to call when a matching interest is received. This copies the function object, so you may need to |
| 119 | * use func_lib::ref() as appropriate. |
Jeff Thompson | 590ec23 | 2013-09-18 15:55:56 -0700 | [diff] [blame] | 120 | * @param onRegisterFailed A function object to call if failed to retrieve the connected hub’s ID or failed to register the prefix. |
| 121 | * This calls onRegisterFailed(prefix) where prefix is the prefix given to registerPrefix. |
Jeff Thompson | 1f8a31a | 2013-09-30 16:18:47 -0700 | [diff] [blame] | 122 | * @param flags The flags for finer control of which interests are forward to the application. If omitted, use |
| 123 | * the default flags defined by the default ForwardingFlags constructor. |
Jeff Thompson | 978c152 | 2013-11-12 23:03:10 -0800 | [diff] [blame] | 124 | * @param wireFormat A WireFormat object used to encode the message. If omitted, use WireFormat getDefaultWireFormat(). |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 125 | * @return The registered prefix ID which can be used with removeRegisteredPrefix. |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 126 | */ |
Jeff Thompson | 62992e4 | 2013-10-07 18:50:51 -0700 | [diff] [blame] | 127 | uint64_t |
Alexander Afanasyev | de2f6b5 | 2014-01-02 21:42:26 -0800 | [diff] [blame] | 128 | setInterestFilter |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 129 | (const Name& prefix, const OnInterest& onInterest, const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags = ForwardingFlags()) |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 130 | { |
Alexander Afanasyev | e2e0d75 | 2014-01-03 13:30:30 -0800 | [diff] [blame] | 131 | return node_.registerPrefix(prefix, onInterest, onRegisterFailed, flags); |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Remove the registered prefix entry with the registeredPrefixId from the pending interest table. |
| 136 | * This does not affect another registered prefix with a different registeredPrefixId, even it if has the same prefix name. |
| 137 | * If there is no entry with the registeredPrefixId, do nothing. |
| 138 | * @param registeredPrefixId The ID returned from registerPrefix. |
| 139 | */ |
| 140 | void |
Alexander Afanasyev | de2f6b5 | 2014-01-02 21:42:26 -0800 | [diff] [blame] | 141 | unsetInterestFilter(uint64_t registeredPrefixId) |
Jeff Thompson | 1109514 | 2013-10-01 16:20:28 -0700 | [diff] [blame] | 142 | { |
| 143 | node_.removeRegisteredPrefix(registeredPrefixId); |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 144 | } |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 145 | |
| 146 | /** |
| 147 | * @brief Publish data packet |
| 148 | * |
| 149 | * This method can be called to satisfy the incoming Interest or to put Data packet into the cache |
| 150 | * of the local NDN forwarder |
| 151 | */ |
| 152 | void |
| 153 | put(const Data &data) |
| 154 | { |
| 155 | node_.put(data); |
| 156 | } |
Jeff Thompson | 86507bc | 2013-08-23 20:51:38 -0700 | [diff] [blame] | 157 | |
| 158 | /** |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 159 | * Process any data to receive or call timeout callbacks. |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 160 | * |
| 161 | * This call will block forever (default timeout == 0) to process IO on the face. |
| 162 | * To exit, one expected to call face.shutdown() from one of the callback methods. |
| 163 | * |
| 164 | * If timeout is specified, then processEvents will exit after this timeout, if not stopped earlier with face.shutdown(). |
| 165 | * The call can be called repeatedly, if desired. |
| 166 | * |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 167 | * @throw This may throw an exception for reading data or in the callback for processing the data. If you |
| 168 | * call this from an main event loop, you may want to catch and log/disregard all exceptions. |
| 169 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 170 | void |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 171 | processEvents(Milliseconds timeout = 0) |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 172 | { |
| 173 | // Just call Node's processEvents. |
Alexander Afanasyev | a557d5a | 2013-12-28 21:59:03 -0800 | [diff] [blame] | 174 | node_.processEvents(timeout); |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 175 | } |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 176 | |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 177 | /** |
| 178 | * Shut down and disconnect this Face. |
| 179 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 180 | void |
| 181 | shutdown(); |
Jeff Thompson | 517ffa8 | 2013-08-05 16:04:34 -0700 | [diff] [blame] | 182 | |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 183 | private: |
Jeff Thompson | bf50a1a | 2013-08-20 18:01:01 -0700 | [diff] [blame] | 184 | Node node_; |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 185 | }; |
| 186 | |
| 187 | } |
| 188 | |
| 189 | #endif |