blob: e3775779f4e962eb896ff86588d923508a3c3b33 [file] [log] [blame]
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -07006#ifndef NDN_FACE_HPP
Jeff Thompsona0d18c92013-08-06 13:55:32 -07007#define NDN_FACE_HPP
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -07008
Jeff Thompson53412192013-08-06 13:35:50 -07009#include "closure.hpp"
10#include "interest.hpp"
11#include "transport/udp-transport.hpp"
12#include "encoding/binary-xml-element-reader.hpp"
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070013
Jeff Thompsonbeb8b7d2013-07-16 15:49:21 -070014using namespace std;
15
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070016namespace ndn {
17
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070018class Face : public ElementListener {
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070019public:
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070020 Face(const char *host, unsigned short port, const ptr_lib::shared_ptr<Transport> &transport)
Jeff Thompson2a4724b2013-08-07 17:13:34 -070021 : host_(host), port_(port), transport_(transport), tempClosure_(0)
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070022 {
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070023 }
24
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070025 Face(const char *host, unsigned short port)
Jeff Thompson2a4724b2013-08-07 17:13:34 -070026 : host_(host), port_(port), transport_(new UdpTransport()), tempClosure_(0)
Jeff Thompsonb7d059d2013-07-31 10:59:51 -070027 {
28 }
Jeff Thompson1242b1f2013-07-31 11:02:00 -070029
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070030 Face(const char *host)
Jeff Thompson2a4724b2013-08-07 17:13:34 -070031 : host_(host), port_(9695), transport_(new UdpTransport()), tempClosure_(0)
Jeff Thompson1242b1f2013-07-31 11:02:00 -070032 {
33 }
Jeff Thompsonb7d059d2013-07-31 10:59:51 -070034
Jeff Thompsonc172be32013-07-16 15:08:05 -070035 /**
36 * Encode name as an Interest. If interestTemplate is not 0, use its interest selectors.
37 * Send the interest through the transport, read the entire response and call
Jeff Thompson56ec9e22013-08-02 11:34:07 -070038 * closure->upcall(UPCALL_DATA (or UPCALL_DATA_UNVERIFIED),
39 * UpcallInfo(this, interest, 0, data)).
Jeff Thompsonc172be32013-07-16 15:08:05 -070040 * @param name reference to a Name for the interest. This does not keep a pointer to the Name object.
Jeff Thompson2a4724b2013-08-07 17:13:34 -070041 * @param closure a pointer for the Closure. The caller must manage the memory for the Closure. This will not try to delete it.
Jeff Thompsonc172be32013-07-16 15:08:05 -070042 * @param interestTemplate if not 0, copy interest selectors from the template. This does not keep a pointer to the Interest object.
43 */
Jeff Thompson2a4724b2013-08-07 17:13:34 -070044 void expressInterest(const Name &name, Closure *closure, const Interest *interestTemplate);
Jeff Thompsonc172be32013-07-16 15:08:05 -070045
Jeff Thompson2a4724b2013-08-07 17:13:34 -070046 void expressInterest(const Name &name, Closure *closure)
Jeff Thompsoncdf7e252013-07-31 12:41:47 -070047 {
48 expressInterest(name, closure, 0);
49 }
50
Jeff Thompson432c8be2013-08-09 16:16:08 -070051 /**
52 * Process any data to receive. For each element received, call face.onReceivedElement.
53 * This is non-blocking and will silently time out after a brief period if there is no data to receive.
54 * You should repeatedly call this from an event loop.
55 * @throw This may throw an exception for reading data or in the callback for processing the data. If you
56 * call this from an main event loop, you may want to catch and log/disregard all exceptions.
57 */
58 void processEvents();
59
Jeff Thompson517ffa82013-08-05 16:04:34 -070060 void shutdown();
61
Jeff Thompson0cb7aee2013-07-16 16:18:06 -070062 const char *getHost() const { return host_.c_str(); }
63
64 unsigned short getPort() const { return port_; }
Jeff Thompsonc172be32013-07-16 15:08:05 -070065
Jeff Thompsonc49cb322013-08-08 17:15:46 -070066 const ptr_lib::shared_ptr<Transport> &getTransport() { return transport_; }
Jeff Thompsonab13ac72013-08-01 10:37:21 -070067
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070068 virtual void onReceivedElement(unsigned char *element, unsigned int elementLength);
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070069
70private:
Jeff Thompsonc172be32013-07-16 15:08:05 -070071 ptr_lib::shared_ptr<Transport> transport_;
Jeff Thompsonbeb8b7d2013-07-16 15:49:21 -070072 string host_;
73 unsigned short port_;
Jeff Thompson2a4724b2013-08-07 17:13:34 -070074 Closure *tempClosure_;
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070075};
76
77}
78
79#endif