blob: 43894d15c2b7ed7ff75a478b7194110624a4c02a [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
rvargas@google.com73eb5d02011-03-25 04:00:20 +090030#include "base/base_api.h"
initial.commit3f4a7322008-07-27 06:49:38 +090031#include "base/basictypes.h"
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +090032#include "base/string16.h"
33#include "build/build_config.h"
initial.commit3f4a7322008-07-27 06:49:38 +090034
initial.commit3f4a7322008-07-27 06:49:38 +090035class BinaryValue;
36class 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
45// The Value class is the base class for Values. A Value can be
46// instantiated via the Create*Value() factory methods, or by directly
47// creating instances of the subclasses.
rvargas@google.com73eb5d02011-03-25 04:00:20 +090048class BASE_API Value {
initial.commit3f4a7322008-07-27 06:49:38 +090049 public:
erg@google.comd5fffd42011-01-08 03:06:45 +090050 enum ValueType {
51 TYPE_NULL = 0,
52 TYPE_BOOLEAN,
53 TYPE_INTEGER,
arv@chromium.org13413eb2011-02-01 10:02:07 +090054 TYPE_DOUBLE,
erg@google.comd5fffd42011-01-08 03:06:45 +090055 TYPE_STRING,
56 TYPE_BINARY,
57 TYPE_DICTIONARY,
58 TYPE_LIST
59 };
60
initial.commit3f4a7322008-07-27 06:49:38 +090061 virtual ~Value();
62
63 // Convenience methods for creating Value objects for various
64 // kinds of values without thinking about which class implements them.
65 // These can always be expected to return a valid Value*.
66 static Value* CreateNullValue();
akalin@chromium.org810f92f2011-01-18 11:16:59 +090067 static FundamentalValue* CreateBooleanValue(bool in_value);
68 static FundamentalValue* CreateIntegerValue(int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +090069 static FundamentalValue* CreateDoubleValue(double in_value);
akalin@chromium.org810f92f2011-01-18 11:16:59 +090070 static StringValue* CreateStringValue(const std::string& in_value);
71 static StringValue* CreateStringValue(const string16& in_value);
initial.commit3f4a7322008-07-27 06:49:38 +090072
73 // This one can return NULL if the input isn't valid. If the return value
74 // is non-null, the new object has taken ownership of the buffer pointer.
75 static BinaryValue* CreateBinaryValue(char* buffer, size_t size);
76
initial.commit3f4a7322008-07-27 06:49:38 +090077 // Returns the type of the value stored by the current Value object.
78 // Each type will be implemented by only one subclass of Value, so it's
79 // safe to use the ValueType to determine whether you can cast from
80 // Value* to (Implementing Class)*. Also, a Value object never changes
81 // its type after construction.
82 ValueType GetType() const { return type_; }
83
84 // Returns true if the current object represents a given type.
85 bool IsType(ValueType type) const { return type == type_; }
86
87 // These methods allow the convenient retrieval of settings.
88 // If the current setting object can be converted into the given type,
skerner@chromium.org53f71f02010-04-09 04:06:15 +090089 // the value is returned through the |out_value| parameter and true is
90 // returned; otherwise, false is returned and |out_value| is unchanged.
initial.commit3f4a7322008-07-27 06:49:38 +090091 virtual bool GetAsBoolean(bool* out_value) const;
92 virtual bool GetAsInteger(int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +090093 virtual bool GetAsDouble(double* out_value) const;
scherkus@chromium.org2b923e72008-12-11 10:23:17 +090094 virtual bool GetAsString(std::string* out_value) const;
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +090095 virtual bool GetAsString(string16* out_value) const;
scottbyer@google.com673b8762010-12-07 09:35:29 +090096 virtual bool GetAsList(ListValue** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +090097
98 // This creates a deep copy of the entire Value tree, and returns a pointer
99 // to the copy. The caller gets ownership of the copy, of course.
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900100 //
101 // Subclasses return their own type directly in their overrides;
102 // this works because C++ supports covariant return types.
initial.commit3f4a7322008-07-27 06:49:38 +0900103 virtual Value* DeepCopy() const;
104
105 // Compares if two Value objects have equal contents.
106 virtual bool Equals(const Value* other) const;
107
bauerb@chromium.orgfbd55e12010-12-07 03:13:43 +0900108 // Compares if two Value objects have equal contents. Can handle NULLs.
109 // NULLs are considered equal but different from Value::CreateNullValue().
110 static bool Equals(const Value* a, const Value* b);
111
initial.commit3f4a7322008-07-27 06:49:38 +0900112 protected:
113 // This isn't safe for end-users (they should use the Create*Value()
114 // static methods above), but it's useful for subclasses.
erg@chromium.org493f5f62010-07-16 06:03:54 +0900115 explicit Value(ValueType type);
initial.commit3f4a7322008-07-27 06:49:38 +0900116
117 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900118 Value();
119
120 ValueType type_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900121
122 DISALLOW_COPY_AND_ASSIGN(Value);
initial.commit3f4a7322008-07-27 06:49:38 +0900123};
124
125// FundamentalValue represents the simple fundamental types of values.
rvargas@google.com73eb5d02011-03-25 04:00:20 +0900126class BASE_API FundamentalValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900127 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900128 explicit FundamentalValue(bool in_value);
129 explicit FundamentalValue(int in_value);
130 explicit FundamentalValue(double in_value);
erg@google.com2d9b43e2010-12-09 03:06:44 +0900131 virtual ~FundamentalValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900132
133 // Subclassed methods
134 virtual bool GetAsBoolean(bool* out_value) const;
135 virtual bool GetAsInteger(int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900136 virtual bool GetAsDouble(double* out_value) const;
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900137 virtual FundamentalValue* DeepCopy() const;
initial.commit3f4a7322008-07-27 06:49:38 +0900138 virtual bool Equals(const Value* other) const;
139
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 };
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900146
147 DISALLOW_COPY_AND_ASSIGN(FundamentalValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900148};
149
rvargas@google.com73eb5d02011-03-25 04:00:20 +0900150class BASE_API StringValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900151 public:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900152 // Initializes a StringValue with a UTF-8 narrow character string.
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900153 explicit StringValue(const std::string& in_value);
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900154
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +0900155 // Initializes a StringValue with a string16.
156 explicit StringValue(const string16& in_value);
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +0900157
erg@google.com2d9b43e2010-12-09 03:06:44 +0900158 virtual ~StringValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900159
160 // Subclassed methods
erg@google.com2d9b43e2010-12-09 03:06:44 +0900161 virtual bool GetAsString(std::string* out_value) const;
162 virtual bool GetAsString(string16* out_value) const;
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900163 virtual StringValue* DeepCopy() const;
initial.commit3f4a7322008-07-27 06:49:38 +0900164 virtual bool Equals(const Value* other) const;
165
166 private:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900167 std::string value_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900168
169 DISALLOW_COPY_AND_ASSIGN(StringValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900170};
171
rvargas@google.com73eb5d02011-03-25 04:00:20 +0900172class BASE_API BinaryValue: public Value {
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900173 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900174 virtual ~BinaryValue();
175
initial.commit3f4a7322008-07-27 06:49:38 +0900176 // Creates a Value to represent a binary buffer. The new object takes
177 // ownership of the pointer passed in, if successful.
178 // Returns NULL if buffer is NULL.
179 static BinaryValue* Create(char* buffer, size_t size);
180
181 // For situations where you want to keep ownership of your buffer, this
182 // factory method creates a new BinaryValue by copying the contents of the
183 // buffer that's passed in.
184 // Returns NULL if buffer is NULL.
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900185 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900186
initial.commit3f4a7322008-07-27 06:49:38 +0900187 size_t GetSize() const { return size_; }
188 char* GetBuffer() { return buffer_; }
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900189 const char* GetBuffer() const { return buffer_; }
initial.commit3f4a7322008-07-27 06:49:38 +0900190
erg@google.comd5fffd42011-01-08 03:06:45 +0900191 // Overridden from Value:
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900192 virtual BinaryValue* DeepCopy() const;
erg@google.comd5fffd42011-01-08 03:06:45 +0900193 virtual bool Equals(const Value* other) const;
194
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900195 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900196 // Constructor is private so that only objects with valid buffer pointers
197 // and size values can be created.
deanm@google.com522c3832008-08-04 22:56:25 +0900198 BinaryValue(char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900199
200 char* buffer_;
201 size_t size_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900202
203 DISALLOW_COPY_AND_ASSIGN(BinaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900204};
205
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +0900206// DictionaryValue provides a key-value dictionary with (optional) "path"
207// parsing for recursive access; see the comment at the top of the file. Keys
208// are |std::string|s and should be UTF-8 encoded.
rvargas@google.com73eb5d02011-03-25 04:00:20 +0900209class BASE_API DictionaryValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900210 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900211 DictionaryValue();
erg@google.com2d9b43e2010-12-09 03:06:44 +0900212 virtual ~DictionaryValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900213
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
249 // Gets the Value associated with the given path starting from this object.
250 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
251 // into the next DictionaryValue down. If the path can be resolved
252 // successfully, the value for the last key in the path will be returned
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900253 // through the |out_value| parameter, and the function will return true.
254 // Otherwise, it will return false and |out_value| will be untouched.
initial.commit3f4a7322008-07-27 06:49:38 +0900255 // Note that the dictionary always owns the value that's returned.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900256 bool Get(const std::string& path, Value** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900257
258 // These are convenience forms of Get(). The value will be retrieved
259 // and the return value will be true if the path is valid and the value at
260 // the end of the path can be returned in the form specified.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900261 bool GetBoolean(const std::string& path, bool* out_value) const;
262 bool GetInteger(const std::string& path, int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900263 bool GetDouble(const std::string& path, double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900264 bool GetString(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900265 bool GetString(const std::string& path, string16* out_value) const;
evan@chromium.orgd9ab8de2010-02-19 22:32:16 +0900266 bool GetStringASCII(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900267 bool GetBinary(const std::string& path, BinaryValue** out_value) const;
268 bool GetDictionary(const std::string& path,
initial.commit3f4a7322008-07-27 06:49:38 +0900269 DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900270 bool GetList(const std::string& path, ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900271
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900272 // Like Get(), but without special treatment of '.'. This allows e.g. URLs to
273 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900274 bool GetWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900275 Value** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900276 bool GetIntegerWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900277 int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900278 bool GetDoubleWithoutPathExpansion(const std::string& key,
jam@chromium.org5bd53922010-10-01 16:28:25 +0900279 double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900280 bool GetStringWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900281 std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900282 bool GetStringWithoutPathExpansion(const std::string& key,
283 string16* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900284 bool GetDictionaryWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900285 DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900286 bool GetListWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900287 ListValue** out_value) const;
288
initial.commit3f4a7322008-07-27 06:49:38 +0900289 // Removes the Value with the specified path from this dictionary (or one
290 // of its child dictionaries, if the path is more than just a local key).
291 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
292 // passed out via out_value. If |out_value| is NULL, the removed value will
293 // be deleted. This method returns true if |path| is a valid path; otherwise
294 // it will return false and the DictionaryValue object will be unchanged.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900295 bool Remove(const std::string& path, Value** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900296
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900297 // Like Remove(), but without special treatment of '.'. This allows e.g. URLs
298 // to be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900299 bool RemoveWithoutPathExpansion(const std::string& key, Value** out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900300
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900301 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
302 // the copy. This never returns NULL, even if |this| itself is empty.
303 DictionaryValue* DeepCopyWithoutEmptyChildren();
304
mnissler@chromium.org17cee0e2010-05-14 22:17:40 +0900305 // Merge a given dictionary into this dictionary. This is done recursively,
306 // i.e. any subdictionaries will be merged as well. In case of key collisions,
307 // the passed in dictionary takes precedence and data already present will be
308 // replaced.
309 void MergeDictionary(const DictionaryValue* dictionary);
310
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900311 // Swaps contents with the |other| dictionary.
312 void Swap(DictionaryValue* other) {
313 dictionary_.swap(other->dictionary_);
314 }
315
initial.commit3f4a7322008-07-27 06:49:38 +0900316 // This class provides an iterator for the keys in the dictionary.
317 // It can't be used to modify the dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900318 //
319 // YOU SHOULD ALWAYS USE THE XXXWithoutPathExpansion() APIs WITH THESE, NOT
320 // THE NORMAL XXX() APIs. This makes sure things will work correctly if any
321 // keys have '.'s in them.
darin@chromium.org020e0b12011-04-30 03:08:21 +0900322 class key_iterator
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900323 : private std::iterator<std::input_iterator_tag, const std::string> {
jar@chromium.orgaf39a372009-02-18 07:50:14 +0900324 public:
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900325 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
erg@google.combf6ce9f2010-01-27 08:08:02 +0900326 key_iterator operator++() {
327 ++itr_;
328 return *this;
329 }
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900330 const std::string& operator*() { return itr_->first; }
initial.commit3f4a7322008-07-27 06:49:38 +0900331 bool operator!=(const key_iterator& other) { return itr_ != other.itr_; }
332 bool operator==(const key_iterator& other) { return itr_ == other.itr_; }
333
jar@chromium.orgaf39a372009-02-18 07:50:14 +0900334 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900335 ValueMap::const_iterator itr_;
336 };
337
338 key_iterator begin_keys() const { return key_iterator(dictionary_.begin()); }
339 key_iterator end_keys() const { return key_iterator(dictionary_.end()); }
340
erg@google.comd5fffd42011-01-08 03:06:45 +0900341 // Overridden from Value:
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900342 virtual DictionaryValue* DeepCopy() const;
erg@google.comd5fffd42011-01-08 03:06:45 +0900343 virtual bool Equals(const Value* other) const;
344
initial.commit3f4a7322008-07-27 06:49:38 +0900345 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900346 ValueMap dictionary_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900347
348 DISALLOW_COPY_AND_ASSIGN(DictionaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900349};
350
351// This type of Value represents a list of other Value values.
rvargas@google.com73eb5d02011-03-25 04:00:20 +0900352class BASE_API ListValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900353 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900354 typedef ValueVector::iterator iterator;
355 typedef ValueVector::const_iterator const_iterator;
356
erg@chromium.org493f5f62010-07-16 06:03:54 +0900357 ListValue();
hans@chromium.org78b75932011-05-25 18:08:19 +0900358 virtual ~ListValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900359
initial.commit3f4a7322008-07-27 06:49:38 +0900360 // Clears the contents of this ListValue
361 void Clear();
362
363 // Returns the number of Values in this list.
364 size_t GetSize() const { return list_.size(); }
365
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900366 // Returns whether the list is empty.
367 bool empty() const { return list_.empty(); }
368
initial.commit3f4a7322008-07-27 06:49:38 +0900369 // Sets the list item at the given index to be the Value specified by
370 // the value given. If the index beyond the current end of the list, null
371 // Values will be used to pad out the list.
372 // Returns true if successful, or false if the index was negative or
373 // the value is a null pointer.
374 bool Set(size_t index, Value* in_value);
375
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900376 // Gets the Value at the given index. Modifies |out_value| (and returns true)
initial.commit3f4a7322008-07-27 06:49:38 +0900377 // only if the index falls within the current list range.
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900378 // Note that the list always owns the Value passed out via |out_value|.
initial.commit3f4a7322008-07-27 06:49:38 +0900379 bool Get(size_t index, Value** out_value) const;
380
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900381 // Convenience forms of Get(). Modifies |out_value| (and returns true)
382 // only if the index is valid and the Value at that index can be returned
383 // in the specified form.
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900384 bool GetBoolean(size_t index, bool* out_value) const;
385 bool GetInteger(size_t index, int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900386 bool GetDouble(size_t index, double* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900387 bool GetString(size_t index, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900388 bool GetString(size_t index, string16* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900389 bool GetBinary(size_t index, BinaryValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900390 bool GetDictionary(size_t index, DictionaryValue** out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900391 bool GetList(size_t index, ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900392
393 // Removes the Value with the specified index from this list.
394 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
ericroman@google.com3d19ee52009-01-06 03:37:51 +0900395 // passed out via |out_value|. If |out_value| is NULL, the removed value will
initial.commit3f4a7322008-07-27 06:49:38 +0900396 // be deleted. This method returns true if |index| is valid; otherwise
397 // it will return false and the ListValue object will be unchanged.
398 bool Remove(size_t index, Value** out_value);
399
pkasting@chromium.orgdfe6a692009-12-01 04:59:11 +0900400 // Removes the first instance of |value| found in the list, if any, and
401 // deletes it. Returns the index that it was located at (-1 for not present).
erikkay@chromium.org9034a232009-08-29 05:26:05 +0900402 int Remove(const Value& value);
pkasting@chromium.org727139c2009-05-09 09:33:04 +0900403
initial.commit3f4a7322008-07-27 06:49:38 +0900404 // Appends a Value to the end of the list.
405 void Append(Value* in_value);
406
markusheintz@chromium.org78621872011-03-18 22:56:38 +0900407 // Appends a Value if it's not already present. Takes ownership of the
408 // |in_value|. Returns true if successful, or false if the value was already
409 // present. If the value was already present the |in_value| is deleted.
zork@chromium.orgb5f742b2010-04-13 06:48:10 +0900410 bool AppendIfNotPresent(Value* in_value);
411
erikkay@chromium.org9034a232009-08-29 05:26:05 +0900412 // Insert a Value at index.
413 // Returns true if successful, or false if the index was out of range.
414 bool Insert(size_t index, Value* in_value);
415
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900416 // Swaps contents with the |other| list.
417 void Swap(ListValue* other) {
418 list_.swap(other->list_);
419 }
420
initial.commit3f4a7322008-07-27 06:49:38 +0900421 // Iteration
initial.commit3f4a7322008-07-27 06:49:38 +0900422 ListValue::iterator begin() { return list_.begin(); }
423 ListValue::iterator end() { return list_.end(); }
424
425 ListValue::const_iterator begin() const { return list_.begin(); }
426 ListValue::const_iterator end() const { return list_.end(); }
427
erg@google.comd5fffd42011-01-08 03:06:45 +0900428 // Overridden from Value:
429 virtual bool GetAsList(ListValue** out_value);
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900430 virtual ListValue* DeepCopy() const;
erg@google.comd5fffd42011-01-08 03:06:45 +0900431 virtual bool Equals(const Value* other) const;
432
initial.commit3f4a7322008-07-27 06:49:38 +0900433 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900434 ValueVector list_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900435
436 DISALLOW_COPY_AND_ASSIGN(ListValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900437};
438
439// This interface is implemented by classes that know how to serialize and
440// deserialize Value objects.
rvargas@google.com73eb5d02011-03-25 04:00:20 +0900441class BASE_API ValueSerializer {
initial.commit3f4a7322008-07-27 06:49:38 +0900442 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900443 virtual ~ValueSerializer();
mmentovai@google.com4a5b6272008-08-07 00:46:59 +0900444
initial.commit3f4a7322008-07-27 06:49:38 +0900445 virtual bool Serialize(const Value& root) = 0;
446
447 // This method deserializes the subclass-specific format into a Value object.
aa@chromium.orgca9c79e2008-12-30 04:59:08 +0900448 // If the return value is non-NULL, the caller takes ownership of returned
erikkay@chromium.org64b2cf42010-04-07 00:42:39 +0900449 // Value. If the return value is NULL, and if error_code is non-NULL,
450 // error_code will be set with the underlying error.
451 // If |error_message| is non-null, it will be filled in with a formatted
452 // error message including the location of the error if appropriate.
453 virtual Value* Deserialize(int* error_code, std::string* error_str) = 0;
initial.commit3f4a7322008-07-27 06:49:38 +0900454};
455
darin@chromium.org01f10702008-09-27 05:22:42 +0900456#endif // BASE_VALUES_H_