blob: 4874dd4f11777f13800200dbd4af0ae0084da949 [file] [log] [blame]
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento50b92262018-07-11 12:28:31 -04002/*
3 * Copyright (c) 2013-2018 Regents of the University of California.
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -08004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Davide Pesavento2bf35a62017-04-02 00:41:06 -040020 *
21 * @author Alexander Afanasyev <alexander.afanasyev@ucla.edu>
22 * @author Davide Pesavento <davide.pesavento@lip6.fr>
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080023 */
24
Davide Pesavento9a8bae52016-02-24 20:33:08 +010025#include "network-monitor.hpp"
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080026#include "ndn-cxx-config.hpp"
27
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050028#if defined(NDN_CXX_HAVE_OSX_FRAMEWORKS)
Davide Pesavento9a8bae52016-02-24 20:33:08 +010029#include "detail/network-monitor-impl-osx.hpp"
Junxiao Shi2dc416d2017-07-03 04:46:16 +000030#define NETWORK_MONITOR_IMPL_TYPE NetworkMonitorImplOsx
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -080031#elif defined(NDN_CXX_HAVE_RTNETLINK)
Davide Pesavento50b92262018-07-11 12:28:31 -040032#include "detail/network-monitor-impl-netlink.hpp"
33#define NETWORK_MONITOR_IMPL_TYPE NetworkMonitorImplNetlink
Davide Pesavento9a8bae52016-02-24 20:33:08 +010034#else
Junxiao Shif4c1eb32017-05-30 17:05:10 +000035#include "detail/network-monitor-impl-noop.hpp"
Junxiao Shi2dc416d2017-07-03 04:46:16 +000036#define NETWORK_MONITOR_IMPL_TYPE NetworkMonitorImplNoop
Davide Pesavento9a8bae52016-02-24 20:33:08 +010037#endif
38
39namespace ndn {
Junxiao Shi25467942017-06-30 02:53:14 +000040namespace net {
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -080041
42NetworkMonitor::NetworkMonitor(boost::asio::io_service& io)
Junxiao Shi2dc416d2017-07-03 04:46:16 +000043 : NetworkMonitor(make_unique<NETWORK_MONITOR_IMPL_TYPE>(io))
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -080044{
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080045}
46
Junxiao Shi2dc416d2017-07-03 04:46:16 +000047NetworkMonitor::NetworkMonitor(unique_ptr<NetworkMonitorImpl> impl)
48 : m_impl(std::move(impl))
49 , onEnumerationCompleted(m_impl->onEnumerationCompleted)
50 , onInterfaceAdded(m_impl->onInterfaceAdded)
51 , onInterfaceRemoved(m_impl->onInterfaceRemoved)
52 , onNetworkStateChanged(m_impl->onNetworkStateChanged)
53{
54}
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080055
Junxiao Shif4c1eb32017-05-30 17:05:10 +000056uint32_t
57NetworkMonitor::getCapabilities() const
58{
59 return m_impl->getCapabilities();
60}
61
Junxiao Shi2dc416d2017-07-03 04:46:16 +000062shared_ptr<const NetworkInterface>
Davide Pesavento2bf35a62017-04-02 00:41:06 -040063NetworkMonitor::getNetworkInterface(const std::string& ifname) const
64{
65 return m_impl->getNetworkInterface(ifname);
66}
67
Junxiao Shi2dc416d2017-07-03 04:46:16 +000068std::vector<shared_ptr<const NetworkInterface>>
Davide Pesavento2bf35a62017-04-02 00:41:06 -040069NetworkMonitor::listNetworkInterfaces() const
70{
71 return m_impl->listNetworkInterfaces();
72}
73
Junxiao Shi2dc416d2017-07-03 04:46:16 +000074shared_ptr<NetworkInterface>
75NetworkMonitorImpl::makeNetworkInterface()
76{
77 // cannot use make_shared because NetworkInterface constructor is private
78 return shared_ptr<NetworkInterface>(new NetworkInterface);
79}
80
Junxiao Shi25467942017-06-30 02:53:14 +000081} // namespace net
Alexander Afanasyeve6c65e22015-01-28 19:56:03 -080082} // namespace ndn