Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 4d0d096 | 2017-12-19 22:23:14 -0500 | [diff] [blame] | 2 | /* |
Junxiao Shi | 68b5385 | 2018-07-25 13:56:38 -0600 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 4 | * |
| 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 Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 20 | * |
| 21 | * @author Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 22 | * @author Davide Pesavento <davide.pesavento@lip6.fr> |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 23 | */ |
| 24 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 25 | #ifndef NDN_NET_NETWORK_MONITOR_HPP |
| 26 | #define NDN_NET_NETWORK_MONITOR_HPP |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 27 | |
Davide Pesavento | 4d0d096 | 2017-12-19 22:23:14 -0500 | [diff] [blame] | 28 | #include "asio-fwd.hpp" |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 29 | #include "network-interface.hpp" |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 30 | |
Davide Pesavento | 4d0d096 | 2017-12-19 22:23:14 -0500 | [diff] [blame] | 31 | #include <vector> |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 32 | |
| 33 | namespace ndn { |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 34 | namespace net { |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 35 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 36 | class NetworkMonitorImpl; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 37 | |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 38 | /** |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 39 | * @brief Network interface monitor |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 40 | * |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 41 | * Maintains an up-to-date view of every system network interface and notifies when an interface |
| 42 | * is added or removed. |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 43 | * |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 44 | * @note The implementation of this class is highly platform dependent, and not all platform |
| 45 | * backends provide all the features. On macOS, @e SystemConfiguration and |
| 46 | * @e CFNotificationCenterAddObserver are used (notification of MTU change is not supported). |
| 47 | * On Linux, @e rtnetlink notifications from the kernel are used. See getCapabilities() for |
| 48 | * the detailed set of capabilities supported by the platform backend currently in use. |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 49 | */ |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 50 | class NetworkMonitor : noncopyable |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 51 | { |
| 52 | public: |
| 53 | class Error : public std::runtime_error |
| 54 | { |
| 55 | public: |
Junxiao Shi | 68b5385 | 2018-07-25 13:56:38 -0600 | [diff] [blame] | 56 | using std::runtime_error::runtime_error; |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | /** |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 60 | * @brief Construct instance, request enumeration of all network interfaces, and start |
| 61 | * monitoring for network state changes |
| 62 | * |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 63 | * @param io io_service instance that will dispatch events |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 64 | * @throw Error error starting monitoring |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 65 | */ |
| 66 | explicit |
| 67 | NetworkMonitor(boost::asio::io_service& io); |
| 68 | |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 69 | enum Capability : uint32_t { |
| 70 | /// NetworkMonitor is not supported and is a no-op |
| 71 | CAP_NONE = 0, |
| 72 | /// listNetworkInterfaces() and getNetworkInterface() are supported |
| 73 | CAP_ENUM = 1 << 0, |
| 74 | /// NetworkMonitor onInterfaceAdded and onInterfaceRemoved signals are supported |
| 75 | CAP_IF_ADD_REMOVE = 1 << 1, |
| 76 | /// NetworkInterface onStateChanged signal is supported |
| 77 | CAP_STATE_CHANGE = 1 << 2, |
| 78 | /// NetworkInterface onMtuChanged signal is supported |
| 79 | CAP_MTU_CHANGE = 1 << 3, |
| 80 | /// NetworkInterface onAddressAdded and onAddressRemoved signals are supported |
| 81 | CAP_ADDR_ADD_REMOVE = 1 << 4 |
| 82 | }; |
| 83 | |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 84 | /// Returns a bitwise OR'ed set of @ref Capability flags supported on the current platform |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 85 | uint32_t |
| 86 | getCapabilities() const; |
| 87 | |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 88 | /// Returns the NetworkInterface with the given name, or @c nullptr if it does not exist |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 89 | shared_ptr<const NetworkInterface> |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 90 | getNetworkInterface(const std::string& ifname) const; |
| 91 | |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 92 | /** |
| 93 | * @brief Lists all network interfaces currently available on the system |
| 94 | * @warning May return incomplete results if called before the |
| 95 | * #onEnumerationCompleted signal has been emitted. |
| 96 | */ |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 97 | std::vector<shared_ptr<const NetworkInterface>> |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 98 | listNetworkInterfaces() const; |
| 99 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 100 | protected: |
| 101 | explicit |
| 102 | NetworkMonitor(unique_ptr<NetworkMonitorImpl> impl); |
| 103 | |
| 104 | NetworkMonitorImpl& |
| 105 | getImpl() |
| 106 | { |
| 107 | return *m_impl; |
| 108 | } |
| 109 | |
| 110 | private: |
| 111 | const unique_ptr<NetworkMonitorImpl> m_impl; |
| 112 | // Intentional violation of code-style rule 1.4: m_impl must be assigned before its signals can |
| 113 | // be assigned to references below. |
| 114 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 115 | public: // signals |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 116 | /// Fires when network interfaces enumeration is complete |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 117 | util::Signal<NetworkMonitorImpl>& onEnumerationCompleted; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 118 | |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 119 | /// Fires when a new interface is added |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 120 | util::Signal<NetworkMonitorImpl, shared_ptr<const NetworkInterface>>& onInterfaceAdded; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 121 | |
| 122 | /** |
| 123 | * @brief Fires when an interface is removed |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 124 | * @note The NetworkInterface object is no longer present in the internal list of |
| 125 | * network interfaces when this signal is emitted. |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 126 | */ |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 127 | util::Signal<NetworkMonitorImpl, shared_ptr<const NetworkInterface>>& onInterfaceRemoved; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 128 | |
Davide Pesavento | 4346290 | 2017-07-05 02:06:07 -0400 | [diff] [blame] | 129 | /// @deprecated Only for backward compatibility |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 130 | util::Signal<NetworkMonitorImpl>& onNetworkStateChanged; |
| 131 | }; |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 132 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 133 | class NetworkMonitorImpl : noncopyable |
| 134 | { |
| 135 | public: |
| 136 | virtual |
| 137 | ~NetworkMonitorImpl() = default; |
| 138 | |
| 139 | virtual uint32_t |
| 140 | getCapabilities() const = 0; |
| 141 | |
| 142 | virtual shared_ptr<const NetworkInterface> |
| 143 | getNetworkInterface(const std::string&) const = 0; |
| 144 | |
| 145 | virtual std::vector<shared_ptr<const NetworkInterface>> |
| 146 | listNetworkInterfaces() const = 0; |
| 147 | |
| 148 | protected: |
| 149 | static shared_ptr<NetworkInterface> |
| 150 | makeNetworkInterface(); |
| 151 | |
| 152 | public: |
| 153 | util::Signal<NetworkMonitorImpl> onEnumerationCompleted; |
| 154 | util::Signal<NetworkMonitorImpl, shared_ptr<const NetworkInterface>> onInterfaceAdded; |
| 155 | util::Signal<NetworkMonitorImpl, shared_ptr<const NetworkInterface>> onInterfaceRemoved; |
| 156 | util::Signal<NetworkMonitorImpl> onNetworkStateChanged; |
| 157 | |
| 158 | protected: |
| 159 | DECLARE_SIGNAL_EMIT(onEnumerationCompleted) |
| 160 | DECLARE_SIGNAL_EMIT(onInterfaceAdded) |
| 161 | DECLARE_SIGNAL_EMIT(onInterfaceRemoved) |
| 162 | DECLARE_SIGNAL_EMIT(onNetworkStateChanged) |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 163 | }; |
| 164 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 165 | } // namespace net |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 166 | } // namespace ndn |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 167 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 168 | #endif // NDN_NET_NETWORK_MONITOR_HPP |