Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | c407dee | 2022-07-21 23:56:05 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, The University of Memphis |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 4 | * |
| 5 | * This file is part of PSync. |
| 6 | * See AUTHORS.md for complete list of PSync authors and contributors. |
| 7 | * |
| 8 | * PSync is free software: you can redistribute it and/or modify it under the terms |
Ashlesh Gawande | 0cf4b60 | 2019-01-18 15:58:17 -0600 | [diff] [blame] | 9 | * of the GNU Lesser General Public License as published by the Free Software Foundation, |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 10 | * either version 3 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * PSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
Ashlesh Gawande | 0cf4b60 | 2019-01-18 15:58:17 -0600 | [diff] [blame] | 14 | * PURPOSE. See the GNU Lesser General Public License for more details. |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 15 | * |
Ashlesh Gawande | 0cf4b60 | 2019-01-18 15:58:17 -0600 | [diff] [blame] | 16 | * You should have received a copy of the GNU Lesser General Public License along with |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 17 | * PSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | **/ |
| 19 | |
| 20 | #include <PSync/full-producer.hpp> |
| 21 | |
Davide Pesavento | d143784 | 2019-03-19 14:05:21 -0400 | [diff] [blame] | 22 | #include <ndn-cxx/face.hpp> |
Davide Pesavento | c45a4ea | 2022-09-19 02:10:53 -0400 | [diff] [blame] | 23 | #include <ndn-cxx/security/key-chain.hpp> |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 24 | #include <ndn-cxx/util/logger.hpp> |
| 25 | #include <ndn-cxx/util/random.hpp> |
Davide Pesavento | d143784 | 2019-03-19 14:05:21 -0400 | [diff] [blame] | 26 | #include <ndn-cxx/util/scheduler.hpp> |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 27 | |
| 28 | #include <iostream> |
| 29 | |
| 30 | NDN_LOG_INIT(examples.FullSyncApp); |
| 31 | |
| 32 | using namespace ndn::time_literals; |
| 33 | |
| 34 | class Producer |
| 35 | { |
| 36 | public: |
| 37 | /** |
| 38 | * @brief Initialize producer and schedule updates |
| 39 | * |
| 40 | * Set IBF size as 80 expecting 80 updates to IBF in a sync cycle |
| 41 | * Set syncInterestLifetime and syncReplyFreshness to 1.6 seconds |
| 42 | * userPrefix is the default user prefix, no updates are published on it in this example |
| 43 | */ |
| 44 | Producer(const ndn::Name& syncPrefix, const std::string& userPrefix, |
| 45 | int numDataStreams, int maxNumPublish) |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 46 | : m_producer(m_face, m_keyChain, 80, syncPrefix, userPrefix, |
| 47 | std::bind(&Producer::processSyncUpdate, this, _1), |
| 48 | 1600_ms, 1600_ms) |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 49 | , m_maxNumPublish(maxNumPublish) |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 50 | { |
| 51 | // Add user prefixes and schedule updates for them in specified interval |
Davide Pesavento | c45a4ea | 2022-09-19 02:10:53 -0400 | [diff] [blame] | 52 | for (int i = 0; i < numDataStreams; i++) { |
Davide Pesavento | c407dee | 2022-07-21 23:56:05 -0400 | [diff] [blame] | 53 | ndn::Name prefix(userPrefix + "-" + std::to_string(i)); |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 54 | m_producer.addUserNode(prefix); |
| 55 | m_scheduler.schedule(ndn::time::milliseconds(m_uniformRand(m_rng)), |
Davide Pesavento | d143784 | 2019-03-19 14:05:21 -0400 | [diff] [blame] | 56 | [this, prefix] { doUpdate(prefix); }); |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 57 | } |
| 58 | } |
| 59 | |
| 60 | void |
| 61 | run() |
| 62 | { |
| 63 | m_face.processEvents(); |
| 64 | } |
| 65 | |
| 66 | private: |
| 67 | void |
| 68 | doUpdate(const ndn::Name& prefix) |
| 69 | { |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 70 | m_producer.publishName(prefix); |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 71 | |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 72 | uint64_t seqNo = m_producer.getSeqNo(prefix).value(); |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 73 | NDN_LOG_INFO("Publish: " << prefix << "/" << seqNo); |
| 74 | |
| 75 | if (seqNo < m_maxNumPublish) { |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 76 | m_scheduler.schedule(ndn::time::milliseconds(m_uniformRand(m_rng)), |
Davide Pesavento | d143784 | 2019-03-19 14:05:21 -0400 | [diff] [blame] | 77 | [this, prefix] { doUpdate(prefix); }); |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
| 81 | void |
| 82 | processSyncUpdate(const std::vector<psync::MissingDataInfo>& updates) |
| 83 | { |
| 84 | for (const auto& update : updates) { |
| 85 | for (uint64_t i = update.lowSeq; i <= update.highSeq; i++) { |
| 86 | NDN_LOG_INFO("Update " << update.prefix << "/" << i); |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | private: |
| 92 | ndn::Face m_face; |
Davide Pesavento | c45a4ea | 2022-09-19 02:10:53 -0400 | [diff] [blame] | 93 | ndn::KeyChain m_keyChain; |
| 94 | ndn::Scheduler m_scheduler{m_face.getIoService()}; |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 95 | |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 96 | psync::FullProducer m_producer; |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 97 | uint64_t m_maxNumPublish; |
| 98 | |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 99 | ndn::random::RandomNumberEngine& m_rng{ndn::random::getRandomNumberEngine()}; |
| 100 | std::uniform_int_distribution<> m_uniformRand{0, 60000}; |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | int |
| 104 | main(int argc, char* argv[]) |
| 105 | { |
| 106 | if (argc != 5) { |
Davide Pesavento | 03426ef | 2022-09-23 19:49:10 -0400 | [diff] [blame^] | 107 | std::cerr << "Usage: " << argv[0] << " <sync-prefix> <user-prefix> " |
| 108 | << "<number-of-user-prefixes> <max-number-of-updates-per-user-prefix>\n"; |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 109 | return 1; |
| 110 | } |
| 111 | |
| 112 | try { |
| 113 | Producer producer(argv[1], argv[2], std::stoi(argv[3]), std::stoi(argv[4])); |
| 114 | producer.run(); |
| 115 | } |
| 116 | catch (const std::exception& e) { |
| 117 | NDN_LOG_ERROR(e.what()); |
| 118 | } |
| 119 | } |