blob: ec4fe27b96d7baf26570819ca006e855570559b0 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07005 * See COPYING for copyright and distribution information.
6 */
7
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -07008#ifndef NDN_FACE_HPP
Jeff Thompsona0d18c92013-08-06 13:55:32 -07009#define NDN_FACE_HPP
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070010
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070011#include "node.hpp"
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080012#include "transport/transport.hpp"
13#include "transport/unix-transport.hpp"
Jeff Thompsonbeb8b7d2013-07-16 15:49:21 -070014
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070015namespace ndn {
16
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070017/**
18 * The Face class provides the main methods for NDN communication.
19 */
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070020class Face {
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070021public:
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070022 /**
Alexander Afanasyevb790d952014-01-24 12:07:53 -080023 * @brief Create a new Face for communication with an NDN hub using the default TcpTransport.
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080024 */
25 Face()
Alexander Afanasyevb790d952014-01-24 12:07:53 -080026 : node_(ptr_lib::shared_ptr<UnixTransport>(new UnixTransport()))
27 {
28 }
29
30 /**
31 * @brief Create a new Face for communication with an NDN hub using the default Transport.
32 * @param ioService A shared pointer to boost::io_service object that should control all IO operations
33 */
34 Face(const ptr_lib::shared_ptr<boost::asio::io_service> &ioService)
35 : node_(ptr_lib::shared_ptr<UnixTransport>(new UnixTransport()), ioService)
36 {
37 }
38
39 /**
40 * Create a new Face for communication with an NDN hub with the given Transport object and connectionInfo.
41 * @param transport A shared_ptr to a Transport object used for communication.
42 */
43 Face(const ptr_lib::shared_ptr<Transport>& transport)
44 : node_(transport)
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080045 {
46 }
47
48 /**
Jeff Thompson10e34382013-08-22 13:34:46 -070049 * Create a new Face 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.
Alexander Afanasyevb790d952014-01-24 12:07:53 -080051 * @param ioService A shared pointer to boost::io_service object that should control all IO operations
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070052 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -080053 Face(const ptr_lib::shared_ptr<Transport>& transport, const ptr_lib::shared_ptr<boost::asio::io_service> &ioService)
54 : node_(transport, ioService)
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070055 {
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070056 }
57
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070058 /**
Jeff Thompson86507bc2013-08-23 20:51:38 -070059 * Create a new Face for communication with an NDN hub at host:port using the default TcpTransport.
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070060 * @param host The host of the NDN hub.
Jeff Thompsonb629ddb2013-10-03 13:58:43 -070061 * @param port The port of the NDN hub. If omitted. use 6363.
Jeff Thompsonfe08e5a2013-08-13 11:15:59 -070062 */
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080063 // Face(const char *host, unsigned short port = 6363)
64 // : node_(ptr_lib::shared_ptr<TcpTransport>(new TcpTransport(host, port)))
65 // {
66 // }
Jeff Thompsonfb29cda2013-08-24 10:26:54 -070067
Jeff Thompson4fe45512013-08-23 14:06:38 -070068 /**
69 * Send the Interest through the transport, read the entire response and call onData(interest, data).
70 * @param interest A reference to the Interest. This copies the Interest.
71 * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to
72 * use func_lib::ref() as appropriate.
73 * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it.
74 * This copies the function object, so you may need to use func_lib::ref() as appropriate.
Jeff Thompson11095142013-10-01 16:20:28 -070075 * @return The pending interest ID which can be used with removePendingInterest.
Jeff Thompson4fe45512013-08-23 14:06:38 -070076 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -080077 const PendingInterestId*
Jeff Thompson978c1522013-11-12 23:03:10 -080078 expressInterest
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080079 (const Interest& interest, const OnData& onData, const OnTimeout& onTimeout = OnTimeout())
Jeff Thompson4fe45512013-08-23 14:06:38 -070080 {
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080081 return node_.expressInterest(interest, onData, onTimeout);
Jeff Thompson4fe45512013-08-23 14:06:38 -070082 }
83
84 /**
Jeff Thompsonc172be32013-07-16 15:08:05 -070085 * Encode name as an Interest. If interestTemplate is not 0, use its interest selectors.
Jeff Thompson7aec0252013-08-22 17:29:57 -070086 * Send the interest through the transport, read the entire response and call onData(interest, data).
Jeff Thompson4fe45512013-08-23 14:06:38 -070087 * @param name A reference to a Name for the interest. This copies the Name.
Jeff Thompsonc172be32013-07-16 15:08:05 -070088 * @param interestTemplate if not 0, copy interest selectors from the template. This does not keep a pointer to the Interest object.
Jeff Thompson7aec0252013-08-22 17:29:57 -070089 * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to
Alexander Afanasyevb790d952014-01-24 12:07:53 -080090 * use func_lib::ref() as appropriate.
Jeff Thompson7aec0252013-08-22 17:29:57 -070091 * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it.
Alexander Afanasyevb790d952014-01-24 12:07:53 -080092 * This copies the function object, so you may need to use func_lib::ref() as appropriate.
Jeff Thompsonc172be32013-07-16 15:08:05 -070093 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -080094 const PendingInterestId*
Jeff Thompson978c1522013-11-12 23:03:10 -080095 expressInterest
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -080096 (const Name& name, const Interest *interestTemplate, const OnData& onData, const OnTimeout& onTimeout = OnTimeout());
Jeff Thompson7aec0252013-08-22 17:29:57 -070097
98 /**
99 * Encode name as an Interest, using a default interest lifetime.
100 * Send the interest through the transport, read the entire response and call onData(interest, data).
Jeff Thompson4fe45512013-08-23 14:06:38 -0700101 * @param name A reference to a Name for the interest. This copies the Name.
Jeff Thompson7aec0252013-08-22 17:29:57 -0700102 * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to
103 * use func_lib::ref() as appropriate.
104 * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it.
105 * This copies the function object, so you may need to use func_lib::ref() as appropriate.
Jeff Thompson978c1522013-11-12 23:03:10 -0800106 * @param wireFormat A WireFormat object used to encode the message. If omitted, use WireFormat getDefaultWireFormat().
Jeff Thompson11095142013-10-01 16:20:28 -0700107 * @return The pending interest ID which can be used with removePendingInterest.
Jeff Thompson7aec0252013-08-22 17:29:57 -0700108 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800109 const PendingInterestId*
Jeff Thompson978c1522013-11-12 23:03:10 -0800110 expressInterest
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -0800111 (const Name& name, const OnData& onData, const OnTimeout& onTimeout = OnTimeout())
Jeff Thompson7aec0252013-08-22 17:29:57 -0700112 {
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -0800113 return expressInterest(name, 0, onData, onTimeout);
Jeff Thompson11095142013-10-01 16:20:28 -0700114 }
115
116 /**
117 * Remove the pending interest entry with the pendingInterestId from the pending interest table.
118 * This does not affect another pending interest with a different pendingInterestId, even it if has the same interest name.
119 * If there is no entry with the pendingInterestId, do nothing.
120 * @param pendingInterestId The ID returned from expressInterest.
121 */
122 void
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800123 removePendingInterest(const PendingInterestId* pendingInterestId)
Jeff Thompson11095142013-10-01 16:20:28 -0700124 {
125 node_.removePendingInterest(pendingInterestId);
Jeff Thompsoncdf7e252013-07-31 12:41:47 -0700126 }
127
Jeff Thompson432c8be2013-08-09 16:16:08 -0700128 /**
Jeff Thompson86507bc2013-08-23 20:51:38 -0700129 * Register prefix with the connected NDN hub and call onInterest when a matching interest is received.
130 * @param prefix A reference to a Name for the prefix to register. This copies the Name.
131 * @param onInterest A function object to call when a matching interest is received. This copies the function object, so you may need to
132 * use func_lib::ref() as appropriate.
Jeff Thompson590ec232013-09-18 15:55:56 -0700133 * @param onRegisterFailed A function object to call if failed to retrieve the connected hub’s ID or failed to register the prefix.
134 * This calls onRegisterFailed(prefix) where prefix is the prefix given to registerPrefix.
Jeff Thompson1f8a31a2013-09-30 16:18:47 -0700135 * @param flags The flags for finer control of which interests are forward to the application. If omitted, use
136 * the default flags defined by the default ForwardingFlags constructor.
Jeff Thompson978c1522013-11-12 23:03:10 -0800137 * @param wireFormat A WireFormat object used to encode the message. If omitted, use WireFormat getDefaultWireFormat().
Jeff Thompson11095142013-10-01 16:20:28 -0700138 * @return The registered prefix ID which can be used with removeRegisteredPrefix.
Jeff Thompson86507bc2013-08-23 20:51:38 -0700139 */
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800140 const RegisteredPrefixId*
Alexander Afanasyevde2f6b52014-01-02 21:42:26 -0800141 setInterestFilter
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -0800142 (const Name& prefix, const OnInterest& onInterest, const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags = ForwardingFlags())
Jeff Thompson86507bc2013-08-23 20:51:38 -0700143 {
Alexander Afanasyeve2e0d752014-01-03 13:30:30 -0800144 return node_.registerPrefix(prefix, onInterest, onRegisterFailed, flags);
Jeff Thompson11095142013-10-01 16:20:28 -0700145 }
146
147 /**
148 * Remove the registered prefix entry with the registeredPrefixId from the pending interest table.
149 * This does not affect another registered prefix with a different registeredPrefixId, even it if has the same prefix name.
150 * If there is no entry with the registeredPrefixId, do nothing.
151 * @param registeredPrefixId The ID returned from registerPrefix.
152 */
153 void
Alexander Afanasyevb790d952014-01-24 12:07:53 -0800154 unsetInterestFilter(const RegisteredPrefixId *registeredPrefixId)
Jeff Thompson11095142013-10-01 16:20:28 -0700155 {
156 node_.removeRegisteredPrefix(registeredPrefixId);
Jeff Thompson86507bc2013-08-23 20:51:38 -0700157 }
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800158
159 /**
160 * @brief Publish data packet
161 *
162 * This method can be called to satisfy the incoming Interest or to put Data packet into the cache
163 * of the local NDN forwarder
164 */
165 void
166 put(const Data &data)
167 {
168 node_.put(data);
169 }
Jeff Thompson86507bc2013-08-23 20:51:38 -0700170
171 /**
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700172 * Process any data to receive or call timeout callbacks.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800173 *
174 * This call will block forever (default timeout == 0) to process IO on the face.
175 * To exit, one expected to call face.shutdown() from one of the callback methods.
176 *
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800177 * If positive timeout is specified, then processEvents will exit after this timeout,
178 * if not stopped earlier with face.shutdown() or when all active events finish.
Alexander Afanasyeva557d5a2013-12-28 21:59:03 -0800179 * The call can be called repeatedly, if desired.
180 *
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800181 * If negative timeout is specified, then processEvents will not block and process only pending
182 * events.
183 *
Jeff Thompson432c8be2013-08-09 16:16:08 -0700184 * @throw This may throw an exception for reading data or in the callback for processing the data. If you
185 * call this from an main event loop, you may want to catch and log/disregard all exceptions.
186 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700187 void
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800188 processEvents(Milliseconds timeout = 0, bool keepThread = false)
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700189 {
190 // Just call Node's processEvents.
Alexander Afanasyevf75a0aa2014-01-09 14:29:22 -0800191 node_.processEvents(timeout, keepThread);
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700192 }
Jeff Thompson432c8be2013-08-09 16:16:08 -0700193
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700194 /**
195 * Shut down and disconnect this Face.
196 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700197 void
198 shutdown();
Jeff Thompson517ffa82013-08-05 16:04:34 -0700199
Jeff Thompsonb982b6d2013-07-15 18:15:45 -0700200private:
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700201 Node node_;
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -0700202};
203
204}
205
206#endif