/* Measure round-trip time. * * Author: Steffen Vogel * SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University * SPDX-License-Identifier: Apache-2.0 */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define CLOCK_ID CLOCK_MONOTONIC using namespace villas; using namespace villas::node; namespace villas { namespace node { namespace tools { class TestRtt : public Tool { public: TestRtt(int argc, char *argv[]) : Tool(argc, argv, "test-rtt"), stop(false), fd(STDOUT_FILENO), count(-1), hist_warmup(100), hist_buckets(20) { int ret; ret = memory::init(DEFAULT_NR_HUGEPAGES); if (ret) throw RuntimeError("Failed to initialize memory"); } protected: std::atomic stop; std::string uri; std::string nodestr; SuperNode sn; /* File descriptor for Matlab results. * This allows you to write Matlab results in a seperate log file: * * ./test etc/example.conf rtt -f 3 3>> measurement_results.m */ int fd; // Amount of messages which should be sent (default: -1 for unlimited) int count; Hist::cnt_t hist_warmup; int hist_buckets; void handler(int signal, siginfo_t *sinfo, void *ctx) { stop = true; } void usage() { std::cout << "Usage: villas-test-rtt [OPTIONS] CONFIG NODE" << std::endl << " CONFIG path to a configuration file" << std::endl << " NODE name of the node which shoud be used" << std::endl << " OPTIONS is one or more of the following options:" << std::endl << " -c CNT send CNT messages" << std::endl << " -f FD use file descriptor FD for result output instead " "of stdout" << std::endl << " -b BKTS number of buckets for histogram" << std::endl << " -w WMUP duration of histogram warmup phase" << std::endl << " -h show this usage information" << std::endl << " -V show the version of the tool" << std::endl << std::endl; printCopyright(); } void parse() { // Parse Arguments int c; char *endptr; while ((c = getopt(argc, argv, "w:hr:f:c:b:Vd:")) != -1) { switch (c) { case 'c': count = strtoul(optarg, &endptr, 10); goto check; case 'f': fd = strtoul(optarg, &endptr, 10); goto check; case 'w': hist_warmup = strtoul(optarg, &endptr, 10); goto check; case 'b': hist_buckets = strtoul(optarg, &endptr, 10); goto check; case 'V': printVersion(); exit(EXIT_SUCCESS); case 'd': logging.setLevel(optarg); break; case 'h': case '?': usage(); exit(c == '?' ? EXIT_FAILURE : EXIT_SUCCESS); } continue; check: if (optarg == endptr) throw RuntimeError("Failed to parse parse option argument '-{} {}'", c, optarg); } if (argc != optind + 2) { usage(); exit(EXIT_FAILURE); } uri = argv[optind]; nodestr = argv[optind + 1]; } int main() { int ret; Hist hist(hist_buckets, hist_warmup); struct timespec send, recv; struct Sample *smp_send = (struct Sample *)new char[SAMPLE_LENGTH(2)]; struct Sample *smp_recv = (struct Sample *)new char[SAMPLE_LENGTH(2)]; if (!smp_send || !smp_recv) throw MemoryAllocationError(); Node *node; if (!uri.empty()) sn.parse(uri); else logger->warn("No configuration file specified. Starting unconfigured. " "Use the API to configure this instance."); node = sn.getNode(nodestr); if (!node) throw RuntimeError("There's no node with the name '{}'", nodestr); ret = node->getFactory()->start(&sn); if (ret) throw RuntimeError("Failed to start node-type {}: reason={}", node->getFactory()->getName(), ret); ret = node->prepare(); if (ret) throw RuntimeError("Failed to prepare node {}: reason={}", node->getName(), ret); ret = node->start(); if (ret) throw RuntimeError("Failed to start node {}: reason={}", node->getName(), ret); // Print header fprintf(stdout, "%17s%5s%10s%10s%10s%10s%10s\n", "timestamp", "seq", "rtt", "min", "max", "mean", "stddev"); while (!stop && (count < 0 || count--)) { clock_gettime(CLOCK_ID, &send); node->write(&smp_send, 1); // Ping node->read(&smp_recv, 1); // Pong clock_gettime(CLOCK_ID, &recv); double rtt = time_delta(&recv, &send); if (rtt < 0) logger->warn("Negative RTT: {}", rtt); hist.put(rtt); smp_send->sequence++; fprintf(stdout, "%10lld.%06lld%5" PRIu64 "%10.3f%10.3f%10.3f%10.3f%10.3f\n", (long long)recv.tv_sec, (long long)recv.tv_nsec / 1000, smp_send->sequence, 1e3 * rtt, 1e3 * hist.getLowest(), 1e3 * hist.getHighest(), 1e3 * hist.getMean(), 1e3 * hist.getStddev()); } struct stat st; if (!fstat(fd, &st)) { FILE *f = fdopen(fd, "w"); hist.dumpMatlab(f); fclose(f); } else throw RuntimeError("Invalid file descriptor: {}", fd); hist.print(logger, true); ret = node->stop(); if (ret) throw RuntimeError("Failed to stop node {}: reason={}", node->getName(), ret); ret = node->getFactory()->stop(); if (ret) throw RuntimeError("Failed to stop node-type {}: reason={}", node->getFactory()->getName(), ret); delete smp_send; delete smp_recv; return 0; } }; } // namespace tools } // namespace node } // namespace villas int main(int argc, char *argv[]) { villas::node::tools::TestRtt t(argc, argv); return t.run(); }