blob: d5e631310319f2476b5fe80eabeb96ec9b88a0da [file] [log] [blame]
jhawkins@chromium.orgcbb22392012-05-10 06:54:27 +09001// Copyright (c) 2012 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
brettw@chromium.org10374832013-07-17 17:43:33 +09006// storing settings and other persistable data.
initial.commit3f4a7322008-07-27 06:49:38 +09007//
brettw@chromium.org10374832013-07-17 17:43:33 +09008// A Value represents something that can be stored in JSON or passed to/from
9// JavaScript. As such, it is NOT a generalized variant type, since only the
10// types supported by JavaScript/JSON are supported.
initial.commit3f4a7322008-07-27 06:49:38 +090011//
brettw@chromium.org10374832013-07-17 17:43:33 +090012// IN PARTICULAR this means that there is no support for int64 or unsigned
13// numbers. Writing JSON with such types would violate the spec. If you need
14// something like this, either use a double or make a string value containing
15// the number you want.
initial.commit3f4a7322008-07-27 06:49:38 +090016
darin@chromium.org01f10702008-09-27 05:22:42 +090017#ifndef BASE_VALUES_H_
18#define BASE_VALUES_H_
initial.commit3f4a7322008-07-27 06:49:38 +090019
mostynb@opera.comf29dd612013-09-04 08:29:12 +090020#include <stddef.h>
21
22#include <iosfwd>
initial.commit3f4a7322008-07-27 06:49:38 +090023#include <map>
nsylvain@chromium.org12426672009-03-04 07:59:43 +090024#include <string>
mostynb@opera.comf29dd612013-09-04 08:29:12 +090025#include <utility>
initial.commit3f4a7322008-07-27 06:49:38 +090026#include <vector>
27
darin@chromium.orge585bed2011-08-06 00:34:00 +090028#include "base/base_export.h"
initial.commit3f4a7322008-07-27 06:49:38 +090029#include "base/basictypes.h"
tfarina@chromium.orgcc177402011-08-12 05:56:32 +090030#include "base/compiler_specific.h"
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +090031#include "base/memory/scoped_ptr.h"
avi@chromium.org68a745c2013-06-11 05:11:14 +090032#include "base/strings/string16.h"
initial.commit3f4a7322008-07-27 06:49:38 +090033
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +090034namespace base {
35
initial.commit3f4a7322008-07-27 06:49:38 +090036class DictionaryValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090037class FundamentalValue;
initial.commit3f4a7322008-07-27 06:49:38 +090038class ListValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090039class StringValue;
40class Value;
initial.commit3f4a7322008-07-27 06:49:38 +090041
42typedef std::vector<Value*> ValueVector;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +090043typedef std::map<std::string, Value*> ValueMap;
initial.commit3f4a7322008-07-27 06:49:38 +090044
tfarina@chromium.org2e2a9022011-08-06 03:20:05 +090045// The Value class is the base class for Values. A Value can be instantiated
46// via the Create*Value() factory methods, or by directly creating instances of
47// the subclasses.
brettw@chromium.org10374832013-07-17 17:43:33 +090048//
49// See the file-level comment above for more information.
darin@chromium.orge585bed2011-08-06 00:34:00 +090050class BASE_EXPORT Value {
initial.commit3f4a7322008-07-27 06:49:38 +090051 public:
tfarina@chromium.org254780a2011-08-13 05:59:02 +090052 enum Type {
erg@google.comd5fffd42011-01-08 03:06:45 +090053 TYPE_NULL = 0,
54 TYPE_BOOLEAN,
55 TYPE_INTEGER,
arv@chromium.org13413eb2011-02-01 10:02:07 +090056 TYPE_DOUBLE,
erg@google.comd5fffd42011-01-08 03:06:45 +090057 TYPE_STRING,
58 TYPE_BINARY,
59 TYPE_DICTIONARY,
60 TYPE_LIST
brettw@chromium.org10374832013-07-17 17:43:33 +090061 // Note: Do not add more types. See the file-level comment above for why.
erg@google.comd5fffd42011-01-08 03:06:45 +090062 };
63
initial.commit3f4a7322008-07-27 06:49:38 +090064 virtual ~Value();
65
initial.commit3f4a7322008-07-27 06:49:38 +090066 static Value* CreateNullValue();
initial.commit3f4a7322008-07-27 06:49:38 +090067
initial.commit3f4a7322008-07-27 06:49:38 +090068 // Returns the type of the value stored by the current Value object.
69 // Each type will be implemented by only one subclass of Value, so it's
tfarina@chromium.org254780a2011-08-13 05:59:02 +090070 // safe to use the Type to determine whether you can cast from
initial.commit3f4a7322008-07-27 06:49:38 +090071 // Value* to (Implementing Class)*. Also, a Value object never changes
72 // its type after construction.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090073 Type GetType() const { return type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090074
75 // Returns true if the current object represents a given type.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090076 bool IsType(Type type) const { return type == type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090077
brettw@chromium.org10374832013-07-17 17:43:33 +090078 // These methods allow the convenient retrieval of the contents of the Value.
79 // If the current object can be converted into the given type, the value is
80 // returned through the |out_value| parameter and true is returned;
81 // otherwise, false is returned and |out_value| is unchanged.
initial.commit3f4a7322008-07-27 06:49:38 +090082 virtual bool GetAsBoolean(bool* out_value) const;
83 virtual bool GetAsInteger(int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +090084 virtual bool GetAsDouble(double* out_value) const;
scherkus@chromium.org2b923e72008-12-11 10:23:17 +090085 virtual bool GetAsString(std::string* out_value) const;
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +090086 virtual bool GetAsString(string16* out_value) const;
estade@chromium.org0fd309d2014-02-06 05:42:06 +090087 virtual bool GetAsString(const StringValue** out_value) const;
scottbyer@google.com673b8762010-12-07 09:35:29 +090088 virtual bool GetAsList(ListValue** out_value);
bauerb@chromium.org6878e502011-07-12 18:04:38 +090089 virtual bool GetAsList(const ListValue** out_value) const;
battre@chromium.org29eaa252011-11-26 10:11:44 +090090 virtual bool GetAsDictionary(DictionaryValue** out_value);
91 virtual bool GetAsDictionary(const DictionaryValue** out_value) const;
brettw@chromium.org10374832013-07-17 17:43:33 +090092 // Note: Do not add more types. See the file-level comment above for why.
initial.commit3f4a7322008-07-27 06:49:38 +090093
94 // This creates a deep copy of the entire Value tree, and returns a pointer
95 // to the copy. The caller gets ownership of the copy, of course.
akalin@chromium.org810f92f2011-01-18 11:16:59 +090096 //
97 // Subclasses return their own type directly in their overrides;
98 // this works because C++ supports covariant return types.
initial.commit3f4a7322008-07-27 06:49:38 +090099 virtual Value* DeepCopy() const;
100
101 // Compares if two Value objects have equal contents.
102 virtual bool Equals(const Value* other) const;
103
bauerb@chromium.orgfbd55e12010-12-07 03:13:43 +0900104 // Compares if two Value objects have equal contents. Can handle NULLs.
105 // NULLs are considered equal but different from Value::CreateNullValue().
106 static bool Equals(const Value* a, const Value* b);
107
initial.commit3f4a7322008-07-27 06:49:38 +0900108 protected:
estade@chromium.orge2d2b722012-11-21 05:37:55 +0900109 // These aren't safe for end-users, but they are useful for subclasses.
tfarina@chromium.org254780a2011-08-13 05:59:02 +0900110 explicit Value(Type type);
estade@chromium.orge2d2b722012-11-21 05:37:55 +0900111 Value(const Value& that);
112 Value& operator=(const Value& that);
initial.commit3f4a7322008-07-27 06:49:38 +0900113
114 private:
sky@chromium.org8d103c72011-08-25 06:17:59 +0900115 Type type_;
initial.commit3f4a7322008-07-27 06:49:38 +0900116};
117
118// FundamentalValue represents the simple fundamental types of values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900119class BASE_EXPORT FundamentalValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900120 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900121 explicit FundamentalValue(bool in_value);
122 explicit FundamentalValue(int in_value);
123 explicit FundamentalValue(double in_value);
erg@google.com2d9b43e2010-12-09 03:06:44 +0900124 virtual ~FundamentalValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900125
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900126 // Overridden from Value:
127 virtual bool GetAsBoolean(bool* out_value) const OVERRIDE;
128 virtual bool GetAsInteger(int* out_value) const OVERRIDE;
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900129 // Values of both type TYPE_INTEGER and TYPE_DOUBLE can be obtained as
130 // doubles.
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900131 virtual bool GetAsDouble(double* out_value) const OVERRIDE;
132 virtual FundamentalValue* DeepCopy() const OVERRIDE;
133 virtual bool Equals(const Value* other) const OVERRIDE;
initial.commit3f4a7322008-07-27 06:49:38 +0900134
135 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900136 union {
137 bool boolean_value_;
138 int integer_value_;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900139 double double_value_;
initial.commit3f4a7322008-07-27 06:49:38 +0900140 };
141};
142
darin@chromium.orge585bed2011-08-06 00:34:00 +0900143class BASE_EXPORT StringValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900144 public:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900145 // Initializes a StringValue with a UTF-8 narrow character string.
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900146 explicit StringValue(const std::string& in_value);
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900147
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +0900148 // Initializes a StringValue with a string16.
149 explicit StringValue(const string16& in_value);
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +0900150
erg@google.com2d9b43e2010-12-09 03:06:44 +0900151 virtual ~StringValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900152
estade@chromium.org0fd309d2014-02-06 05:42:06 +0900153 // Returns |value_| as a pointer or reference.
154 std::string* GetString();
155 const std::string& GetString() const;
156
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900157 // Overridden from Value:
158 virtual bool GetAsString(std::string* out_value) const OVERRIDE;
159 virtual bool GetAsString(string16* out_value) const OVERRIDE;
estade@chromium.org0fd309d2014-02-06 05:42:06 +0900160 virtual bool GetAsString(const StringValue** out_value) const OVERRIDE;
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900161 virtual StringValue* DeepCopy() const OVERRIDE;
162 virtual bool Equals(const Value* other) const OVERRIDE;
initial.commit3f4a7322008-07-27 06:49:38 +0900163
164 private:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900165 std::string value_;
initial.commit3f4a7322008-07-27 06:49:38 +0900166};
167
darin@chromium.orge585bed2011-08-06 00:34:00 +0900168class BASE_EXPORT BinaryValue: public Value {
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900169 public:
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900170 // Creates a BinaryValue with a null buffer and size of 0.
171 BinaryValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900172
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900173 // Creates a BinaryValue, taking ownership of the bytes pointed to by
174 // |buffer|.
175 BinaryValue(scoped_ptr<char[]> buffer, size_t size);
176
177 virtual ~BinaryValue();
jhawkins@chromium.org592520e2012-05-20 11:34:57 +0900178
initial.commit3f4a7322008-07-27 06:49:38 +0900179 // For situations where you want to keep ownership of your buffer, this
180 // factory method creates a new BinaryValue by copying the contents of the
181 // buffer that's passed in.
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900182 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900183
initial.commit3f4a7322008-07-27 06:49:38 +0900184 size_t GetSize() const { return size_; }
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900185
186 // May return NULL.
187 char* GetBuffer() { return buffer_.get(); }
188 const char* GetBuffer() const { return buffer_.get(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900189
erg@google.comd5fffd42011-01-08 03:06:45 +0900190 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900191 virtual BinaryValue* DeepCopy() const OVERRIDE;
192 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900193
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900194 private:
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900195 scoped_ptr<char[]> buffer_;
initial.commit3f4a7322008-07-27 06:49:38 +0900196 size_t size_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900197
198 DISALLOW_COPY_AND_ASSIGN(BinaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900199};
200
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +0900201// DictionaryValue provides a key-value dictionary with (optional) "path"
202// parsing for recursive access; see the comment at the top of the file. Keys
203// are |std::string|s and should be UTF-8 encoded.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900204class BASE_EXPORT DictionaryValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900205 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900206 DictionaryValue();
erg@google.com2d9b43e2010-12-09 03:06:44 +0900207 virtual ~DictionaryValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900208
battre@chromium.org29eaa252011-11-26 10:11:44 +0900209 // Overridden from Value:
210 virtual bool GetAsDictionary(DictionaryValue** out_value) OVERRIDE;
211 virtual bool GetAsDictionary(
212 const DictionaryValue** out_value) const OVERRIDE;
213
initial.commit3f4a7322008-07-27 06:49:38 +0900214 // Returns true if the current dictionary has a value for the given key.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900215 bool HasKey(const std::string& key) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900216
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900217 // Returns the number of Values in this dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900218 size_t size() const { return dictionary_.size(); }
219
220 // Returns whether the dictionary is empty.
221 bool empty() const { return dictionary_.empty(); }
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900222
initial.commit3f4a7322008-07-27 06:49:38 +0900223 // Clears any current contents of this dictionary.
deanm@google.com522c3832008-08-04 22:56:25 +0900224 void Clear();
initial.commit3f4a7322008-07-27 06:49:38 +0900225
226 // Sets the Value associated with the given path starting from this object.
227 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
228 // into the next DictionaryValue down. Obviously, "." can't be used
229 // within a key, but there are no other restrictions on keys.
230 // If the key at any step of the way doesn't exist, or exists but isn't
231 // a DictionaryValue, a new DictionaryValue will be created and attached
232 // to the path in that location.
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900233 // Note that the dictionary takes ownership of the value referenced by
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900234 // |in_value|, and therefore |in_value| must be non-NULL.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900235 void Set(const std::string& path, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900236
237 // Convenience forms of Set(). These methods will replace any existing
238 // value at that path, even if it has a different type.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900239 void SetBoolean(const std::string& path, bool in_value);
240 void SetInteger(const std::string& path, int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +0900241 void SetDouble(const std::string& path, double in_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900242 void SetString(const std::string& path, const std::string& in_value);
viettrungluu@chromium.orgb7b6aa02010-08-05 01:58:12 +0900243 void SetString(const std::string& path, const string16& in_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900244
245 // Like Set(), but without special treatment of '.'. This allows e.g. URLs to
246 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900247 void SetWithoutPathExpansion(const std::string& key, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900248
kalman@chromium.org5081d8e2012-09-14 11:14:01 +0900249 // Convenience forms of SetWithoutPathExpansion().
250 void SetBooleanWithoutPathExpansion(const std::string& path, bool in_value);
251 void SetIntegerWithoutPathExpansion(const std::string& path, int in_value);
252 void SetDoubleWithoutPathExpansion(const std::string& path, double in_value);
253 void SetStringWithoutPathExpansion(const std::string& path,
254 const std::string& in_value);
255 void SetStringWithoutPathExpansion(const std::string& path,
256 const string16& in_value);
257
initial.commit3f4a7322008-07-27 06:49:38 +0900258 // Gets the Value associated with the given path starting from this object.
259 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
260 // into the next DictionaryValue down. If the path can be resolved
261 // successfully, the value for the last key in the path will be returned
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900262 // through the |out_value| parameter, and the function will return true.
263 // Otherwise, it will return false and |out_value| will be untouched.
initial.commit3f4a7322008-07-27 06:49:38 +0900264 // Note that the dictionary always owns the value that's returned.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900265 // |out_value| is optional and will only be set if non-NULL.
vabr@chromium.org74562432012-07-28 07:27:11 +0900266 bool Get(const std::string& path, const Value** out_value) const;
267 bool Get(const std::string& path, Value** out_value);
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.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900272 // |out_value| is optional and will only be set if non-NULL.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900273 bool GetBoolean(const std::string& path, bool* out_value) const;
274 bool GetInteger(const std::string& path, int* out_value) const;
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900275 // Values of both type TYPE_INTEGER and TYPE_DOUBLE can be obtained as
276 // doubles.
arv@chromium.org13413eb2011-02-01 10:02:07 +0900277 bool GetDouble(const std::string& path, double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900278 bool GetString(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900279 bool GetString(const std::string& path, string16* out_value) const;
evan@chromium.orgd9ab8de2010-02-19 22:32:16 +0900280 bool GetStringASCII(const std::string& path, std::string* out_value) const;
vabr@chromium.org74562432012-07-28 07:27:11 +0900281 bool GetBinary(const std::string& path, const BinaryValue** out_value) const;
282 bool GetBinary(const std::string& path, BinaryValue** out_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900283 bool GetDictionary(const std::string& path,
vabr@chromium.org74562432012-07-28 07:27:11 +0900284 const DictionaryValue** out_value) const;
285 bool GetDictionary(const std::string& path, DictionaryValue** out_value);
286 bool GetList(const std::string& path, const ListValue** out_value) const;
287 bool GetList(const std::string& path, ListValue** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900288
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900289 // Like Get(), but without special treatment of '.'. This allows e.g. URLs to
290 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900291 bool GetWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900292 const Value** out_value) const;
293 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
pneubeck@chromium.org3b600542012-11-07 01:46:55 +0900294 bool GetBooleanWithoutPathExpansion(const std::string& key,
295 bool* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900296 bool GetIntegerWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900297 int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900298 bool GetDoubleWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900299 double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900300 bool GetStringWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900301 std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900302 bool GetStringWithoutPathExpansion(const std::string& key,
303 string16* out_value) const;
vabr@chromium.org74562432012-07-28 07:27:11 +0900304 bool GetDictionaryWithoutPathExpansion(
305 const std::string& key,
306 const DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900307 bool GetDictionaryWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900308 DictionaryValue** out_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900309 bool GetListWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900310 const ListValue** out_value) const;
311 bool GetListWithoutPathExpansion(const std::string& key,
312 ListValue** out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900313
initial.commit3f4a7322008-07-27 06:49:38 +0900314 // Removes the Value with the specified path from this dictionary (or one
315 // of its child dictionaries, if the path is more than just a local key).
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900316 // If |out_value| is non-NULL, the removed Value will be passed out via
317 // |out_value|. If |out_value| is NULL, the removed value will be deleted.
318 // This method returns true if |path| is a valid path; otherwise it will
319 // return false and the DictionaryValue object will be unchanged.
320 virtual bool Remove(const std::string& path, scoped_ptr<Value>* out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900321
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900322 // Like Remove(), but without special treatment of '.'. This allows e.g. URLs
323 // to be used as paths.
rsesek@chromium.orgc2d2b202012-05-17 00:23:30 +0900324 virtual bool RemoveWithoutPathExpansion(const std::string& key,
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900325 scoped_ptr<Value>* out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900326
gab@chromium.org903d5c92013-11-27 10:38:24 +0900327 // Removes a path, clearing out all dictionaries on |path| that remain empty
328 // after removing the value at |path|.
329 virtual bool RemovePath(const std::string& path,
330 scoped_ptr<Value>* out_value);
331
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900332 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
333 // the copy. This never returns NULL, even if |this| itself is empty.
battre@chromium.org5b758232013-09-11 21:05:56 +0900334 DictionaryValue* DeepCopyWithoutEmptyChildren() const;
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900335
jhawkins@chromium.orgcbb22392012-05-10 06:54:27 +0900336 // Merge |dictionary| into this dictionary. This is done recursively, i.e. any
337 // sub-dictionaries will be merged as well. In case of key collisions, the
338 // passed in dictionary takes precedence and data already present will be
339 // replaced. Values within |dictionary| are deep-copied, so |dictionary| may
340 // be freed any time after this call.
mnissler@chromium.org17cee0e2010-05-14 22:17:40 +0900341 void MergeDictionary(const DictionaryValue* dictionary);
342
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900343 // Swaps contents with the |other| dictionary.
rsesek@chromium.orgc2d2b202012-05-17 00:23:30 +0900344 virtual void Swap(DictionaryValue* other);
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900345
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900346 // This class provides an iterator over both keys and values in the
347 // dictionary. It can't be used to modify the dictionary.
hans@chromium.orgd5d38e32012-08-10 21:45:35 +0900348 class BASE_EXPORT Iterator {
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900349 public:
hans@chromium.orgd5d38e32012-08-10 21:45:35 +0900350 explicit Iterator(const DictionaryValue& target);
phajdan.jr@chromium.org8e2b2082013-12-11 03:52:22 +0900351 ~Iterator();
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900352
pneubeck@chromium.orga2fbefc2013-01-18 23:43:27 +0900353 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900354 void Advance() { ++it_; }
355
356 const std::string& key() const { return it_->first; }
357 const Value& value() const { return *it_->second; }
358
359 private:
360 const DictionaryValue& target_;
361 ValueMap::const_iterator it_;
362 };
363
erg@google.comd5fffd42011-01-08 03:06:45 +0900364 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900365 virtual DictionaryValue* DeepCopy() const OVERRIDE;
366 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900367
initial.commit3f4a7322008-07-27 06:49:38 +0900368 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900369 ValueMap dictionary_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900370
371 DISALLOW_COPY_AND_ASSIGN(DictionaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900372};
373
374// This type of Value represents a list of other Value values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900375class BASE_EXPORT ListValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900376 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900377 typedef ValueVector::iterator iterator;
378 typedef ValueVector::const_iterator const_iterator;
379
erg@chromium.org493f5f62010-07-16 06:03:54 +0900380 ListValue();
hans@chromium.org78b75932011-05-25 18:08:19 +0900381 virtual ~ListValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900382
initial.commit3f4a7322008-07-27 06:49:38 +0900383 // Clears the contents of this ListValue
384 void Clear();
385
386 // Returns the number of Values in this list.
387 size_t GetSize() const { return list_.size(); }
388
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900389 // Returns whether the list is empty.
390 bool empty() const { return list_.empty(); }
391
initial.commit3f4a7322008-07-27 06:49:38 +0900392 // Sets the list item at the given index to be the Value specified by
393 // the value given. If the index beyond the current end of the list, null
394 // Values will be used to pad out the list.
395 // Returns true if successful, or false if the index was negative or
396 // the value is a null pointer.
397 bool Set(size_t index, Value* in_value);
398
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900399 // Gets the Value at the given index. Modifies |out_value| (and returns true)
initial.commit3f4a7322008-07-27 06:49:38 +0900400 // only if the index falls within the current list range.
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900401 // Note that the list always owns the Value passed out via |out_value|.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900402 // |out_value| is optional and will only be set if non-NULL.
vabr@chromium.orga8ca4fd2012-08-03 17:43:37 +0900403 bool Get(size_t index, const Value** out_value) const;
404 bool Get(size_t index, Value** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900405
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900406 // Convenience forms of Get(). Modifies |out_value| (and returns true)
407 // only if the index is valid and the Value at that index can be returned
408 // in the specified form.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900409 // |out_value| is optional and will only be set if non-NULL.
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900410 bool GetBoolean(size_t index, bool* out_value) const;
411 bool GetInteger(size_t index, int* out_value) const;
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900412 // Values of both type TYPE_INTEGER and TYPE_DOUBLE can be obtained as
413 // doubles.
arv@chromium.org13413eb2011-02-01 10:02:07 +0900414 bool GetDouble(size_t index, double* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900415 bool GetString(size_t index, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900416 bool GetString(size_t index, string16* out_value) const;
vabr@chromium.orga8ca4fd2012-08-03 17:43:37 +0900417 bool GetBinary(size_t index, const BinaryValue** out_value) const;
418 bool GetBinary(size_t index, BinaryValue** out_value);
419 bool GetDictionary(size_t index, const DictionaryValue** out_value) const;
420 bool GetDictionary(size_t index, DictionaryValue** out_value);
421 bool GetList(size_t index, const ListValue** out_value) const;
422 bool GetList(size_t index, ListValue** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900423
424 // Removes the Value with the specified index from this list.
425 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
ericroman@google.com3d19ee52009-01-06 03:37:51 +0900426 // passed out via |out_value|. If |out_value| is NULL, the removed value will
initial.commit3f4a7322008-07-27 06:49:38 +0900427 // be deleted. This method returns true if |index| is valid; otherwise
428 // it will return false and the ListValue object will be unchanged.
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900429 virtual bool Remove(size_t index, scoped_ptr<Value>* out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900430
pkasting@chromium.orgdfe6a692009-12-01 04:59:11 +0900431 // Removes the first instance of |value| found in the list, if any, and
tfarina@chromium.org09cf4342011-08-14 02:34:31 +0900432 // deletes it. |index| is the location where |value| was found. Returns false
433 // if not found.
434 bool Remove(const Value& value, size_t* index);
pkasting@chromium.org727139c2009-05-09 09:33:04 +0900435
estade@chromium.org52852d52012-07-03 11:51:43 +0900436 // Removes the element at |iter|. If |out_value| is NULL, the value will be
437 // deleted, otherwise ownership of the value is passed back to the caller.
dubroy@chromium.orgaf2a3962013-02-19 01:31:45 +0900438 // Returns an iterator pointing to the location of the element that
439 // followed the erased element.
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900440 iterator Erase(iterator iter, scoped_ptr<Value>* out_value);
estade@chromium.org52852d52012-07-03 11:51:43 +0900441
initial.commit3f4a7322008-07-27 06:49:38 +0900442 // Appends a Value to the end of the list.
443 void Append(Value* in_value);
444
kalman@chromium.org5081d8e2012-09-14 11:14:01 +0900445 // Convenience forms of Append.
446 void AppendBoolean(bool in_value);
447 void AppendInteger(int in_value);
448 void AppendDouble(double in_value);
449 void AppendString(const std::string& in_value);
450 void AppendString(const string16& in_value);
451 void AppendStrings(const std::vector<std::string>& in_values);
452 void AppendStrings(const std::vector<string16>& in_values);
453
markusheintz@chromium.org78621872011-03-18 22:56:38 +0900454 // Appends a Value if it's not already present. Takes ownership of the
455 // |in_value|. Returns true if successful, or false if the value was already
456 // present. If the value was already present the |in_value| is deleted.
zork@chromium.orgb5f742b2010-04-13 06:48:10 +0900457 bool AppendIfNotPresent(Value* in_value);
458
erikkay@chromium.org9034a232009-08-29 05:26:05 +0900459 // Insert a Value at index.
460 // Returns true if successful, or false if the index was out of range.
461 bool Insert(size_t index, Value* in_value);
462
pastarmovj@chromium.org1602a472011-09-20 00:23:10 +0900463 // Searches for the first instance of |value| in the list using the Equals
464 // method of the Value type.
465 // Returns a const_iterator to the found item or to end() if none exists.
466 const_iterator Find(const Value& value) const;
467
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900468 // Swaps contents with the |other| list.
rsesek@chromium.orgc2d2b202012-05-17 00:23:30 +0900469 virtual void Swap(ListValue* other);
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900470
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900471 // Iteration.
472 iterator begin() { return list_.begin(); }
473 iterator end() { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900474
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900475 const_iterator begin() const { return list_.begin(); }
476 const_iterator end() const { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900477
erg@google.comd5fffd42011-01-08 03:06:45 +0900478 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900479 virtual bool GetAsList(ListValue** out_value) OVERRIDE;
480 virtual bool GetAsList(const ListValue** out_value) const OVERRIDE;
481 virtual ListValue* DeepCopy() const OVERRIDE;
482 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900483
initial.commit3f4a7322008-07-27 06:49:38 +0900484 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900485 ValueVector list_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900486
487 DISALLOW_COPY_AND_ASSIGN(ListValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900488};
489
490// This interface is implemented by classes that know how to serialize and
491// deserialize Value objects.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900492class BASE_EXPORT ValueSerializer {
initial.commit3f4a7322008-07-27 06:49:38 +0900493 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900494 virtual ~ValueSerializer();
mmentovai@google.com4a5b6272008-08-07 00:46:59 +0900495
initial.commit3f4a7322008-07-27 06:49:38 +0900496 virtual bool Serialize(const Value& root) = 0;
497
498 // This method deserializes the subclass-specific format into a Value object.
aa@chromium.orgca9c79e2008-12-30 04:59:08 +0900499 // If the return value is non-NULL, the caller takes ownership of returned
erikkay@chromium.org64b2cf42010-04-07 00:42:39 +0900500 // Value. If the return value is NULL, and if error_code is non-NULL,
501 // error_code will be set with the underlying error.
502 // If |error_message| is non-null, it will be filled in with a formatted
503 // error message including the location of the error if appropriate.
504 virtual Value* Deserialize(int* error_code, std::string* error_str) = 0;
initial.commit3f4a7322008-07-27 06:49:38 +0900505};
506
pneubeck@google.com6671d3f2013-04-16 18:04:02 +0900507// Stream operator so Values can be used in assertion statements. In order that
508// gtest uses this operator to print readable output on test failures, we must
509// override each specific type. Otherwise, the default template implementation
510// is preferred over an upcast.
kalman@chromium.org829cf752012-09-12 12:39:35 +0900511BASE_EXPORT std::ostream& operator<<(std::ostream& out, const Value& value);
512
pneubeck@google.com6671d3f2013-04-16 18:04:02 +0900513BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
514 const FundamentalValue& value) {
515 return out << static_cast<const Value&>(value);
516}
517
518BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
519 const StringValue& value) {
520 return out << static_cast<const Value&>(value);
521}
522
523BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
524 const DictionaryValue& value) {
525 return out << static_cast<const Value&>(value);
526}
527
528BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
529 const ListValue& value) {
530 return out << static_cast<const Value&>(value);
531}
532
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900533} // namespace base
534
darin@chromium.org01f10702008-09-27 05:22:42 +0900535#endif // BASE_VALUES_H_