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