blob: e202a8359577d1978e18510c37df2417b7cfeada [file] [log] [blame]
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Ashlesh Gawanded83af522023-07-14 14:37:18 -05003 * Copyright (c) 2014-2024, The University of Memphis
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -05004 *
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 Gawande0cf4b602019-01-18 15:58:17 -06009 * of the GNU Lesser General Public License as published by the Free Software Foundation,
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050010 * 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 Gawande0cf4b602019-01-18 15:58:17 -060014 * PURPOSE. See the GNU Lesser General Public License for more details.
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050015 *
Ashlesh Gawande0cf4b602019-01-18 15:58:17 -060016 * You should have received a copy of the GNU Lesser General Public License along with
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050017 * PSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Ashlesh Gawanded83af522023-07-14 14:37:18 -050018 */
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050019
20#include <PSync/full-producer.hpp>
21
Davide Pesaventod1437842019-03-19 14:05:21 -040022#include <ndn-cxx/face.hpp>
Davide Pesaventoc45a4ea2022-09-19 02:10:53 -040023#include <ndn-cxx/security/key-chain.hpp>
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050024#include <ndn-cxx/util/logger.hpp>
25#include <ndn-cxx/util/random.hpp>
Davide Pesaventod1437842019-03-19 14:05:21 -040026#include <ndn-cxx/util/scheduler.hpp>
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050027
28#include <iostream>
29
30NDN_LOG_INIT(examples.FullSyncApp);
31
32using namespace ndn::time_literals;
33
34class Producer
35{
36public:
37 /**
Junxiao Shi69bcaef2023-12-27 02:29:59 +000038 * @brief Initialize producer and schedule updates.
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050039 *
Ashlesh Gawanded83af522023-07-14 14:37:18 -050040 * Use default IBF size of 6 as we're expecting 6 updates to IBF in a sync cycle.
Junxiao Shi69bcaef2023-12-27 02:29:59 +000041 * Set syncInterestLifetime and syncDataFreshness to 1.6 seconds.
42 * userPrefix is the prefix string of user node prefixes.
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050043 */
44 Producer(const ndn::Name& syncPrefix, const std::string& userPrefix,
45 int numDataStreams, int maxNumPublish)
Junxiao Shi69bcaef2023-12-27 02:29:59 +000046 : m_producer(m_face, m_keyChain, syncPrefix, [this] {
47 psync::FullProducer::Options opts;
48 opts.onUpdate = std::bind(&Producer::processSyncUpdate, this, _1);
Junxiao Shi69bcaef2023-12-27 02:29:59 +000049 opts.syncInterestLifetime = 1600_ms;
50 opts.syncDataFreshness = 1600_ms;
51 return opts;
52 } ())
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050053 , m_maxNumPublish(maxNumPublish)
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050054 {
Junxiao Shi69bcaef2023-12-27 02:29:59 +000055 // Add user prefixes and schedule updates for them in specified interval.
Davide Pesaventoc45a4ea2022-09-19 02:10:53 -040056 for (int i = 0; i < numDataStreams; i++) {
Davide Pesaventoc407dee2022-07-21 23:56:05 -040057 ndn::Name prefix(userPrefix + "-" + std::to_string(i));
Davide Pesavento03426ef2022-09-23 19:49:10 -040058 m_producer.addUserNode(prefix);
59 m_scheduler.schedule(ndn::time::milliseconds(m_uniformRand(m_rng)),
Davide Pesaventod1437842019-03-19 14:05:21 -040060 [this, prefix] { doUpdate(prefix); });
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050061 }
62 }
63
64 void
65 run()
66 {
67 m_face.processEvents();
68 }
69
70private:
71 void
72 doUpdate(const ndn::Name& prefix)
73 {
Davide Pesavento03426ef2022-09-23 19:49:10 -040074 m_producer.publishName(prefix);
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050075
Davide Pesavento03426ef2022-09-23 19:49:10 -040076 uint64_t seqNo = m_producer.getSeqNo(prefix).value();
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050077 NDN_LOG_INFO("Publish: " << prefix << "/" << seqNo);
78
79 if (seqNo < m_maxNumPublish) {
Davide Pesavento03426ef2022-09-23 19:49:10 -040080 m_scheduler.schedule(ndn::time::milliseconds(m_uniformRand(m_rng)),
Davide Pesaventod1437842019-03-19 14:05:21 -040081 [this, prefix] { doUpdate(prefix); });
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050082 }
83 }
84
85 void
86 processSyncUpdate(const std::vector<psync::MissingDataInfo>& updates)
87 {
88 for (const auto& update : updates) {
89 for (uint64_t i = update.lowSeq; i <= update.highSeq; i++) {
90 NDN_LOG_INFO("Update " << update.prefix << "/" << i);
91 }
92 }
93 }
94
95private:
96 ndn::Face m_face;
Davide Pesaventoc45a4ea2022-09-19 02:10:53 -040097 ndn::KeyChain m_keyChain;
Davide Pesavento60e50432023-11-11 18:35:05 -050098 ndn::Scheduler m_scheduler{m_face.getIoContext()};
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -050099
Davide Pesavento03426ef2022-09-23 19:49:10 -0400100 psync::FullProducer m_producer;
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -0500101 uint64_t m_maxNumPublish;
102
Davide Pesavento03426ef2022-09-23 19:49:10 -0400103 ndn::random::RandomNumberEngine& m_rng{ndn::random::getRandomNumberEngine()};
104 std::uniform_int_distribution<> m_uniformRand{0, 60000};
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -0500105};
106
107int
108main(int argc, char* argv[])
109{
110 if (argc != 5) {
Davide Pesavento03426ef2022-09-23 19:49:10 -0400111 std::cerr << "Usage: " << argv[0] << " <sync-prefix> <user-prefix> "
112 << "<number-of-user-prefixes> <max-number-of-updates-per-user-prefix>\n";
Ashlesh Gawande4c0a7472018-08-08 12:20:33 -0500113 return 1;
114 }
115
116 try {
117 Producer producer(argv[1], argv[2], std::stoi(argv[3]), std::stoi(argv[4]));
118 producer.run();
119 }
120 catch (const std::exception& e) {
121 NDN_LOG_ERROR(e.what());
122 }
123}