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