1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/prefs/pref_value_map.h"
7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/stl_util.h"
10 #include "base/values.h"
12 PrefValueMap::PrefValueMap() {}
14 PrefValueMap::~PrefValueMap() {
18 bool PrefValueMap::GetValue(const std::string
& key
,
19 const base::Value
** value
) const {
20 const Map::const_iterator entry
= prefs_
.find(key
);
21 if (entry
!= prefs_
.end()) {
23 *value
= entry
->second
;
30 bool PrefValueMap::GetValue(const std::string
& key
, base::Value
** value
) {
31 const Map::const_iterator entry
= prefs_
.find(key
);
32 if (entry
!= prefs_
.end()) {
34 *value
= entry
->second
;
41 bool PrefValueMap::SetValue(const std::string
& key
, base::Value
* value
) {
43 scoped_ptr
<base::Value
> value_ptr(value
);
44 const Map::iterator entry
= prefs_
.find(key
);
45 if (entry
!= prefs_
.end()) {
46 if (base::Value::Equals(entry
->second
, value
))
49 entry
->second
= value_ptr
.release();
51 prefs_
[key
] = value_ptr
.release();
57 bool PrefValueMap::RemoveValue(const std::string
& key
) {
58 const Map::iterator entry
= prefs_
.find(key
);
59 if (entry
!= prefs_
.end()) {
68 void PrefValueMap::Clear() {
69 STLDeleteValues(&prefs_
);
73 void PrefValueMap::Swap(PrefValueMap
* other
) {
74 prefs_
.swap(other
->prefs_
);
77 PrefValueMap::iterator
PrefValueMap::begin() {
78 return prefs_
.begin();
81 PrefValueMap::iterator
PrefValueMap::end() {
85 PrefValueMap::const_iterator
PrefValueMap::begin() const {
86 return prefs_
.begin();
89 PrefValueMap::const_iterator
PrefValueMap::end() const {
93 bool PrefValueMap::GetBoolean(const std::string
& key
,
95 const base::Value
* stored_value
= NULL
;
96 return GetValue(key
, &stored_value
) && stored_value
->GetAsBoolean(value
);
99 void PrefValueMap::SetBoolean(const std::string
& key
, bool value
) {
100 SetValue(key
, new base::FundamentalValue(value
));
103 bool PrefValueMap::GetString(const std::string
& key
,
104 std::string
* value
) const {
105 const base::Value
* stored_value
= NULL
;
106 return GetValue(key
, &stored_value
) && stored_value
->GetAsString(value
);
109 void PrefValueMap::SetString(const std::string
& key
,
110 const std::string
& value
) {
111 SetValue(key
, new base::StringValue(value
));
114 bool PrefValueMap::GetInteger(const std::string
& key
, int* value
) const {
115 const base::Value
* stored_value
= NULL
;
116 return GetValue(key
, &stored_value
) && stored_value
->GetAsInteger(value
);
119 void PrefValueMap::SetInteger(const std::string
& key
, const int value
) {
120 SetValue(key
, new base::FundamentalValue(value
));
123 void PrefValueMap::SetDouble(const std::string
& key
, const double value
) {
124 SetValue(key
, new base::FundamentalValue(value
));
127 void PrefValueMap::GetDifferingKeys(
128 const PrefValueMap
* other
,
129 std::vector
<std::string
>* differing_keys
) const {
130 differing_keys
->clear();
132 // Walk over the maps in lockstep, adding everything that is different.
133 Map::const_iterator
this_pref(prefs_
.begin());
134 Map::const_iterator
other_pref(other
->prefs_
.begin());
135 while (this_pref
!= prefs_
.end() && other_pref
!= other
->prefs_
.end()) {
136 const int diff
= this_pref
->first
.compare(other_pref
->first
);
138 if (!this_pref
->second
->Equals(other_pref
->second
))
139 differing_keys
->push_back(this_pref
->first
);
142 } else if (diff
< 0) {
143 differing_keys
->push_back(this_pref
->first
);
145 } else if (diff
> 0) {
146 differing_keys
->push_back(other_pref
->first
);
151 // Add the remaining entries.
152 for ( ; this_pref
!= prefs_
.end(); ++this_pref
)
153 differing_keys
->push_back(this_pref
->first
);
154 for ( ; other_pref
!= other
->prefs_
.end(); ++other_pref
)
155 differing_keys
->push_back(other_pref
->first
);