Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Side by Side Diff: chrome/common/json_pref_store.cc

Issue 5646003: Sanitize PrefStore interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, fix up unit tests. Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/common/json_pref_store.h" 5 #include "chrome/common/json_pref_store.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/values.h" 10 #include "base/values.h"
(...skipping 12 matching lines...) Expand all
23 prefs_(new DictionaryValue()), 23 prefs_(new DictionaryValue()),
24 read_only_(false), 24 read_only_(false),
25 writer_(filename, file_message_loop_proxy) { 25 writer_(filename, file_message_loop_proxy) {
26 } 26 }
27 27
28 JsonPrefStore::~JsonPrefStore() { 28 JsonPrefStore::~JsonPrefStore() {
29 if (writer_.HasPendingWrite() && !read_only_) 29 if (writer_.HasPendingWrite() && !read_only_)
30 writer_.DoScheduledWrite(); 30 writer_.DoScheduledWrite();
31 } 31 }
32 32
33 PrefStore::PrefReadError JsonPrefStore::ReadPrefs() { 33 PrefStore::ReadResult JsonPrefStore::GetValue(const std::string& key,
34 Value** result) const {
35 return prefs_->Get(key, result) ? READ_OK : READ_NO_VALUE;
36 }
37
38 void JsonPrefStore::SetValue(const std::string& key, Value* value) {
39 DCHECK(value);
40 scoped_ptr<Value> new_value(value);
41 Value* old_value = NULL;
42 prefs_->Get(key, &old_value);
43 if (!old_value || !value->Equals(old_value)) {
44 prefs_->Set(key, new_value.release());
45 FOR_EACH_OBSERVER(PrefStore::ObserverInterface, observers_,
46 OnPrefValueChanged(key));
47 }
48 }
49
50 void JsonPrefStore::SetValueSilently(const std::string& key, Value* value) {
51 DCHECK(value);
52 scoped_ptr<Value> new_value(value);
53 Value* old_value = NULL;
54 prefs_->Get(key, &old_value);
55 if (!old_value || !value->Equals(old_value))
56 prefs_->Set(key, new_value.release());
57 }
58
59 void JsonPrefStore::RemoveValue(const std::string& key) {
60 if (prefs_->Remove(key, NULL)) {
61 FOR_EACH_OBSERVER(PrefStore::ObserverInterface, observers_,
62 OnPrefValueChanged(key));
63 }
64 }
65
66 PersistentPrefStore::PrefReadError JsonPrefStore::ReadPrefs() {
34 if (path_.empty()) { 67 if (path_.empty()) {
35 read_only_ = true; 68 read_only_ = true;
36 return PREF_READ_ERROR_FILE_NOT_SPECIFIED; 69 return PREF_READ_ERROR_FILE_NOT_SPECIFIED;
37 } 70 }
38 JSONFileValueSerializer serializer(path_); 71 JSONFileValueSerializer serializer(path_);
39 72
40 int error_code = 0; 73 int error_code = 0;
41 std::string error_msg; 74 std::string error_msg;
42 scoped_ptr<Value> value(serializer.Deserialize(&error_code, &error_msg)); 75 scoped_ptr<Value> value(serializer.Deserialize(&error_code, &error_msg));
43 if (!value.get()) { 76 if (!value.get()) {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 157 }
125 158
126 bool JsonPrefStore::SerializeData(std::string* output) { 159 bool JsonPrefStore::SerializeData(std::string* output) {
127 // TODO(tc): Do we want to prune webkit preferences that match the default 160 // TODO(tc): Do we want to prune webkit preferences that match the default
128 // value? 161 // value?
129 JSONStringValueSerializer serializer(output); 162 JSONStringValueSerializer serializer(output);
130 serializer.set_pretty_print(true); 163 serializer.set_pretty_print(true);
131 scoped_ptr<DictionaryValue> copy(prefs_->DeepCopyWithoutEmptyChildren()); 164 scoped_ptr<DictionaryValue> copy(prefs_->DeepCopyWithoutEmptyChildren());
132 return serializer.Serialize(*(copy.get())); 165 return serializer.Serialize(*(copy.get()));
133 } 166 }
167
168 void JsonPrefStore::AddObserver(PrefStore::ObserverInterface* observer) {
169 observers_.AddObserver(observer);
170 }
171
172 void JsonPrefStore::RemoveObserver(PrefStore::ObserverInterface* observer) {
173 observers_.RemoveObserver(observer);
174 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698