Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Junxiao Shi | fbdd5ce | 2018-11-26 15:10:51 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [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 | |
Davide Pesavento | 22fba35 | 2017-10-17 15:53:51 -0400 | [diff] [blame] | 26 | #include "test-netif.hpp" |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 27 | #include "core/global-io.hpp" |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame] | 28 | |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 29 | namespace nfd { |
Davide Pesavento | 22fba35 | 2017-10-17 15:53:51 -0400 | [diff] [blame] | 30 | namespace face { |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 31 | namespace tests { |
| 32 | |
| 33 | std::vector<shared_ptr<const NetworkInterface>> |
Junxiao Shi | fbdd5ce | 2018-11-26 15:10:51 +0000 | [diff] [blame] | 34 | enumerateNetworkInterfaces(NetworkMonitor& netmon) |
| 35 | { |
| 36 | if ((netmon.getCapabilities() & NetworkMonitor::CAP_ENUM) == 0) { |
| 37 | BOOST_THROW_EXCEPTION(NetworkMonitor::Error("NetworkMonitor::CAP_ENUM is unavailable")); |
| 38 | } |
| 39 | |
| 40 | netmon.onEnumerationCompleted.connect([] { getGlobalIoService().stop(); }); |
| 41 | getGlobalIoService().run(); |
| 42 | getGlobalIoService().reset(); |
| 43 | return netmon.listNetworkInterfaces(); |
| 44 | } |
| 45 | |
| 46 | std::vector<shared_ptr<const NetworkInterface>> |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 47 | collectNetworkInterfaces(bool allowCached) |
| 48 | { |
| 49 | using ndn::net::NetworkMonitor; |
| 50 | |
| 51 | static std::vector<shared_ptr<const NetworkInterface>> cached; |
| 52 | // cached.empty() indicates there's no cached list of netifs. |
| 53 | // Although it could also mean a system without any network interface, this situation is rare |
| 54 | // because the loopback interface is present on almost all systems. |
| 55 | |
| 56 | if (!allowCached || cached.empty()) { |
| 57 | NetworkMonitor netmon(getGlobalIoService()); |
Junxiao Shi | fbdd5ce | 2018-11-26 15:10:51 +0000 | [diff] [blame] | 58 | cached = enumerateNetworkInterfaces(netmon); |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | return cached; |
| 62 | } |
| 63 | |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 64 | } // namespace tests |
Davide Pesavento | 22fba35 | 2017-10-17 15:53:51 -0400 | [diff] [blame] | 65 | } // namespace face |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 66 | } // namespace nfd |