1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/prefs/pref_value_store.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/extensions/extension_pref_store.h"
#include "chrome/browser/policy/configuration_policy_pref_store.h"
#include "chrome/browser/prefs/command_line_pref_store.h"
#include "chrome/browser/prefs/default_pref_store.h"
#include "chrome/common/json_pref_store.h"
#include "chrome/common/notification_service.h"
namespace {
// Returns true if the actual value is a valid type for the expected type when
// found in the given store.
bool IsValidType(Value::ValueType expected, Value::ValueType actual,
PrefNotifier::PrefStoreType store) {
if (expected == actual)
return true;
// Dictionaries and lists are allowed to hold TYPE_NULL values too, but only
// in the default pref store.
if (store == PrefNotifier::DEFAULT_STORE &&
actual == Value::TYPE_NULL &&
(expected == Value::TYPE_DICTIONARY || expected == Value::TYPE_LIST)) {
return true;
}
return false;
}
} // namespace
// static
PrefValueStore* PrefValueStore::CreatePrefValueStore(
const FilePath& pref_filename,
Profile* profile,
bool user_only) {
using policy::ConfigurationPolicyPrefStore;
ConfigurationPolicyPrefStore* managed = NULL;
ExtensionPrefStore* extension = NULL;
CommandLinePrefStore* command_line = NULL;
ConfigurationPolicyPrefStore* recommended = NULL;
JsonPrefStore* user = new JsonPrefStore(
pref_filename,
ChromeThread::GetMessageLoopProxyForThread(ChromeThread::FILE));
DefaultPrefStore* default_store = new DefaultPrefStore();
if (!user_only) {
managed = ConfigurationPolicyPrefStore::CreateManagedPolicyPrefStore();
extension = new ExtensionPrefStore(profile, PrefNotifier::EXTENSION_STORE);
command_line = new CommandLinePrefStore(CommandLine::ForCurrentProcess());
recommended =
ConfigurationPolicyPrefStore::CreateRecommendedPolicyPrefStore();
}
return new PrefValueStore(managed, extension, command_line, user,
recommended, default_store);
}
PrefValueStore::~PrefValueStore() {}
bool PrefValueStore::GetValue(const std::string& name,
Value** out_value) const {
// Check the |PrefStore|s in order of their priority from highest to lowest
// to find the value of the preference described by the given preference name.
// If the found value is not the correct type, keep looking. This allows a
// default value to override an outdated user-pref setting.
for (size_t i = 0; i <= PrefNotifier::PREF_STORE_TYPE_MAX; ++i) {
if (pref_stores_[i].get() &&
pref_stores_[i]->prefs()->Get(name.c_str(), out_value) &&
IsValidType(GetRegisteredType(name), (*out_value)->GetType(),
static_cast<PrefNotifier::PrefStoreType>(i))) {
return true;
}
}
// No valid value found for the given preference name: set the return false.
*out_value = NULL;
return false;
}
void PrefValueStore::RegisterPreferenceType(const std::string& name,
Value::ValueType type) {
pref_types_[name] = type;
}
Value::ValueType PrefValueStore::GetRegisteredType(
const std::string& name) const {
PrefTypeMap::const_iterator found = pref_types_.find(name);
if (found == pref_types_.end())
return Value::TYPE_NULL;
return found->second;
}
bool PrefValueStore::WritePrefs() {
bool success = true;
for (size_t i = 0; i <= PrefNotifier::PREF_STORE_TYPE_MAX; ++i) {
if (pref_stores_[i].get())
success = pref_stores_[i]->WritePrefs() && success;
}
return success;
}
void PrefValueStore::ScheduleWritePrefs() {
for (size_t i = 0; i <= PrefNotifier::PREF_STORE_TYPE_MAX; ++i) {
if (pref_stores_[i].get())
pref_stores_[i]->ScheduleWritePrefs();
}
}
PrefStore::PrefReadError PrefValueStore::ReadPrefs() {
PrefStore::PrefReadError result = PrefStore::PREF_READ_ERROR_NONE;
for (size_t i = 0; i <= PrefNotifier::PREF_STORE_TYPE_MAX; ++i) {
if (pref_stores_[i].get()) {
PrefStore::PrefReadError this_error = pref_stores_[i]->ReadPrefs();
if (result == PrefStore::PREF_READ_ERROR_NONE)
result = this_error;
}
}
// TODO(markusheintz): Return a better error status: maybe a struct with
// the error status of all PrefStores.
return result;
}
bool PrefValueStore::HasPrefPath(const char* path) const {
Value* tmp_value = NULL;
const std::string name(path);
bool rv = GetValue(name, &tmp_value);
// Merely registering a pref doesn't count as "having" it: we require a
// non-default value set.
return rv && !PrefValueFromDefaultStore(path);
}
bool PrefValueStore::PrefHasChanged(const char* path,
PrefNotifier::PrefStoreType new_store) {
DCHECK(new_store != PrefNotifier::INVALID_STORE);
// Replying that the pref has changed may cause problems, but it's the safer
// choice.
if (new_store == PrefNotifier::INVALID_STORE)
return true;
PrefNotifier::PrefStoreType controller = ControllingPrefStoreForPref(path);
DCHECK(controller != PrefNotifier::INVALID_STORE);
if (controller == PrefNotifier::INVALID_STORE)
return true;
// If the pref is controlled by a higher-priority store, its effective value
// cannot have changed.
if (controller < new_store)
return false;
// Otherwise, we take the pref store's word that something changed.
return true;
}
// Note the |DictionaryValue| referenced by the |PrefStore| USER_STORE
// (returned by the method prefs()) takes the ownership of the Value referenced
// by in_value.
bool PrefValueStore::SetUserPrefValue(const char* name, Value* in_value) {
Value* old_value = NULL;
pref_stores_[PrefNotifier::USER_STORE]->prefs()->Get(name, &old_value);
bool value_changed = !(old_value && old_value->Equals(in_value));
pref_stores_[PrefNotifier::USER_STORE]->prefs()->Set(name, in_value);
return value_changed;
}
// Note the |DictionaryValue| referenced by the |PrefStore| DEFAULT_STORE
// (returned by the method prefs()) takes the ownership of the Value referenced
// by in_value.
void PrefValueStore::SetDefaultPrefValue(const char* name, Value* in_value) {
pref_stores_[PrefNotifier::DEFAULT_STORE]->prefs()->Set(name, in_value);
}
bool PrefValueStore::ReadOnly() {
return pref_stores_[PrefNotifier::USER_STORE]->ReadOnly();
}
bool PrefValueStore::RemoveUserPrefValue(const char* name) {
if (pref_stores_[PrefNotifier::USER_STORE].get()) {
return pref_stores_[PrefNotifier::USER_STORE]->prefs()->Remove(name, NULL);
}
return false;
}
bool PrefValueStore::PrefValueInManagedStore(const char* name) const {
return PrefValueInStore(name, PrefNotifier::MANAGED_STORE);
}
bool PrefValueStore::PrefValueInExtensionStore(const char* name) const {
return PrefValueInStore(name, PrefNotifier::EXTENSION_STORE);
}
bool PrefValueStore::PrefValueInUserStore(const char* name) const {
return PrefValueInStore(name, PrefNotifier::USER_STORE);
}
bool PrefValueStore::PrefValueFromExtensionStore(const char* name) const {
return ControllingPrefStoreForPref(name) == PrefNotifier::EXTENSION_STORE;
}
bool PrefValueStore::PrefValueFromUserStore(const char* name) const {
return ControllingPrefStoreForPref(name) == PrefNotifier::USER_STORE;
}
bool PrefValueStore::PrefValueFromDefaultStore(const char* name) const {
return ControllingPrefStoreForPref(name) == PrefNotifier::DEFAULT_STORE;
}
bool PrefValueStore::PrefValueUserModifiable(const char* name) const {
PrefNotifier::PrefStoreType effective_store =
ControllingPrefStoreForPref(name);
return effective_store >= PrefNotifier::USER_STORE ||
effective_store == PrefNotifier::INVALID_STORE;
}
PrefNotifier::PrefStoreType PrefValueStore::ControllingPrefStoreForPref(
const char* name) const {
for (int i = 0; i <= PrefNotifier::PREF_STORE_TYPE_MAX; ++i) {
if (PrefValueInStore(name, static_cast<PrefNotifier::PrefStoreType>(i)))
return static_cast<PrefNotifier::PrefStoreType>(i);
}
return PrefNotifier::INVALID_STORE;
}
bool PrefValueStore::PrefValueInStore(const char* name,
PrefNotifier::PrefStoreType store) const {
if (!pref_stores_[store].get()) {
// No store of that type, so this pref can't be in it.
return false;
}
Value* tmp_value = NULL;
if (pref_stores_[store]->prefs()->Get(name, &tmp_value) &&
IsValidType(GetRegisteredType(name), tmp_value->GetType(), store)) {
return true;
}
return false;
}
void PrefValueStore::RefreshPolicyPrefsCompletion(
PrefStore* new_managed_pref_store,
PrefStore* new_recommended_pref_store,
AfterRefreshCallback* callback_pointer) {
scoped_ptr<AfterRefreshCallback> callback(callback_pointer);
DictionaryValue* managed_prefs_before(
pref_stores_[PrefNotifier::MANAGED_STORE]->prefs());
DictionaryValue* managed_prefs_after(new_managed_pref_store->prefs());
DictionaryValue* recommended_prefs_before(
pref_stores_[PrefNotifier::RECOMMENDED_STORE]->prefs());
DictionaryValue* recommended_prefs_after(new_recommended_pref_store->prefs());
std::vector<std::string> changed_managed_paths;
managed_prefs_before->GetDifferingPaths(managed_prefs_after,
&changed_managed_paths);
std::vector<std::string> changed_recommended_paths;
recommended_prefs_before->GetDifferingPaths(recommended_prefs_after,
&changed_recommended_paths);
std::vector<std::string> changed_paths(changed_managed_paths.size() +
changed_recommended_paths.size());
std::vector<std::string>::iterator last_insert =
std::merge(changed_managed_paths.begin(),
changed_managed_paths.end(),
changed_recommended_paths.begin(),
changed_recommended_paths.end(),
changed_paths.begin());
changed_paths.resize(last_insert - changed_paths.begin());
pref_stores_[PrefNotifier::MANAGED_STORE].reset(new_managed_pref_store);
pref_stores_[PrefNotifier::RECOMMENDED_STORE].reset(
new_recommended_pref_store);
callback->Run(changed_paths);
}
void PrefValueStore::RefreshPolicyPrefsOnFileThread(
ChromeThread::ID calling_thread_id,
PrefStore* new_managed_pref_store,
PrefStore* new_recommended_pref_store,
AfterRefreshCallback* callback_pointer) {
scoped_ptr<AfterRefreshCallback> callback(callback_pointer);
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
scoped_ptr<PrefStore> managed_pref_store(new_managed_pref_store);
scoped_ptr<PrefStore> recommended_pref_store(new_recommended_pref_store);
PrefStore::PrefReadError read_error = new_managed_pref_store->ReadPrefs();
if (read_error != PrefStore::PREF_READ_ERROR_NONE) {
LOG(ERROR) << "refresh of managed policy failed: PrefReadError = "
<< read_error;
return;
}
read_error = new_recommended_pref_store->ReadPrefs();
if (read_error != PrefStore::PREF_READ_ERROR_NONE) {
LOG(ERROR) << "refresh of recommended policy failed: PrefReadError = "
<< read_error;
return;
}
ChromeThread::PostTask(
calling_thread_id, FROM_HERE,
NewRunnableMethod(this,
&PrefValueStore::RefreshPolicyPrefsCompletion,
managed_pref_store.release(),
recommended_pref_store.release(),
callback.release()));
}
void PrefValueStore::RefreshPolicyPrefs(
PrefStore* new_managed_pref_store,
PrefStore* new_recommended_pref_store,
AfterRefreshCallback* callback) {
ChromeThread::ID current_thread_id;
CHECK(ChromeThread::GetCurrentThreadIdentifier(¤t_thread_id));
ChromeThread::PostTask(
ChromeThread::FILE, FROM_HERE,
NewRunnableMethod(this,
&PrefValueStore::RefreshPolicyPrefsOnFileThread,
current_thread_id,
new_managed_pref_store,
new_recommended_pref_store,
callback));
}
PrefValueStore::PrefValueStore(PrefStore* managed_prefs,
PrefStore* extension_prefs,
PrefStore* command_line_prefs,
PrefStore* user_prefs,
PrefStore* recommended_prefs,
PrefStore* default_prefs) {
// NULL default pref store is usually bad, but may be OK for some unit tests.
if (!default_prefs)
LOG(WARNING) << "default pref store is null";
pref_stores_[PrefNotifier::MANAGED_STORE].reset(managed_prefs);
pref_stores_[PrefNotifier::EXTENSION_STORE].reset(extension_prefs);
pref_stores_[PrefNotifier::COMMAND_LINE_STORE].reset(command_line_prefs);
pref_stores_[PrefNotifier::USER_STORE].reset(user_prefs);
pref_stores_[PrefNotifier::RECOMMENDED_STORE].reset(recommended_prefs);
pref_stores_[PrefNotifier::DEFAULT_STORE].reset(default_prefs);
}
|