| /** |
| * @author: Jeff Thompson |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #include <cstdlib> |
| #include <sstream> |
| #include <iostream> |
| #include <ndn-cpp/Interest.hpp> |
| #include <ndn-cpp/ContentObject.hpp> |
| #include <ndn-cpp/transport/TcpTransport.hpp> |
| #include <ndn-cpp/c/encoding/BinaryXMLElementReader.h> |
| #include <ndn-cpp/NDN.hpp> |
| |
| using namespace std; |
| using namespace ndn; |
| |
| class MyClosure : public Closure { |
| public: |
| virtual UpcallResult upcall(UpcallKind kind, UpcallInfo &upcallInfo) |
| { |
| if (kind == UPCALL_CONTENT || kind == UPCALL_CONTENT_UNVERIFIED) { |
| cout << "Got content with name " << upcallInfo.getContentObject()->getName().to_uri() << endl; |
| for (unsigned int i = 0; i < upcallInfo.getContentObject()->getContent().size(); ++i) |
| cout << upcallInfo.getContentObject()->getContent()[i]; |
| cout << endl; |
| |
| return CLOSURE_RESULT_OK; |
| } |
| else |
| return CLOSURE_RESULT_OK; |
| } |
| }; |
| |
| int main(int argc, char** argv) |
| { |
| try { |
| Interest interest; |
| interest.getName() = Name("/ndn/ucla.edu/apps/ndn-js-test/hello.txt/level2/%FD%05%0B%16%7D%95%0E"); |
| vector<unsigned char> encoding; |
| interest.encode(encoding); |
| |
| TcpTransport transport; |
| transport.connect((char *)"E.hub.ndn.ucla.edu", 9695); |
| transport.send(&encoding[0], encoding.size()); |
| |
| MyClosure closure; |
| NDN ndn(&closure); |
| |
| ndn_BinaryXMLElementReader elementReader; |
| ndn_BinaryXMLElementReader_init(&elementReader, (struct ndn_ElementListener *)&ndn); |
| |
| unsigned char buffer[8000]; |
| unsigned int nBytes = transport.receive(buffer, sizeof(buffer)); |
| ndn_BinaryXMLElementReader_onReceivedData(&elementReader, buffer, nBytes); |
| } catch (exception &e) { |
| cout << "exception: " << e.what() << endl; |
| } |
| return 0; |
| } |