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

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

Issue 9540011: [net] Add DNS-related signals and NetLog to NetworkChangeNotifier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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 | Annotate | Revision Log
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/file_path_watcher_callback.h"
17 #include "net/base/network_change_notifier.h" 18 #include "net/base/network_change_notifier.h"
18 #include "net/base/network_config_watcher_mac.h" 19 #include "net/base/network_config_watcher_mac.h"
19 20
20 namespace net { 21 namespace net {
21 22
22 class NetworkChangeNotifierMac: public NetworkChangeNotifier { 23 class NetworkChangeNotifierMac: public NetworkChangeNotifier {
23 public: 24 public:
24 NetworkChangeNotifierMac(); 25 NetworkChangeNotifierMac();
25 virtual ~NetworkChangeNotifierMac(); 26 virtual ~NetworkChangeNotifierMac();
26 27
27 // NetworkChangeNotifier implementation: 28 // NetworkChangeNotifier:
28 virtual bool IsCurrentlyOffline() const OVERRIDE; 29 virtual bool IsCurrentlyOffline() const OVERRIDE;
29 30
31 virtual bool IsCurrentlyWatchingDNS() const OVERRIDE;
32
30 private: 33 private:
31 enum OnlineState { 34 enum OnlineState {
32 UNINITIALIZED = -1, 35 UNINITIALIZED = -1,
33 OFFLINE = 0, 36 OFFLINE = 0,
34 ONLINE = 1 37 ONLINE = 1
35 }; 38 };
36 39
37 // Forwarder just exists to keep the NetworkConfigWatcherMac API out of 40 // Forwarder just exists to keep the NetworkConfigWatcherMac API out of
38 // NetworkChangeNotifierMac's public API. 41 // NetworkChangeNotifierMac's public API.
39 class Forwarder : public NetworkConfigWatcherMac::Delegate { 42 class Forwarder : public NetworkConfigWatcherMac::Delegate {
(...skipping 19 matching lines...) Expand all
59 private: 62 private:
60 NetworkChangeNotifierMac* const net_config_watcher_; 63 NetworkChangeNotifierMac* const net_config_watcher_;
61 DISALLOW_COPY_AND_ASSIGN(Forwarder); 64 DISALLOW_COPY_AND_ASSIGN(Forwarder);
62 }; 65 };
63 66
64 // Methods directly called by the NetworkConfigWatcherMac::Delegate: 67 // Methods directly called by the NetworkConfigWatcherMac::Delegate:
65 void StartReachabilityNotifications(); 68 void StartReachabilityNotifications();
66 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store); 69 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
67 void OnNetworkConfigChange(CFArrayRef changed_keys); 70 void OnNetworkConfigChange(CFArrayRef changed_keys);
68 71
72 // Called from FilePathWatcherCallback.
73 void OnDNSFileChanged(unsigned detail, bool watch_success);
74
69 void SetInitialState(); 75 void SetInitialState();
70 76
71 static void ReachabilityCallback(SCNetworkReachabilityRef target, 77 static void ReachabilityCallback(SCNetworkReachabilityRef target,
72 SCNetworkConnectionFlags flags, 78 SCNetworkConnectionFlags flags,
73 void* notifier); 79 void* notifier);
74 80
75 // These must be constructed before config_watcher_ to ensure 81 // These must be constructed before config_watcher_ to ensure
76 // the lock is in a valid state when Forwarder::Init is called. 82 // the lock is in a valid state when Forwarder::Init is called.
77 OnlineState online_state_; 83 OnlineState online_state_;
78 mutable base::Lock online_state_lock_; 84 mutable base::Lock online_state_lock_;
79 mutable base::ConditionVariable initial_state_cv_; 85 mutable base::ConditionVariable initial_state_cv_;
80 base::mac::ScopedCFTypeRef<SCNetworkReachabilityRef> reachability_; 86 base::mac::ScopedCFTypeRef<SCNetworkReachabilityRef> reachability_;
81 base::mac::ScopedCFTypeRef<CFRunLoopRef> run_loop_; 87 base::mac::ScopedCFTypeRef<CFRunLoopRef> run_loop_;
82 88
83 Forwarder forwarder_; 89 Forwarder forwarder_;
84 scoped_ptr<const NetworkConfigWatcherMac> config_watcher_; 90 scoped_ptr<const NetworkConfigWatcherMac> config_watcher_;
85 91
92 // DNS watchers and state.
93 FilePathWatcherCallback resolv_watcher_;
94 FilePathWatcherCallback hosts_watcher_;
95
96 bool watching_dns_;
97 mutable base::Lock watching_dns_lock_;
98
86 DISALLOW_COPY_AND_ASSIGN(NetworkChangeNotifierMac); 99 DISALLOW_COPY_AND_ASSIGN(NetworkChangeNotifierMac);
87 }; 100 };
88 101
89 } // namespace net 102 } // namespace net
90 103
91 #endif // NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_ 104 #endif // NET_BASE_NETWORK_CHANGE_NOTIFIER_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698