blob: 901c70eacc4cde9b8dfb0c8b3c09a36f97b4d1f7 [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 Thompson04aa7112013-08-22 19:16:25 -070016using namespace func_lib;
17#if HAVE_STD_FUNCTION
18// In the std library, the placeholders are in a different namespace than boost.
19using namespace func_lib::placeholders;
20#endif
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070021
Jeff Thompson0960b652013-08-22 19:10:18 -070022class Counter
Jeff Thompson7aec0252013-08-22 17:29:57 -070023{
Jeff Thompson0960b652013-08-22 19:10:18 -070024public:
25 Counter() {
26 callbackCount_ = 0;
27 }
28
29 void onData(const ptr_lib::shared_ptr<const Interest> &interest, const ptr_lib::shared_ptr<Data> &data)
30 {
31 ++callbackCount_;
32 cout << "Got data packet with name " << data->getName().to_uri() << endl;
33 for (unsigned int i = 0; i < data->getContent().size(); ++i)
34 cout << data->getContent()[i];
35 cout << endl;
36 }
Jeff Thompson7aec0252013-08-22 17:29:57 -070037
Jeff Thompson0960b652013-08-22 19:10:18 -070038 void onTimeout(const ptr_lib::shared_ptr<const Interest> &interest)
39 {
40 ++callbackCount_;
41 cout << "Time out for interest " << interest->getName().toUri() << endl;
42 }
43
44 int callbackCount_;
45};
Jeff Thompsonb982b6d2013-07-15 18:15:45 -070046
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070047int main(int argc, char** argv)
48{
49 try {
Jeff Thompsondc461ab2013-08-19 18:15:59 -070050 Face face("E.hub.ndn.ucla.edu");
Jeff Thompson3a217062013-07-14 23:37:42 -070051
Jeff Thompson0960b652013-08-22 19:10:18 -070052 // Counter holds data used by the callbacks.
53 Counter counter;
54
Jeff Thompson557b81e2013-08-21 15:13:51 -070055 Name name1("/ndn/ucla.edu/apps/ndn-js-test/hello.txt/level2/%FD%05%0B%16%7D%95%0E");
56 cout << "Express name " << name1.toUri() << endl;
Jeff Thompson0960b652013-08-22 19:10:18 -070057 // Use bind to pass the counter object to the callbacks.
58 face.expressInterest(name1, bind(&Counter::onData, &counter, _1, _2), bind(&Counter::onTimeout, &counter, _1));
Jeff Thompson7aec0252013-08-22 17:29:57 -070059
Jeff Thompson557b81e2013-08-21 15:13:51 -070060 Name name2("/ndn/ucla.edu/apps/lwndn-test/howdy.txt/%FD%05%05%E8%0C%CE%1D");
61 cout << "Express name " << name2.toUri() << endl;
Jeff Thompson0960b652013-08-22 19:10:18 -070062 face.expressInterest(name2, bind(&Counter::onData, &counter, _1, _2), bind(&Counter::onTimeout, &counter, _1));
Jeff Thompson7aec0252013-08-22 17:29:57 -070063
64 Name name3("/test/timeout");
65 cout << "Express name " << name3.toUri() << endl;
Jeff Thompson0960b652013-08-22 19:10:18 -070066 face.expressInterest(name3, bind(&Counter::onData, &counter, _1, _2), bind(&Counter::onTimeout, &counter, _1));
Jeff Thompson557b81e2013-08-21 15:13:51 -070067
Jeff Thompson432c8be2013-08-09 16:16:08 -070068 // The main event loop.
Jeff Thompson0960b652013-08-22 19:10:18 -070069 while (counter.callbackCount_ < 3) {
Jeff Thompsonc7e07442013-08-19 15:25:43 -070070 face.processEvents();
71 // We need to sleep for a few milliseconds so we don't use 100% of the CPU.
72 usleep(10000);
73 }
Jeff Thompson1bbc4e72013-07-16 16:30:55 -070074 } catch (std::exception &e) {
Jeff Thompsonc98be1a2013-07-14 22:44:43 -070075 cout << "exception: " << e.what() << endl;
76 }
77 return 0;
78}