blob: 026fcf664b0510c884f08c4368b0aa52c2b229ef [file] [log] [blame]
erg@google.comd5fffd42011-01-08 03:06:45 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botf003cfe2008-08-24 09:55:55 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +09005// This file specifies a recursive data storage class called Value intended for
6// storing setting and other persistable data. It includes the ability to
7// specify (recursive) lists and dictionaries, so it's fairly expressive.
8// However, the API is optimized for the common case, namely storing a
9// hierarchical tree of simple values. Given a DictionaryValue root, you can
10// easily do things like:
initial.commit3f4a7322008-07-27 06:49:38 +090011//
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +090012// root->SetString("global.pages.homepage", "http://goateleporter.com");
13// std::string homepage = "http://google.com"; // default/fallback value
14// root->GetString("global.pages.homepage", &homepage);
initial.commit3f4a7322008-07-27 06:49:38 +090015//
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +090016// where "global" and "pages" are also DictionaryValues, and "homepage" is a
17// string setting. If some elements of the path didn't exist yet, the
18// SetString() method would create the missing elements and attach them to root
19// before attaching the homepage value.
initial.commit3f4a7322008-07-27 06:49:38 +090020
darin@chromium.org01f10702008-09-27 05:22:42 +090021#ifndef BASE_VALUES_H_
22#define BASE_VALUES_H_
thakis@chromium.org01d14522010-07-27 08:08:24 +090023#pragma once
initial.commit3f4a7322008-07-27 06:49:38 +090024
25#include <iterator>
26#include <map>
nsylvain@chromium.org12426672009-03-04 07:59:43 +090027#include <string>
initial.commit3f4a7322008-07-27 06:49:38 +090028#include <vector>
29
darin@chromium.orge585bed2011-08-06 00:34:00 +090030#include "base/base_export.h"
initial.commit3f4a7322008-07-27 06:49:38 +090031#include "base/basictypes.h"
tfarina@chromium.orgcc177402011-08-12 05:56:32 +090032#include "base/compiler_specific.h"
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +090033#include "base/string16.h"
initial.commit3f4a7322008-07-27 06:49:38 +090034
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +090035// This file declares "using base::Value", etc. at the bottom, so that
36// current code can use these classes without the base namespace. In
37// new code, please always use base::Value, etc. or add your own
38// "using" declaration.
39// http://crbug.com/88666
40namespace base {
41
initial.commit3f4a7322008-07-27 06:49:38 +090042class BinaryValue;
43class DictionaryValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090044class FundamentalValue;
initial.commit3f4a7322008-07-27 06:49:38 +090045class ListValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090046class StringValue;
47class Value;
initial.commit3f4a7322008-07-27 06:49:38 +090048
49typedef std::vector<Value*> ValueVector;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +090050typedef std::map<std::string, Value*> ValueMap;
initial.commit3f4a7322008-07-27 06:49:38 +090051
tfarina@chromium.org2e2a9022011-08-06 03:20:05 +090052// The Value class is the base class for Values. A Value can be instantiated
53// via the Create*Value() factory methods, or by directly creating instances of
54// the subclasses.
darin@chromium.orge585bed2011-08-06 00:34:00 +090055class BASE_EXPORT Value {
initial.commit3f4a7322008-07-27 06:49:38 +090056 public:
tfarina@chromium.org254780a2011-08-13 05:59:02 +090057 enum Type {
erg@google.comd5fffd42011-01-08 03:06:45 +090058 TYPE_NULL = 0,
59 TYPE_BOOLEAN,
60 TYPE_INTEGER,
arv@chromium.org13413eb2011-02-01 10:02:07 +090061 TYPE_DOUBLE,
erg@google.comd5fffd42011-01-08 03:06:45 +090062 TYPE_STRING,
63 TYPE_BINARY,
64 TYPE_DICTIONARY,
65 TYPE_LIST
66 };
67
initial.commit3f4a7322008-07-27 06:49:38 +090068 virtual ~Value();
69
70 // Convenience methods for creating Value objects for various
71 // kinds of values without thinking about which class implements them.
72 // These can always be expected to return a valid Value*.
73 static Value* CreateNullValue();
akalin@chromium.org810f92f2011-01-18 11:16:59 +090074 static FundamentalValue* CreateBooleanValue(bool in_value);
75 static FundamentalValue* CreateIntegerValue(int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +090076 static FundamentalValue* CreateDoubleValue(double in_value);
akalin@chromium.org810f92f2011-01-18 11:16:59 +090077 static StringValue* CreateStringValue(const std::string& in_value);
78 static StringValue* CreateStringValue(const string16& in_value);
initial.commit3f4a7322008-07-27 06:49:38 +090079
initial.commit3f4a7322008-07-27 06:49:38 +090080 // Returns the type of the value stored by the current Value object.
81 // Each type will be implemented by only one subclass of Value, so it's
tfarina@chromium.org254780a2011-08-13 05:59:02 +090082 // safe to use the Type to determine whether you can cast from
initial.commit3f4a7322008-07-27 06:49:38 +090083 // Value* to (Implementing Class)*. Also, a Value object never changes
84 // its type after construction.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090085 Type GetType() const { return type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090086
87 // Returns true if the current object represents a given type.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090088 bool IsType(Type type) const { return type == type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090089
90 // These methods allow the convenient retrieval of settings.
91 // If the current setting object can be converted into the given type,
skerner@chromium.org53f71f02010-04-09 04:06:15 +090092 // the value is returned through the |out_value| parameter and true is
93 // returned; otherwise, false is returned and |out_value| is unchanged.
initial.commit3f4a7322008-07-27 06:49:38 +090094 virtual bool GetAsBoolean(bool* out_value) const;
95 virtual bool GetAsInteger(int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +090096 virtual bool GetAsDouble(double* out_value) const;
scherkus@chromium.org2b923e72008-12-11 10:23:17 +090097 virtual bool GetAsString(std::string* out_value) const;
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +090098 virtual bool GetAsString(string16* out_value) const;
scottbyer@google.com673b8762010-12-07 09:35:29 +090099 virtual bool GetAsList(ListValue** out_value);
bauerb@chromium.org6878e502011-07-12 18:04:38 +0900100 virtual bool GetAsList(const ListValue** out_value) const;
battre@chromium.org29eaa252011-11-26 10:11:44 +0900101 virtual bool GetAsDictionary(DictionaryValue** out_value);
102 virtual bool GetAsDictionary(const DictionaryValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900103
104 // This creates a deep copy of the entire Value tree, and returns a pointer
105 // to the copy. The caller gets ownership of the copy, of course.
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900106 //
107 // Subclasses return their own type directly in their overrides;
108 // this works because C++ supports covariant return types.
initial.commit3f4a7322008-07-27 06:49:38 +0900109 virtual Value* DeepCopy() const;
110
111 // Compares if two Value objects have equal contents.
112 virtual bool Equals(const Value* other) const;
113
bauerb@chromium.orgfbd55e12010-12-07 03:13:43 +0900114 // Compares if two Value objects have equal contents. Can handle NULLs.
115 // NULLs are considered equal but different from Value::CreateNullValue().
116 static bool Equals(const Value* a, const Value* b);
117
initial.commit3f4a7322008-07-27 06:49:38 +0900118 protected:
119 // This isn't safe for end-users (they should use the Create*Value()
120 // static methods above), but it's useful for subclasses.
tfarina@chromium.org254780a2011-08-13 05:59:02 +0900121 explicit Value(Type type);
initial.commit3f4a7322008-07-27 06:49:38 +0900122
123 private:
sky@chromium.org8d103c72011-08-25 06:17:59 +0900124 Value();
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900125
sky@chromium.org8d103c72011-08-25 06:17:59 +0900126 Type type_;
sky@chromium.org142c71c2011-08-23 12:40:57 +0900127
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900128 DISALLOW_COPY_AND_ASSIGN(Value);
initial.commit3f4a7322008-07-27 06:49:38 +0900129};
130
131// FundamentalValue represents the simple fundamental types of values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900132class BASE_EXPORT FundamentalValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900133 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900134 explicit FundamentalValue(bool in_value);
135 explicit FundamentalValue(int in_value);
136 explicit FundamentalValue(double in_value);
erg@google.com2d9b43e2010-12-09 03:06:44 +0900137 virtual ~FundamentalValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900138
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900139 // Overridden from Value:
140 virtual bool GetAsBoolean(bool* out_value) const OVERRIDE;
141 virtual bool GetAsInteger(int* out_value) const OVERRIDE;
142 virtual bool GetAsDouble(double* out_value) const OVERRIDE;
143 virtual FundamentalValue* DeepCopy() const OVERRIDE;
144 virtual bool Equals(const Value* other) const OVERRIDE;
initial.commit3f4a7322008-07-27 06:49:38 +0900145
146 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900147 union {
148 bool boolean_value_;
149 int integer_value_;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900150 double double_value_;
initial.commit3f4a7322008-07-27 06:49:38 +0900151 };
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900152
153 DISALLOW_COPY_AND_ASSIGN(FundamentalValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900154};
155
darin@chromium.orge585bed2011-08-06 00:34:00 +0900156class BASE_EXPORT StringValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900157 public:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900158 // Initializes a StringValue with a UTF-8 narrow character string.
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900159 explicit StringValue(const std::string& in_value);
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900160
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +0900161 // Initializes a StringValue with a string16.
162 explicit StringValue(const string16& in_value);
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +0900163
erg@google.com2d9b43e2010-12-09 03:06:44 +0900164 virtual ~StringValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900165
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900166 // Overridden from Value:
167 virtual bool GetAsString(std::string* out_value) const OVERRIDE;
168 virtual bool GetAsString(string16* out_value) const OVERRIDE;
169 virtual StringValue* DeepCopy() const OVERRIDE;
170 virtual bool Equals(const Value* other) const OVERRIDE;
initial.commit3f4a7322008-07-27 06:49:38 +0900171
172 private:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900173 std::string value_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900174
175 DISALLOW_COPY_AND_ASSIGN(StringValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900176};
177
darin@chromium.orge585bed2011-08-06 00:34:00 +0900178class BASE_EXPORT BinaryValue: public Value {
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900179 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900180 virtual ~BinaryValue();
181
initial.commit3f4a7322008-07-27 06:49:38 +0900182 // Creates a Value to represent a binary buffer. The new object takes
183 // ownership of the pointer passed in, if successful.
184 // Returns NULL if buffer is NULL.
185 static BinaryValue* Create(char* buffer, size_t size);
186
187 // For situations where you want to keep ownership of your buffer, this
188 // factory method creates a new BinaryValue by copying the contents of the
189 // buffer that's passed in.
190 // Returns NULL if buffer is NULL.
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900191 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900192
initial.commit3f4a7322008-07-27 06:49:38 +0900193 size_t GetSize() const { return size_; }
194 char* GetBuffer() { return buffer_; }
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900195 const char* GetBuffer() const { return buffer_; }
initial.commit3f4a7322008-07-27 06:49:38 +0900196
erg@google.comd5fffd42011-01-08 03:06:45 +0900197 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900198 virtual BinaryValue* DeepCopy() const OVERRIDE;
199 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900200
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900201 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900202 // Constructor is private so that only objects with valid buffer pointers
203 // and size values can be created.
deanm@google.com522c3832008-08-04 22:56:25 +0900204 BinaryValue(char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900205
206 char* buffer_;
207 size_t size_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900208
209 DISALLOW_COPY_AND_ASSIGN(BinaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900210};
211
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +0900212// DictionaryValue provides a key-value dictionary with (optional) "path"
213// parsing for recursive access; see the comment at the top of the file. Keys
214// are |std::string|s and should be UTF-8 encoded.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900215class BASE_EXPORT DictionaryValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900216 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900217 DictionaryValue();
erg@google.com2d9b43e2010-12-09 03:06:44 +0900218 virtual ~DictionaryValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900219
battre@chromium.org29eaa252011-11-26 10:11:44 +0900220 // Overridden from Value:
221 virtual bool GetAsDictionary(DictionaryValue** out_value) OVERRIDE;
222 virtual bool GetAsDictionary(
223 const DictionaryValue** out_value) const OVERRIDE;
224
initial.commit3f4a7322008-07-27 06:49:38 +0900225 // Returns true if the current dictionary has a value for the given key.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900226 bool HasKey(const std::string& key) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900227
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900228 // Returns the number of Values in this dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900229 size_t size() const { return dictionary_.size(); }
230
231 // Returns whether the dictionary is empty.
232 bool empty() const { return dictionary_.empty(); }
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900233
initial.commit3f4a7322008-07-27 06:49:38 +0900234 // Clears any current contents of this dictionary.
deanm@google.com522c3832008-08-04 22:56:25 +0900235 void Clear();
initial.commit3f4a7322008-07-27 06:49:38 +0900236
237 // Sets the Value associated with the given path starting from this object.
238 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
239 // into the next DictionaryValue down. Obviously, "." can't be used
240 // within a key, but there are no other restrictions on keys.
241 // If the key at any step of the way doesn't exist, or exists but isn't
242 // a DictionaryValue, a new DictionaryValue will be created and attached
243 // to the path in that location.
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900244 // Note that the dictionary takes ownership of the value referenced by
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900245 // |in_value|, and therefore |in_value| must be non-NULL.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900246 void Set(const std::string& path, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900247
248 // Convenience forms of Set(). These methods will replace any existing
249 // value at that path, even if it has a different type.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900250 void SetBoolean(const std::string& path, bool in_value);
251 void SetInteger(const std::string& path, int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +0900252 void SetDouble(const std::string& path, double in_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900253 void SetString(const std::string& path, const std::string& in_value);
viettrungluu@chromium.orgb7b6aa02010-08-05 01:58:12 +0900254 void SetString(const std::string& path, const string16& in_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900255
256 // Like Set(), but without special treatment of '.'. This allows e.g. URLs to
257 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900258 void SetWithoutPathExpansion(const std::string& key, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900259
260 // Gets the Value associated with the given path starting from this object.
261 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
262 // into the next DictionaryValue down. If the path can be resolved
263 // successfully, the value for the last key in the path will be returned
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900264 // through the |out_value| parameter, and the function will return true.
265 // Otherwise, it will return false and |out_value| will be untouched.
initial.commit3f4a7322008-07-27 06:49:38 +0900266 // Note that the dictionary always owns the value that's returned.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900267 bool Get(const std::string& path, Value** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900268
269 // These are convenience forms of Get(). The value will be retrieved
270 // and the return value will be true if the path is valid and the value at
271 // the end of the path can be returned in the form specified.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900272 bool GetBoolean(const std::string& path, bool* out_value) const;
273 bool GetInteger(const std::string& path, int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900274 bool GetDouble(const std::string& path, double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900275 bool GetString(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900276 bool GetString(const std::string& path, string16* out_value) const;
evan@chromium.orgd9ab8de2010-02-19 22:32:16 +0900277 bool GetStringASCII(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900278 bool GetBinary(const std::string& path, BinaryValue** out_value) const;
279 bool GetDictionary(const std::string& path,
initial.commit3f4a7322008-07-27 06:49:38 +0900280 DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900281 bool GetList(const std::string& path, ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900282
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900283 // Like Get(), but without special treatment of '.'. This allows e.g. URLs to
284 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900285 bool GetWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900286 Value** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900287 bool GetIntegerWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900288 int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900289 bool GetDoubleWithoutPathExpansion(const std::string& key,
jam@chromium.org5bd53922010-10-01 16:28:25 +0900290 double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900291 bool GetStringWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900292 std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900293 bool GetStringWithoutPathExpansion(const std::string& key,
294 string16* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900295 bool GetDictionaryWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900296 DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900297 bool GetListWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900298 ListValue** out_value) const;
299
initial.commit3f4a7322008-07-27 06:49:38 +0900300 // Removes the Value with the specified path from this dictionary (or one
301 // of its child dictionaries, if the path is more than just a local key).
302 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
303 // passed out via out_value. If |out_value| is NULL, the removed value will
304 // be deleted. This method returns true if |path| is a valid path; otherwise
305 // it will return false and the DictionaryValue object will be unchanged.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900306 bool Remove(const std::string& path, Value** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900307
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900308 // Like Remove(), but without special treatment of '.'. This allows e.g. URLs
309 // to be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900310 bool RemoveWithoutPathExpansion(const std::string& key, Value** out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900311
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900312 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
313 // the copy. This never returns NULL, even if |this| itself is empty.
314 DictionaryValue* DeepCopyWithoutEmptyChildren();
315
mnissler@chromium.org17cee0e2010-05-14 22:17:40 +0900316 // Merge a given dictionary into this dictionary. This is done recursively,
317 // i.e. any subdictionaries will be merged as well. In case of key collisions,
318 // the passed in dictionary takes precedence and data already present will be
319 // replaced.
320 void MergeDictionary(const DictionaryValue* dictionary);
321
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900322 // Swaps contents with the |other| dictionary.
323 void Swap(DictionaryValue* other) {
324 dictionary_.swap(other->dictionary_);
325 }
326
initial.commit3f4a7322008-07-27 06:49:38 +0900327 // This class provides an iterator for the keys in the dictionary.
328 // It can't be used to modify the dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900329 //
330 // YOU SHOULD ALWAYS USE THE XXXWithoutPathExpansion() APIs WITH THESE, NOT
331 // THE NORMAL XXX() APIs. This makes sure things will work correctly if any
332 // keys have '.'s in them.
darin@chromium.org020e0b12011-04-30 03:08:21 +0900333 class key_iterator
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900334 : private std::iterator<std::input_iterator_tag, const std::string> {
jar@chromium.orgaf39a372009-02-18 07:50:14 +0900335 public:
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900336 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
erg@google.combf6ce9f2010-01-27 08:08:02 +0900337 key_iterator operator++() {
338 ++itr_;
339 return *this;
340 }
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900341 const std::string& operator*() { return itr_->first; }
initial.commit3f4a7322008-07-27 06:49:38 +0900342 bool operator!=(const key_iterator& other) { return itr_ != other.itr_; }
343 bool operator==(const key_iterator& other) { return itr_ == other.itr_; }
344
jar@chromium.orgaf39a372009-02-18 07:50:14 +0900345 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900346 ValueMap::const_iterator itr_;
347 };
348
349 key_iterator begin_keys() const { return key_iterator(dictionary_.begin()); }
350 key_iterator end_keys() const { return key_iterator(dictionary_.end()); }
351
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900352 // This class provides an iterator over both keys and values in the
353 // dictionary. It can't be used to modify the dictionary.
354 class Iterator {
355 public:
356 explicit Iterator(const DictionaryValue& target)
357 : target_(target), it_(target.dictionary_.begin()) {}
358
359 bool HasNext() const { return it_ != target_.dictionary_.end(); }
360 void Advance() { ++it_; }
361
362 const std::string& key() const { return it_->first; }
363 const Value& value() const { return *it_->second; }
364
365 private:
366 const DictionaryValue& target_;
367 ValueMap::const_iterator it_;
368 };
369
erg@google.comd5fffd42011-01-08 03:06:45 +0900370 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900371 virtual DictionaryValue* DeepCopy() const OVERRIDE;
372 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900373
initial.commit3f4a7322008-07-27 06:49:38 +0900374 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900375 ValueMap dictionary_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900376
377 DISALLOW_COPY_AND_ASSIGN(DictionaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900378};
379
380// This type of Value represents a list of other Value values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900381class BASE_EXPORT ListValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900382 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900383 typedef ValueVector::iterator iterator;
384 typedef ValueVector::const_iterator const_iterator;
385
erg@chromium.org493f5f62010-07-16 06:03:54 +0900386 ListValue();
hans@chromium.org78b75932011-05-25 18:08:19 +0900387 virtual ~ListValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900388
initial.commit3f4a7322008-07-27 06:49:38 +0900389 // Clears the contents of this ListValue
390 void Clear();
391
392 // Returns the number of Values in this list.
393 size_t GetSize() const { return list_.size(); }
394
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900395 // Returns whether the list is empty.
396 bool empty() const { return list_.empty(); }
397
initial.commit3f4a7322008-07-27 06:49:38 +0900398 // Sets the list item at the given index to be the Value specified by
399 // the value given. If the index beyond the current end of the list, null
400 // Values will be used to pad out the list.
401 // Returns true if successful, or false if the index was negative or
402 // the value is a null pointer.
403 bool Set(size_t index, Value* in_value);
404
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900405 // Gets the Value at the given index. Modifies |out_value| (and returns true)
initial.commit3f4a7322008-07-27 06:49:38 +0900406 // only if the index falls within the current list range.
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900407 // Note that the list always owns the Value passed out via |out_value|.
initial.commit3f4a7322008-07-27 06:49:38 +0900408 bool Get(size_t index, Value** out_value) const;
409
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900410 // Convenience forms of Get(). Modifies |out_value| (and returns true)
411 // only if the index is valid and the Value at that index can be returned
412 // in the specified form.
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900413 bool GetBoolean(size_t index, bool* out_value) const;
414 bool GetInteger(size_t index, int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900415 bool GetDouble(size_t index, double* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900416 bool GetString(size_t index, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900417 bool GetString(size_t index, string16* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900418 bool GetBinary(size_t index, BinaryValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900419 bool GetDictionary(size_t index, DictionaryValue** out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900420 bool GetList(size_t index, ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900421
422 // Removes the Value with the specified index from this list.
423 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
ericroman@google.com3d19ee52009-01-06 03:37:51 +0900424 // passed out via |out_value|. If |out_value| is NULL, the removed value will
initial.commit3f4a7322008-07-27 06:49:38 +0900425 // be deleted. This method returns true if |index| is valid; otherwise
426 // it will return false and the ListValue object will be unchanged.
427 bool Remove(size_t index, Value** out_value);
428
pkasting@chromium.orgdfe6a692009-12-01 04:59:11 +0900429 // Removes the first instance of |value| found in the list, if any, and
tfarina@chromium.org09cf4342011-08-14 02:34:31 +0900430 // deletes it. |index| is the location where |value| was found. Returns false
431 // if not found.
432 bool Remove(const Value& value, size_t* index);
pkasting@chromium.org727139c2009-05-09 09:33:04 +0900433
initial.commit3f4a7322008-07-27 06:49:38 +0900434 // Appends a Value to the end of the list.
435 void Append(Value* in_value);
436
markusheintz@chromium.org78621872011-03-18 22:56:38 +0900437 // Appends a Value if it's not already present. Takes ownership of the
438 // |in_value|. Returns true if successful, or false if the value was already
439 // present. If the value was already present the |in_value| is deleted.
zork@chromium.orgb5f742b2010-04-13 06:48:10 +0900440 bool AppendIfNotPresent(Value* in_value);
441
erikkay@chromium.org9034a232009-08-29 05:26:05 +0900442 // Insert a Value at index.
443 // Returns true if successful, or false if the index was out of range.
444 bool Insert(size_t index, Value* in_value);
445
pastarmovj@chromium.org1602a472011-09-20 00:23:10 +0900446 // Searches for the first instance of |value| in the list using the Equals
447 // method of the Value type.
448 // Returns a const_iterator to the found item or to end() if none exists.
449 const_iterator Find(const Value& value) const;
450
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900451 // Swaps contents with the |other| list.
452 void Swap(ListValue* other) {
453 list_.swap(other->list_);
454 }
455
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900456 // Iteration.
457 iterator begin() { return list_.begin(); }
458 iterator end() { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900459
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900460 const_iterator begin() const { return list_.begin(); }
461 const_iterator end() const { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900462
erg@google.comd5fffd42011-01-08 03:06:45 +0900463 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900464 virtual bool GetAsList(ListValue** out_value) OVERRIDE;
465 virtual bool GetAsList(const ListValue** out_value) const OVERRIDE;
466 virtual ListValue* DeepCopy() const OVERRIDE;
467 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900468
initial.commit3f4a7322008-07-27 06:49:38 +0900469 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900470 ValueVector list_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900471
472 DISALLOW_COPY_AND_ASSIGN(ListValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900473};
474
475// This interface is implemented by classes that know how to serialize and
476// deserialize Value objects.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900477class BASE_EXPORT ValueSerializer {
initial.commit3f4a7322008-07-27 06:49:38 +0900478 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900479 virtual ~ValueSerializer();
mmentovai@google.com4a5b6272008-08-07 00:46:59 +0900480
initial.commit3f4a7322008-07-27 06:49:38 +0900481 virtual bool Serialize(const Value& root) = 0;
482
483 // This method deserializes the subclass-specific format into a Value object.
aa@chromium.orgca9c79e2008-12-30 04:59:08 +0900484 // If the return value is non-NULL, the caller takes ownership of returned
erikkay@chromium.org64b2cf42010-04-07 00:42:39 +0900485 // Value. If the return value is NULL, and if error_code is non-NULL,
486 // error_code will be set with the underlying error.
487 // If |error_message| is non-null, it will be filled in with a formatted
488 // error message including the location of the error if appropriate.
489 virtual Value* Deserialize(int* error_code, std::string* error_str) = 0;
initial.commit3f4a7322008-07-27 06:49:38 +0900490};
491
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900492} // namespace base
493
494// http://crbug.com/88666
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900495using base::DictionaryValue;
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900496using base::ListValue;
497using base::StringValue;
498using base::Value;
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900499
darin@chromium.org01f10702008-09-27 05:22:42 +0900500#endif // BASE_VALUES_H_