blob: 2e34b50134180657f1dc8c4c489c72ea46c84d96 [file] [log] [blame]
[email protected]d3b05ea2012-01-24 22:57:051// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]277404c22010-04-22 13:09:452// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]03b9b4e2012-10-22 20:01:525#include "base/prefs/json_pref_store.h"
[email protected]277404c22010-04-22 13:09:456
7#include <algorithm>
8
[email protected]844a1002011-04-19 11:37:219#include "base/bind.h"
10#include "base/callback.h"
hashimoto6fe43612015-03-05 03:57:2411#include "base/command_line.h"
[email protected]ac771fb362014-07-16 06:04:4412#include "base/files/file_path.h"
[email protected]e3177dd52014-08-13 20:22:1413#include "base/files/file_util.h"
[email protected]ffbec692012-02-26 20:26:4214#include "base/json/json_file_value_serializer.h"
15#include "base/json/json_string_value_serializer.h"
[email protected]844a1002011-04-19 11:37:2116#include "base/memory/ref_counted.h"
[email protected]ac771fb362014-07-16 06:04:4417#include "base/metrics/histogram.h"
hashimoto6fe43612015-03-05 03:57:2418#include "base/prefs/base_prefs_switches.h"
[email protected]56cbcb3a2013-12-23 21:24:4619#include "base/prefs/pref_filter.h"
[email protected]fb441962013-05-08 05:35:2420#include "base/sequenced_task_runner.h"
[email protected]ac771fb362014-07-16 06:04:4421#include "base/strings/string_util.h"
[email protected]f2456592014-07-22 19:30:1722#include "base/task_runner_util.h"
[email protected]0de615a2012-11-08 04:40:5923#include "base/threading/sequenced_worker_pool.h"
[email protected]277404c22010-04-22 13:09:4524#include "base/values.h"
[email protected]277404c22010-04-22 13:09:4525
[email protected]f2456592014-07-22 19:30:1726// Result returned from internal read tasks.
27struct JsonPrefStore::ReadResult {
28 public:
29 ReadResult();
30 ~ReadResult();
31
32 scoped_ptr<base::Value> value;
33 PrefReadError error;
34 bool no_dir;
35
36 private:
37 DISALLOW_COPY_AND_ASSIGN(ReadResult);
38};
39
40JsonPrefStore::ReadResult::ReadResult()
41 : error(PersistentPrefStore::PREF_READ_ERROR_NONE), no_dir(false) {
42}
43
44JsonPrefStore::ReadResult::~ReadResult() {
45}
46
[email protected]277404c22010-04-22 13:09:4547namespace {
48
49// Some extensions we'll tack on to copies of the Preferences files.
[email protected]f2456592014-07-22 19:30:1750const base::FilePath::CharType kBadExtension[] = FILE_PATH_LITERAL("bad");
[email protected]277404c22010-04-22 13:09:4551
[email protected]f2456592014-07-22 19:30:1752PersistentPrefStore::PrefReadError HandleReadErrors(
[email protected]a43a667b2013-06-14 17:56:0853 const base::Value* value,
[email protected]023ad6ab2013-02-17 05:07:2354 const base::FilePath& path,
[email protected]844a1002011-04-19 11:37:2155 int error_code,
[email protected]f2456592014-07-22 19:30:1756 const std::string& error_msg) {
[email protected]844a1002011-04-19 11:37:2157 if (!value) {
[email protected]0de615a2012-11-08 04:40:5958 DVLOG(1) << "Error while loading JSON file: " << error_msg
59 << ", file: " << path.value();
[email protected]844a1002011-04-19 11:37:2160 switch (error_code) {
prashhir54a994502015-03-05 09:30:5761 case JSONFileValueDeserializer::JSON_ACCESS_DENIED:
[email protected]f2456592014-07-22 19:30:1762 return PersistentPrefStore::PREF_READ_ERROR_ACCESS_DENIED;
[email protected]844a1002011-04-19 11:37:2163 break;
prashhir54a994502015-03-05 09:30:5764 case JSONFileValueDeserializer::JSON_CANNOT_READ_FILE:
[email protected]f2456592014-07-22 19:30:1765 return PersistentPrefStore::PREF_READ_ERROR_FILE_OTHER;
[email protected]844a1002011-04-19 11:37:2166 break;
prashhir54a994502015-03-05 09:30:5767 case JSONFileValueDeserializer::JSON_FILE_LOCKED:
[email protected]f2456592014-07-22 19:30:1768 return PersistentPrefStore::PREF_READ_ERROR_FILE_LOCKED;
[email protected]844a1002011-04-19 11:37:2169 break;
prashhir54a994502015-03-05 09:30:5770 case JSONFileValueDeserializer::JSON_NO_SUCH_FILE:
[email protected]f2456592014-07-22 19:30:1771 return PersistentPrefStore::PREF_READ_ERROR_NO_FILE;
[email protected]844a1002011-04-19 11:37:2172 break;
73 default:
[email protected]844a1002011-04-19 11:37:2174 // JSON errors indicate file corruption of some sort.
75 // Since the file is corrupt, move it to the side and continue with
76 // empty preferences. This will result in them losing their settings.
77 // We keep the old file for possible support and debugging assistance
78 // as well as to detect if they're seeing these errors repeatedly.
79 // TODO(erikkay) Instead, use the last known good file.
[email protected]023ad6ab2013-02-17 05:07:2380 base::FilePath bad = path.ReplaceExtension(kBadExtension);
[email protected]844a1002011-04-19 11:37:2181
82 // If they've ever had a parse error before, put them in another bucket.
83 // TODO(erikkay) if we keep this error checking for very long, we may
84 // want to differentiate between recent and long ago errors.
[email protected]f2456592014-07-22 19:30:1785 bool bad_existed = base::PathExists(bad);
[email protected]5553d5b2013-07-01 23:07:3686 base::Move(path, bad);
[email protected]f2456592014-07-22 19:30:1787 return bad_existed ? PersistentPrefStore::PREF_READ_ERROR_JSON_REPEAT
88 : PersistentPrefStore::PREF_READ_ERROR_JSON_PARSE;
[email protected]844a1002011-04-19 11:37:2189 }
[email protected]a43a667b2013-06-14 17:56:0890 } else if (!value->IsType(base::Value::TYPE_DICTIONARY)) {
[email protected]f2456592014-07-22 19:30:1791 return PersistentPrefStore::PREF_READ_ERROR_JSON_TYPE;
[email protected]844a1002011-04-19 11:37:2192 }
[email protected]f2456592014-07-22 19:30:1793 return PersistentPrefStore::PREF_READ_ERROR_NONE;
94}
95
gabf16b59a2015-01-31 19:09:0296// Records a sample for |size| in the Settings.JsonDataReadSizeKilobytes
97// histogram suffixed with the base name of the JSON file under |path|.
98void RecordJsonDataSizeHistogram(const base::FilePath& path, size_t size) {
99 std::string spaceless_basename;
100 base::ReplaceChars(path.BaseName().MaybeAsASCII(), " ", "_",
101 &spaceless_basename);
102
103 // The histogram below is an expansion of the UMA_HISTOGRAM_CUSTOM_COUNTS
104 // macro adapted to allow for a dynamically suffixed histogram name.
105 // Note: The factory creates and owns the histogram.
106 base::HistogramBase* histogram = base::Histogram::FactoryGet(
107 "Settings.JsonDataReadSizeKilobytes." + spaceless_basename, 1, 10000, 50,
108 base::HistogramBase::kUmaTargetedHistogramFlag);
109 histogram->Add(static_cast<int>(size) / 1024);
110}
111
[email protected]f2456592014-07-22 19:30:17112scoped_ptr<JsonPrefStore::ReadResult> ReadPrefsFromDisk(
113 const base::FilePath& path,
114 const base::FilePath& alternate_path) {
115 if (!base::PathExists(path) && !alternate_path.empty() &&
116 base::PathExists(alternate_path)) {
117 base::Move(alternate_path, path);
118 }
119
120 int error_code;
121 std::string error_msg;
122 scoped_ptr<JsonPrefStore::ReadResult> read_result(
123 new JsonPrefStore::ReadResult);
prashhir54a994502015-03-05 09:30:57124 JSONFileValueDeserializer deserializer(path);
125 read_result->value.reset(deserializer.Deserialize(&error_code, &error_msg));
[email protected]f2456592014-07-22 19:30:17126 read_result->error =
127 HandleReadErrors(read_result->value.get(), path, error_code, error_msg);
128 read_result->no_dir = !base::PathExists(path.DirName());
gabf16b59a2015-01-31 19:09:02129
130 if (read_result->error == PersistentPrefStore::PREF_READ_ERROR_NONE)
prashhir54a994502015-03-05 09:30:57131 RecordJsonDataSizeHistogram(path, deserializer.get_last_read_size());
gabf16b59a2015-01-31 19:09:02132
[email protected]f2456592014-07-22 19:30:17133 return read_result.Pass();
[email protected]844a1002011-04-19 11:37:21134}
135
[email protected]277404c22010-04-22 13:09:45136} // namespace
137
[email protected]f2456592014-07-22 19:30:17138// static
[email protected]0de615a2012-11-08 04:40:59139scoped_refptr<base::SequencedTaskRunner> JsonPrefStore::GetTaskRunnerForFile(
[email protected]023ad6ab2013-02-17 05:07:23140 const base::FilePath& filename,
[email protected]0de615a2012-11-08 04:40:59141 base::SequencedWorkerPool* worker_pool) {
142 std::string token("json_pref_store-");
143 token.append(filename.AsUTF8Unsafe());
144 return worker_pool->GetSequencedTaskRunnerWithShutdownBehavior(
145 worker_pool->GetNamedSequenceToken(token),
146 base::SequencedWorkerPool::BLOCK_SHUTDOWN);
147}
148
dcheng077d1b22014-08-28 18:47:38149JsonPrefStore::JsonPrefStore(
150 const base::FilePath& filename,
151 const scoped_refptr<base::SequencedTaskRunner>& sequenced_task_runner,
152 scoped_ptr<PrefFilter> pref_filter)
[email protected]277404c22010-04-22 13:09:45153 : path_(filename),
[email protected]0de615a2012-11-08 04:40:59154 sequenced_task_runner_(sequenced_task_runner),
[email protected]a43a667b2013-06-14 17:56:08155 prefs_(new base::DictionaryValue()),
[email protected]277404c22010-04-22 13:09:45156 read_only_(false),
[email protected]0de615a2012-11-08 04:40:59157 writer_(filename, sequenced_task_runner),
[email protected]56cbcb3a2013-12-23 21:24:46158 pref_filter_(pref_filter.Pass()),
[email protected]59c10712012-03-13 02:10:34159 initialized_(false),
[email protected]e33c9512014-05-12 02:24:13160 filtering_in_progress_(false),
161 read_error_(PREF_READ_ERROR_NONE) {
bratell970f39d2015-01-07 16:40:58162 DCHECK(!path_.empty());
[email protected]e33c9512014-05-12 02:24:13163}
[email protected]277404c22010-04-22 13:09:45164
dcheng077d1b22014-08-28 18:47:38165JsonPrefStore::JsonPrefStore(
166 const base::FilePath& filename,
167 const base::FilePath& alternate_filename,
168 const scoped_refptr<base::SequencedTaskRunner>& sequenced_task_runner,
169 scoped_ptr<PrefFilter> pref_filter)
[email protected]cfcf0e52014-06-20 18:29:47170 : path_(filename),
171 alternate_path_(alternate_filename),
172 sequenced_task_runner_(sequenced_task_runner),
173 prefs_(new base::DictionaryValue()),
174 read_only_(false),
175 writer_(filename, sequenced_task_runner),
176 pref_filter_(pref_filter.Pass()),
177 initialized_(false),
178 filtering_in_progress_(false),
179 read_error_(PREF_READ_ERROR_NONE) {
bratell970f39d2015-01-07 16:40:58180 DCHECK(!path_.empty());
[email protected]cfcf0e52014-06-20 18:29:47181}
182
[email protected]892f1d62012-11-08 18:24:34183bool JsonPrefStore::GetValue(const std::string& key,
[email protected]a43a667b2013-06-14 17:56:08184 const base::Value** result) const {
[email protected]f2456592014-07-22 19:30:17185 DCHECK(CalledOnValidThread());
186
[email protected]a43a667b2013-06-14 17:56:08187 base::Value* tmp = NULL;
[email protected]892f1d62012-11-08 18:24:34188 if (!prefs_->Get(key, &tmp))
189 return false;
190
191 if (result)
192 *result = tmp;
193 return true;
[email protected]f2d1f612010-12-09 15:10:17194}
195
196void JsonPrefStore::AddObserver(PrefStore::Observer* observer) {
[email protected]f2456592014-07-22 19:30:17197 DCHECK(CalledOnValidThread());
198
[email protected]f2d1f612010-12-09 15:10:17199 observers_.AddObserver(observer);
200}
201
202void JsonPrefStore::RemoveObserver(PrefStore::Observer* observer) {
[email protected]f2456592014-07-22 19:30:17203 DCHECK(CalledOnValidThread());
204
[email protected]f2d1f612010-12-09 15:10:17205 observers_.RemoveObserver(observer);
206}
207
[email protected]14e0ec62013-08-26 22:01:39208bool JsonPrefStore::HasObservers() const {
[email protected]f2456592014-07-22 19:30:17209 DCHECK(CalledOnValidThread());
210
[email protected]14e0ec62013-08-26 22:01:39211 return observers_.might_have_observers();
[email protected]d3b05ea2012-01-24 22:57:05212}
213
[email protected]845b43a82011-05-11 10:14:43214bool JsonPrefStore::IsInitializationComplete() const {
[email protected]f2456592014-07-22 19:30:17215 DCHECK(CalledOnValidThread());
216
[email protected]845b43a82011-05-11 10:14:43217 return initialized_;
218}
219
[email protected]892f1d62012-11-08 18:24:34220bool JsonPrefStore::GetMutableValue(const std::string& key,
[email protected]a43a667b2013-06-14 17:56:08221 base::Value** result) {
[email protected]f2456592014-07-22 19:30:17222 DCHECK(CalledOnValidThread());
223
[email protected]892f1d62012-11-08 18:24:34224 return prefs_->Get(key, result);
[email protected]68bf41a2011-03-25 16:38:31225}
226
[email protected]a43a667b2013-06-14 17:56:08227void JsonPrefStore::SetValue(const std::string& key, base::Value* value) {
[email protected]f2456592014-07-22 19:30:17228 DCHECK(CalledOnValidThread());
229
[email protected]9b5f56b42011-08-24 21:17:59230 DCHECK(value);
[email protected]a43a667b2013-06-14 17:56:08231 scoped_ptr<base::Value> new_value(value);
232 base::Value* old_value = NULL;
[email protected]9b5f56b42011-08-24 21:17:59233 prefs_->Get(key, &old_value);
234 if (!old_value || !value->Equals(old_value)) {
235 prefs_->Set(key, new_value.release());
[email protected]25308672011-10-10 17:22:50236 ReportValueChanged(key);
[email protected]9b5f56b42011-08-24 21:17:59237 }
[email protected]f2d1f612010-12-09 15:10:17238}
239
[email protected]a43a667b2013-06-14 17:56:08240void JsonPrefStore::SetValueSilently(const std::string& key,
241 base::Value* value) {
[email protected]f2456592014-07-22 19:30:17242 DCHECK(CalledOnValidThread());
243
[email protected]9b5f56b42011-08-24 21:17:59244 DCHECK(value);
[email protected]a43a667b2013-06-14 17:56:08245 scoped_ptr<base::Value> new_value(value);
246 base::Value* old_value = NULL;
[email protected]9b5f56b42011-08-24 21:17:59247 prefs_->Get(key, &old_value);
[email protected]25308672011-10-10 17:22:50248 if (!old_value || !value->Equals(old_value)) {
[email protected]9b5f56b42011-08-24 21:17:59249 prefs_->Set(key, new_value.release());
[email protected]25308672011-10-10 17:22:50250 if (!read_only_)
251 writer_.ScheduleWrite(this);
252 }
[email protected]f2d1f612010-12-09 15:10:17253}
254
255void JsonPrefStore::RemoveValue(const std::string& key) {
[email protected]f2456592014-07-22 19:30:17256 DCHECK(CalledOnValidThread());
257
[email protected]aa3283392013-11-27 01:38:24258 if (prefs_->RemovePath(key, NULL))
[email protected]25308672011-10-10 17:22:50259 ReportValueChanged(key);
[email protected]f2d1f612010-12-09 15:10:17260}
261
[email protected]e33c9512014-05-12 02:24:13262void JsonPrefStore::RemoveValueSilently(const std::string& key) {
[email protected]f2456592014-07-22 19:30:17263 DCHECK(CalledOnValidThread());
264
[email protected]e33c9512014-05-12 02:24:13265 prefs_->RemovePath(key, NULL);
266 if (!read_only_)
267 writer_.ScheduleWrite(this);
268}
269
[email protected]ddb1e5a2010-12-13 20:10:45270bool JsonPrefStore::ReadOnly() const {
[email protected]f2456592014-07-22 19:30:17271 DCHECK(CalledOnValidThread());
272
[email protected]ddb1e5a2010-12-13 20:10:45273 return read_only_;
274}
275
[email protected]59c10712012-03-13 02:10:34276PersistentPrefStore::PrefReadError JsonPrefStore::GetReadError() const {
[email protected]f2456592014-07-22 19:30:17277 DCHECK(CalledOnValidThread());
278
[email protected]59c10712012-03-13 02:10:34279 return read_error_;
280}
281
[email protected]7b2720b2012-04-25 16:59:11282PersistentPrefStore::PrefReadError JsonPrefStore::ReadPrefs() {
[email protected]f2456592014-07-22 19:30:17283 DCHECK(CalledOnValidThread());
284
[email protected]f2456592014-07-22 19:30:17285 OnFileRead(ReadPrefsFromDisk(path_, alternate_path_));
286 return filtering_in_progress_ ? PREF_READ_ERROR_ASYNCHRONOUS_TASK_INCOMPLETE
287 : read_error_;
[email protected]7b2720b2012-04-25 16:59:11288}
289
[email protected]e33c9512014-05-12 02:24:13290void JsonPrefStore::ReadPrefsAsync(ReadErrorDelegate* error_delegate) {
[email protected]f2456592014-07-22 19:30:17291 DCHECK(CalledOnValidThread());
292
[email protected]7b2720b2012-04-25 16:59:11293 initialized_ = false;
294 error_delegate_.reset(error_delegate);
[email protected]7b2720b2012-04-25 16:59:11295
[email protected]3b268bc2014-07-28 17:43:15296 // Weakly binds the read task so that it doesn't kick in during shutdown.
[email protected]f2456592014-07-22 19:30:17297 base::PostTaskAndReplyWithResult(
dchengd81e7d72014-08-27 00:23:23298 sequenced_task_runner_.get(),
[email protected]f2456592014-07-22 19:30:17299 FROM_HERE,
300 base::Bind(&ReadPrefsFromDisk, path_, alternate_path_),
[email protected]3b268bc2014-07-28 17:43:15301 base::Bind(&JsonPrefStore::OnFileRead, AsWeakPtr()));
[email protected]7b2720b2012-04-25 16:59:11302}
303
304void JsonPrefStore::CommitPendingWrite() {
[email protected]f2456592014-07-22 19:30:17305 DCHECK(CalledOnValidThread());
306
[email protected]7b2720b2012-04-25 16:59:11307 if (writer_.HasPendingWrite() && !read_only_)
308 writer_.DoScheduledWrite();
309}
310
311void JsonPrefStore::ReportValueChanged(const std::string& key) {
[email protected]f2456592014-07-22 19:30:17312 DCHECK(CalledOnValidThread());
313
[email protected]a0ce7e72014-01-21 16:50:56314 if (pref_filter_)
315 pref_filter_->FilterUpdate(key);
[email protected]56cbcb3a2013-12-23 21:24:46316
[email protected]7b2720b2012-04-25 16:59:11317 FOR_EACH_OBSERVER(PrefStore::Observer, observers_, OnPrefValueChanged(key));
[email protected]56cbcb3a2013-12-23 21:24:46318
[email protected]7b2720b2012-04-25 16:59:11319 if (!read_only_)
320 writer_.ScheduleWrite(this);
321}
322
[email protected]e33c9512014-05-12 02:24:13323void JsonPrefStore::RegisterOnNextSuccessfulWriteCallback(
324 const base::Closure& on_next_successful_write) {
[email protected]f2456592014-07-22 19:30:17325 DCHECK(CalledOnValidThread());
326
[email protected]e33c9512014-05-12 02:24:13327 writer_.RegisterOnNextSuccessfulWriteCallback(on_next_successful_write);
328}
329
[email protected]f2456592014-07-22 19:30:17330void JsonPrefStore::OnFileRead(scoped_ptr<ReadResult> read_result) {
331 DCHECK(CalledOnValidThread());
332
333 DCHECK(read_result);
334
[email protected]e33c9512014-05-12 02:24:13335 scoped_ptr<base::DictionaryValue> unfiltered_prefs(new base::DictionaryValue);
336
[email protected]f2456592014-07-22 19:30:17337 read_error_ = read_result->error;
[email protected]845b43a82011-05-11 10:14:43338
[email protected]f2456592014-07-22 19:30:17339 bool initialization_successful = !read_result->no_dir;
[email protected]e33c9512014-05-12 02:24:13340
341 if (initialization_successful) {
342 switch (read_error_) {
343 case PREF_READ_ERROR_ACCESS_DENIED:
344 case PREF_READ_ERROR_FILE_OTHER:
345 case PREF_READ_ERROR_FILE_LOCKED:
346 case PREF_READ_ERROR_JSON_TYPE:
347 case PREF_READ_ERROR_FILE_NOT_SPECIFIED:
348 read_only_ = true;
349 break;
350 case PREF_READ_ERROR_NONE:
[email protected]f2456592014-07-22 19:30:17351 DCHECK(read_result->value.get());
[email protected]e33c9512014-05-12 02:24:13352 unfiltered_prefs.reset(
[email protected]f2456592014-07-22 19:30:17353 static_cast<base::DictionaryValue*>(read_result->value.release()));
[email protected]e33c9512014-05-12 02:24:13354 break;
355 case PREF_READ_ERROR_NO_FILE:
356 // If the file just doesn't exist, maybe this is first run. In any case
357 // there's no harm in writing out default prefs in this case.
358 break;
359 case PREF_READ_ERROR_JSON_PARSE:
360 case PREF_READ_ERROR_JSON_REPEAT:
361 break;
362 case PREF_READ_ERROR_ASYNCHRONOUS_TASK_INCOMPLETE:
363 // This is a special error code to be returned by ReadPrefs when it
364 // can't complete synchronously, it should never be returned by the read
365 // operation itself.
366 NOTREACHED();
367 break;
[email protected]3edebd952014-05-28 08:27:58368 case PREF_READ_ERROR_LEVELDB_IO:
369 case PREF_READ_ERROR_LEVELDB_CORRUPTION_READ_ONLY:
370 case PREF_READ_ERROR_LEVELDB_CORRUPTION:
371 // These are specific to LevelDBPrefStore.
372 NOTREACHED();
[email protected]e33c9512014-05-12 02:24:13373 case PREF_READ_ERROR_MAX_ENUM:
374 NOTREACHED();
375 break;
376 }
[email protected]845b43a82011-05-11 10:14:43377 }
378
[email protected]e33c9512014-05-12 02:24:13379 if (pref_filter_) {
380 filtering_in_progress_ = true;
381 const PrefFilter::PostFilterOnLoadCallback post_filter_on_load_callback(
382 base::Bind(
[email protected]3b268bc2014-07-28 17:43:15383 &JsonPrefStore::FinalizeFileRead, AsWeakPtr(),
384 initialization_successful));
[email protected]e33c9512014-05-12 02:24:13385 pref_filter_->FilterOnLoad(post_filter_on_load_callback,
386 unfiltered_prefs.Pass());
387 } else {
388 FinalizeFileRead(initialization_successful, unfiltered_prefs.Pass(), false);
[email protected]844a1002011-04-19 11:37:21389 }
[email protected]844a1002011-04-19 11:37:21390}
391
[email protected]7b2720b2012-04-25 16:59:11392JsonPrefStore::~JsonPrefStore() {
393 CommitPendingWrite();
[email protected]f89ee342011-03-07 09:28:27394}
395
[email protected]277404c22010-04-22 13:09:45396bool JsonPrefStore::SerializeData(std::string* output) {
[email protected]f2456592014-07-22 19:30:17397 DCHECK(CalledOnValidThread());
398
[email protected]bc831ff12014-01-31 20:48:33399 if (pref_filter_)
[email protected]a0ce7e72014-01-21 16:50:56400 pref_filter_->FilterSerializeData(prefs_.get());
401
[email protected]277404c22010-04-22 13:09:45402 JSONStringValueSerializer serializer(output);
hashimoto6fe43612015-03-05 03:57:24403 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
404 switches::kPrettyPrintPrefs)) {
405 serializer.set_pretty_print(true);
406 }
gabf16b59a2015-01-31 19:09:02407 return serializer.Serialize(*prefs_);
[email protected]277404c22010-04-22 13:09:45408}
[email protected]e33c9512014-05-12 02:24:13409
410void JsonPrefStore::FinalizeFileRead(bool initialization_successful,
411 scoped_ptr<base::DictionaryValue> prefs,
412 bool schedule_write) {
[email protected]f2456592014-07-22 19:30:17413 DCHECK(CalledOnValidThread());
414
[email protected]e33c9512014-05-12 02:24:13415 filtering_in_progress_ = false;
416
417 if (!initialization_successful) {
418 FOR_EACH_OBSERVER(PrefStore::Observer,
419 observers_,
420 OnInitializationCompleted(false));
421 return;
422 }
423
424 prefs_ = prefs.Pass();
425
426 initialized_ = true;
427
428 if (schedule_write && !read_only_)
429 writer_.ScheduleWrite(this);
430
431 if (error_delegate_ && read_error_ != PREF_READ_ERROR_NONE)
432 error_delegate_->OnError(read_error_);
433
434 FOR_EACH_OBSERVER(PrefStore::Observer,
435 observers_,
436 OnInitializationCompleted(true));
437
438 return;
439}