Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 2 | /* |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "core/extended-error-message.hpp" |
| 27 | #include "core/global-io.hpp" |
| 28 | #include "face/face.hpp" |
| 29 | #include "face/tcp-channel.hpp" |
| 30 | #include "face/udp-channel.hpp" |
| 31 | |
| 32 | #include <fstream> |
| 33 | #include <iostream> |
| 34 | |
Davide Pesavento | aaa5dd3 | 2016-09-02 12:33:33 +0000 | [diff] [blame] | 35 | #ifdef HAVE_VALGRIND |
| 36 | #include <valgrind/callgrind.h> |
| 37 | #endif |
| 38 | |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 39 | namespace nfd { |
| 40 | namespace tests { |
| 41 | |
| 42 | class FaceBenchmark |
| 43 | { |
| 44 | public: |
| 45 | FaceBenchmark(const char* configFileName) |
| 46 | : m_terminationSignalSet{getGlobalIoService()} |
Alexander Afanasyev | ded1742 | 2018-04-03 19:00:23 -0400 | [diff] [blame] | 47 | , m_tcpChannel{tcp::Endpoint{boost::asio::ip::tcp::v4(), 6363}, false, bind([] { return ndn::nfd::FACE_SCOPE_NON_LOCAL; })} |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 48 | , m_udpChannel{udp::Endpoint{boost::asio::ip::udp::v4(), 6363}, time::minutes{10}, false} |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 49 | { |
| 50 | m_terminationSignalSet.add(SIGINT); |
| 51 | m_terminationSignalSet.add(SIGTERM); |
| 52 | m_terminationSignalSet.async_wait(bind(&FaceBenchmark::terminate, _1, _2)); |
| 53 | |
| 54 | parseConfig(configFileName); |
| 55 | |
| 56 | m_tcpChannel.listen(bind(&FaceBenchmark::onLeftFaceCreated, this, _1), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 57 | bind(&FaceBenchmark::onFaceCreationFailed, _1, _2)); |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 58 | std::clog << "Listening on " << m_tcpChannel.getUri() << std::endl; |
| 59 | |
| 60 | m_udpChannel.listen(bind(&FaceBenchmark::onLeftFaceCreated, this, _1), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 61 | bind(&FaceBenchmark::onFaceCreationFailed, _1, _2)); |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 62 | std::clog << "Listening on " << m_udpChannel.getUri() << std::endl; |
| 63 | } |
| 64 | |
| 65 | private: |
| 66 | static void |
| 67 | terminate(const boost::system::error_code& error, int signalNo) |
| 68 | { |
| 69 | if (error) |
| 70 | return; |
| 71 | getGlobalIoService().stop(); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | parseConfig(const char* configFileName) |
| 76 | { |
| 77 | std::ifstream file{configFileName}; |
| 78 | std::string uriStrL; |
| 79 | std::string uriStrR; |
| 80 | |
| 81 | while (file >> uriStrL >> uriStrR) { |
| 82 | FaceUri uriL{uriStrL}; |
| 83 | FaceUri uriR{uriStrR}; |
| 84 | |
| 85 | if (uriL.getScheme() != "tcp4" && uriL.getScheme() != "udp4") { |
| 86 | std::clog << "Unsupported protocol '" << uriL.getScheme() << "'" << std::endl; |
| 87 | } |
| 88 | else if (uriR.getScheme() != "tcp4" && uriR.getScheme() != "udp4") { |
| 89 | std::clog << "Unsupported protocol '" << uriR.getScheme() << "'" << std::endl; |
| 90 | } |
| 91 | else { |
| 92 | m_faceUris.push_back(std::make_pair(uriL, uriR)); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | if (m_faceUris.empty()) { |
| 97 | BOOST_THROW_EXCEPTION(std::runtime_error("No supported FaceUri pairs found in config file")); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | void |
| 102 | onLeftFaceCreated(const shared_ptr<Face>& faceL) |
| 103 | { |
| 104 | std::clog << "Left face created: remote=" << faceL->getRemoteUri() |
| 105 | << " local=" << faceL->getLocalUri() << std::endl; |
| 106 | |
| 107 | // find a matching right uri |
| 108 | FaceUri uriR; |
| 109 | for (const auto& pair : m_faceUris) { |
| 110 | if (pair.first.getHost() == faceL->getRemoteUri().getHost() && |
| 111 | pair.first.getScheme() == faceL->getRemoteUri().getScheme()) { |
| 112 | uriR = pair.second; |
| 113 | } |
| 114 | else if (pair.second.getHost() == faceL->getRemoteUri().getHost() && |
| 115 | pair.second.getScheme() == faceL->getRemoteUri().getScheme()) { |
| 116 | uriR = pair.first; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | if (uriR == FaceUri()) { |
| 121 | std::clog << "No FaceUri matched, ignoring..." << std::endl; |
| 122 | faceL->close(); |
| 123 | return; |
| 124 | } |
| 125 | |
| 126 | // create the right face |
Davide Pesavento | 9c33b90 | 2018-05-20 01:30:29 -0400 | [diff] [blame] | 127 | auto addr = boost::asio::ip::address::from_string(uriR.getHost()); |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 128 | auto port = boost::lexical_cast<uint16_t>(uriR.getPort()); |
| 129 | if (uriR.getScheme() == "tcp4") { |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 130 | m_tcpChannel.connect(tcp::Endpoint(addr, port), {}, |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 131 | bind(&FaceBenchmark::onRightFaceCreated, this, faceL, _1), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 132 | bind(&FaceBenchmark::onFaceCreationFailed, _1, _2)); |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 133 | } |
| 134 | else if (uriR.getScheme() == "udp4") { |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 135 | m_udpChannel.connect(udp::Endpoint(addr, port), {}, |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 136 | bind(&FaceBenchmark::onRightFaceCreated, this, faceL, _1), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 137 | bind(&FaceBenchmark::onFaceCreationFailed, _1, _2)); |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
| 141 | void |
| 142 | onRightFaceCreated(const shared_ptr<Face>& faceL, const shared_ptr<Face>& faceR) |
| 143 | { |
| 144 | std::clog << "Right face created: remote=" << faceR->getRemoteUri() |
| 145 | << " local=" << faceR->getLocalUri() << std::endl; |
| 146 | |
| 147 | tieFaces(faceR, faceL); |
| 148 | tieFaces(faceL, faceR); |
| 149 | } |
| 150 | |
| 151 | static void |
| 152 | tieFaces(const shared_ptr<Face>& face1, const shared_ptr<Face>& face2) |
| 153 | { |
| 154 | face1->afterReceiveInterest.connect([face2] (const Interest& interest) { face2->sendInterest(interest); }); |
| 155 | face1->afterReceiveData.connect([face2] (const Data& data) { face2->sendData(data); }); |
| 156 | face1->afterReceiveNack.connect([face2] (const ndn::lp::Nack& nack) { face2->sendNack(nack); }); |
| 157 | } |
| 158 | |
| 159 | static void |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 160 | onFaceCreationFailed(uint32_t status, const std::string& reason) |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 161 | { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 162 | BOOST_THROW_EXCEPTION(std::runtime_error("Failed to create face: " + to_string(status) + ": " + reason)); |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | private: |
| 166 | boost::asio::signal_set m_terminationSignalSet; |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 167 | face::TcpChannel m_tcpChannel; |
| 168 | face::UdpChannel m_udpChannel; |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 169 | std::vector<std::pair<FaceUri, FaceUri>> m_faceUris; |
| 170 | }; |
| 171 | |
| 172 | } // namespace tests |
| 173 | } // namespace nfd |
| 174 | |
| 175 | int |
| 176 | main(int argc, char** argv) |
| 177 | { |
Davide Pesavento | aaa5dd3 | 2016-09-02 12:33:33 +0000 | [diff] [blame] | 178 | #ifdef _DEBUG |
| 179 | std::cerr << "Benchmark compiled in debug mode is unreliable, please compile in release mode.\n"; |
| 180 | #endif |
| 181 | |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 182 | if (argc != 2) { |
| 183 | std::cerr << "Usage: " << argv[0] << " <config-file>" << std::endl; |
| 184 | return 2; |
| 185 | } |
| 186 | |
| 187 | try { |
| 188 | nfd::tests::FaceBenchmark bench{argv[1]}; |
Davide Pesavento | aaa5dd3 | 2016-09-02 12:33:33 +0000 | [diff] [blame] | 189 | #ifdef HAVE_VALGRIND |
| 190 | CALLGRIND_START_INSTRUMENTATION; |
| 191 | #endif |
Weiwei Liu | 4f1afac | 2016-04-02 19:08:38 -0700 | [diff] [blame] | 192 | nfd::getGlobalIoService().run(); |
| 193 | } |
| 194 | catch (const std::exception& e) { |
| 195 | std::cerr << "FATAL: " << nfd::getExtendedErrorMessage(e) << std::endl; |
| 196 | return 1; |
| 197 | } |
| 198 | |
| 199 | return 0; |
| 200 | } |