OLD | NEW |
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 #include "chromeos/network/managed_state.h" | 5 #include "chromeos/network/managed_state.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chromeos/network/device_state.h" | 9 #include "chromeos/network/device_state.h" |
10 #include "chromeos/network/favorite_state.h" | 10 #include "chromeos/network/favorite_state.h" |
11 #include "chromeos/network/network_event_log.h" | 11 #include "chromeos/network/network_event_log.h" |
12 #include "chromeos/network/network_state.h" | 12 #include "chromeos/network/network_state.h" |
13 #include "chromeos/network/shill_property_util.h" | 13 #include "chromeos/network/shill_property_util.h" |
14 #include "third_party/cros_system_api/dbus/service_constants.h" | 14 #include "third_party/cros_system_api/dbus/service_constants.h" |
15 | 15 |
16 namespace chromeos { | 16 namespace chromeos { |
17 | 17 |
18 bool ManagedState::Matches(const NetworkTypePattern& pattern) const { | 18 bool ManagedState::Matches(const NetworkTypePattern& pattern) const { |
19 return pattern.MatchesType(type()); | 19 return pattern.MatchesType(type()); |
20 } | 20 } |
21 | 21 |
22 // static | |
23 std::string ManagedState::TypeToString(ManagedType type) { | |
24 switch (type) { | |
25 case MANAGED_TYPE_NETWORK: | |
26 return "Network"; | |
27 case MANAGED_TYPE_FAVORITE: | |
28 return "Favorite"; | |
29 case MANAGED_TYPE_DEVICE: | |
30 return "Device"; | |
31 } | |
32 return "Unknown"; | |
33 } | |
34 | |
35 ManagedState::ManagedState(ManagedType type, const std::string& path) | 22 ManagedState::ManagedState(ManagedType type, const std::string& path) |
36 : managed_type_(type), | 23 : managed_type_(type), |
37 path_(path), | 24 path_(path), |
38 update_received_(false), | 25 update_received_(false), |
39 update_requested_(false) { | 26 update_requested_(false) { |
40 } | 27 } |
41 | 28 |
42 ManagedState::~ManagedState() { | 29 ManagedState::~ManagedState() { |
43 } | 30 } |
44 | 31 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 return false; | 100 return false; |
114 *out_value = new_value; | 101 *out_value = new_value; |
115 return true; | 102 return true; |
116 } | 103 } |
117 | 104 |
118 bool ManagedState::GetStringValue(const std::string& key, | 105 bool ManagedState::GetStringValue(const std::string& key, |
119 const base::Value& value, | 106 const base::Value& value, |
120 std::string* out_value) { | 107 std::string* out_value) { |
121 std::string new_value; | 108 std::string new_value; |
122 if (!value.GetAsString(&new_value)) { | 109 if (!value.GetAsString(&new_value)) { |
123 NET_LOG_ERROR("Error parsing state: " + key, path()); | 110 NET_LOG_ERROR("Error parsing state value", path() + "." + key); |
124 return false; | 111 return false; |
125 } | 112 } |
126 if (*out_value == new_value) | 113 if (*out_value == new_value) |
127 return false; | 114 return false; |
128 *out_value = new_value; | 115 *out_value = new_value; |
129 return true; | 116 return true; |
130 } | 117 } |
131 | 118 |
132 bool ManagedState::GetUInt32Value(const std::string& key, | 119 bool ManagedState::GetUInt32Value(const std::string& key, |
133 const base::Value& value, | 120 const base::Value& value, |
134 uint32* out_value) { | 121 uint32* out_value) { |
135 // base::Value restricts the number types to BOOL, INTEGER, and DOUBLE only. | 122 // base::Value restricts the number types to BOOL, INTEGER, and DOUBLE only. |
136 // uint32 will automatically get converted to a double, which is why we try | 123 // uint32 will automatically get converted to a double, which is why we try |
137 // to obtain the value as a double (see dbus/values_util.h). | 124 // to obtain the value as a double (see dbus/values_util.h). |
138 uint32 new_value; | 125 uint32 new_value; |
139 double double_value; | 126 double double_value; |
140 if (!value.GetAsDouble(&double_value) || double_value < 0) { | 127 if (!value.GetAsDouble(&double_value) || double_value < 0) { |
141 NET_LOG_ERROR("Error parsing state value", path() + "." + key); | 128 NET_LOG_ERROR("Error parsing state value", path() + "." + key); |
142 return false; | 129 return false; |
143 } | 130 } |
144 new_value = static_cast<uint32>(double_value); | 131 new_value = static_cast<uint32>(double_value); |
145 if (*out_value == new_value) | 132 if (*out_value == new_value) |
146 return false; | 133 return false; |
147 *out_value = new_value; | 134 *out_value = new_value; |
148 return true; | 135 return true; |
149 } | 136 } |
150 | 137 |
151 } // namespace chromeos | 138 } // namespace chromeos |
OLD | NEW |