Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | cdcde90 | 2017-08-23 15:40:22 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 2e481fc | 2021-07-02 18:20:03 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2021 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
Davide Pesavento | 1944281 | 2018-11-23 14:00:04 -0500 | [diff] [blame] | 22 | #include <ndn-cxx/face.hpp> |
| 23 | #include <ndn-cxx/util/scheduler.hpp> |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | 4d0d096 | 2017-12-19 22:23:14 -0500 | [diff] [blame] | 25 | #include <boost/asio/io_service.hpp> |
Davide Pesavento | cdcde90 | 2017-08-23 15:40:22 -0400 | [diff] [blame] | 26 | #include <iostream> |
| 27 | |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 28 | // Enclosing code in ndn simplifies coding (can also use `using namespace ndn`) |
| 29 | namespace ndn { |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 30 | // Additional nested namespaces should be used to prevent/limit name conflicts |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 31 | namespace examples { |
| 32 | |
Davide Pesavento | 4d0d096 | 2017-12-19 22:23:14 -0500 | [diff] [blame] | 33 | class ConsumerWithTimer |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 34 | { |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 35 | public: |
| 36 | ConsumerWithTimer() |
| 37 | : m_face(m_ioService) // Create face with io_service object |
| 38 | , m_scheduler(m_ioService) |
| 39 | { |
| 40 | } |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 41 | |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 42 | void |
| 43 | run() |
| 44 | { |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 45 | Name interestName("/example/testApp/randomData"); |
| 46 | interestName.appendVersion(); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 47 | |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 48 | Interest interest(interestName); |
| 49 | interest.setCanBePrefix(false); |
| 50 | interest.setMustBeFresh(true); |
| 51 | interest.setInterestLifetime(2_s); |
| 52 | |
| 53 | std::cout << "Sending Interest " << interest << std::endl; |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 54 | m_face.expressInterest(interest, |
Davide Pesavento | 2e481fc | 2021-07-02 18:20:03 -0400 | [diff] [blame] | 55 | std::bind(&ConsumerWithTimer::onData, this, _1, _2), |
| 56 | std::bind(&ConsumerWithTimer::onNack, this, _1, _2), |
| 57 | std::bind(&ConsumerWithTimer::onTimeout, this, _1)); |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 58 | |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 59 | // Schedule a new event |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 60 | m_scheduler.schedule(3_s, [this] { delayedInterest(); }); |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 61 | |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 62 | // m_ioService.run() will block until all events finished or m_ioService.stop() is called |
| 63 | m_ioService.run(); |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 64 | |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 65 | // Alternatively, m_face.processEvents() can also be called. |
| 66 | // processEvents will block until the requested data received or timeout occurs. |
| 67 | // m_face.processEvents(); |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 68 | } |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 69 | |
| 70 | private: |
| 71 | void |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 72 | onData(const Interest&, const Data& data) const |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 73 | { |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 74 | std::cout << "Received Data " << data << std::endl; |
Alexander Afanasyev | f646889 | 2014-01-29 01:04:14 -0800 | [diff] [blame] | 75 | } |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 76 | |
| 77 | void |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 78 | onNack(const Interest& interest, const lp::Nack& nack) const |
Weiwei Liu | ab9aad0 | 2016-10-09 13:56:04 -0700 | [diff] [blame] | 79 | { |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 80 | std::cout << "Received Nack with reason " << nack.getReason() |
| 81 | << " for " << interest << std::endl; |
Weiwei Liu | ab9aad0 | 2016-10-09 13:56:04 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | void |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 85 | onTimeout(const Interest& interest) const |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 86 | { |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 87 | std::cout << "Timeout for " << interest << std::endl; |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | void |
| 91 | delayedInterest() |
| 92 | { |
| 93 | std::cout << "One more Interest, delayed by the scheduler" << std::endl; |
| 94 | |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 95 | Name interestName("/example/testApp/randomData"); |
| 96 | interestName.appendVersion(); |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 97 | |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 98 | Interest interest(interestName); |
| 99 | interest.setCanBePrefix(false); |
| 100 | interest.setMustBeFresh(true); |
| 101 | interest.setInterestLifetime(2_s); |
| 102 | |
| 103 | std::cout << "Sending Interest " << interest << std::endl; |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 104 | m_face.expressInterest(interest, |
Davide Pesavento | 2e481fc | 2021-07-02 18:20:03 -0400 | [diff] [blame] | 105 | std::bind(&ConsumerWithTimer::onData, this, _1, _2), |
| 106 | std::bind(&ConsumerWithTimer::onNack, this, _1, _2), |
| 107 | std::bind(&ConsumerWithTimer::onTimeout, this, _1)); |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | private: |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 111 | // Explicitly create io_service object, which will be shared between Face and Scheduler |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 112 | boost::asio::io_service m_ioService; |
| 113 | Face m_face; |
| 114 | Scheduler m_scheduler; |
| 115 | }; |
| 116 | |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 117 | } // namespace examples |
| 118 | } // namespace ndn |
| 119 | |
| 120 | int |
| 121 | main(int argc, char** argv) |
| 122 | { |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 123 | try { |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 124 | ndn::examples::ConsumerWithTimer consumer; |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 125 | consumer.run(); |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 126 | return 0; |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 127 | } |
| 128 | catch (const std::exception& e) { |
| 129 | std::cerr << "ERROR: " << e.what() << std::endl; |
Zhiyi Zhang | 8b0344d | 2019-06-22 16:53:58 -0700 | [diff] [blame] | 130 | return 1; |
Steve DiBenedetto | 9fcc24f | 2015-01-05 12:16:16 -0700 | [diff] [blame] | 131 | } |
Alexander Afanasyev | 151a855 | 2014-04-11 00:54:43 -0700 | [diff] [blame] | 132 | } |