Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 1 | /** |
| 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 Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 9 | #include "Closure.hpp" |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 10 | #include "Interest.hpp" |
| 11 | #include "transport/Transport.hpp" |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 12 | #include "encoding/BinaryXMLElementReader.hpp" |
| 13 | |
Jeff Thompson | beb8b7d | 2013-07-16 15:49:21 -0700 | [diff] [blame] | 14 | using namespace std; |
| 15 | |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 16 | namespace ndn { |
| 17 | |
| 18 | class NDN : public ElementListener { |
| 19 | public: |
Jeff Thompson | beb8b7d | 2013-07-16 15:49:21 -0700 | [diff] [blame] | 20 | NDN(const ptr_lib::shared_ptr<Transport> &transport, const char *host, unsigned short port, const ptr_lib::shared_ptr<Closure> &tempClosure) |
| 21 | : transport_(transport), host_(host), port_(port), tempClosure_(tempClosure) |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 22 | { |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 23 | } |
| 24 | |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 25 | /** |
| 26 | * Encode name as an Interest. If interestTemplate is not 0, use its interest selectors. |
| 27 | * Send the interest through the transport, read the entire response and call |
| 28 | * closure->upcall(UPCALL_CONTENT (or UPCALL_CONTENT_UNVERIFIED), |
| 29 | * UpcallInfo(this, interest, 0, contentObject)). |
| 30 | * @param name reference to a Name for the interest. This does not keep a pointer to the Name object. |
| 31 | * @param closure a shared_ptr for the Closure. This uses shared_ptr to take another reference to the object. |
| 32 | * @param interestTemplate if not 0, copy interest selectors from the template. This does not keep a pointer to the Interest object. |
| 33 | */ |
| 34 | void expressInterest(const Name &name, const ptr_lib::shared_ptr<Closure> &closure, const Interest *interestTemplate); |
| 35 | |
| 36 | Transport &tempGetTransport() { return *transport_; } |
| 37 | |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 38 | virtual void onReceivedElement(unsigned char *element, unsigned int elementLength); |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 39 | |
| 40 | private: |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 41 | ptr_lib::shared_ptr<Transport> transport_; |
Jeff Thompson | beb8b7d | 2013-07-16 15:49:21 -0700 | [diff] [blame] | 42 | string host_; |
| 43 | unsigned short port_; |
Jeff Thompson | c172be3 | 2013-07-16 15:08:05 -0700 | [diff] [blame] | 44 | ptr_lib::shared_ptr<Closure> tempClosure_; |
Jeff Thompson | aa4e6db | 2013-07-15 17:25:23 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | } |
| 48 | |
| 49 | #endif |