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 RLZ_CHROMEOS_LIB_RLZ_VALUE_STORE_CHROMEOS_H_ | 5 #ifndef RLZ_CHROMEOS_LIB_RLZ_VALUE_STORE_CHROMEOS_H_ |
6 #define RLZ_CHROMEOS_LIB_RLZ_VALUE_STORE_CHROMEOS_H_ | 6 #define RLZ_CHROMEOS_LIB_RLZ_VALUE_STORE_CHROMEOS_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/threading/non_thread_safe.h" | 9 #include "base/threading/non_thread_safe.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 // An implementation of RlzValueStore for ChromeOS. | 21 // An implementation of RlzValueStore for ChromeOS. |
22 class RlzValueStoreChromeOS : public RlzValueStore, | 22 class RlzValueStoreChromeOS : public RlzValueStore, |
23 public base::NonThreadSafe { | 23 public base::NonThreadSafe { |
24 public: | 24 public: |
25 // // Sets the task runner that will be used by ImportantFileWriter for write | 25 // // Sets the task runner that will be used by ImportantFileWriter for write |
26 // // operations. | 26 // // operations. |
27 // static void SetFileTaskRunner(base::SequencedTaskRunner* file_task_runner); | 27 // static void SetFileTaskRunner(base::SequencedTaskRunner* file_task_runner); |
28 | 28 |
29 // Creates new instance and synchronously reads data from file. | 29 // Creates new instance and synchronously reads data from file. |
30 RlzValueStoreChromeOS(const base::FilePath& store_path); | 30 RlzValueStoreChromeOS(const base::FilePath& store_path); |
31 virtual ~RlzValueStoreChromeOS(); | 31 ~RlzValueStoreChromeOS() override; |
32 | 32 |
33 // RlzValueStore overrides: | 33 // RlzValueStore overrides: |
34 virtual bool HasAccess(AccessType type) override; | 34 bool HasAccess(AccessType type) override; |
35 | 35 |
36 virtual bool WritePingTime(Product product, int64 time) override; | 36 bool WritePingTime(Product product, int64 time) override; |
37 virtual bool ReadPingTime(Product product, int64* time) override; | 37 bool ReadPingTime(Product product, int64* time) override; |
38 virtual bool ClearPingTime(Product product) override; | 38 bool ClearPingTime(Product product) override; |
39 | 39 |
40 virtual bool WriteAccessPointRlz(AccessPoint access_point, | 40 bool WriteAccessPointRlz(AccessPoint access_point, |
41 const char* new_rlz) override; | 41 const char* new_rlz) override; |
42 virtual bool ReadAccessPointRlz(AccessPoint access_point, | 42 bool ReadAccessPointRlz(AccessPoint access_point, |
43 char* rlz, | 43 char* rlz, |
44 size_t rlz_size) override; | 44 size_t rlz_size) override; |
45 virtual bool ClearAccessPointRlz(AccessPoint access_point) override; | 45 bool ClearAccessPointRlz(AccessPoint access_point) override; |
46 | 46 |
47 virtual bool AddProductEvent(Product product, const char* event_rlz) override; | 47 bool AddProductEvent(Product product, const char* event_rlz) override; |
48 virtual bool ReadProductEvents(Product product, | 48 bool ReadProductEvents(Product product, |
49 std::vector<std::string>* events) override; | 49 std::vector<std::string>* events) override; |
50 virtual bool ClearProductEvent(Product product, | 50 bool ClearProductEvent(Product product, const char* event_rlz) override; |
51 const char* event_rlz) override; | 51 bool ClearAllProductEvents(Product product) override; |
52 virtual bool ClearAllProductEvents(Product product) override; | |
53 | 52 |
54 virtual bool AddStatefulEvent(Product product, | 53 bool AddStatefulEvent(Product product, const char* event_rlz) override; |
55 const char* event_rlz) override; | 54 bool IsStatefulEvent(Product product, const char* event_rlz) override; |
56 virtual bool IsStatefulEvent(Product product, | 55 bool ClearAllStatefulEvents(Product product) override; |
57 const char* event_rlz) override; | |
58 virtual bool ClearAllStatefulEvents(Product product) override; | |
59 | 56 |
60 virtual void CollectGarbage() override; | 57 void CollectGarbage() override; |
61 | 58 |
62 private: | 59 private: |
63 // Reads RLZ store from file. | 60 // Reads RLZ store from file. |
64 void ReadStore(); | 61 void ReadStore(); |
65 | 62 |
66 // Writes RLZ store back to file. | 63 // Writes RLZ store back to file. |
67 void WriteStore(); | 64 void WriteStore(); |
68 | 65 |
69 // Adds |value| to list at |list_name| path in JSON store. | 66 // Adds |value| to list at |list_name| path in JSON store. |
70 bool AddValueToList(std::string list_name, base::Value* value); | 67 bool AddValueToList(std::string list_name, base::Value* value); |
71 // Removes |value| from list at |list_name| path in JSON store. | 68 // Removes |value| from list at |list_name| path in JSON store. |
72 bool RemoveValueFromList(std::string list_name, const base::Value& value); | 69 bool RemoveValueFromList(std::string list_name, const base::Value& value); |
73 | 70 |
74 // In-memory store with RLZ data. | 71 // In-memory store with RLZ data. |
75 scoped_ptr<base::DictionaryValue> rlz_store_; | 72 scoped_ptr<base::DictionaryValue> rlz_store_; |
76 | 73 |
77 base::FilePath store_path_; | 74 base::FilePath store_path_; |
78 | 75 |
79 bool read_only_; | 76 bool read_only_; |
80 | 77 |
81 DISALLOW_COPY_AND_ASSIGN(RlzValueStoreChromeOS); | 78 DISALLOW_COPY_AND_ASSIGN(RlzValueStoreChromeOS); |
82 }; | 79 }; |
83 | 80 |
84 } // namespace rlz_lib | 81 } // namespace rlz_lib |
85 | 82 |
86 #endif // RLZ_CHROMEOS_LIB_RLZ_VALUE_STORE_CHROMEOS_H_ | 83 #endif // RLZ_CHROMEOS_LIB_RLZ_VALUE_STORE_CHROMEOS_H_ |
OLD | NEW |