Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: net/base/network_change_notifier_mac.h

Issue 9147026: API for connection type (Ethernet/WIFI/WWAN ...) in NetworkChangeNotifier. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Review comments Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_ 5 #ifndef NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_
6 #define NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_ 6 #define NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_
7 #pragma once 7 #pragma once
8 8
9 #include <SystemConfiguration/SystemConfiguration.h> 9 #include <SystemConfiguration/SystemConfiguration.h>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/mac/scoped_cftyperef.h" 13 #include "base/mac/scoped_cftyperef.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/synchronization/condition_variable.h" 15 #include "base/synchronization/condition_variable.h"
16 #include "base/synchronization/lock.h" 16 #include "base/synchronization/lock.h"
17 #include "net/base/network_change_notifier.h" 17 #include "net/base/network_change_notifier.h"
18 #include "net/base/network_config_watcher_mac.h" 18 #include "net/base/network_config_watcher_mac.h"
19 19
20 namespace net { 20 namespace net {
21 21
22 class NetworkChangeNotifierMac: public NetworkChangeNotifier { 22 class NetworkChangeNotifierMac: public NetworkChangeNotifier {
23 public: 23 public:
24 NetworkChangeNotifierMac(); 24 NetworkChangeNotifierMac();
25 virtual ~NetworkChangeNotifierMac(); 25 virtual ~NetworkChangeNotifierMac();
26 26
27 // NetworkChangeNotifier implementation: 27 // NetworkChangeNotifier implementation:
28 virtual bool IsCurrentlyOffline() const OVERRIDE; 28 virtual ConnectionType GetCurrentConnectionType() const OVERRIDE;
29
30 private:
31 enum OnlineState {
32 UNINITIALIZED = -1,
33 OFFLINE = 0,
34 ONLINE = 1
35 };
36 29
37 // Forwarder just exists to keep the NetworkConfigWatcherMac API out of 30 // Forwarder just exists to keep the NetworkConfigWatcherMac API out of
38 // NetworkChangeNotifierMac's public API. 31 // NetworkChangeNotifierMac's public API.
39 class Forwarder : public NetworkConfigWatcherMac::Delegate { 32 class Forwarder : public NetworkConfigWatcherMac::Delegate {
40 public: 33 public:
41 explicit Forwarder(NetworkChangeNotifierMac* net_config_watcher) 34 explicit Forwarder(NetworkChangeNotifierMac* net_config_watcher)
42 : net_config_watcher_(net_config_watcher) {} 35 : net_config_watcher_(net_config_watcher) {}
43 36
44 // NetworkConfigWatcherMac::Delegate implementation: 37 // NetworkConfigWatcherMac::Delegate implementation:
45 virtual void Init() OVERRIDE { 38 virtual void Init() OVERRIDE {
(...skipping 13 matching lines...) Expand all
59 private: 52 private:
60 NetworkChangeNotifierMac* const net_config_watcher_; 53 NetworkChangeNotifierMac* const net_config_watcher_;
61 DISALLOW_COPY_AND_ASSIGN(Forwarder); 54 DISALLOW_COPY_AND_ASSIGN(Forwarder);
62 }; 55 };
63 56
64 // Methods directly called by the NetworkConfigWatcherMac::Delegate: 57 // Methods directly called by the NetworkConfigWatcherMac::Delegate:
65 void StartReachabilityNotifications(); 58 void StartReachabilityNotifications();
66 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store); 59 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
67 void OnNetworkConfigChange(CFArrayRef changed_keys); 60 void OnNetworkConfigChange(CFArrayRef changed_keys);
68 61
69 void SetInitialState(); 62 void SetInitialState();
wtc 2012/05/11 18:46:22 Nit: "InitialState", "initial_state", and "initial
70 63
71 static void ReachabilityCallback(SCNetworkReachabilityRef target, 64 static void ReachabilityCallback(SCNetworkReachabilityRef target,
72 SCNetworkConnectionFlags flags, 65 SCNetworkConnectionFlags flags,
73 void* notifier); 66 void* notifier);
74 67
75 // These must be constructed before config_watcher_ to ensure 68 // These must be constructed before config_watcher_ to ensure
76 // the lock is in a valid state when Forwarder::Init is called. 69 // the lock is in a valid state when Forwarder::Init is called.
77 OnlineState online_state_; 70 ConnectionType connection_type_;
78 mutable base::Lock online_state_lock_; 71 bool connection_type_initialized_;
72 mutable base::Lock connection_type_lock_;
79 mutable base::ConditionVariable initial_state_cv_; 73 mutable base::ConditionVariable initial_state_cv_;
80 base::mac::ScopedCFTypeRef<SCNetworkReachabilityRef> reachability_; 74 base::mac::ScopedCFTypeRef<SCNetworkReachabilityRef> reachability_;
81 base::mac::ScopedCFTypeRef<CFRunLoopRef> run_loop_; 75 base::mac::ScopedCFTypeRef<CFRunLoopRef> run_loop_;
82 76
83 Forwarder forwarder_; 77 Forwarder forwarder_;
84 scoped_ptr<const NetworkConfigWatcherMac> config_watcher_; 78 scoped_ptr<const NetworkConfigWatcherMac> config_watcher_;
85 79
86 DISALLOW_COPY_AND_ASSIGN(NetworkChangeNotifierMac); 80 DISALLOW_COPY_AND_ASSIGN(NetworkChangeNotifierMac);
87 }; 81 };
88 82
89 } // namespace net 83 } // namespace net
90 84
91 #endif // NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_ 85 #endif // NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698