Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 1 | /** |
| 2 | * @author: Jeff Thompson |
| 3 | * See COPYING for copyright and distribution information. |
| 4 | */ |
| 5 | |
| 6 | #include <cstdlib> |
| 7 | #include <sstream> |
| 8 | #include <iostream> |
| 9 | #include <ndn-cpp/Interest.hpp> |
| 10 | #include <ndn-cpp/ContentObject.hpp> |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 11 | #include <ndn-cpp/transport/UdpTransport.hpp> |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 12 | #include <ndn-cpp/NDN.hpp> |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 13 | |
| 14 | using namespace std; |
| 15 | using namespace ndn; |
Jeff Thompson | 1bbc4e7 | 2013-07-16 16:30:55 -0700 | [diff] [blame] | 16 | using namespace ptr_lib; |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 17 | |
| 18 | class MyClosure : public Closure { |
| 19 | public: |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 20 | MyClosure() |
| 21 | : gotContent_(false) |
| 22 | { |
| 23 | } |
| 24 | |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 25 | virtual UpcallResult upcall(UpcallKind kind, UpcallInfo &upcallInfo) |
| 26 | { |
| 27 | if (kind == UPCALL_CONTENT || kind == UPCALL_CONTENT_UNVERIFIED) { |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 28 | gotContent_ = true; |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 29 | cout << "Got content with name " << upcallInfo.getContentObject()->getName().to_uri() << endl; |
| 30 | for (unsigned int i = 0; i < upcallInfo.getContentObject()->getContent().size(); ++i) |
| 31 | cout << upcallInfo.getContentObject()->getContent()[i]; |
| 32 | cout << endl; |
| 33 | |
| 34 | return CLOSURE_RESULT_OK; |
| 35 | } |
| 36 | else |
| 37 | return CLOSURE_RESULT_OK; |
| 38 | } |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 39 | |
| 40 | bool gotContent_; |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 43 | int main(int argc, char** argv) |
| 44 | { |
| 45 | try { |
Jeff Thompson | bc53c52 | 2013-07-17 17:11:48 -0700 | [diff] [blame] | 46 | shared_ptr<UdpTransport> transport(new UdpTransport()); |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 47 | shared_ptr<MyClosure> closure(new MyClosure()); |
Jeff Thompson | 4a48e67 | 2013-07-31 10:41:07 -0700 | [diff] [blame^] | 48 | NDN ndn("E.hub.ndn.ucla.edu", 9695, transport); |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 49 | ndn.expressInterest(Name("/ndn/ucla.edu/apps/ndn-js-test/hello.txt/level2/%FD%05%0B%16%7D%95%0E"), closure, 0); |
Jeff Thompson | 3a21706 | 2013-07-14 23:37:42 -0700 | [diff] [blame] | 50 | |
Jeff Thompson | b002f90 | 2013-07-16 18:07:18 -0700 | [diff] [blame] | 51 | // Pump the receive process. This should really be done by a socket listener. |
| 52 | while (!closure->gotContent_) |
| 53 | transport->tempReceive(); |
Jeff Thompson | 1bbc4e7 | 2013-07-16 16:30:55 -0700 | [diff] [blame] | 54 | } catch (std::exception &e) { |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 55 | cout << "exception: " << e.what() << endl; |
| 56 | } |
| 57 | return 0; |
| 58 | } |