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 #ifndef BASE_PREFS_JSON_PREF_STORE_H_ | 5 #ifndef BASE_PREFS_JSON_PREF_STORE_H_ |
6 #define BASE_PREFS_JSON_PREF_STORE_H_ | 6 #define BASE_PREFS_JSON_PREF_STORE_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback_forward.h" | |
12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
13 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
14 #include "base/files/important_file_writer.h" | 15 #include "base/files/important_file_writer.h" |
15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | |
16 #include "base/message_loop/message_loop_proxy.h" | 18 #include "base/message_loop/message_loop_proxy.h" |
17 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
18 #include "base/prefs/base_prefs_export.h" | 20 #include "base/prefs/base_prefs_export.h" |
19 #include "base/prefs/persistent_pref_store.h" | 21 #include "base/prefs/persistent_pref_store.h" |
20 | 22 |
21 class PrefFilter; | 23 class PrefFilter; |
22 | 24 |
23 namespace base { | 25 namespace base { |
24 class DictionaryValue; | 26 class DictionaryValue; |
25 class FilePath; | 27 class FilePath; |
26 class SequencedTaskRunner; | 28 class SequencedTaskRunner; |
27 class SequencedWorkerPool; | 29 class SequencedWorkerPool; |
28 class Value; | 30 class Value; |
29 } | 31 } |
30 | 32 |
31 | 33 |
32 // A writable PrefStore implementation that is used for user preferences. | 34 // A writable PrefStore implementation that is used for user preferences. |
33 class BASE_PREFS_EXPORT JsonPrefStore | 35 class BASE_PREFS_EXPORT JsonPrefStore |
34 : public PersistentPrefStore, | 36 : public PersistentPrefStore, |
35 public base::ImportantFileWriter::DataSerializer { | 37 public base::ImportantFileWriter::DataSerializer, |
38 public base::SupportsWeakPtr<JsonPrefStore> { | |
36 public: | 39 public: |
37 // Returns instance of SequencedTaskRunner which guarantees that file | 40 // Returns instance of SequencedTaskRunner which guarantees that file |
38 // operations on the same file will be executed in sequenced order. | 41 // operations on the same file will be executed in sequenced order. |
39 static scoped_refptr<base::SequencedTaskRunner> GetTaskRunnerForFile( | 42 static scoped_refptr<base::SequencedTaskRunner> GetTaskRunnerForFile( |
40 const base::FilePath& pref_filename, | 43 const base::FilePath& pref_filename, |
41 base::SequencedWorkerPool* worker_pool); | 44 base::SequencedWorkerPool* worker_pool); |
42 | 45 |
43 // |sequenced_task_runner| is must be a shutdown-blocking task runner, ideally | 46 // |sequenced_task_runner| is must be a shutdown-blocking task runner, ideally |
44 // created by GetTaskRunnerForFile() method above. | 47 // created by GetTaskRunnerForFile() method above. |
45 JsonPrefStore(const base::FilePath& pref_filename, | 48 JsonPrefStore(const base::FilePath& pref_filename, |
(...skipping 10 matching lines...) Expand all Loading... | |
56 | 59 |
57 // PersistentPrefStore overrides: | 60 // PersistentPrefStore overrides: |
58 virtual bool GetMutableValue(const std::string& key, | 61 virtual bool GetMutableValue(const std::string& key, |
59 base::Value** result) OVERRIDE; | 62 base::Value** result) OVERRIDE; |
60 virtual void SetValue(const std::string& key, base::Value* value) OVERRIDE; | 63 virtual void SetValue(const std::string& key, base::Value* value) OVERRIDE; |
61 virtual void SetValueSilently(const std::string& key, | 64 virtual void SetValueSilently(const std::string& key, |
62 base::Value* value) OVERRIDE; | 65 base::Value* value) OVERRIDE; |
63 virtual void RemoveValue(const std::string& key) OVERRIDE; | 66 virtual void RemoveValue(const std::string& key) OVERRIDE; |
64 virtual bool ReadOnly() const OVERRIDE; | 67 virtual bool ReadOnly() const OVERRIDE; |
65 virtual PrefReadError GetReadError() const OVERRIDE; | 68 virtual PrefReadError GetReadError() const OVERRIDE; |
69 // Note this method may be asynchronous if this instance has a |pref_filter_|. | |
70 // See details in pref_filter.h. | |
Bernhard Bauer
2014/05/06 12:47:00
Hmm... could we add a new PrefReadError value for
gab
2014/05/06 15:57:43
Done.
| |
66 virtual PrefReadError ReadPrefs() OVERRIDE; | 71 virtual PrefReadError ReadPrefs() OVERRIDE; |
67 virtual void ReadPrefsAsync(ReadErrorDelegate* error_delegate) OVERRIDE; | 72 virtual void ReadPrefsAsync(ReadErrorDelegate* error_delegate) OVERRIDE; |
68 virtual void CommitPendingWrite() OVERRIDE; | 73 virtual void CommitPendingWrite() OVERRIDE; |
69 virtual void ReportValueChanged(const std::string& key) OVERRIDE; | 74 virtual void ReportValueChanged(const std::string& key) OVERRIDE; |
70 | 75 |
71 // This method is called after JSON file has been read. Method takes | 76 // Just like RemoveValue(), but doesn't notify observers. Used when doing some |
72 // ownership of the |value| pointer. Note, this method is used with | 77 // cleanup that shouldn't otherwise alert observers. |
73 // asynchronous file reading, so class exposes it only for the internal needs. | 78 void RemoveValueSilently(const std::string& key); |
74 // (read: do not call it manually). | 79 |
75 void OnFileRead(base::Value* value_owned, PrefReadError error, bool no_dir); | 80 // Registers |on_next_successful_write| to be called once, on the next |
81 // successful write event of |writer_|. | |
82 void RegisterOnNextSuccessfulWriteCallback( | |
83 const base::Closure& on_next_successful_write); | |
84 | |
85 // This method is called after the JSON file has been read. It then hands | |
86 // |value| (or an empty dictionary in some read error cases) to the | |
87 // |pref_filter| if one is set. It also gives a callback pointing at | |
88 // FinalizeFileRead() to that |pref_filter_| which is then responsible for | |
89 // invoking it when done. If there is no |pref_filter_|, FinalizeFileRead() | |
90 // is invoked directly. | |
91 // Note, this method is used with asynchronous file reading, so this class | |
92 // exposes it only for the internal needs (read: do not call it manually). | |
93 // TODO(gab): Move this method to the private section and hand a callback to | |
94 // it to FileThreadDeserializer rather than exposing this public method and | |
95 // giving a JsonPrefStore* to FileThreadDeserializer. | |
96 void OnFileRead(scoped_ptr<base::Value> value, | |
97 PrefReadError error, | |
98 bool no_dir); | |
76 | 99 |
77 private: | 100 private: |
78 virtual ~JsonPrefStore(); | 101 virtual ~JsonPrefStore(); |
79 | 102 |
80 // ImportantFileWriter::DataSerializer overrides: | 103 // ImportantFileWriter::DataSerializer overrides: |
81 virtual bool SerializeData(std::string* output) OVERRIDE; | 104 virtual bool SerializeData(std::string* output) OVERRIDE; |
82 | 105 |
106 // This method is called after the JSON file has been read and the result has | |
107 // potentially been intercepted and modified by |pref_filter_|. | |
108 // |initialization_successful| is pre-determined by OnFileRead() and should | |
109 // be used when reporting OnInitializationCompleted(). | |
110 // |schedule_write| indicates whether a write should be immediately scheduled | |
111 // (typically because the |pref_filter_| has already altered the |prefs|) -- | |
112 // this will be ignored if this store is read-only. | |
113 void FinalizeFileRead(bool initialization_successful, | |
114 scoped_ptr<base::DictionaryValue> prefs, | |
115 bool schedule_write); | |
116 | |
83 base::FilePath path_; | 117 base::FilePath path_; |
84 const scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; | 118 const scoped_refptr<base::SequencedTaskRunner> sequenced_task_runner_; |
85 | 119 |
86 scoped_ptr<base::DictionaryValue> prefs_; | 120 scoped_ptr<base::DictionaryValue> prefs_; |
87 | 121 |
88 bool read_only_; | 122 bool read_only_; |
89 | 123 |
90 // Helper for safely writing pref data. | 124 // Helper for safely writing pref data. |
91 base::ImportantFileWriter writer_; | 125 base::ImportantFileWriter writer_; |
92 | 126 |
93 scoped_ptr<PrefFilter> pref_filter_; | 127 scoped_ptr<PrefFilter> pref_filter_; |
94 ObserverList<PrefStore::Observer, true> observers_; | 128 ObserverList<PrefStore::Observer, true> observers_; |
95 | 129 |
96 scoped_ptr<ReadErrorDelegate> error_delegate_; | 130 scoped_ptr<ReadErrorDelegate> error_delegate_; |
97 | 131 |
98 bool initialized_; | 132 bool initialized_; |
99 PrefReadError read_error_; | 133 PrefReadError read_error_; |
100 | 134 |
101 std::set<std::string> keys_need_empty_value_; | 135 std::set<std::string> keys_need_empty_value_; |
102 | 136 |
103 DISALLOW_COPY_AND_ASSIGN(JsonPrefStore); | 137 DISALLOW_COPY_AND_ASSIGN(JsonPrefStore); |
104 }; | 138 }; |
105 | 139 |
106 #endif // BASE_PREFS_JSON_PREF_STORE_H_ | 140 #endif // BASE_PREFS_JSON_PREF_STORE_H_ |
OLD | NEW |