Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [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. |
| 20 | */ |
| 21 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 22 | #ifndef NDN_NET_NETWORK_MONITOR_IMPL_OSX_HPP |
| 23 | #define NDN_NET_NETWORK_MONITOR_IMPL_OSX_HPP |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 24 | |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 25 | #include "ndn-cxx-config.hpp" |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 26 | #include "../network-monitor.hpp" |
| 27 | |
Alexander Afanasyev | 0cf887d | 2017-03-26 16:58:59 -0500 | [diff] [blame] | 28 | #ifndef NDN_CXX_HAVE_OSX_FRAMEWORKS |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 29 | #error "This file should not be compiled ..." |
| 30 | #endif |
| 31 | |
Junxiao Shi | 0b1b467 | 2017-07-02 22:02:31 -0700 | [diff] [blame] | 32 | #include "../../util/cf-releaser-osx.hpp" |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 33 | #include "../../util/scheduler.hpp" |
| 34 | #include "../../util/scheduler-scoped-event-id.hpp" |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 35 | |
| 36 | #include <CoreFoundation/CoreFoundation.h> |
| 37 | #include <SystemConfiguration/SystemConfiguration.h> |
| 38 | |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 39 | #include <boost/asio/ip/udp.hpp> |
Davide Pesavento | 5afbb0b | 2018-01-01 17:24:18 -0500 | [diff] [blame] | 40 | #include <map> |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 41 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 42 | namespace ndn { |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 43 | namespace net { |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 44 | |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 45 | class IfAddrs; |
| 46 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 47 | class NetworkMonitorImplOsx : public NetworkMonitorImpl |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 48 | { |
| 49 | public: |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 50 | using Error = NetworkMonitor::Error; |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 51 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 52 | NetworkMonitorImplOsx(boost::asio::io_service& io); |
| 53 | |
| 54 | ~NetworkMonitorImplOsx(); |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 55 | |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 56 | uint32_t |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 57 | getCapabilities() const final |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 58 | { |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 59 | return NetworkMonitor::CAP_ENUM | |
| 60 | NetworkMonitor::CAP_IF_ADD_REMOVE | |
| 61 | NetworkMonitor::CAP_STATE_CHANGE | |
| 62 | NetworkMonitor::CAP_ADDR_ADD_REMOVE; |
Junxiao Shi | f4c1eb3 | 2017-05-30 17:05:10 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 65 | shared_ptr<const NetworkInterface> |
| 66 | getNetworkInterface(const std::string& ifname) const final; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 67 | |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 68 | std::vector<shared_ptr<const NetworkInterface>> |
| 69 | listNetworkInterfaces() const final; |
Davide Pesavento | 2bf35a6 | 2017-04-02 00:41:06 -0400 | [diff] [blame] | 70 | |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 71 | private: |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 72 | static void |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 73 | afterNotificationCenterEvent(CFNotificationCenterRef center, void* observer, |
| 74 | CFStringRef name, const void* object, |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 75 | CFDictionaryRef userInfo); |
| 76 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 77 | void |
| 78 | scheduleCfLoop(); |
| 79 | |
| 80 | void |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 81 | enumerateInterfaces(); |
| 82 | |
| 83 | std::set<std::string> |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 84 | getInterfaceNames() const; |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 85 | |
| 86 | void |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 87 | addNewInterface(const std::string& ifName, const IfAddrs& ifaList); |
| 88 | |
| 89 | InterfaceState |
Davide Pesavento | f0c827e | 2017-10-03 17:25:00 -0400 | [diff] [blame] | 90 | getInterfaceState(const NetworkInterface& netif) const; |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 91 | |
| 92 | size_t |
Davide Pesavento | f0c827e | 2017-10-03 17:25:00 -0400 | [diff] [blame] | 93 | getInterfaceMtu(const NetworkInterface& netif); |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 94 | |
Davide Pesavento | c008798 | 2017-07-16 23:32:34 -0400 | [diff] [blame] | 95 | void |
| 96 | updateInterfaceInfo(NetworkInterface& netif, const IfAddrs& ifaList); |
| 97 | |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 98 | static void |
| 99 | onConfigChanged(SCDynamicStoreRef store, CFArrayRef changedKeys, void* context); |
| 100 | |
| 101 | void |
| 102 | onConfigChanged(CFArrayRef changedKeys); |
| 103 | |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 104 | private: |
Junxiao Shi | 2dc416d | 2017-07-03 04:46:16 +0000 | [diff] [blame] | 105 | std::map<std::string, shared_ptr<NetworkInterface>> m_interfaces; ///< ifname => interface |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 106 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 107 | util::Scheduler m_scheduler; |
| 108 | util::scheduler::ScopedEventId m_cfLoopEvent; |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 109 | |
| 110 | SCDynamicStoreContext m_context; |
Junxiao Shi | 0b1b467 | 2017-07-02 22:02:31 -0700 | [diff] [blame] | 111 | util::CFReleaser<SCDynamicStoreRef> m_scStore; |
| 112 | util::CFReleaser<CFRunLoopSourceRef> m_loopSource; |
Alexander Afanasyev | 3b3355c | 2017-03-26 11:57:13 -0500 | [diff] [blame] | 113 | |
Davide Pesavento | f0c827e | 2017-10-03 17:25:00 -0400 | [diff] [blame] | 114 | boost::asio::ip::udp::socket m_ioctlSocket; |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 115 | }; |
| 116 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 117 | } // namespace net |
Davide Pesavento | 9a8bae5 | 2016-02-24 20:33:08 +0100 | [diff] [blame] | 118 | } // namespace ndn |
| 119 | |
Junxiao Shi | 2546794 | 2017-06-30 02:53:14 +0000 | [diff] [blame] | 120 | #endif // NDN_NET_NETWORK_MONITOR_IMPL_OSX_HPP |