blob: 2dd9da546829b185ff145cdc777dab94fe3e628e [file] [log] [blame]
Junxiao Shi84d62cb2017-07-12 16:15:18 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventod91fe6d2023-10-04 21:40:02 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Junxiao Shi84d62cb2017-07-12 16:15:18 +00004 * 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 Pesavento22fba352017-10-17 15:53:51 -040026#include "test-netif.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/global.hpp"
Davide Pesaventob8d1fc72017-10-08 02:05:05 -040028
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040029namespace nfd::tests {
Junxiao Shi84d62cb2017-07-12 16:15:18 +000030
Davide Pesavento279af1c2022-08-29 20:18:32 -040031using ndn::net::NetworkInterface;
32using ndn::net::NetworkMonitor;
33
Junxiao Shi84d62cb2017-07-12 16:15:18 +000034std::vector<shared_ptr<const NetworkInterface>>
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000035enumerateNetworkInterfaces(NetworkMonitor& netmon)
36{
Davide Pesaventoedb69c42019-01-02 16:26:18 -050037 if (netmon.getCapabilities() & NetworkMonitor::CAP_ENUM) {
38 netmon.onEnumerationCompleted.connect([] { getGlobalIoService().stop(); });
39 getGlobalIoService().run();
Davide Pesaventod91fe6d2023-10-04 21:40:02 -040040 getGlobalIoService().restart();
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000041 }
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000042 return netmon.listNetworkInterfaces();
43}
44
45std::vector<shared_ptr<const NetworkInterface>>
Junxiao Shi84d62cb2017-07-12 16:15:18 +000046collectNetworkInterfaces(bool allowCached)
47{
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040048 static std::optional<std::vector<shared_ptr<const NetworkInterface>>> cached;
Davide Pesaventoedb69c42019-01-02 16:26:18 -050049 if (!allowCached || !cached) {
Junxiao Shi84d62cb2017-07-12 16:15:18 +000050 NetworkMonitor netmon(getGlobalIoService());
Junxiao Shifbdd5ce2018-11-26 15:10:51 +000051 cached = enumerateNetworkInterfaces(netmon);
Junxiao Shi84d62cb2017-07-12 16:15:18 +000052 }
Davide Pesaventoedb69c42019-01-02 16:26:18 -050053 return *cached;
Junxiao Shi84d62cb2017-07-12 16:15:18 +000054}
55
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040056} // namespace nfd::tests