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
|
// 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/pref_value_store.h"
#include "base/values.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/command_line_pref_store.h"
#include "chrome/browser/policy/configuration_policy_pref_store.h"
#include "chrome/browser/extensions/extension_pref_store.h"
#include "chrome/common/json_pref_store.h"
#include "chrome/common/notification_service.h"
// static
PrefValueStore* PrefValueStore::CreatePrefValueStore(
const FilePath& pref_filename,
Profile* profile,
bool user_only) {
ConfigurationPolicyPrefStore* managed = NULL;
ExtensionPrefStore* extension = NULL;
CommandLinePrefStore* command_line = NULL;
JsonPrefStore* user = NULL;
ConfigurationPolicyPrefStore* recommended = NULL;
if (!pref_filename.empty()) {
user = new JsonPrefStore(
pref_filename,
ChromeThread::GetMessageLoopProxyForThread(ChromeThread::FILE));
}
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);
}
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.
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)) {
return true;
}
}
// No value found for the given preference name, set the return false.
*out_value = NULL;
return false;
}
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);
return rv;
}
bool PrefValueStore::PrefHasChanged(const char* path,
PrefNotifier::PrefStoreType new_store,
const Value* old_value) {
DCHECK(new_store != PrefNotifier::INVALID_STORE);
// Replying that the pref has changed may cause extra work, but it should
// not be actively harmful.
if (new_store == PrefNotifier::INVALID_STORE)
return true;
Value* new_value = NULL;
GetValue(path, &new_value);
// Some unit tests have no values for certain prefs.
if (!new_value || !old_value->Equals(new_value))
return true;
// If there's a value in a store with lower priority than the |new_store|,
// and no value in a store with higher priority, assume the |new_store| just
// took control of the pref. (This assumption is wrong if the new value
// and store are both the same as the old one, but that situation should be
// rare, and reporting a change when none happened should not be harmful.)
if (PrefValueInStoreRange(path, new_store, false) &&
!PrefValueInStoreRange(path, new_store, true))
return true;
return false;
}
// Note the |DictionaryValue| referenced by the |PrefStore| user_prefs_
// (returned by the method prefs()) takes the ownership of the Value referenced
// by in_value.
void PrefValueStore::SetUserPrefValue(const char* name, Value* in_value) {
pref_stores_[PrefNotifier::USER_STORE]->prefs()->Set(name, in_value);
}
bool PrefValueStore::ReadOnly() {
return pref_stores_[PrefNotifier::USER_STORE]->ReadOnly();
}
void PrefValueStore::RemoveUserPrefValue(const char* name) {
if (pref_stores_[PrefNotifier::USER_STORE].get()) {
pref_stores_[PrefNotifier::USER_STORE]->prefs()->Remove(name, NULL);
}
}
bool PrefValueStore::PrefValueInManagedStore(const char* name) {
return PrefValueInStore(name, PrefNotifier::MANAGED_STORE);
}
bool PrefValueStore::PrefValueInExtensionStore(const char* name) {
return PrefValueInStore(name, PrefNotifier::EXTENSION_STORE);
}
bool PrefValueStore::PrefValueInUserStore(const char* name) {
return PrefValueInStore(name, PrefNotifier::USER_STORE);
}
bool PrefValueStore::PrefValueFromExtensionStore(const char* name) {
return ControllingPrefStoreForPref(name) == PrefNotifier::EXTENSION_STORE;
}
bool PrefValueStore::PrefValueFromUserStore(const char* name) {
return ControllingPrefStoreForPref(name) == PrefNotifier::USER_STORE;
}
bool PrefValueStore::PrefValueUserModifiable(const char* name) {
PrefNotifier::PrefStoreType effective_store =
ControllingPrefStoreForPref(name);
return effective_store >= PrefNotifier::USER_STORE ||
effective_store == PrefNotifier::INVALID_STORE;
}
bool PrefValueStore::PrefValueInStore(const char* name,
PrefNotifier::PrefStoreType type) {
if (!pref_stores_[type].get()) {
// No store of that type set, so this pref can't be in it.
return false;
}
Value* tmp_value;
return pref_stores_[type]->prefs()->Get(name, &tmp_value);
}
bool PrefValueStore::PrefValueInStoreRange(const char* name,
PrefNotifier::PrefStoreType boundary,
bool higher_priority) {
// Higher priorities are lower PrefStoreType values. The range is
// non-inclusive of the boundary.
int start = higher_priority ? 0 : boundary + 1;
int end = higher_priority ? boundary - 1 :
PrefNotifier::PREF_STORE_TYPE_MAX;
for (int i = start; i <= end ; ++i) {
if (PrefValueInStore(name, static_cast<PrefNotifier::PrefStoreType>(i)))
return true;
}
return false;
}
PrefNotifier::PrefStoreType PrefValueStore::ControllingPrefStoreForPref(
const char* name) {
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;
}
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) {
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);
}
|