blob: 86db7da9cbf100509c67449fdca84e736ea2e4f0 [file] [log] [blame]
Eric Newberry4164b8e2015-04-23 17:29:18 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoda85e252019-03-18 11:42:01 -04002/*
3 * Copyright (c) 2014-2019, Arizona Board of Regents.
Eric Newberry4164b8e2015-04-23 17:29:18 -07004 *
5 * This file is part of ndn-tools (Named Data Networking Essential Tools).
6 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
7 *
8 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * ndn-tools 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
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author: Jerald Paul Abraham <jeraldabraham@email.arizona.edu>
20 * @author: Eric Newberry <enewberry@email.arizona.edu>
21 */
22
23#include "core/common.hpp"
24#include "core/version.hpp"
25
26#include "ping.hpp"
27#include "statistics-collector.hpp"
28#include "tracer.hpp"
29
30namespace ndn {
31namespace ping {
32namespace client {
33
Alexander Afanasyev1e7a7b22015-08-26 15:35:26 -070034class Runner : noncopyable
35{
36public:
37 explicit
38 Runner(const Options& options)
39 : m_ping(m_face, options)
40 , m_statisticsCollector(m_ping, options)
41 , m_tracer(m_ping, options)
42 , m_signalSetInt(m_face.getIoService(), SIGINT)
43 , m_signalSetQuit(m_face.getIoService(), SIGQUIT)
44 {
45 m_signalSetInt.async_wait(bind(&Runner::afterIntSignal, this, _1));
46 m_signalSetQuit.async_wait(bind(&Runner::afterQuitSignal, this, _1));
47
48 m_ping.afterFinish.connect([this] {
49 this->cancel();
50 });
51 }
52
53 int
54 run()
55 {
56 try {
57 m_ping.start();
58 m_face.processEvents();
59 }
Davide Pesaventoc0702702017-08-24 22:04:00 -040060 catch (const std::exception& e) {
Alexander Afanasyev1e7a7b22015-08-26 15:35:26 -070061 m_tracer.onError(e.what());
62 return 2;
63 }
64
65 Statistics statistics = m_statisticsCollector.computeStatistics();
66
67 std::cout << statistics << std::endl;
68
69 if (statistics.nReceived == statistics.nSent) {
70 return 0;
71 }
72 else {
73 return 1;
74 }
75 }
76
77private:
78 void
79 cancel()
80 {
81 m_signalSetInt.cancel();
82 m_signalSetQuit.cancel();
83 m_ping.stop();
84 }
85
86 void
87 afterIntSignal(const boost::system::error_code& errorCode)
88 {
89 if (errorCode == boost::asio::error::operation_aborted) {
90 return;
91 }
92
93 cancel();
94 }
95
96 void
97 afterQuitSignal(const boost::system::error_code& errorCode)
98 {
99 if (errorCode == boost::asio::error::operation_aborted) {
100 return;
101 }
102
103 m_statisticsCollector.computeStatistics().printSummary(std::cout);
104 m_signalSetQuit.async_wait(bind(&Runner::afterQuitSignal, this, _1));
Davide Pesaventoc0702702017-08-24 22:04:00 -0400105 }
Alexander Afanasyev1e7a7b22015-08-26 15:35:26 -0700106
107private:
108 Face m_face;
109 Ping m_ping;
110 StatisticsCollector m_statisticsCollector;
111 Tracer m_tracer;
112
113 boost::asio::signal_set m_signalSetInt;
114 boost::asio::signal_set m_signalSetQuit;
115};
116
Eric Newberry4164b8e2015-04-23 17:29:18 -0700117static time::milliseconds
Eric Newberrya66c29b2015-05-07 17:35:43 -0700118getMinimumPingInterval()
119{
120 return time::milliseconds(1);
121}
122
123static time::milliseconds
124getDefaultPingInterval()
Eric Newberry4164b8e2015-04-23 17:29:18 -0700125{
126 return time::milliseconds(1000);
127}
128
129static time::milliseconds
130getDefaultPingTimeoutThreshold()
131{
132 return time::milliseconds(4000);
133}
134
135static void
136usage(const boost::program_options::options_description& options)
137{
138 std::cout << "Usage: ndnping [options] ndn:/name/prefix\n"
Davide Pesaventoda85e252019-03-18 11:42:01 -0400139 "\n"
140 "Ping a NDN name prefix using Interests with name ndn:/name/prefix/ping/number.\n"
141 "The numbers in the Interests are randomly generated unless specified.\n"
142 "\n"
143 << options;
Eric Newberry4164b8e2015-04-23 17:29:18 -0700144 exit(2);
145}
146
Davide Pesaventoda85e252019-03-18 11:42:01 -0400147static int
Eric Newberry4164b8e2015-04-23 17:29:18 -0700148main(int argc, char* argv[])
149{
150 Options options;
151 options.shouldAllowStaleData = false;
152 options.nPings = -1;
Eric Newberrya66c29b2015-05-07 17:35:43 -0700153 options.interval = time::milliseconds(getDefaultPingInterval());
Eric Newberry4164b8e2015-04-23 17:29:18 -0700154 options.timeout = time::milliseconds(getDefaultPingTimeoutThreshold());
155 options.startSeq = 0;
156 options.shouldGenerateRandomSeq = true;
157 options.shouldPrintTimestamp = false;
158
159 std::string identifier;
160
161 namespace po = boost::program_options;
162
163 po::options_description visibleOptDesc("Allowed options");
164 visibleOptDesc.add_options()
165 ("help,h", "print this message and exit")
166 ("version,V", "display version and exit")
167 ("interval,i", po::value<int>(),
Eric Newberrya66c29b2015-05-07 17:35:43 -0700168 ("set ping interval in milliseconds (default " +
169 std::to_string(getDefaultPingInterval().count()) + " ms - minimum " +
170 std::to_string(getMinimumPingInterval().count()) + " ms)").c_str())
Eric Newberry4164b8e2015-04-23 17:29:18 -0700171 ("timeout,o", po::value<int>(),
172 ("set ping timeout in milliseconds (default " +
173 std::to_string(getDefaultPingTimeoutThreshold().count()) + " ms)").c_str())
174 ("count,c", po::value<int>(&options.nPings), "set total number of pings")
175 ("start,n", po::value<uint64_t>(&options.startSeq),
176 "set the starting seq number, the number is incremented by 1 after each Interest")
177 ("identifier,p", po::value<std::string>(&identifier),
178 "add identifier to the Interest names before the numbers to avoid conflict")
179 ("cache,a", "allows routers to return stale Data from cache")
180 ("timestamp,t", "print timestamp with messages")
181 ;
182 po::options_description hiddenOptDesc("Hidden options");
183 hiddenOptDesc.add_options()
184 ("prefix", po::value<std::string>(), "prefix to send pings to")
185 ;
186
187 po::options_description optDesc("Allowed options");
188 optDesc.add(visibleOptDesc).add(hiddenOptDesc);
189
190 try {
191 po::positional_options_description optPos;
192 optPos.add("prefix", -1);
193
194 po::variables_map optVm;
195 po::store(po::command_line_parser(argc, argv).options(optDesc).positional(optPos).run(), optVm);
196 po::notify(optVm);
197
198 if (optVm.count("help") > 0) {
199 usage(visibleOptDesc);
200 }
201
202 if (optVm.count("version") > 0) {
203 std::cout << "ndnping " << tools::VERSION << std::endl;
204 exit(0);
205 }
206
207 if (optVm.count("prefix") > 0) {
208 options.prefix = Name(optVm["prefix"].as<std::string>());
209 }
210 else {
211 std::cerr << "ERROR: No prefix specified" << std::endl;
212 usage(visibleOptDesc);
213 }
214
215 if (optVm.count("interval") > 0) {
216 options.interval = time::milliseconds(optVm["interval"].as<int>());
217
Eric Newberrya66c29b2015-05-07 17:35:43 -0700218 if (options.interval.count() < getMinimumPingInterval().count()) {
Eric Newberry4164b8e2015-04-23 17:29:18 -0700219 std::cerr << "ERROR: Specified ping interval is less than the minimum " <<
Eric Newberrya66c29b2015-05-07 17:35:43 -0700220 getMinimumPingInterval() << std::endl;
Eric Newberry4164b8e2015-04-23 17:29:18 -0700221 usage(visibleOptDesc);
222 }
223 }
224
225 if (optVm.count("timeout") > 0) {
226 options.timeout = time::milliseconds(optVm["timeout"].as<int>());
227 }
228
229 if (optVm.count("count") > 0) {
230 if (options.nPings <= 0) {
231 std::cerr << "ERROR: Number of ping must be positive" << std::endl;
232 usage(visibleOptDesc);
233 }
234 }
235
236 if (optVm.count("start") > 0) {
237 options.shouldGenerateRandomSeq = false;
238 }
239
240 if (optVm.count("identifier") > 0) {
241 bool isIdentifierAcceptable = std::all_of(identifier.begin(), identifier.end(), &isalnum);
242 if (identifier.empty() || !isIdentifierAcceptable) {
243 std::cerr << "ERROR: Unacceptable client identifier" << std::endl;
244 usage(visibleOptDesc);
245 }
246
247 options.clientIdentifier = name::Component(identifier);
248 }
249
250 if (optVm.count("cache") > 0) {
251 options.shouldAllowStaleData = true;
252 }
253
254 if (optVm.count("timestamp") > 0) {
255 options.shouldPrintTimestamp = true;
256 }
257 }
258 catch (const po::error& e) {
259 std::cerr << "ERROR: " << e.what() << std::endl;
260 usage(visibleOptDesc);
261 }
262
Eric Newberry4164b8e2015-04-23 17:29:18 -0700263 std::cout << "PING " << options.prefix << std::endl;
Alexander Afanasyev1e7a7b22015-08-26 15:35:26 -0700264 return Runner(options).run();
Eric Newberry4164b8e2015-04-23 17:29:18 -0700265}
266
267} // namespace client
268} // namespace ping
269} // namespace ndn
270
271int
Davide Pesaventoda85e252019-03-18 11:42:01 -0400272main(int argc, char* argv[])
Eric Newberry4164b8e2015-04-23 17:29:18 -0700273{
274 return ndn::ping::client::main(argc, argv);
275}