blob: 62cc2e5a267a463351ba56887476d76364bfddda [file] [log] [blame]
Jeff Thompsonc98be1a2013-07-14 22:44:43 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#include <cstdlib>
7#include <sstream>
8#include <iostream>
Jeff Thompson53412192013-08-06 13:35:50 -07009#include <ndn-cpp/interest.hpp>
Jeff Thompson56ec9e22013-08-02 11:34:07 -070010#include <ndn-cpp/data.hpp>
Jeff Thompsonb9e3c8e2013-08-02 11:42:51 -070011#include <ndn-cpp/face.hpp>
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070012
13using namespace std;
14using namespace ndn;
Jeff Thompson1bbc4e72013-07-16 16:30:55 -070015using namespace ptr_lib;
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070016
17class MyClosure : public Closure {
18public:
Jeff Thompsonb002f902013-07-16 18:07:18 -070019 MyClosure()
20 : gotContent_(false)
21 {
22 }
23
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070024 virtual UpcallResult upcall(UpcallKind kind, UpcallInfo &upcallInfo)
25 {
Jeff Thompson56ec9e22013-08-02 11:34:07 -070026 if (kind == UPCALL_DATA || kind == UPCALL_DATA_UNVERIFIED) {
Jeff Thompsonb002f902013-07-16 18:07:18 -070027 gotContent_ = true;
Jeff Thompson56ec9e22013-08-02 11:34:07 -070028 cout << "Got data packet with name " << upcallInfo.getData()->getName().to_uri() << endl;
29 for (unsigned int i = 0; i < upcallInfo.getData()->getContent().size(); ++i)
30 cout << upcallInfo.getData()->getContent()[i];
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070031 cout << endl;
32
33 return CLOSURE_RESULT_OK;
34 }
35 else
36 return CLOSURE_RESULT_OK;
37 }
Jeff Thompsonb002f902013-07-16 18:07:18 -070038
39 bool gotContent_;
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070040};
41
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070042int main(int argc, char** argv)
43{
44 try {
Jeff Thompson2a4724b2013-08-07 17:13:34 -070045 MyClosure closure;
Jeff Thompsondc461ab2013-08-19 18:15:59 -070046 Face face("E.hub.ndn.ucla.edu");
Jeff Thompson2a4724b2013-08-07 17:13:34 -070047 face.expressInterest(Name("/ndn/ucla.edu/apps/ndn-js-test/hello.txt/level2/%FD%05%0B%16%7D%95%0E"), &closure);
Jeff Thompson3a217062013-07-14 23:37:42 -070048
Jeff Thompson432c8be2013-08-09 16:16:08 -070049 // The main event loop.
Jeff Thompsonc7e07442013-08-19 15:25:43 -070050 while (!closure.gotContent_) {
51 face.processEvents();
52 // We need to sleep for a few milliseconds so we don't use 100% of the CPU.
53 usleep(10000);
54 }
Jeff Thompson1bbc4e72013-07-16 16:30:55 -070055 } catch (std::exception &e) {
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070056 cout << "exception: " << e.what() << endl;
57 }
58 return 0;
59}