blob: e965a81a54df1d49e7f9bb0c66733a2073e9ddfc [file] [log] [blame]
Davide Pesavento912d2e82019-01-10 17:04:31 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesavento84e77302023-04-17 01:10:06 -04003 * Copyright (c) 2014-2023, Arizona Board of Regents.
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -08004 *
Davide Pesaventod0b59982015-02-27 19:15:15 +01005 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080017 *
18 * Author: Jerald Paul Abraham <jeraldabraham@email.arizona.edu>
19 */
20
Davide Pesavento35185332019-01-14 04:00:15 -050021#include "util.hpp"
22
Davide Pesaventoef064892022-04-05 02:26:03 -040023#include <ndn-cxx/data.hpp>
Davide Pesavento35185332019-01-14 04:00:15 -050024#include <ndn-cxx/face.hpp>
Davide Pesaventoef064892022-04-05 02:26:03 -040025#include <ndn-cxx/interest.hpp>
Davide Pesavento35185332019-01-14 04:00:15 -050026#include <ndn-cxx/lp/tags.hpp>
Davide Pesavento35185332019-01-14 04:00:15 -050027#include <ndn-cxx/util/random.hpp>
Davide Pesaventoef064892022-04-05 02:26:03 -040028#include <ndn-cxx/util/time.hpp>
Davide Pesavento912d2e82019-01-10 17:04:31 -050029
Davide Pesavento35185332019-01-14 04:00:15 -050030#include <limits>
Davide Pesaventoef064892022-04-05 02:26:03 -040031#include <optional>
Davide Pesavento56f79d62019-01-26 17:30:32 -050032#include <sstream>
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080033#include <vector>
34
Davide Pesavento912d2e82019-01-10 17:04:31 -050035#include <boost/asio/deadline_timer.hpp>
36#include <boost/asio/io_service.hpp>
37#include <boost/asio/signal_set.hpp>
Alexander Lanee9fe1872023-07-25 20:00:23 -040038#include <boost/core/noncopyable.hpp>
jeraldabraham420dbf02014-04-25 22:58:31 -070039#include <boost/date_time/posix_time/posix_time.hpp>
Davide Pesavento912d2e82019-01-10 17:04:31 -050040#include <boost/lexical_cast.hpp>
Davide Pesavento35185332019-01-14 04:00:15 -050041#include <boost/program_options/options_description.hpp>
42#include <boost/program_options/parsers.hpp>
43#include <boost/program_options/variables_map.hpp>
jeraldabraham420dbf02014-04-25 22:58:31 -070044
Davide Pesaventoef064892022-04-05 02:26:03 -040045using namespace ndn::time_literals;
46using namespace std::string_literals;
jeraldabraham420dbf02014-04-25 22:58:31 -070047
Davide Pesaventoef064892022-04-05 02:26:03 -040048namespace ndntg {
49
50namespace time = ndn::time;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080051
jeraldabraham420dbf02014-04-25 22:58:31 -070052class NdnTrafficClient : boost::noncopyable
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080053{
54public:
jeraldabrahamcc3c6c92014-03-28 02:21:45 -070055 explicit
Alexander Lanee9fe1872023-07-25 20:00:23 -040056 NdnTrafficClient(std::string configFile)
57 : m_configurationFile(std::move(configFile))
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080058 {
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080059 }
60
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080061 void
Davide Pesavento35185332019-01-14 04:00:15 -050062 setMaximumInterests(uint64_t maxInterests)
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080063 {
Davide Pesavento35185332019-01-14 04:00:15 -050064 m_nMaximumInterests = maxInterests;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080065 }
66
67 void
Davide Pesavento35185332019-01-14 04:00:15 -050068 setInterestInterval(time::milliseconds interval)
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080069 {
Davide Pesavento35185332019-01-14 04:00:15 -050070 BOOST_ASSERT(interval > 0_ms);
71 m_interestInterval = interval;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080072 }
73
74 void
Alexander Lanee9fe1872023-07-25 20:00:23 -040075 setTimestampFormat(std::string format)
76 {
77 m_timestampFormat = std::move(format);
78 }
79
80 void
jeraldabraham420dbf02014-04-25 22:58:31 -070081 setQuietLogging()
82 {
Davide Pesavento35185332019-01-14 04:00:15 -050083 m_wantQuiet = true;
jeraldabraham420dbf02014-04-25 22:58:31 -070084 }
85
Alexander Lanee9fe1872023-07-25 20:00:23 -040086 void
87 setVerboseLogging()
88 {
89 m_wantVerbose = true;
90 }
91
Davide Pesavento306e5bc2019-01-26 16:20:34 -050092 int
Davide Pesavento35185332019-01-14 04:00:15 -050093 run()
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -080094 {
Alexander Lanee9fe1872023-07-25 20:00:23 -040095 m_logger.initialize(std::to_string(ndn::random::generateWord32()), m_timestampFormat);
Davide Pesavento306e5bc2019-01-26 16:20:34 -050096
97 if (!readConfigurationFile(m_configurationFile, m_trafficPatterns, m_logger)) {
98 return 2;
99 }
100
101 if (!checkTrafficPatternCorrectness()) {
102 m_logger.log("ERROR: Traffic configuration provided is not proper", false, true);
103 return 2;
104 }
105
Alexander Lanee9fe1872023-07-25 20:00:23 -0400106 m_logger.log("Traffic configuration file processing completed\n", true, false);
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500107 for (std::size_t i = 0; i < m_trafficPatterns.size(); i++) {
Davide Pesaventoef064892022-04-05 02:26:03 -0400108 m_logger.log("Traffic Pattern Type #" + std::to_string(i + 1), false, false);
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500109 m_trafficPatterns[i].printTrafficConfiguration(m_logger);
110 m_logger.log("", false, false);
111 }
Davide Pesaventod0b59982015-02-27 19:15:15 +0100112
Davide Pesavento35185332019-01-14 04:00:15 -0500113 if (m_nMaximumInterests == 0) {
114 logStatistics();
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500115 return 0;
Davide Pesavento35185332019-01-14 04:00:15 -0500116 }
Davide Pesaventod0b59982015-02-27 19:15:15 +0100117
Davide Pesaventoef064892022-04-05 02:26:03 -0400118 m_signalSet.async_wait([this] (auto&&...) { stop(); });
Davide Pesavento35185332019-01-14 04:00:15 -0500119
120 boost::asio::deadline_timer timer(m_ioService,
121 boost::posix_time::millisec(m_interestInterval.count()));
Davide Pesaventoef064892022-04-05 02:26:03 -0400122 timer.async_wait([this, &timer] (auto&&...) { generateTraffic(timer); });
Davide Pesavento35185332019-01-14 04:00:15 -0500123
124 try {
125 m_face.processEvents();
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500126 return m_hasError ? 1 : 0;
Davide Pesavento35185332019-01-14 04:00:15 -0500127 }
128 catch (const std::exception& e) {
129 m_logger.log("ERROR: "s + e.what(), true, true);
Davide Pesavento35185332019-01-14 04:00:15 -0500130 m_ioService.stop();
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500131 return 1;
Davide Pesavento35185332019-01-14 04:00:15 -0500132 }
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800133 }
134
Davide Pesavento35185332019-01-14 04:00:15 -0500135private:
136 class InterestTrafficConfiguration
137 {
138 public:
139 void
140 printTrafficConfiguration(Logger& logger) const
141 {
Davide Pesavento56f79d62019-01-26 17:30:32 -0500142 std::ostringstream os;
Davide Pesavento35185332019-01-14 04:00:15 -0500143
Davide Pesavento56f79d62019-01-26 17:30:32 -0500144 os << "TrafficPercentage=" << m_trafficPercentage << ", ";
145 os << "Name=" << m_name << ", ";
146 if (m_nameAppendBytes) {
147 os << "NameAppendBytes=" << *m_nameAppendBytes << ", ";
148 }
149 if (m_nameAppendSeqNum) {
150 os << "NameAppendSequenceNumber=" << *m_nameAppendSeqNum << ", ";
151 }
152 if (m_canBePrefix) {
153 os << "CanBePrefix=" << m_canBePrefix << ", ";
154 }
155 if (m_mustBeFresh) {
156 os << "MustBeFresh=" << m_mustBeFresh << ", ";
157 }
158 if (m_nonceDuplicationPercentage > 0) {
159 os << "NonceDuplicationPercentage=" << m_nonceDuplicationPercentage << ", ";
160 }
161 if (m_interestLifetime >= 0_ms) {
162 os << "InterestLifetime=" << m_interestLifetime.count() << ", ";
163 }
164 if (m_nextHopFaceId > 0) {
165 os << "NextHopFaceId=" << m_nextHopFaceId << ", ";
166 }
167 if (m_expectedContent) {
168 os << "ExpectedContent=" << *m_expectedContent << ", ";
169 }
Davide Pesavento35185332019-01-14 04:00:15 -0500170
Davide Pesavento56f79d62019-01-26 17:30:32 -0500171 auto str = os.str();
172 str = str.substr(0, str.length() - 2); // remove suffix ", "
173 logger.log(str, false, false);
Davide Pesavento35185332019-01-14 04:00:15 -0500174 }
175
176 bool
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500177 parseConfigurationLine(const std::string& line, Logger& logger, int lineNumber)
Davide Pesavento35185332019-01-14 04:00:15 -0500178 {
179 std::string parameter, value;
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500180 if (!extractParameterAndValue(line, parameter, value)) {
Davide Pesaventoef064892022-04-05 02:26:03 -0400181 logger.log("Line " + std::to_string(lineNumber) + " - Invalid syntax: " + line,
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500182 false, true);
183 return false;
184 }
185
186 if (parameter == "TrafficPercentage") {
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000187 m_trafficPercentage = std::stod(value);
188 if (!std::isfinite(m_trafficPercentage)) {
189 logger.log("Line " + std::to_string(lineNumber) +
190 " - TrafficPercentage must be a finite floating point value", false, true);
191 return false;
192 }
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500193 }
194 else if (parameter == "Name") {
195 m_name = value;
196 }
197 else if (parameter == "NameAppendBytes") {
198 m_nameAppendBytes = std::stoul(value);
199 }
200 else if (parameter == "NameAppendSequenceNumber") {
201 m_nameAppendSeqNum = std::stoull(value);
202 }
Davide Pesavento56f79d62019-01-26 17:30:32 -0500203 else if (parameter == "CanBePrefix") {
204 m_canBePrefix = parseBoolean(value);
205 }
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500206 else if (parameter == "MustBeFresh") {
207 m_mustBeFresh = parseBoolean(value);
208 }
209 else if (parameter == "NonceDuplicationPercentage") {
210 m_nonceDuplicationPercentage = std::stoul(value);
211 }
212 else if (parameter == "InterestLifetime") {
213 m_interestLifetime = time::milliseconds(std::stoul(value));
214 }
215 else if (parameter == "NextHopFaceId") {
216 m_nextHopFaceId = std::stoull(value);
217 }
218 else if (parameter == "ExpectedContent") {
219 m_expectedContent = value;
Davide Pesavento35185332019-01-14 04:00:15 -0500220 }
221 else {
Davide Pesaventoef064892022-04-05 02:26:03 -0400222 logger.log("Line " + std::to_string(lineNumber) + " - Ignoring unknown parameter: " + parameter,
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500223 false, true);
Davide Pesavento35185332019-01-14 04:00:15 -0500224 }
225 return true;
226 }
227
228 bool
229 checkTrafficDetailCorrectness() const
230 {
231 return true;
232 }
233
234 public:
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000235 double m_trafficPercentage = 0.0;
Davide Pesavento35185332019-01-14 04:00:15 -0500236 std::string m_name;
Davide Pesaventoef064892022-04-05 02:26:03 -0400237 std::optional<std::size_t> m_nameAppendBytes;
238 std::optional<uint64_t> m_nameAppendSeqNum;
Davide Pesavento56f79d62019-01-26 17:30:32 -0500239 bool m_canBePrefix = false;
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500240 bool m_mustBeFresh = false;
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000241 unsigned m_nonceDuplicationPercentage = 0;
Davide Pesavento35185332019-01-14 04:00:15 -0500242 time::milliseconds m_interestLifetime = -1_ms;
243 uint64_t m_nextHopFaceId = 0;
Davide Pesaventoef064892022-04-05 02:26:03 -0400244 std::optional<std::string> m_expectedContent;
Davide Pesavento35185332019-01-14 04:00:15 -0500245
246 uint64_t m_nInterestsSent = 0;
247 uint64_t m_nInterestsReceived = 0;
248 uint64_t m_nNacks = 0;
249 uint64_t m_nContentInconsistencies = 0;
250
251 // RTT is stored as milliseconds with fractional sub-milliseconds precision
252 double m_minimumInterestRoundTripTime = std::numeric_limits<double>::max();
253 double m_maximumInterestRoundTripTime = 0;
254 double m_totalInterestRoundTripTime = 0;
255 };
256
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800257 void
258 logStatistics()
259 {
Davide Pesavento84e77302023-04-17 01:10:06 -0400260 using std::to_string;
261
Alexander Lanee9fe1872023-07-25 20:00:23 -0400262 m_logger.log("\n\n== Traffic Report ==\n", false, true);
Davide Pesavento84e77302023-04-17 01:10:06 -0400263 m_logger.log("Total Traffic Pattern Types = " + to_string(m_trafficPatterns.size()), false, true);
264 m_logger.log("Total Interests Sent = " + to_string(m_nInterestsSent), false, true);
265 m_logger.log("Total Responses Received = " + to_string(m_nInterestsReceived), false, true);
266 m_logger.log("Total Nacks Received = " + to_string(m_nNacks), false, true);
Davide Pesaventod0b59982015-02-27 19:15:15 +0100267
Davide Pesavento35185332019-01-14 04:00:15 -0500268 double loss = 0.0;
269 if (m_nInterestsSent > 0) {
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700270 loss = (m_nInterestsSent - m_nInterestsReceived) * 100.0 / m_nInterestsSent;
Davide Pesavento35185332019-01-14 04:00:15 -0500271 }
Davide Pesavento84e77302023-04-17 01:10:06 -0400272 m_logger.log("Total Interest Loss = " + to_string(loss) + "%", false, true);
Davide Pesaventod0b59982015-02-27 19:15:15 +0100273
Davide Pesavento35185332019-01-14 04:00:15 -0500274 double average = 0.0;
275 double inconsistency = 0.0;
276 if (m_nInterestsReceived > 0) {
277 average = m_totalInterestRoundTripTime / m_nInterestsReceived;
278 inconsistency = m_nContentInconsistencies * 100.0 / m_nInterestsReceived;
279 }
Davide Pesavento84e77302023-04-17 01:10:06 -0400280 m_logger.log("Total Data Inconsistency = " + to_string(inconsistency) + "%", false, true);
281 m_logger.log("Total Round Trip Time = " + to_string(m_totalInterestRoundTripTime) + "ms", false, true);
282 m_logger.log("Average Round Trip Time = " + to_string(average) + "ms\n", false, true);
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700283
Davide Pesavento35185332019-01-14 04:00:15 -0500284 for (std::size_t patternId = 0; patternId < m_trafficPatterns.size(); patternId++) {
Davide Pesavento84e77302023-04-17 01:10:06 -0400285 const auto& pattern = m_trafficPatterns[patternId];
286
287 m_logger.log("Traffic Pattern Type #" + to_string(patternId + 1), false, true);
288 pattern.printTrafficConfiguration(m_logger);
289 m_logger.log("Total Interests Sent = " + to_string(pattern.m_nInterestsSent), false, true);
290 m_logger.log("Total Responses Received = " + to_string(pattern.m_nInterestsReceived), false, true);
291 m_logger.log("Total Nacks Received = " + to_string(pattern.m_nNacks), false, true);
292
293 loss = 0.0;
294 if (pattern.m_nInterestsSent > 0) {
295 loss = (pattern.m_nInterestsSent - pattern.m_nInterestsReceived) * 100.0 / pattern.m_nInterestsSent;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800296 }
Davide Pesavento84e77302023-04-17 01:10:06 -0400297 m_logger.log("Total Interest Loss = " + to_string(loss) + "%", false, true);
298
299 average = 0.0;
300 inconsistency = 0.0;
301 if (pattern.m_nInterestsReceived > 0) {
302 average = pattern.m_totalInterestRoundTripTime / pattern.m_nInterestsReceived;
303 inconsistency = pattern.m_nContentInconsistencies * 100.0 / pattern.m_nInterestsReceived;
Davide Pesavento35185332019-01-14 04:00:15 -0500304 }
Davide Pesavento84e77302023-04-17 01:10:06 -0400305 m_logger.log("Total Data Inconsistency = " + to_string(inconsistency) + "%", false, true);
Davide Pesavento35185332019-01-14 04:00:15 -0500306 m_logger.log("Total Round Trip Time = " +
Davide Pesavento84e77302023-04-17 01:10:06 -0400307 to_string(pattern.m_totalInterestRoundTripTime) + "ms", false, true);
308 m_logger.log("Average Round Trip Time = " + to_string(average) + "ms\n", false, true);
Davide Pesavento35185332019-01-14 04:00:15 -0500309 }
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800310 }
311
312 bool
Davide Pesavento35185332019-01-14 04:00:15 -0500313 checkTrafficPatternCorrectness() const
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800314 {
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500315 // TODO
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800316 return true;
317 }
318
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700319 uint32_t
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800320 getNewNonce()
321 {
Davide Pesavento35185332019-01-14 04:00:15 -0500322 if (m_nonces.size() >= 1000)
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700323 m_nonces.clear();
jeraldabraham473ef3d2014-03-06 12:40:35 -0700324
Davide Pesaventoef064892022-04-05 02:26:03 -0400325 auto randomNonce = ndn::random::generateWord32();
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700326 while (std::find(m_nonces.begin(), m_nonces.end(), randomNonce) != m_nonces.end())
Davide Pesaventoef064892022-04-05 02:26:03 -0400327 randomNonce = ndn::random::generateWord32();
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700328
329 m_nonces.push_back(randomNonce);
330 return randomNonce;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800331 }
332
Davide Pesavento35185332019-01-14 04:00:15 -0500333 uint32_t
334 getOldNonce()
335 {
336 if (m_nonces.empty())
337 return getNewNonce();
338
339 std::uniform_int_distribution<std::size_t> dist(0, m_nonces.size() - 1);
Davide Pesaventoef064892022-04-05 02:26:03 -0400340 return m_nonces[dist(ndn::random::getRandomNumberEngine())];
Davide Pesavento35185332019-01-14 04:00:15 -0500341 }
342
Davide Pesaventoef064892022-04-05 02:26:03 -0400343 static auto
Davide Pesavento912d2e82019-01-10 17:04:31 -0500344 generateRandomNameComponent(std::size_t length)
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800345 {
Davide Pesavento35185332019-01-14 04:00:15 -0500346 // per ISO C++ std, cannot instantiate uniform_int_distribution with uint8_t
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000347 static std::uniform_int_distribution<unsigned> dist(std::numeric_limits<uint8_t>::min(),
348 std::numeric_limits<uint8_t>::max());
Davide Pesavento35185332019-01-14 04:00:15 -0500349
Davide Pesaventoef064892022-04-05 02:26:03 -0400350 ndn::Buffer buf(length);
Davide Pesavento912d2e82019-01-10 17:04:31 -0500351 for (std::size_t i = 0; i < length; i++) {
Davide Pesaventoef064892022-04-05 02:26:03 -0400352 buf[i] = static_cast<uint8_t>(dist(ndn::random::getRandomNumberEngine()));
Eric Newberry3b284192015-07-06 21:44:46 -0700353 }
Davide Pesaventoef064892022-04-05 02:26:03 -0400354 return ndn::name::Component(buf);
Davide Pesavento35185332019-01-14 04:00:15 -0500355 }
356
Davide Pesaventoef064892022-04-05 02:26:03 -0400357 auto
Davide Pesavento35185332019-01-14 04:00:15 -0500358 prepareInterest(std::size_t patternId)
359 {
Davide Pesaventoef064892022-04-05 02:26:03 -0400360 ndn::Interest interest;
Davide Pesavento35185332019-01-14 04:00:15 -0500361 auto& pattern = m_trafficPatterns[patternId];
362
Davide Pesaventoef064892022-04-05 02:26:03 -0400363 ndn::Name name(pattern.m_name);
Davide Pesavento35185332019-01-14 04:00:15 -0500364 if (pattern.m_nameAppendBytes > 0) {
365 name.append(generateRandomNameComponent(*pattern.m_nameAppendBytes));
366 }
367 if (pattern.m_nameAppendSeqNum) {
368 auto seqNum = *pattern.m_nameAppendSeqNum;
369 name.appendSequenceNumber(seqNum);
370 pattern.m_nameAppendSeqNum = seqNum + 1;
371 }
372 interest.setName(name);
373
Davide Pesavento56f79d62019-01-26 17:30:32 -0500374 interest.setCanBePrefix(pattern.m_canBePrefix);
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500375 interest.setMustBeFresh(pattern.m_mustBeFresh);
Davide Pesavento35185332019-01-14 04:00:15 -0500376
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000377 static std::uniform_int_distribution<unsigned> duplicateNonceDist(1, 100);
Davide Pesaventoef064892022-04-05 02:26:03 -0400378 if (duplicateNonceDist(ndn::random::getRandomNumberEngine()) <= pattern.m_nonceDuplicationPercentage)
Davide Pesavento35185332019-01-14 04:00:15 -0500379 interest.setNonce(getOldNonce());
380 else
381 interest.setNonce(getNewNonce());
382
383 if (pattern.m_interestLifetime >= 0_ms)
384 interest.setInterestLifetime(pattern.m_interestLifetime);
385
386 if (pattern.m_nextHopFaceId > 0)
Davide Pesaventoef064892022-04-05 02:26:03 -0400387 interest.setTag(std::make_shared<ndn::lp::NextHopFaceIdTag>(pattern.m_nextHopFaceId));
Davide Pesavento35185332019-01-14 04:00:15 -0500388
389 return interest;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800390 }
391
392 void
Davide Pesavento84e77302023-04-17 01:10:06 -0400393 onData(const ndn::Interest&, const ndn::Data& data, int globalRef, int localRef,
394 std::size_t patternId, const time::steady_clock::time_point& sentTime)
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800395 {
Alexander Lanee9fe1872023-07-25 20:00:23 -0400396 auto now = time::steady_clock::now();
Davide Pesaventoef064892022-04-05 02:26:03 -0400397 auto logLine = "Data Received - PatternType=" + std::to_string(patternId + 1) +
398 ", GlobalID=" + std::to_string(globalRef) +
399 ", LocalID=" + std::to_string(localRef) +
Davide Pesavento35185332019-01-14 04:00:15 -0500400 ", Name=" + data.getName().toUri();
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700401
402 m_nInterestsReceived++;
403 m_trafficPatterns[patternId].m_nInterestsReceived++;
Davide Pesavento35185332019-01-14 04:00:15 -0500404
405 if (m_trafficPatterns[patternId].m_expectedContent) {
Davide Pesavento92669062022-03-10 19:09:44 -0500406 std::string receivedContent = readString(data.getContent());
Davide Pesavento35185332019-01-14 04:00:15 -0500407 if (receivedContent != *m_trafficPatterns[patternId].m_expectedContent) {
Davide Pesavento912d2e82019-01-10 17:04:31 -0500408 m_nContentInconsistencies++;
409 m_trafficPatterns[patternId].m_nContentInconsistencies++;
410 logLine += ", IsConsistent=No";
jeraldabraham473ef3d2014-03-06 12:40:35 -0700411 }
Davide Pesavento35185332019-01-14 04:00:15 -0500412 else {
Davide Pesavento912d2e82019-01-10 17:04:31 -0500413 logLine += ", IsConsistent=Yes";
Davide Pesavento35185332019-01-14 04:00:15 -0500414 }
Davide Pesavento912d2e82019-01-10 17:04:31 -0500415 }
Davide Pesavento35185332019-01-14 04:00:15 -0500416 else {
jeraldabraham473ef3d2014-03-06 12:40:35 -0700417 logLine += ", IsConsistent=NotChecked";
Davide Pesavento35185332019-01-14 04:00:15 -0500418 }
419 if (!m_wantQuiet) {
jeraldabraham420dbf02014-04-25 22:58:31 -0700420 m_logger.log(logLine, true, false);
Davide Pesavento35185332019-01-14 04:00:15 -0500421 }
422
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000423 double rtt = time::duration_cast<time::nanoseconds>(now - sentTime).count() / 1e6;
Alexander Lanee9fe1872023-07-25 20:00:23 -0400424 if (m_wantVerbose) {
425 auto rttLine = "RTT - Name=" + data.getName().toUri() +
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000426 ", RTT=" + std::to_string(rtt) + "ms";
Alexander Lanee9fe1872023-07-25 20:00:23 -0400427 m_logger.log(rttLine, true, false);
428 }
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000429 if (m_minimumInterestRoundTripTime > rtt)
430 m_minimumInterestRoundTripTime = rtt;
431 if (m_maximumInterestRoundTripTime < rtt)
432 m_maximumInterestRoundTripTime = rtt;
433 if (m_trafficPatterns[patternId].m_minimumInterestRoundTripTime > rtt)
434 m_trafficPatterns[patternId].m_minimumInterestRoundTripTime = rtt;
435 if (m_trafficPatterns[patternId].m_maximumInterestRoundTripTime < rtt)
436 m_trafficPatterns[patternId].m_maximumInterestRoundTripTime = rtt;
437 m_totalInterestRoundTripTime += rtt;
438 m_trafficPatterns[patternId].m_totalInterestRoundTripTime += rtt;
Davide Pesavento35185332019-01-14 04:00:15 -0500439
440 if (m_nMaximumInterests == globalRef) {
441 stop();
Davide Pesavento912d2e82019-01-10 17:04:31 -0500442 }
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700443 }
444
445 void
Davide Pesaventoef064892022-04-05 02:26:03 -0400446 onNack(const ndn::Interest& interest, const ndn::lp::Nack& nack,
Davide Pesavento35185332019-01-14 04:00:15 -0500447 int globalRef, int localRef, std::size_t patternId)
Eric Newberry976c2042016-06-19 23:37:35 -0700448 {
Davide Pesaventoef064892022-04-05 02:26:03 -0400449 auto logLine = "Interest Nack'd - PatternType=" + std::to_string(patternId + 1) +
450 ", GlobalID=" + std::to_string(globalRef) +
451 ", LocalID=" + std::to_string(localRef) +
Davide Pesavento35185332019-01-14 04:00:15 -0500452 ", Name=" + interest.getName().toUri() +
453 ", NackReason=" + boost::lexical_cast<std::string>(nack.getReason());
Eric Newberry976c2042016-06-19 23:37:35 -0700454 m_logger.log(logLine, true, false);
455
456 m_nNacks++;
457 m_trafficPatterns[patternId].m_nNacks++;
458
Davide Pesavento35185332019-01-14 04:00:15 -0500459 if (m_nMaximumInterests == globalRef) {
460 stop();
Eric Newberry976c2042016-06-19 23:37:35 -0700461 }
462 }
463
464 void
Davide Pesavento84e77302023-04-17 01:10:06 -0400465 onTimeout(const ndn::Interest& interest, int globalRef, int localRef, std::size_t patternId)
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700466 {
Davide Pesaventoef064892022-04-05 02:26:03 -0400467 auto logLine = "Interest Timed Out - PatternType=" + std::to_string(patternId + 1) +
468 ", GlobalID=" + std::to_string(globalRef) +
469 ", LocalID=" + std::to_string(localRef) +
Davide Pesavento35185332019-01-14 04:00:15 -0500470 ", Name=" + interest.getName().toUri();
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700471 m_logger.log(logLine, true, false);
Davide Pesavento35185332019-01-14 04:00:15 -0500472
473 if (m_nMaximumInterests == globalRef) {
474 stop();
475 }
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700476 }
477
478 void
Davide Pesavento35185332019-01-14 04:00:15 -0500479 generateTraffic(boost::asio::deadline_timer& timer)
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700480 {
Davide Pesavento35185332019-01-14 04:00:15 -0500481 if (m_nMaximumInterests && m_nInterestsSent >= *m_nMaximumInterests) {
Davide Pesavento912d2e82019-01-10 17:04:31 -0500482 return;
483 }
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700484
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000485 static std::uniform_real_distribution<> trafficDist(std::numeric_limits<double>::min(), 100.0);
486 double trafficKey = trafficDist(ndn::random::getRandomNumberEngine());
Davide Pesaventod0b59982015-02-27 19:15:15 +0100487
Zeke Lewisdfbf8a12023-03-19 23:40:06 +0000488 double cumulativePercentage = 0.0;
Davide Pesavento35185332019-01-14 04:00:15 -0500489 std::size_t patternId = 0;
490 for (; patternId < m_trafficPatterns.size(); patternId++) {
Davide Pesavento84e77302023-04-17 01:10:06 -0400491 auto& pattern = m_trafficPatterns[patternId];
492 cumulativePercentage += pattern.m_trafficPercentage;
Davide Pesavento35185332019-01-14 04:00:15 -0500493 if (trafficKey <= cumulativePercentage) {
Davide Pesavento84e77302023-04-17 01:10:06 -0400494 m_nInterestsSent++;
495 pattern.m_nInterestsSent++;
Davide Pesavento35185332019-01-14 04:00:15 -0500496 auto interest = prepareInterest(patternId);
497 try {
Davide Pesavento84e77302023-04-17 01:10:06 -0400498 int globalRef = m_nInterestsSent;
499 int localRef = pattern.m_nInterestsSent;
Davide Pesavento35185332019-01-14 04:00:15 -0500500 m_face.expressInterest(interest,
Davide Pesavento84e77302023-04-17 01:10:06 -0400501 [=, now = time::steady_clock::now()] (auto&&... args) {
502 onData(std::forward<decltype(args)>(args)..., globalRef, localRef, patternId, now);
503 },
504 [=] (auto&&... args) {
505 onNack(std::forward<decltype(args)>(args)..., globalRef, localRef, patternId);
506 },
507 [=] (auto&&... args) {
508 onTimeout(std::forward<decltype(args)>(args)..., globalRef, localRef, patternId);
509 });
Davide Pesavento35185332019-01-14 04:00:15 -0500510
511 if (!m_wantQuiet) {
Davide Pesaventoef064892022-04-05 02:26:03 -0400512 auto logLine = "Sending Interest - PatternType=" + std::to_string(patternId + 1) +
513 ", GlobalID=" + std::to_string(m_nInterestsSent) +
Davide Pesavento84e77302023-04-17 01:10:06 -0400514 ", LocalID=" + std::to_string(pattern.m_nInterestsSent) +
Davide Pesavento35185332019-01-14 04:00:15 -0500515 ", Name=" + interest.getName().toUri();
516 m_logger.log(logLine, true, false);
517 }
518
Davide Pesaventoef064892022-04-05 02:26:03 -0400519 timer.expires_at(timer.expires_at() + boost::posix_time::millisec(m_interestInterval.count()));
520 timer.async_wait([this, &timer] (auto&&...) { generateTraffic(timer); });
Davide Pesavento35185332019-01-14 04:00:15 -0500521 }
522 catch (const std::exception& e) {
523 m_logger.log("ERROR: "s + e.what(), true, true);
524 }
525 break;
526 }
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800527 }
Alexander Lanee9fe1872023-07-25 20:00:23 -0400528
Davide Pesavento35185332019-01-14 04:00:15 -0500529 if (patternId == m_trafficPatterns.size()) {
Davide Pesaventoef064892022-04-05 02:26:03 -0400530 timer.expires_at(timer.expires_at() + boost::posix_time::millisec(m_interestInterval.count()));
531 timer.async_wait([this, &timer] (auto&&...) { generateTraffic(timer); });
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800532 }
533 }
534
Davide Pesavento35185332019-01-14 04:00:15 -0500535 void
536 stop()
537 {
538 if (m_nContentInconsistencies > 0 || m_nInterestsSent != m_nInterestsReceived) {
539 m_hasError = true;
540 }
541
542 logStatistics();
543 m_face.shutdown();
544 m_ioService.stop();
545 }
546
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800547private:
Alexander Lanee9fe1872023-07-25 20:00:23 -0400548 Logger m_logger{"NdnTrafficClient"};
Alexander Afanasyev976c3972014-05-26 17:03:40 +0300549 boost::asio::io_service m_ioService;
Alexander Lanee9fe1872023-07-25 20:00:23 -0400550 boost::asio::signal_set m_signalSet{m_ioService, SIGINT, SIGTERM};
551 ndn::Face m_face{m_ioService};
Davide Pesavento35185332019-01-14 04:00:15 -0500552
553 std::string m_configurationFile;
Alexander Lanee9fe1872023-07-25 20:00:23 -0400554 std::string m_timestampFormat;
Davide Pesaventoef064892022-04-05 02:26:03 -0400555 std::optional<uint64_t> m_nMaximumInterests;
Davide Pesavento35185332019-01-14 04:00:15 -0500556 time::milliseconds m_interestInterval = 1_s;
Davide Pesavento35185332019-01-14 04:00:15 -0500557
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700558 std::vector<InterestTrafficConfiguration> m_trafficPatterns;
559 std::vector<uint32_t> m_nonces;
Davide Pesavento35185332019-01-14 04:00:15 -0500560 uint64_t m_nInterestsSent = 0;
561 uint64_t m_nInterestsReceived = 0;
562 uint64_t m_nNacks = 0;
563 uint64_t m_nContentInconsistencies = 0;
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700564
Davide Pesavento912d2e82019-01-10 17:04:31 -0500565 // RTT is stored as milliseconds with fractional sub-milliseconds precision
Davide Pesavento35185332019-01-14 04:00:15 -0500566 double m_minimumInterestRoundTripTime = std::numeric_limits<double>::max();
567 double m_maximumInterestRoundTripTime = 0;
568 double m_totalInterestRoundTripTime = 0;
569
Davide Pesaventoef064892022-04-05 02:26:03 -0400570 bool m_wantQuiet = false;
Alexander Lanee9fe1872023-07-25 20:00:23 -0400571 bool m_wantVerbose = false;
Davide Pesavento35185332019-01-14 04:00:15 -0500572 bool m_hasError = false;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800573};
574
Davide Pesaventoef064892022-04-05 02:26:03 -0400575} // namespace ndntg
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800576
Davide Pesavento84e77302023-04-17 01:10:06 -0400577namespace po = boost::program_options;
578
Davide Pesavento35185332019-01-14 04:00:15 -0500579static void
Davide Pesaventoef064892022-04-05 02:26:03 -0400580usage(std::ostream& os, std::string_view programName, const po::options_description& desc)
Davide Pesavento35185332019-01-14 04:00:15 -0500581{
582 os << "Usage: " << programName << " [options] <Traffic_Configuration_File>\n"
583 << "\n"
584 << "Generate Interest traffic as per provided Traffic_Configuration_File.\n"
585 << "Interests are continuously generated unless a total number is specified.\n"
586 << "Set the environment variable NDN_TRAFFIC_LOGFOLDER to redirect output to a log file.\n"
587 << "\n"
588 << desc;
589}
590
jeraldabrahamcc3c6c92014-03-28 02:21:45 -0700591int
592main(int argc, char* argv[])
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800593{
Davide Pesavento35185332019-01-14 04:00:15 -0500594 std::string configFile;
Alexander Lanee9fe1872023-07-25 20:00:23 -0400595 std::string timestampFormat;
Davide Pesaventod0b59982015-02-27 19:15:15 +0100596
Davide Pesavento35185332019-01-14 04:00:15 -0500597 po::options_description visibleOptions("Options");
598 visibleOptions.add_options()
599 ("help,h", "print this help message and exit")
Alexander Lanee9fe1872023-07-25 20:00:23 -0400600 ("count,c", po::value<int64_t>(), "total number of Interests to be generated")
Davide Pesavento35185332019-01-14 04:00:15 -0500601 ("interval,i", po::value<ndn::time::milliseconds::rep>()->default_value(1000),
602 "Interest generation interval in milliseconds")
Alexander Lanee9fe1872023-07-25 20:00:23 -0400603 ("timestamp-format,t", po::value<std::string>(&timestampFormat), "format string for timestamp output")
604 ("quiet,q", po::bool_switch(), "turn off logging of Interest generation and Data reception")
605 ("verbose,v", po::bool_switch(), "log additional per-packet information")
Davide Pesavento35185332019-01-14 04:00:15 -0500606 ;
607
608 po::options_description hiddenOptions;
609 hiddenOptions.add_options()
610 ("config-file", po::value<std::string>(&configFile))
611 ;
612
613 po::positional_options_description posOptions;
614 posOptions.add("config-file", -1);
615
616 po::options_description allOptions;
617 allOptions.add(visibleOptions).add(hiddenOptions);
618
619 po::variables_map vm;
620 try {
621 po::store(po::command_line_parser(argc, argv).options(allOptions).positional(posOptions).run(), vm);
622 po::notify(vm);
623 }
624 catch (const po::error& e) {
625 std::cerr << "ERROR: " << e.what() << std::endl;
626 return 2;
627 }
628 catch (const boost::bad_any_cast& e) {
629 std::cerr << "ERROR: " << e.what() << std::endl;
630 return 2;
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800631 }
632
Davide Pesavento35185332019-01-14 04:00:15 -0500633 if (vm.count("help") > 0) {
634 usage(std::cout, argv[0], visibleOptions);
635 return 0;
636 }
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800637
Davide Pesavento35185332019-01-14 04:00:15 -0500638 if (configFile.empty()) {
639 usage(std::cerr, argv[0], visibleOptions);
640 return 2;
641 }
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800642
Alexander Lanee9fe1872023-07-25 20:00:23 -0400643 ndntg::NdnTrafficClient client(std::move(configFile));
Davide Pesavento35185332019-01-14 04:00:15 -0500644
645 if (vm.count("count") > 0) {
Alexander Lanee9fe1872023-07-25 20:00:23 -0400646 auto count = vm["count"].as<int64_t>();
Davide Pesavento35185332019-01-14 04:00:15 -0500647 if (count < 0) {
Alexander Lanee9fe1872023-07-25 20:00:23 -0400648 std::cerr << "ERROR: the argument for option '--count' cannot be negative\n";
Davide Pesavento35185332019-01-14 04:00:15 -0500649 return 2;
650 }
651 client.setMaximumInterests(static_cast<uint64_t>(count));
652 }
653
654 if (vm.count("interval") > 0) {
655 ndn::time::milliseconds interval(vm["interval"].as<ndn::time::milliseconds::rep>());
Davide Pesaventoef064892022-04-05 02:26:03 -0400656 if (interval <= 0_ms) {
Alexander Lanee9fe1872023-07-25 20:00:23 -0400657 std::cerr << "ERROR: the argument for option '--interval' must be positive\n";
Davide Pesavento35185332019-01-14 04:00:15 -0500658 return 2;
659 }
660 client.setInterestInterval(interval);
661 }
662
Alexander Lanee9fe1872023-07-25 20:00:23 -0400663 if (!timestampFormat.empty()) {
664 client.setTimestampFormat(std::move(timestampFormat));
665 }
666
Davide Pesavento35185332019-01-14 04:00:15 -0500667 if (vm["quiet"].as<bool>()) {
Alexander Lanee9fe1872023-07-25 20:00:23 -0400668 if (vm["verbose"].as<bool>()) {
669 std::cerr << "ERROR: cannot set both '--quiet' and '--verbose'\n";
670 return 2;
671 }
Davide Pesavento35185332019-01-14 04:00:15 -0500672 client.setQuietLogging();
673 }
674
Alexander Lanee9fe1872023-07-25 20:00:23 -0400675 if (vm["verbose"].as<bool>()) {
676 client.setVerboseLogging();
677 }
678
Davide Pesavento306e5bc2019-01-26 16:20:34 -0500679 return client.run();
Alexander Afanasyeva8f2a922014-02-26 14:21:56 -0800680}