blob: 85273ba51703a96d504afc26f4c7fe65a9a0ab98 [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>
9#include <ndn-cpp/Interest.hpp>
10#include <ndn-cpp/ContentObject.hpp>
Jeff Thompson25f8e612013-07-15 11:30:21 -070011#include <ndn-cpp/transport/TcpTransport.hpp>
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070012#include <ndn-cpp/c/encoding/BinaryXMLElementReader.h>
13#include <ndn-cpp/NDN.hpp>
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070014
15using namespace std;
16using namespace ndn;
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070017
18class MyClosure : public Closure {
19public:
20 virtual UpcallResult upcall(UpcallKind kind, UpcallInfo &upcallInfo)
21 {
22 if (kind == UPCALL_CONTENT || kind == UPCALL_CONTENT_UNVERIFIED) {
23 cout << "Got content with name " << upcallInfo.getContentObject()->getName().to_uri() << endl;
24 for (unsigned int i = 0; i < upcallInfo.getContentObject()->getContent().size(); ++i)
25 cout << upcallInfo.getContentObject()->getContent()[i];
26 cout << endl;
27
28 return CLOSURE_RESULT_OK;
29 }
30 else
31 return CLOSURE_RESULT_OK;
32 }
33};
34
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070035int main(int argc, char** argv)
36{
37 try {
Jeff Thompsonbeb8b7d2013-07-16 15:49:21 -070038 NDN ndn(ptr_lib::make_shared<TcpTransport>(), "E.hub.ndn.ucla.edu", 9695, ptr_lib::make_shared<MyClosure>());
Jeff Thompsonc172be32013-07-16 15:08:05 -070039 ndn.expressInterest(Name("/ndn/ucla.edu/apps/ndn-js-test/hello.txt/level2/%FD%05%0B%16%7D%95%0E"), ptr_lib::make_shared<MyClosure>(), 0);
Jeff Thompson3a217062013-07-14 23:37:42 -070040
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070041 ndn_BinaryXMLElementReader elementReader;
42 ndn_BinaryXMLElementReader_init(&elementReader, (struct ndn_ElementListener *)&ndn);
43
44 unsigned char buffer[8000];
Jeff Thompsonc172be32013-07-16 15:08:05 -070045 unsigned int nBytes = ndn.tempGetTransport().receive(buffer, sizeof(buffer));
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070046 ndn_BinaryXMLElementReader_onReceivedData(&elementReader, buffer, nBytes);
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070047 } catch (exception &e) {
48 cout << "exception: " << e.what() << endl;
49 }
50 return 0;
51}