OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_STATE_NOTIFIER_H_ | |
6 #define ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_STATE_NOTIFIER_H_ | |
7 | |
8 #include <set> | |
9 | |
10 #include "ash/ash_export.h" | |
11 #include "base/basictypes.h" | |
12 #include "base/compiler_specific.h" | |
13 #include "base/memory/scoped_ptr.h" | |
14 #include "base/memory/weak_ptr.h" | |
15 #include "base/time/time.h" | |
16 #include "chromeos/network/network_state_handler_observer.h" | |
17 | |
18 namespace base { | |
19 class DictionaryValue; | |
20 } | |
21 | |
22 namespace chromeos { | |
23 class NetworkState; | |
24 } | |
25 | |
26 namespace ash { | |
27 | |
28 class NetworkConnect; | |
29 | |
30 // This class has two purposes: | |
31 // 1. ShowNetworkConnectError() gets called after any user initiated connect | |
32 // failure. This will handle displaying an error notification. | |
33 // TODO(stevenjb): convert this class to use the new MessageCenter | |
34 // notification system. | |
35 // 2. It observes NetworkState changes to generate notifications when a | |
36 // Cellular network is out of credits. | |
37 class ASH_EXPORT NetworkStateNotifier : | |
38 public chromeos::NetworkStateHandlerObserver { | |
39 public: | |
40 explicit NetworkStateNotifier(NetworkConnect* network_connect); | |
41 virtual ~NetworkStateNotifier(); | |
42 | |
43 // NetworkStateHandlerObserver | |
44 virtual void DefaultNetworkChanged( | |
45 const chromeos::NetworkState* network) override; | |
46 virtual void NetworkPropertiesUpdated( | |
47 const chromeos::NetworkState* network) override; | |
48 | |
49 // Show a connection error notification. If |error_name| matches an error | |
50 // defined in NetworkConnectionHandler for connect, configure, or activation | |
51 // failed, then the associated message is shown; otherwise use the last_error | |
52 // value for the network or a Shill property if available. | |
53 void ShowNetworkConnectError(const std::string& error_name, | |
54 const std::string& service_path); | |
55 | |
56 // Show a mobile activation error notification. | |
57 void ShowMobileActivationError(const std::string& service_path); | |
58 | |
59 // Removes any existing connect notifications. | |
60 void RemoveConnectNotification(); | |
61 | |
62 static const char kNetworkConnectNotificationId[]; | |
63 static const char kNetworkActivateNotificationId[]; | |
64 static const char kNetworkOutOfCreditsNotificationId[]; | |
65 | |
66 private: | |
67 void ConnectErrorPropertiesSucceeded( | |
68 const std::string& error_name, | |
69 const std::string& service_path, | |
70 const base::DictionaryValue& shill_properties); | |
71 void ConnectErrorPropertiesFailed( | |
72 const std::string& error_name, | |
73 const std::string& service_path, | |
74 const std::string& shill_connect_error, | |
75 scoped_ptr<base::DictionaryValue> shill_error_data); | |
76 void ShowConnectErrorNotification( | |
77 const std::string& error_name, | |
78 const std::string& service_path, | |
79 const base::DictionaryValue& shill_properties); | |
80 | |
81 // Returns true if the default network changed. | |
82 bool UpdateDefaultNetwork(const chromeos::NetworkState* network); | |
83 | |
84 // Helper methods to update state and check for notifications. | |
85 void UpdateCellularOutOfCredits(const chromeos::NetworkState* cellular); | |
86 void UpdateCellularActivating(const chromeos::NetworkState* cellular); | |
87 | |
88 // Invokes network_connect_->ShowNetworkSettings from a callback. | |
89 void ShowNetworkSettings(const std::string& service_path); | |
90 | |
91 NetworkConnect* network_connect_; // unowned | |
92 std::string last_default_network_; | |
93 bool did_show_out_of_credits_; | |
94 base::Time out_of_credits_notify_time_; | |
95 std::set<std::string> cellular_activating_; | |
96 base::WeakPtrFactory<NetworkStateNotifier> weak_ptr_factory_; | |
97 | |
98 DISALLOW_COPY_AND_ASSIGN(NetworkStateNotifier); | |
99 }; | |
100 | |
101 } // namespace ash | |
102 | |
103 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_STATE_NOTIFIER_H_ | |
OLD | NEW |