blob: 3aac23f242d4f1ab780baa42e45458acbc92a796 [file] [log] [blame]
Davide Pesavento9a8bae52016-02-24 20:33:08 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento2bf35a62017-04-02 00:41:06 -04003 * Copyright (c) 2013-2017 Regents of the University of California.
Davide Pesavento9a8bae52016-02-24 20:33:08 +01004 *
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 Shi25467942017-06-30 02:53:14 +000022#ifndef NDN_NET_NETWORK_MONITOR_IMPL_OSX_HPP
23#define NDN_NET_NETWORK_MONITOR_IMPL_OSX_HPP
Davide Pesavento9a8bae52016-02-24 20:33:08 +010024
Davide Pesavento2bf35a62017-04-02 00:41:06 -040025#include "ndn-cxx-config.hpp"
Davide Pesavento9a8bae52016-02-24 20:33:08 +010026#include "../network-monitor.hpp"
27
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050028#ifndef NDN_CXX_HAVE_OSX_FRAMEWORKS
Davide Pesavento2bf35a62017-04-02 00:41:06 -040029#error "This file should not be compiled ..."
30#endif
31
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -050032#include "../network-interface.hpp"
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -050033#include "../../security/tpm/helper-osx.hpp"
Junxiao Shi25467942017-06-30 02:53:14 +000034#include "../../util/scheduler.hpp"
35#include "../../util/scheduler-scoped-event-id.hpp"
Davide Pesavento9a8bae52016-02-24 20:33:08 +010036
37#include <CoreFoundation/CoreFoundation.h>
38#include <SystemConfiguration/SystemConfiguration.h>
39
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -050040#include <boost/asio/ip/udp.hpp>
41
Davide Pesavento9a8bae52016-02-24 20:33:08 +010042namespace ndn {
Junxiao Shi25467942017-06-30 02:53:14 +000043namespace net {
Davide Pesavento9a8bae52016-02-24 20:33:08 +010044
45class NetworkMonitor::Impl
46{
47public:
48 Impl(NetworkMonitor& nm, boost::asio::io_service& io);
49
50 ~Impl();
51
Junxiao Shif4c1eb32017-05-30 17:05:10 +000052 uint32_t
53 getCapabilities() const
54 {
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -050055 return NetworkMonitor::CAP_ENUM | NetworkMonitor::CAP_IF_ADD_REMOVE |
56 NetworkMonitor::CAP_STATE_CHANGE | NetworkMonitor::CAP_ADDR_ADD_REMOVE;
Junxiao Shif4c1eb32017-05-30 17:05:10 +000057 }
58
Davide Pesavento2bf35a62017-04-02 00:41:06 -040059 shared_ptr<NetworkInterface>
60 getNetworkInterface(const std::string& ifname) const;
61
62 std::vector<shared_ptr<NetworkInterface>>
63 listNetworkInterfaces() const;
64
Davide Pesavento9a8bae52016-02-24 20:33:08 +010065 static void
66 afterNotificationCenterEvent(CFNotificationCenterRef center,
Davide Pesavento2bf35a62017-04-02 00:41:06 -040067 void* observer,
Davide Pesavento9a8bae52016-02-24 20:33:08 +010068 CFStringRef name,
Davide Pesavento2bf35a62017-04-02 00:41:06 -040069 const void* object,
Davide Pesavento9a8bae52016-02-24 20:33:08 +010070 CFDictionaryRef userInfo);
71
72private:
73 void
74 scheduleCfLoop();
75
76 void
77 pollCfLoop();
78
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -050079 void
80 addNewInterface(const std::string& ifName);
81
82 void
83 enumerateInterfaces();
84
85 std::set<std::string>
86 getInterfaceNames();
87
88 InterfaceState
89 getInterfaceState(const std::string& ifName);
90
91 void
92 updateInterfaceInfo(NetworkInterface& netif);
93
94 size_t
95 getInterfaceMtu(const std::string& ifName);
96
97 static void
98 onConfigChanged(SCDynamicStoreRef store, CFArrayRef changedKeys, void* context);
99
100 void
101 onConfigChanged(CFArrayRef changedKeys);
102
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100103private:
104 NetworkMonitor& m_nm;
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -0500105 std::map<std::string /*ifname*/, shared_ptr<NetworkInterface>> m_interfaces; ///< interface map
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100106
Junxiao Shi25467942017-06-30 02:53:14 +0000107 util::Scheduler m_scheduler;
108 util::scheduler::ScopedEventId m_cfLoopEvent;
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -0500109
110 SCDynamicStoreContext m_context;
111 CFReleaser<SCDynamicStoreRef> m_scStore;
112 CFReleaser<CFRunLoopSourceRef> m_loopSource;
113
114 boost::asio::ip::udp::socket m_nullUdpSocket;
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100115};
116
Junxiao Shi25467942017-06-30 02:53:14 +0000117} // namespace net
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100118} // namespace ndn
119
Junxiao Shi25467942017-06-30 02:53:14 +0000120#endif // NDN_NET_NETWORK_MONITOR_IMPL_OSX_HPP