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
|
// Copyright (c) 2011 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/service/service_process_prefs.h"
#include "base/prefs/pref_filter.h"
#include "base/thread_task_runner_handle.h"
#include "base/values.h"
ServiceProcessPrefs::ServiceProcessPrefs(
const base::FilePath& pref_filename,
base::SequencedTaskRunner* task_runner)
: prefs_(new JsonPrefStore(pref_filename,
task_runner,
scoped_ptr<PrefFilter>())) {
}
ServiceProcessPrefs::~ServiceProcessPrefs() {}
void ServiceProcessPrefs::ReadPrefs() {
prefs_->ReadPrefs();
}
void ServiceProcessPrefs::WritePrefs() {
prefs_->CommitPendingWrite();
}
std::string ServiceProcessPrefs::GetString(
const std::string& key,
const std::string& default_value) const {
const base::Value* value;
std::string result;
if (!prefs_->GetValue(key, &value) || !value->GetAsString(&result))
return default_value;
return result;
}
void ServiceProcessPrefs::SetString(const std::string& key,
const std::string& value) {
prefs_->SetValue(key, make_scoped_ptr(new base::StringValue(value)),
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
}
bool ServiceProcessPrefs::GetBoolean(const std::string& key,
bool default_value) const {
const base::Value* value;
bool result = false;
if (!prefs_->GetValue(key, &value) || !value->GetAsBoolean(&result))
return default_value;
return result;
}
void ServiceProcessPrefs::SetBoolean(const std::string& key, bool value) {
prefs_->SetValue(key, make_scoped_ptr(new base::FundamentalValue(value)),
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
}
int ServiceProcessPrefs::GetInt(const std::string& key,
int default_value) const {
const base::Value* value;
int result = default_value;
if (!prefs_->GetValue(key, &value) || !value->GetAsInteger(&result))
return default_value;
return result;
}
void ServiceProcessPrefs::SetInt(const std::string& key, int value) {
prefs_->SetValue(key, make_scoped_ptr(new base::FundamentalValue(value)),
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
}
const base::DictionaryValue* ServiceProcessPrefs::GetDictionary(
const std::string& key) const {
const base::Value* value;
if (!prefs_->GetValue(key, &value) ||
!value->IsType(base::Value::TYPE_DICTIONARY)) {
return NULL;
}
return static_cast<const base::DictionaryValue*>(value);
}
const base::ListValue* ServiceProcessPrefs::GetList(
const std::string& key) const {
const base::Value* value;
if (!prefs_->GetValue(key, &value) || !value->IsType(base::Value::TYPE_LIST))
return NULL;
return static_cast<const base::ListValue*>(value);
}
void ServiceProcessPrefs::SetValue(const std::string& key,
scoped_ptr<base::Value> value) {
prefs_->SetValue(key, value.Pass(),
WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
}
void ServiceProcessPrefs::RemovePref(const std::string& key) {
prefs_->RemoveValue(key, WriteablePrefStore::DEFAULT_PREF_WRITE_FLAGS);
}
|