blob: 09dfad260a04d46c9b7d475c667eed82a9600257 [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
6#ifndef NDN_NDN_HPP
7#define NDN_NDN_HPP
8
Jeff Thompsonb982b6d2013-07-15 18:15:45 -07009#include "Closure.hpp"
Jeff Thompsonc172be32013-07-16 15:08:05 -070010#include "Interest.hpp"
11#include "transport/Transport.hpp"
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070012#include "encoding/BinaryXMLElementReader.hpp"
13
14namespace ndn {
15
16class NDN : public ElementListener {
17public:
Jeff Thompsonc172be32013-07-16 15:08:05 -070018 NDN(const ptr_lib::shared_ptr<Transport> &transport, const ptr_lib::shared_ptr<Closure> &tempClosure)
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070019 {
Jeff Thompsonc172be32013-07-16 15:08:05 -070020 transport_ = transport;
21 tempClosure_ = tempClosure;
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070022 }
23
Jeff Thompsonc172be32013-07-16 15:08:05 -070024 /**
25 * Encode name as an Interest. If interestTemplate is not 0, use its interest selectors.
26 * Send the interest through the transport, read the entire response and call
27 * closure->upcall(UPCALL_CONTENT (or UPCALL_CONTENT_UNVERIFIED),
28 * UpcallInfo(this, interest, 0, contentObject)).
29 * @param name reference to a Name for the interest. This does not keep a pointer to the Name object.
30 * @param closure a shared_ptr for the Closure. This uses shared_ptr to take another reference to the object.
31 * @param interestTemplate if not 0, copy interest selectors from the template. This does not keep a pointer to the Interest object.
32 */
33 void expressInterest(const Name &name, const ptr_lib::shared_ptr<Closure> &closure, const Interest *interestTemplate);
34
35 Transport &tempGetTransport() { return *transport_; }
36
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070037 virtual void onReceivedElement(unsigned char *element, unsigned int elementLength);
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070038
39private:
Jeff Thompsonc172be32013-07-16 15:08:05 -070040 ptr_lib::shared_ptr<Transport> transport_;
41 ptr_lib::shared_ptr<Closure> tempClosure_;
Jeff Thompsonaa4e6db2013-07-15 17:25:23 -070042};
43
44}
45
46#endif