blob: 56be542d7477b8c02d725aa7690e1b82dacc70d3 [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"
asvitkine22632bf2015-06-24 03:22:52 +090033#include "base/strings/string_piece.h"
initial.commit3f4a7322008-07-27 06:49:38 +090034
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +090035namespace base {
36
pneubeckb57f3f52015-01-20 20:26:36 +090037class BinaryValue;
initial.commit3f4a7322008-07-27 06:49:38 +090038class DictionaryValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090039class FundamentalValue;
initial.commit3f4a7322008-07-27 06:49:38 +090040class ListValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090041class StringValue;
42class Value;
initial.commit3f4a7322008-07-27 06:49:38 +090043
44typedef std::vector<Value*> ValueVector;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +090045typedef std::map<std::string, Value*> ValueMap;
initial.commit3f4a7322008-07-27 06:49:38 +090046
tfarina@chromium.org2e2a9022011-08-06 03:20:05 +090047// The Value class is the base class for Values. A Value can be instantiated
48// via the Create*Value() factory methods, or by directly creating instances of
49// the subclasses.
brettw@chromium.org10374832013-07-17 17:43:33 +090050//
51// See the file-level comment above for more information.
darin@chromium.orge585bed2011-08-06 00:34:00 +090052class BASE_EXPORT Value {
initial.commit3f4a7322008-07-27 06:49:38 +090053 public:
tfarina@chromium.org254780a2011-08-13 05:59:02 +090054 enum Type {
erg@google.comd5fffd42011-01-08 03:06:45 +090055 TYPE_NULL = 0,
56 TYPE_BOOLEAN,
57 TYPE_INTEGER,
arv@chromium.org13413eb2011-02-01 10:02:07 +090058 TYPE_DOUBLE,
erg@google.comd5fffd42011-01-08 03:06:45 +090059 TYPE_STRING,
60 TYPE_BINARY,
61 TYPE_DICTIONARY,
62 TYPE_LIST
brettw@chromium.org10374832013-07-17 17:43:33 +090063 // Note: Do not add more types. See the file-level comment above for why.
erg@google.comd5fffd42011-01-08 03:06:45 +090064 };
65
initial.commit3f4a7322008-07-27 06:49:38 +090066 virtual ~Value();
67
estade033e61e2015-05-13 03:11:50 +090068 static scoped_ptr<Value> CreateNullValue();
initial.commit3f4a7322008-07-27 06:49:38 +090069
initial.commit3f4a7322008-07-27 06:49:38 +090070 // Returns the type of the value stored by the current Value object.
71 // Each type will be implemented by only one subclass of Value, so it's
tfarina@chromium.org254780a2011-08-13 05:59:02 +090072 // safe to use the Type to determine whether you can cast from
initial.commit3f4a7322008-07-27 06:49:38 +090073 // Value* to (Implementing Class)*. Also, a Value object never changes
74 // its type after construction.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090075 Type GetType() const { return type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090076
77 // Returns true if the current object represents a given type.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090078 bool IsType(Type type) const { return type == type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090079
brettw@chromium.org10374832013-07-17 17:43:33 +090080 // These methods allow the convenient retrieval of the contents of the Value.
81 // If the current object can be converted into the given type, the value is
82 // returned through the |out_value| parameter and true is returned;
83 // otherwise, false is returned and |out_value| is unchanged.
initial.commit3f4a7322008-07-27 06:49:38 +090084 virtual bool GetAsBoolean(bool* out_value) const;
85 virtual bool GetAsInteger(int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +090086 virtual bool GetAsDouble(double* out_value) const;
scherkus@chromium.org2b923e72008-12-11 10:23:17 +090087 virtual bool GetAsString(std::string* out_value) const;
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +090088 virtual bool GetAsString(string16* out_value) const;
estade@chromium.org0fd309d2014-02-06 05:42:06 +090089 virtual bool GetAsString(const StringValue** out_value) const;
pneubeckb57f3f52015-01-20 20:26:36 +090090 virtual bool GetAsBinary(const BinaryValue** out_value) const;
scottbyer@google.com673b8762010-12-07 09:35:29 +090091 virtual bool GetAsList(ListValue** out_value);
bauerb@chromium.org6878e502011-07-12 18:04:38 +090092 virtual bool GetAsList(const ListValue** out_value) const;
battre@chromium.org29eaa252011-11-26 10:11:44 +090093 virtual bool GetAsDictionary(DictionaryValue** out_value);
94 virtual bool GetAsDictionary(const DictionaryValue** out_value) const;
brettw@chromium.org10374832013-07-17 17:43:33 +090095 // Note: Do not add more types. See the file-level comment above for why.
initial.commit3f4a7322008-07-27 06:49:38 +090096
97 // This creates a deep copy of the entire Value tree, and returns a pointer
98 // to the copy. The caller gets ownership of the copy, of course.
akalin@chromium.org810f92f2011-01-18 11:16:59 +090099 //
100 // Subclasses return their own type directly in their overrides;
101 // this works because C++ supports covariant return types.
initial.commit3f4a7322008-07-27 06:49:38 +0900102 virtual Value* DeepCopy() const;
estade77a018f2015-05-07 10:53:08 +0900103 // Preferred version of DeepCopy. TODO(estade): remove the above.
104 scoped_ptr<Value> CreateDeepCopy() const;
initial.commit3f4a7322008-07-27 06:49:38 +0900105
106 // Compares if two Value objects have equal contents.
107 virtual bool Equals(const Value* other) const;
108
bauerb@chromium.orgfbd55e12010-12-07 03:13:43 +0900109 // Compares if two Value objects have equal contents. Can handle NULLs.
110 // NULLs are considered equal but different from Value::CreateNullValue().
111 static bool Equals(const Value* a, const Value* b);
112
initial.commit3f4a7322008-07-27 06:49:38 +0900113 protected:
estade@chromium.orge2d2b722012-11-21 05:37:55 +0900114 // These aren't safe for end-users, but they are useful for subclasses.
tfarina@chromium.org254780a2011-08-13 05:59:02 +0900115 explicit Value(Type type);
estade@chromium.orge2d2b722012-11-21 05:37:55 +0900116 Value(const Value& that);
117 Value& operator=(const Value& that);
initial.commit3f4a7322008-07-27 06:49:38 +0900118
119 private:
sky@chromium.org8d103c72011-08-25 06:17:59 +0900120 Type type_;
initial.commit3f4a7322008-07-27 06:49:38 +0900121};
122
123// FundamentalValue represents the simple fundamental types of values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900124class BASE_EXPORT FundamentalValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900125 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900126 explicit FundamentalValue(bool in_value);
127 explicit FundamentalValue(int in_value);
128 explicit FundamentalValue(double in_value);
dcheng7dc8df52014-10-21 19:54:51 +0900129 ~FundamentalValue() override;
initial.commit3f4a7322008-07-27 06:49:38 +0900130
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900131 // Overridden from Value:
dcheng7dc8df52014-10-21 19:54:51 +0900132 bool GetAsBoolean(bool* out_value) const override;
133 bool GetAsInteger(int* out_value) const override;
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900134 // Values of both type TYPE_INTEGER and TYPE_DOUBLE can be obtained as
135 // doubles.
dcheng7dc8df52014-10-21 19:54:51 +0900136 bool GetAsDouble(double* out_value) const override;
137 FundamentalValue* DeepCopy() const override;
138 bool Equals(const Value* other) const override;
initial.commit3f4a7322008-07-27 06:49:38 +0900139
140 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900141 union {
142 bool boolean_value_;
143 int integer_value_;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900144 double double_value_;
initial.commit3f4a7322008-07-27 06:49:38 +0900145 };
146};
147
darin@chromium.orge585bed2011-08-06 00:34:00 +0900148class BASE_EXPORT StringValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900149 public:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900150 // Initializes a StringValue with a UTF-8 narrow character string.
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900151 explicit StringValue(const std::string& in_value);
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900152
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +0900153 // Initializes a StringValue with a string16.
154 explicit StringValue(const string16& in_value);
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +0900155
dcheng7dc8df52014-10-21 19:54:51 +0900156 ~StringValue() override;
initial.commit3f4a7322008-07-27 06:49:38 +0900157
estade@chromium.org0fd309d2014-02-06 05:42:06 +0900158 // Returns |value_| as a pointer or reference.
159 std::string* GetString();
160 const std::string& GetString() const;
161
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900162 // Overridden from Value:
dcheng7dc8df52014-10-21 19:54:51 +0900163 bool GetAsString(std::string* out_value) const override;
164 bool GetAsString(string16* out_value) const override;
165 bool GetAsString(const StringValue** out_value) const override;
166 StringValue* DeepCopy() const override;
167 bool Equals(const Value* other) const override;
initial.commit3f4a7322008-07-27 06:49:38 +0900168
169 private:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900170 std::string value_;
initial.commit3f4a7322008-07-27 06:49:38 +0900171};
172
darin@chromium.orge585bed2011-08-06 00:34:00 +0900173class BASE_EXPORT BinaryValue: public Value {
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900174 public:
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900175 // Creates a BinaryValue with a null buffer and size of 0.
176 BinaryValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900177
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900178 // Creates a BinaryValue, taking ownership of the bytes pointed to by
179 // |buffer|.
180 BinaryValue(scoped_ptr<char[]> buffer, size_t size);
181
dcheng7dc8df52014-10-21 19:54:51 +0900182 ~BinaryValue() override;
jhawkins@chromium.org592520e2012-05-20 11:34:57 +0900183
initial.commit3f4a7322008-07-27 06:49:38 +0900184 // For situations where you want to keep ownership of your buffer, this
185 // factory method creates a new BinaryValue by copying the contents of the
186 // buffer that's passed in.
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900187 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900188
initial.commit3f4a7322008-07-27 06:49:38 +0900189 size_t GetSize() const { return size_; }
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900190
191 // May return NULL.
192 char* GetBuffer() { return buffer_.get(); }
193 const char* GetBuffer() const { return buffer_.get(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900194
erg@google.comd5fffd42011-01-08 03:06:45 +0900195 // Overridden from Value:
pneubeckb57f3f52015-01-20 20:26:36 +0900196 bool GetAsBinary(const BinaryValue** out_value) const override;
dcheng7dc8df52014-10-21 19:54:51 +0900197 BinaryValue* DeepCopy() const override;
198 bool Equals(const Value* other) const override;
erg@google.comd5fffd42011-01-08 03:06:45 +0900199
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900200 private:
rpaquay@chromium.org7b1dfba2013-01-08 12:16:22 +0900201 scoped_ptr<char[]> buffer_;
initial.commit3f4a7322008-07-27 06:49:38 +0900202 size_t size_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900203
204 DISALLOW_COPY_AND_ASSIGN(BinaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900205};
206
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +0900207// DictionaryValue provides a key-value dictionary with (optional) "path"
208// parsing for recursive access; see the comment at the top of the file. Keys
209// are |std::string|s and should be UTF-8 encoded.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900210class BASE_EXPORT DictionaryValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900211 public:
reillygd39049b2015-09-11 09:25:54 +0900212 // Returns |value| if it is a dictionary, nullptr otherwise.
213 static scoped_ptr<DictionaryValue> From(scoped_ptr<Value> value);
214
erg@chromium.org493f5f62010-07-16 06:03:54 +0900215 DictionaryValue();
dcheng7dc8df52014-10-21 19:54:51 +0900216 ~DictionaryValue() override;
initial.commit3f4a7322008-07-27 06:49:38 +0900217
battre@chromium.org29eaa252011-11-26 10:11:44 +0900218 // Overridden from Value:
dcheng7dc8df52014-10-21 19:54:51 +0900219 bool GetAsDictionary(DictionaryValue** out_value) override;
220 bool GetAsDictionary(const DictionaryValue** out_value) const override;
battre@chromium.org29eaa252011-11-26 10:11:44 +0900221
initial.commit3f4a7322008-07-27 06:49:38 +0900222 // Returns true if the current dictionary has a value for the given key.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900223 bool HasKey(const std::string& key) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900224
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900225 // Returns the number of Values in this dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900226 size_t size() const { return dictionary_.size(); }
227
228 // Returns whether the dictionary is empty.
229 bool empty() const { return dictionary_.empty(); }
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900230
initial.commit3f4a7322008-07-27 06:49:38 +0900231 // Clears any current contents of this dictionary.
deanm@google.com522c3832008-08-04 22:56:25 +0900232 void Clear();
initial.commit3f4a7322008-07-27 06:49:38 +0900233
234 // Sets the Value associated with the given path starting from this object.
235 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
236 // into the next DictionaryValue down. Obviously, "." can't be used
237 // within a key, but there are no other restrictions on keys.
238 // If the key at any step of the way doesn't exist, or exists but isn't
239 // a DictionaryValue, a new DictionaryValue will be created and attached
estade948395d2015-01-07 05:06:50 +0900240 // to the path in that location. |in_value| must be non-null.
241 void Set(const std::string& path, scoped_ptr<Value> in_value);
242 // Deprecated version of the above. TODO(estade): remove.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900243 void Set(const std::string& path, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900244
245 // Convenience forms of Set(). These methods will replace any existing
246 // value at that path, even if it has a different type.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900247 void SetBoolean(const std::string& path, bool in_value);
248 void SetInteger(const std::string& path, int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +0900249 void SetDouble(const std::string& path, double in_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900250 void SetString(const std::string& path, const std::string& in_value);
viettrungluu@chromium.orgb7b6aa02010-08-05 01:58:12 +0900251 void SetString(const std::string& path, const string16& in_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900252
253 // Like Set(), but without special treatment of '.'. This allows e.g. URLs to
254 // be used as paths.
estade948395d2015-01-07 05:06:50 +0900255 void SetWithoutPathExpansion(const std::string& key,
256 scoped_ptr<Value> in_value);
257 // Deprecated version of the above. TODO(estade): remove.
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
kalman@chromium.org5081d8e2012-09-14 11:14:01 +0900260 // Convenience forms of SetWithoutPathExpansion().
261 void SetBooleanWithoutPathExpansion(const std::string& path, bool in_value);
262 void SetIntegerWithoutPathExpansion(const std::string& path, int in_value);
263 void SetDoubleWithoutPathExpansion(const std::string& path, double in_value);
264 void SetStringWithoutPathExpansion(const std::string& path,
265 const std::string& in_value);
266 void SetStringWithoutPathExpansion(const std::string& path,
267 const string16& in_value);
268
initial.commit3f4a7322008-07-27 06:49:38 +0900269 // Gets the Value associated with the given path starting from this object.
270 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
271 // into the next DictionaryValue down. If the path can be resolved
272 // successfully, the value for the last key in the path will be returned
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900273 // through the |out_value| parameter, and the function will return true.
274 // Otherwise, it will return false and |out_value| will be untouched.
initial.commit3f4a7322008-07-27 06:49:38 +0900275 // Note that the dictionary always owns the value that's returned.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900276 // |out_value| is optional and will only be set if non-NULL.
asvitkine22632bf2015-06-24 03:22:52 +0900277 bool Get(StringPiece path, const Value** out_value) const;
278 bool Get(StringPiece path, Value** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900279
280 // These are convenience forms of Get(). The value will be retrieved
281 // and the return value will be true if the path is valid and the value at
282 // the end of the path can be returned in the form specified.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900283 // |out_value| is optional and will only be set if non-NULL.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900284 bool GetBoolean(const std::string& path, bool* out_value) const;
285 bool GetInteger(const std::string& path, int* out_value) const;
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900286 // Values of both type TYPE_INTEGER and TYPE_DOUBLE can be obtained as
287 // doubles.
arv@chromium.org13413eb2011-02-01 10:02:07 +0900288 bool GetDouble(const std::string& path, double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900289 bool GetString(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900290 bool GetString(const std::string& path, string16* out_value) const;
evan@chromium.orgd9ab8de2010-02-19 22:32:16 +0900291 bool GetStringASCII(const std::string& path, std::string* out_value) const;
vabr@chromium.org74562432012-07-28 07:27:11 +0900292 bool GetBinary(const std::string& path, const BinaryValue** out_value) const;
293 bool GetBinary(const std::string& path, BinaryValue** out_value);
asvitkine22632bf2015-06-24 03:22:52 +0900294 bool GetDictionary(StringPiece path,
vabr@chromium.org74562432012-07-28 07:27:11 +0900295 const DictionaryValue** out_value) const;
asvitkine22632bf2015-06-24 03:22:52 +0900296 bool GetDictionary(StringPiece path, DictionaryValue** out_value);
vabr@chromium.org74562432012-07-28 07:27:11 +0900297 bool GetList(const std::string& path, const ListValue** out_value) const;
298 bool GetList(const std::string& path, ListValue** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900299
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900300 // Like Get(), but without special treatment of '.'. This allows e.g. URLs to
301 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900302 bool GetWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900303 const Value** out_value) const;
304 bool GetWithoutPathExpansion(const std::string& key, Value** out_value);
pneubeck@chromium.org3b600542012-11-07 01:46:55 +0900305 bool GetBooleanWithoutPathExpansion(const std::string& key,
306 bool* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900307 bool GetIntegerWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900308 int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900309 bool GetDoubleWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900310 double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900311 bool GetStringWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900312 std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900313 bool GetStringWithoutPathExpansion(const std::string& key,
314 string16* out_value) const;
vabr@chromium.org74562432012-07-28 07:27:11 +0900315 bool GetDictionaryWithoutPathExpansion(
316 const std::string& key,
317 const DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900318 bool GetDictionaryWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900319 DictionaryValue** out_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900320 bool GetListWithoutPathExpansion(const std::string& key,
vabr@chromium.org74562432012-07-28 07:27:11 +0900321 const ListValue** out_value) const;
322 bool GetListWithoutPathExpansion(const std::string& key,
323 ListValue** out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900324
initial.commit3f4a7322008-07-27 06:49:38 +0900325 // Removes the Value with the specified path from this dictionary (or one
326 // of its child dictionaries, if the path is more than just a local key).
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900327 // If |out_value| is non-NULL, the removed Value will be passed out via
328 // |out_value|. If |out_value| is NULL, the removed value will be deleted.
329 // This method returns true if |path| is a valid path; otherwise it will
330 // return false and the DictionaryValue object will be unchanged.
331 virtual bool Remove(const std::string& path, scoped_ptr<Value>* out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900332
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900333 // Like Remove(), but without special treatment of '.'. This allows e.g. URLs
334 // to be used as paths.
rsesek@chromium.orgc2d2b202012-05-17 00:23:30 +0900335 virtual bool RemoveWithoutPathExpansion(const std::string& key,
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900336 scoped_ptr<Value>* out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900337
gab@chromium.org903d5c92013-11-27 10:38:24 +0900338 // Removes a path, clearing out all dictionaries on |path| that remain empty
339 // after removing the value at |path|.
340 virtual bool RemovePath(const std::string& path,
341 scoped_ptr<Value>* out_value);
342
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900343 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
344 // the copy. This never returns NULL, even if |this| itself is empty.
estade51a57ab2015-05-23 11:42:09 +0900345 scoped_ptr<DictionaryValue> DeepCopyWithoutEmptyChildren() const;
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900346
jhawkins@chromium.orgcbb22392012-05-10 06:54:27 +0900347 // Merge |dictionary| into this dictionary. This is done recursively, i.e. any
348 // sub-dictionaries will be merged as well. In case of key collisions, the
349 // passed in dictionary takes precedence and data already present will be
350 // replaced. Values within |dictionary| are deep-copied, so |dictionary| may
351 // be freed any time after this call.
mnissler@chromium.org17cee0e2010-05-14 22:17:40 +0900352 void MergeDictionary(const DictionaryValue* dictionary);
353
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900354 // Swaps contents with the |other| dictionary.
rsesek@chromium.orgc2d2b202012-05-17 00:23:30 +0900355 virtual void Swap(DictionaryValue* other);
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900356
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900357 // This class provides an iterator over both keys and values in the
358 // dictionary. It can't be used to modify the dictionary.
hans@chromium.orgd5d38e32012-08-10 21:45:35 +0900359 class BASE_EXPORT Iterator {
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900360 public:
hans@chromium.orgd5d38e32012-08-10 21:45:35 +0900361 explicit Iterator(const DictionaryValue& target);
phajdan.jr@chromium.org8e2b2082013-12-11 03:52:22 +0900362 ~Iterator();
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900363
pneubeck@chromium.orga2fbefc2013-01-18 23:43:27 +0900364 bool IsAtEnd() const { return it_ == target_.dictionary_.end(); }
kalman@chromium.org1604ad62011-11-09 06:26:41 +0900365 void Advance() { ++it_; }
366
367 const std::string& key() const { return it_->first; }
368 const Value& value() const { return *it_->second; }
369
370 private:
371 const DictionaryValue& target_;
372 ValueMap::const_iterator it_;
373 };
374
erg@google.comd5fffd42011-01-08 03:06:45 +0900375 // Overridden from Value:
dcheng7dc8df52014-10-21 19:54:51 +0900376 DictionaryValue* DeepCopy() const override;
estade77a018f2015-05-07 10:53:08 +0900377 // Preferred version of DeepCopy. TODO(estade): remove the above.
378 scoped_ptr<DictionaryValue> CreateDeepCopy() const;
dcheng7dc8df52014-10-21 19:54:51 +0900379 bool Equals(const Value* other) const override;
erg@google.comd5fffd42011-01-08 03:06:45 +0900380
initial.commit3f4a7322008-07-27 06:49:38 +0900381 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900382 ValueMap dictionary_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900383
384 DISALLOW_COPY_AND_ASSIGN(DictionaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900385};
386
387// This type of Value represents a list of other Value values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900388class BASE_EXPORT ListValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900389 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900390 typedef ValueVector::iterator iterator;
391 typedef ValueVector::const_iterator const_iterator;
392
reillygd39049b2015-09-11 09:25:54 +0900393 // Returns |value| if it is a list, nullptr otherwise.
394 static scoped_ptr<ListValue> From(scoped_ptr<Value> value);
395
erg@chromium.org493f5f62010-07-16 06:03:54 +0900396 ListValue();
dcheng7dc8df52014-10-21 19:54:51 +0900397 ~ListValue() override;
initial.commit3f4a7322008-07-27 06:49:38 +0900398
initial.commit3f4a7322008-07-27 06:49:38 +0900399 // Clears the contents of this ListValue
400 void Clear();
401
402 // Returns the number of Values in this list.
403 size_t GetSize() const { return list_.size(); }
404
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900405 // Returns whether the list is empty.
406 bool empty() const { return list_.empty(); }
407
initial.commit3f4a7322008-07-27 06:49:38 +0900408 // Sets the list item at the given index to be the Value specified by
409 // the value given. If the index beyond the current end of the list, null
410 // Values will be used to pad out the list.
411 // Returns true if successful, or false if the index was negative or
412 // the value is a null pointer.
413 bool Set(size_t index, Value* in_value);
estade77a018f2015-05-07 10:53:08 +0900414 // Preferred version of the above. TODO(estade): remove the above.
415 bool Set(size_t index, scoped_ptr<Value> in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900416
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900417 // Gets the Value at the given index. Modifies |out_value| (and returns true)
initial.commit3f4a7322008-07-27 06:49:38 +0900418 // only if the index falls within the current list range.
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900419 // Note that the list always owns the Value passed out via |out_value|.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900420 // |out_value| is optional and will only be set if non-NULL.
vabr@chromium.orga8ca4fd2012-08-03 17:43:37 +0900421 bool Get(size_t index, const Value** out_value) const;
422 bool Get(size_t index, Value** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900423
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900424 // Convenience forms of Get(). Modifies |out_value| (and returns true)
425 // only if the index is valid and the Value at that index can be returned
426 // in the specified form.
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900427 // |out_value| is optional and will only be set if non-NULL.
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900428 bool GetBoolean(size_t index, bool* out_value) const;
429 bool GetInteger(size_t index, int* out_value) const;
gab@chromium.orgb3fa8142014-03-09 16:13:23 +0900430 // Values of both type TYPE_INTEGER and TYPE_DOUBLE can be obtained as
431 // doubles.
arv@chromium.org13413eb2011-02-01 10:02:07 +0900432 bool GetDouble(size_t index, double* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900433 bool GetString(size_t index, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900434 bool GetString(size_t index, string16* out_value) const;
vabr@chromium.orga8ca4fd2012-08-03 17:43:37 +0900435 bool GetBinary(size_t index, const BinaryValue** out_value) const;
436 bool GetBinary(size_t index, BinaryValue** out_value);
437 bool GetDictionary(size_t index, const DictionaryValue** out_value) const;
438 bool GetDictionary(size_t index, DictionaryValue** out_value);
439 bool GetList(size_t index, const ListValue** out_value) const;
440 bool GetList(size_t index, ListValue** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900441
442 // Removes the Value with the specified index from this list.
443 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
ericroman@google.com3d19ee52009-01-06 03:37:51 +0900444 // passed out via |out_value|. If |out_value| is NULL, the removed value will
initial.commit3f4a7322008-07-27 06:49:38 +0900445 // be deleted. This method returns true if |index| is valid; otherwise
446 // it will return false and the ListValue object will be unchanged.
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900447 virtual bool Remove(size_t index, scoped_ptr<Value>* out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900448
pkasting@chromium.orgdfe6a692009-12-01 04:59:11 +0900449 // Removes the first instance of |value| found in the list, if any, and
tfarina@chromium.org09cf4342011-08-14 02:34:31 +0900450 // deletes it. |index| is the location where |value| was found. Returns false
451 // if not found.
452 bool Remove(const Value& value, size_t* index);
pkasting@chromium.org727139c2009-05-09 09:33:04 +0900453
estade@chromium.org52852d52012-07-03 11:51:43 +0900454 // Removes the element at |iter|. If |out_value| is NULL, the value will be
455 // deleted, otherwise ownership of the value is passed back to the caller.
dubroy@chromium.orgaf2a3962013-02-19 01:31:45 +0900456 // Returns an iterator pointing to the location of the element that
457 // followed the erased element.
bauerb@chromium.orgae43e0a2013-08-06 22:33:04 +0900458 iterator Erase(iterator iter, scoped_ptr<Value>* out_value);
estade@chromium.org52852d52012-07-03 11:51:43 +0900459
initial.commit3f4a7322008-07-27 06:49:38 +0900460 // Appends a Value to the end of the list.
estade77a018f2015-05-07 10:53:08 +0900461 void Append(scoped_ptr<Value> in_value);
462 // Deprecated version of the above. TODO(estade): remove.
initial.commit3f4a7322008-07-27 06:49:38 +0900463 void Append(Value* in_value);
464
kalman@chromium.org5081d8e2012-09-14 11:14:01 +0900465 // Convenience forms of Append.
466 void AppendBoolean(bool in_value);
467 void AppendInteger(int in_value);
468 void AppendDouble(double in_value);
469 void AppendString(const std::string& in_value);
470 void AppendString(const string16& in_value);
471 void AppendStrings(const std::vector<std::string>& in_values);
472 void AppendStrings(const std::vector<string16>& in_values);
473
markusheintz@chromium.org78621872011-03-18 22:56:38 +0900474 // Appends a Value if it's not already present. Takes ownership of the
475 // |in_value|. Returns true if successful, or false if the value was already
476 // present. If the value was already present the |in_value| is deleted.
zork@chromium.orgb5f742b2010-04-13 06:48:10 +0900477 bool AppendIfNotPresent(Value* in_value);
478
erikkay@chromium.org9034a232009-08-29 05:26:05 +0900479 // Insert a Value at index.
480 // Returns true if successful, or false if the index was out of range.
481 bool Insert(size_t index, Value* in_value);
482
pastarmovj@chromium.org1602a472011-09-20 00:23:10 +0900483 // Searches for the first instance of |value| in the list using the Equals
484 // method of the Value type.
485 // Returns a const_iterator to the found item or to end() if none exists.
486 const_iterator Find(const Value& value) const;
487
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900488 // Swaps contents with the |other| list.
rsesek@chromium.orgc2d2b202012-05-17 00:23:30 +0900489 virtual void Swap(ListValue* other);
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900490
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900491 // Iteration.
492 iterator begin() { return list_.begin(); }
493 iterator end() { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900494
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900495 const_iterator begin() const { return list_.begin(); }
496 const_iterator end() const { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900497
erg@google.comd5fffd42011-01-08 03:06:45 +0900498 // Overridden from Value:
dcheng7dc8df52014-10-21 19:54:51 +0900499 bool GetAsList(ListValue** out_value) override;
500 bool GetAsList(const ListValue** out_value) const override;
501 ListValue* DeepCopy() const override;
502 bool Equals(const Value* other) const override;
erg@google.comd5fffd42011-01-08 03:06:45 +0900503
estade033e61e2015-05-13 03:11:50 +0900504 // Preferred version of DeepCopy. TODO(estade): remove DeepCopy.
505 scoped_ptr<ListValue> CreateDeepCopy() const;
506
initial.commit3f4a7322008-07-27 06:49:38 +0900507 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900508 ValueVector list_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900509
510 DISALLOW_COPY_AND_ASSIGN(ListValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900511};
512
prashhir58322f42015-03-05 18:30:57 +0900513// This interface is implemented by classes that know how to serialize
514// Value objects.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900515class BASE_EXPORT ValueSerializer {
initial.commit3f4a7322008-07-27 06:49:38 +0900516 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900517 virtual ~ValueSerializer();
mmentovai@google.com4a5b6272008-08-07 00:46:59 +0900518
initial.commit3f4a7322008-07-27 06:49:38 +0900519 virtual bool Serialize(const Value& root) = 0;
prashhir58322f42015-03-05 18:30:57 +0900520};
521
522// This interface is implemented by classes that know how to deserialize Value
523// objects.
524class BASE_EXPORT ValueDeserializer {
525 public:
526 virtual ~ValueDeserializer();
initial.commit3f4a7322008-07-27 06:49:38 +0900527
528 // This method deserializes the subclass-specific format into a Value object.
aa@chromium.orgca9c79e2008-12-30 04:59:08 +0900529 // If the return value is non-NULL, the caller takes ownership of returned
erikkay@chromium.org64b2cf42010-04-07 00:42:39 +0900530 // Value. If the return value is NULL, and if error_code is non-NULL,
531 // error_code will be set with the underlying error.
532 // If |error_message| is non-null, it will be filled in with a formatted
533 // error message including the location of the error if appropriate.
534 virtual Value* Deserialize(int* error_code, std::string* error_str) = 0;
initial.commit3f4a7322008-07-27 06:49:38 +0900535};
536
pneubeck@google.com6671d3f2013-04-16 18:04:02 +0900537// Stream operator so Values can be used in assertion statements. In order that
538// gtest uses this operator to print readable output on test failures, we must
539// override each specific type. Otherwise, the default template implementation
540// is preferred over an upcast.
kalman@chromium.org829cf752012-09-12 12:39:35 +0900541BASE_EXPORT std::ostream& operator<<(std::ostream& out, const Value& value);
542
pneubeck@google.com6671d3f2013-04-16 18:04:02 +0900543BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
544 const FundamentalValue& value) {
545 return out << static_cast<const Value&>(value);
546}
547
548BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
549 const StringValue& value) {
550 return out << static_cast<const Value&>(value);
551}
552
553BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
554 const DictionaryValue& value) {
555 return out << static_cast<const Value&>(value);
556}
557
558BASE_EXPORT inline std::ostream& operator<<(std::ostream& out,
559 const ListValue& value) {
560 return out << static_cast<const Value&>(value);
561}
562
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900563} // namespace base
564
darin@chromium.org01f10702008-09-27 05:22:42 +0900565#endif // BASE_VALUES_H_