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> |
Jeff Thompson | 5341219 | 2013-08-06 13:35:50 -0700 | [diff] [blame] | 9 | #include <ndn-cpp/interest.hpp> |
Jeff Thompson | 56ec9e2 | 2013-08-02 11:34:07 -0700 | [diff] [blame] | 10 | #include <ndn-cpp/data.hpp> |
Jeff Thompson | b9e3c8e | 2013-08-02 11:42:51 -0700 | [diff] [blame] | 11 | #include <ndn-cpp/face.hpp> |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 12 | |
| 13 | using namespace std; |
| 14 | using namespace ndn; |
Jeff Thompson | 1bbc4e7 | 2013-07-16 16:30:55 -0700 | [diff] [blame] | 15 | using namespace ptr_lib; |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 16 | |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 17 | class Counter |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 18 | { |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 19 | public: |
| 20 | Counter() { |
| 21 | callbackCount_ = 0; |
| 22 | } |
| 23 | |
| 24 | void onData(const ptr_lib::shared_ptr<const Interest> &interest, const ptr_lib::shared_ptr<Data> &data) |
| 25 | { |
| 26 | ++callbackCount_; |
| 27 | cout << "Got data packet with name " << data->getName().to_uri() << endl; |
| 28 | for (unsigned int i = 0; i < data->getContent().size(); ++i) |
| 29 | cout << data->getContent()[i]; |
| 30 | cout << endl; |
| 31 | } |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 32 | |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 33 | void onTimeout(const ptr_lib::shared_ptr<const Interest> &interest) |
| 34 | { |
| 35 | ++callbackCount_; |
| 36 | cout << "Time out for interest " << interest->getName().toUri() << endl; |
| 37 | } |
| 38 | |
| 39 | int callbackCount_; |
| 40 | }; |
Jeff Thompson | b982b6d | 2013-07-15 18:15:45 -0700 | [diff] [blame] | 41 | |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 42 | int main(int argc, char** argv) |
| 43 | { |
| 44 | try { |
Jeff Thompson | dc461ab | 2013-08-19 18:15:59 -0700 | [diff] [blame] | 45 | Face face("E.hub.ndn.ucla.edu"); |
Jeff Thompson | 3a21706 | 2013-07-14 23:37:42 -0700 | [diff] [blame] | 46 | |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 47 | // Counter holds data used by the callbacks. |
| 48 | Counter counter; |
| 49 | |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 50 | Name name1("/ndn/ucla.edu/apps/ndn-js-test/hello.txt/level2/%FD%05%0B%16%7D%95%0E"); |
| 51 | cout << "Express name " << name1.toUri() << endl; |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 52 | // Use bind to pass the counter object to the callbacks. |
| 53 | face.expressInterest(name1, bind(&Counter::onData, &counter, _1, _2), bind(&Counter::onTimeout, &counter, _1)); |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 54 | |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 55 | Name name2("/ndn/ucla.edu/apps/lwndn-test/howdy.txt/%FD%05%05%E8%0C%CE%1D"); |
| 56 | cout << "Express name " << name2.toUri() << endl; |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 57 | face.expressInterest(name2, bind(&Counter::onData, &counter, _1, _2), bind(&Counter::onTimeout, &counter, _1)); |
Jeff Thompson | 7aec025 | 2013-08-22 17:29:57 -0700 | [diff] [blame] | 58 | |
| 59 | Name name3("/test/timeout"); |
| 60 | cout << "Express name " << name3.toUri() << endl; |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 61 | face.expressInterest(name3, bind(&Counter::onData, &counter, _1, _2), bind(&Counter::onTimeout, &counter, _1)); |
Jeff Thompson | 557b81e | 2013-08-21 15:13:51 -0700 | [diff] [blame] | 62 | |
Jeff Thompson | 432c8be | 2013-08-09 16:16:08 -0700 | [diff] [blame] | 63 | // The main event loop. |
Jeff Thompson | 0960b65 | 2013-08-22 19:10:18 -0700 | [diff] [blame^] | 64 | while (counter.callbackCount_ < 3) { |
Jeff Thompson | c7e0744 | 2013-08-19 15:25:43 -0700 | [diff] [blame] | 65 | face.processEvents(); |
| 66 | // We need to sleep for a few milliseconds so we don't use 100% of the CPU. |
| 67 | usleep(10000); |
| 68 | } |
Jeff Thompson | 1bbc4e7 | 2013-07-16 16:30:55 -0700 | [diff] [blame] | 69 | } catch (std::exception &e) { |
Jeff Thompson | c98be1a | 2013-07-14 22:44:43 -0700 | [diff] [blame] | 70 | cout << "exception: " << e.what() << endl; |
| 71 | } |
| 72 | return 0; |
| 73 | } |