blob: 90cc40ccc07bffe6093419be40a19d209ee5b618 [file] [log] [blame]
erg@google.comd5fffd42011-01-08 03:06:45 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botf003cfe2008-08-24 09:55:55 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +09005// This file specifies a recursive data storage class called Value intended for
6// storing setting and other persistable data. It includes the ability to
7// specify (recursive) lists and dictionaries, so it's fairly expressive.
8// However, the API is optimized for the common case, namely storing a
9// hierarchical tree of simple values. Given a DictionaryValue root, you can
10// easily do things like:
initial.commit3f4a7322008-07-27 06:49:38 +090011//
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +090012// root->SetString("global.pages.homepage", "http://goateleporter.com");
13// std::string homepage = "http://google.com"; // default/fallback value
14// root->GetString("global.pages.homepage", &homepage);
initial.commit3f4a7322008-07-27 06:49:38 +090015//
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +090016// where "global" and "pages" are also DictionaryValues, and "homepage" is a
17// string setting. If some elements of the path didn't exist yet, the
18// SetString() method would create the missing elements and attach them to root
19// before attaching the homepage value.
initial.commit3f4a7322008-07-27 06:49:38 +090020
darin@chromium.org01f10702008-09-27 05:22:42 +090021#ifndef BASE_VALUES_H_
22#define BASE_VALUES_H_
thakis@chromium.org01d14522010-07-27 08:08:24 +090023#pragma once
initial.commit3f4a7322008-07-27 06:49:38 +090024
25#include <iterator>
26#include <map>
nsylvain@chromium.org12426672009-03-04 07:59:43 +090027#include <string>
initial.commit3f4a7322008-07-27 06:49:38 +090028#include <vector>
29
darin@chromium.orge585bed2011-08-06 00:34:00 +090030#include "base/base_export.h"
initial.commit3f4a7322008-07-27 06:49:38 +090031#include "base/basictypes.h"
tfarina@chromium.orgcc177402011-08-12 05:56:32 +090032#include "base/compiler_specific.h"
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +090033#include "base/string16.h"
initial.commit3f4a7322008-07-27 06:49:38 +090034
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +090035// This file declares "using base::Value", etc. at the bottom, so that
36// current code can use these classes without the base namespace. In
37// new code, please always use base::Value, etc. or add your own
38// "using" declaration.
39// http://crbug.com/88666
40namespace base {
41
initial.commit3f4a7322008-07-27 06:49:38 +090042class BinaryValue;
43class DictionaryValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090044class FundamentalValue;
initial.commit3f4a7322008-07-27 06:49:38 +090045class ListValue;
bauerb@chromium.org6fca9582011-02-22 01:35:04 +090046class StringValue;
47class Value;
initial.commit3f4a7322008-07-27 06:49:38 +090048
49typedef std::vector<Value*> ValueVector;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +090050typedef std::map<std::string, Value*> ValueMap;
initial.commit3f4a7322008-07-27 06:49:38 +090051
tfarina@chromium.org2e2a9022011-08-06 03:20:05 +090052// The Value class is the base class for Values. A Value can be instantiated
53// via the Create*Value() factory methods, or by directly creating instances of
54// the subclasses.
darin@chromium.orge585bed2011-08-06 00:34:00 +090055class BASE_EXPORT Value {
initial.commit3f4a7322008-07-27 06:49:38 +090056 public:
tfarina@chromium.org254780a2011-08-13 05:59:02 +090057 enum Type {
erg@google.comd5fffd42011-01-08 03:06:45 +090058 TYPE_NULL = 0,
59 TYPE_BOOLEAN,
60 TYPE_INTEGER,
arv@chromium.org13413eb2011-02-01 10:02:07 +090061 TYPE_DOUBLE,
erg@google.comd5fffd42011-01-08 03:06:45 +090062 TYPE_STRING,
63 TYPE_BINARY,
64 TYPE_DICTIONARY,
65 TYPE_LIST
66 };
67
initial.commit3f4a7322008-07-27 06:49:38 +090068 virtual ~Value();
69
70 // Convenience methods for creating Value objects for various
71 // kinds of values without thinking about which class implements them.
72 // These can always be expected to return a valid Value*.
73 static Value* CreateNullValue();
akalin@chromium.org810f92f2011-01-18 11:16:59 +090074 static FundamentalValue* CreateBooleanValue(bool in_value);
75 static FundamentalValue* CreateIntegerValue(int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +090076 static FundamentalValue* CreateDoubleValue(double in_value);
akalin@chromium.org810f92f2011-01-18 11:16:59 +090077 static StringValue* CreateStringValue(const std::string& in_value);
78 static StringValue* CreateStringValue(const string16& in_value);
initial.commit3f4a7322008-07-27 06:49:38 +090079
initial.commit3f4a7322008-07-27 06:49:38 +090080 // Returns the type of the value stored by the current Value object.
81 // Each type will be implemented by only one subclass of Value, so it's
tfarina@chromium.org254780a2011-08-13 05:59:02 +090082 // safe to use the Type to determine whether you can cast from
initial.commit3f4a7322008-07-27 06:49:38 +090083 // Value* to (Implementing Class)*. Also, a Value object never changes
84 // its type after construction.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090085 Type GetType() const { return type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090086
87 // Returns true if the current object represents a given type.
tfarina@chromium.org254780a2011-08-13 05:59:02 +090088 bool IsType(Type type) const { return type == type_; }
initial.commit3f4a7322008-07-27 06:49:38 +090089
90 // These methods allow the convenient retrieval of settings.
91 // If the current setting object can be converted into the given type,
skerner@chromium.org53f71f02010-04-09 04:06:15 +090092 // the value is returned through the |out_value| parameter and true is
93 // returned; otherwise, false is returned and |out_value| is unchanged.
initial.commit3f4a7322008-07-27 06:49:38 +090094 virtual bool GetAsBoolean(bool* out_value) const;
95 virtual bool GetAsInteger(int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +090096 virtual bool GetAsDouble(double* out_value) const;
scherkus@chromium.org2b923e72008-12-11 10:23:17 +090097 virtual bool GetAsString(std::string* out_value) const;
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +090098 virtual bool GetAsString(string16* out_value) const;
scottbyer@google.com673b8762010-12-07 09:35:29 +090099 virtual bool GetAsList(ListValue** out_value);
bauerb@chromium.org6878e502011-07-12 18:04:38 +0900100 virtual bool GetAsList(const ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900101
102 // This creates a deep copy of the entire Value tree, and returns a pointer
103 // to the copy. The caller gets ownership of the copy, of course.
akalin@chromium.org810f92f2011-01-18 11:16:59 +0900104 //
105 // Subclasses return their own type directly in their overrides;
106 // this works because C++ supports covariant return types.
initial.commit3f4a7322008-07-27 06:49:38 +0900107 virtual Value* DeepCopy() const;
108
109 // Compares if two Value objects have equal contents.
110 virtual bool Equals(const Value* other) const;
111
bauerb@chromium.orgfbd55e12010-12-07 03:13:43 +0900112 // Compares if two Value objects have equal contents. Can handle NULLs.
113 // NULLs are considered equal but different from Value::CreateNullValue().
114 static bool Equals(const Value* a, const Value* b);
115
initial.commit3f4a7322008-07-27 06:49:38 +0900116 protected:
117 // This isn't safe for end-users (they should use the Create*Value()
118 // static methods above), but it's useful for subclasses.
tfarina@chromium.org254780a2011-08-13 05:59:02 +0900119 explicit Value(Type type);
initial.commit3f4a7322008-07-27 06:49:38 +0900120
121 private:
sky@chromium.org8d103c72011-08-25 06:17:59 +0900122 Value();
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900123
sky@chromium.org8d103c72011-08-25 06:17:59 +0900124 Type type_;
sky@chromium.org142c71c2011-08-23 12:40:57 +0900125
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900126 DISALLOW_COPY_AND_ASSIGN(Value);
initial.commit3f4a7322008-07-27 06:49:38 +0900127};
128
129// FundamentalValue represents the simple fundamental types of values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900130class BASE_EXPORT FundamentalValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900131 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900132 explicit FundamentalValue(bool in_value);
133 explicit FundamentalValue(int in_value);
134 explicit FundamentalValue(double in_value);
erg@google.com2d9b43e2010-12-09 03:06:44 +0900135 virtual ~FundamentalValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900136
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900137 // Overridden from Value:
138 virtual bool GetAsBoolean(bool* out_value) const OVERRIDE;
139 virtual bool GetAsInteger(int* out_value) const OVERRIDE;
140 virtual bool GetAsDouble(double* out_value) const OVERRIDE;
141 virtual FundamentalValue* DeepCopy() const OVERRIDE;
142 virtual bool Equals(const Value* other) const OVERRIDE;
initial.commit3f4a7322008-07-27 06:49:38 +0900143
144 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900145 union {
146 bool boolean_value_;
147 int integer_value_;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900148 double double_value_;
initial.commit3f4a7322008-07-27 06:49:38 +0900149 };
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900150
151 DISALLOW_COPY_AND_ASSIGN(FundamentalValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900152};
153
darin@chromium.orge585bed2011-08-06 00:34:00 +0900154class BASE_EXPORT StringValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900155 public:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900156 // Initializes a StringValue with a UTF-8 narrow character string.
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900157 explicit StringValue(const std::string& in_value);
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900158
munjal@chromium.org3b2d3a42010-01-16 05:09:03 +0900159 // Initializes a StringValue with a string16.
160 explicit StringValue(const string16& in_value);
viettrungluu@chromium.org31b80ba2010-08-04 00:42:58 +0900161
erg@google.com2d9b43e2010-12-09 03:06:44 +0900162 virtual ~StringValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900163
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900164 // Overridden from Value:
165 virtual bool GetAsString(std::string* out_value) const OVERRIDE;
166 virtual bool GetAsString(string16* out_value) const OVERRIDE;
167 virtual StringValue* DeepCopy() const OVERRIDE;
168 virtual bool Equals(const Value* other) const OVERRIDE;
initial.commit3f4a7322008-07-27 06:49:38 +0900169
170 private:
scherkus@chromium.org2b923e72008-12-11 10:23:17 +0900171 std::string value_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900172
173 DISALLOW_COPY_AND_ASSIGN(StringValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900174};
175
darin@chromium.orge585bed2011-08-06 00:34:00 +0900176class BASE_EXPORT BinaryValue: public Value {
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900177 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900178 virtual ~BinaryValue();
179
initial.commit3f4a7322008-07-27 06:49:38 +0900180 // Creates a Value to represent a binary buffer. The new object takes
181 // ownership of the pointer passed in, if successful.
182 // Returns NULL if buffer is NULL.
183 static BinaryValue* Create(char* buffer, size_t size);
184
185 // For situations where you want to keep ownership of your buffer, this
186 // factory method creates a new BinaryValue by copying the contents of the
187 // buffer that's passed in.
188 // Returns NULL if buffer is NULL.
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900189 static BinaryValue* CreateWithCopiedBuffer(const char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900190
initial.commit3f4a7322008-07-27 06:49:38 +0900191 size_t GetSize() const { return size_; }
192 char* GetBuffer() { return buffer_; }
mpcomplete@chromium.org554d4312009-10-07 03:15:58 +0900193 const char* GetBuffer() const { return buffer_; }
initial.commit3f4a7322008-07-27 06:49:38 +0900194
erg@google.comd5fffd42011-01-08 03:06:45 +0900195 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900196 virtual BinaryValue* DeepCopy() const OVERRIDE;
197 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900198
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900199 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900200 // Constructor is private so that only objects with valid buffer pointers
201 // and size values can be created.
deanm@google.com522c3832008-08-04 22:56:25 +0900202 BinaryValue(char* buffer, size_t size);
initial.commit3f4a7322008-07-27 06:49:38 +0900203
204 char* buffer_;
205 size_t size_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900206
207 DISALLOW_COPY_AND_ASSIGN(BinaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900208};
209
viettrungluu@chromium.org496dec22010-07-31 13:56:14 +0900210// DictionaryValue provides a key-value dictionary with (optional) "path"
211// parsing for recursive access; see the comment at the top of the file. Keys
212// are |std::string|s and should be UTF-8 encoded.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900213class BASE_EXPORT DictionaryValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900214 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900215 DictionaryValue();
erg@google.com2d9b43e2010-12-09 03:06:44 +0900216 virtual ~DictionaryValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900217
initial.commit3f4a7322008-07-27 06:49:38 +0900218 // Returns true if the current dictionary has a value for the given key.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900219 bool HasKey(const std::string& key) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900220
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900221 // Returns the number of Values in this dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900222 size_t size() const { return dictionary_.size(); }
223
224 // Returns whether the dictionary is empty.
225 bool empty() const { return dictionary_.empty(); }
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900226
initial.commit3f4a7322008-07-27 06:49:38 +0900227 // Clears any current contents of this dictionary.
deanm@google.com522c3832008-08-04 22:56:25 +0900228 void Clear();
initial.commit3f4a7322008-07-27 06:49:38 +0900229
230 // Sets the Value associated with the given path starting from this object.
231 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
232 // into the next DictionaryValue down. Obviously, "." can't be used
233 // within a key, but there are no other restrictions on keys.
234 // If the key at any step of the way doesn't exist, or exists but isn't
235 // a DictionaryValue, a new DictionaryValue will be created and attached
236 // to the path in that location.
jcampan@chromium.org9b0f7be2009-04-15 09:17:53 +0900237 // Note that the dictionary takes ownership of the value referenced by
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900238 // |in_value|, and therefore |in_value| must be non-NULL.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900239 void Set(const std::string& path, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900240
241 // Convenience forms of Set(). These methods will replace any existing
242 // value at that path, even if it has a different type.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900243 void SetBoolean(const std::string& path, bool in_value);
244 void SetInteger(const std::string& path, int in_value);
arv@chromium.org13413eb2011-02-01 10:02:07 +0900245 void SetDouble(const std::string& path, double in_value);
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900246 void SetString(const std::string& path, const std::string& in_value);
viettrungluu@chromium.orgb7b6aa02010-08-05 01:58:12 +0900247 void SetString(const std::string& path, const string16& in_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900248
249 // Like Set(), but without special treatment of '.'. This allows e.g. URLs to
250 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900251 void SetWithoutPathExpansion(const std::string& key, Value* in_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900252
253 // Gets the Value associated with the given path starting from this object.
254 // A path has the form "<key>" or "<key>.<key>.[...]", where "." indexes
255 // into the next DictionaryValue down. If the path can be resolved
256 // successfully, the value for the last key in the path will be returned
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900257 // through the |out_value| parameter, and the function will return true.
258 // Otherwise, it will return false and |out_value| will be untouched.
initial.commit3f4a7322008-07-27 06:49:38 +0900259 // Note that the dictionary always owns the value that's returned.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900260 bool Get(const std::string& path, Value** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900261
262 // These are convenience forms of Get(). The value will be retrieved
263 // and the return value will be true if the path is valid and the value at
264 // the end of the path can be returned in the form specified.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900265 bool GetBoolean(const std::string& path, bool* out_value) const;
266 bool GetInteger(const std::string& path, int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900267 bool GetDouble(const std::string& path, double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900268 bool GetString(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900269 bool GetString(const std::string& path, string16* out_value) const;
evan@chromium.orgd9ab8de2010-02-19 22:32:16 +0900270 bool GetStringASCII(const std::string& path, std::string* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900271 bool GetBinary(const std::string& path, BinaryValue** out_value) const;
272 bool GetDictionary(const std::string& path,
initial.commit3f4a7322008-07-27 06:49:38 +0900273 DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900274 bool GetList(const std::string& path, ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900275
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900276 // Like Get(), but without special treatment of '.'. This allows e.g. URLs to
277 // be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900278 bool GetWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900279 Value** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900280 bool GetIntegerWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900281 int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900282 bool GetDoubleWithoutPathExpansion(const std::string& key,
jam@chromium.org5bd53922010-10-01 16:28:25 +0900283 double* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900284 bool GetStringWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900285 std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900286 bool GetStringWithoutPathExpansion(const std::string& key,
287 string16* out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900288 bool GetDictionaryWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900289 DictionaryValue** out_value) const;
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900290 bool GetListWithoutPathExpansion(const std::string& key,
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900291 ListValue** out_value) const;
292
initial.commit3f4a7322008-07-27 06:49:38 +0900293 // Removes the Value with the specified path from this dictionary (or one
294 // of its child dictionaries, if the path is more than just a local key).
295 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
296 // passed out via out_value. If |out_value| is NULL, the removed value will
297 // be deleted. This method returns true if |path| is a valid path; otherwise
298 // it will return false and the DictionaryValue object will be unchanged.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900299 bool Remove(const std::string& path, Value** out_value);
initial.commit3f4a7322008-07-27 06:49:38 +0900300
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900301 // Like Remove(), but without special treatment of '.'. This allows e.g. URLs
302 // to be used as paths.
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900303 bool RemoveWithoutPathExpansion(const std::string& key, Value** out_value);
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900304
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900305 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
306 // the copy. This never returns NULL, even if |this| itself is empty.
307 DictionaryValue* DeepCopyWithoutEmptyChildren();
308
mnissler@chromium.org17cee0e2010-05-14 22:17:40 +0900309 // Merge a given dictionary into this dictionary. This is done recursively,
310 // i.e. any subdictionaries will be merged as well. In case of key collisions,
311 // the passed in dictionary takes precedence and data already present will be
312 // replaced.
313 void MergeDictionary(const DictionaryValue* dictionary);
314
akalin@chromium.org71cd1302011-05-10 18:23:39 +0900315 // Swaps contents with the |other| dictionary.
316 void Swap(DictionaryValue* other) {
317 dictionary_.swap(other->dictionary_);
318 }
319
initial.commit3f4a7322008-07-27 06:49:38 +0900320 // This class provides an iterator for the keys in the dictionary.
321 // It can't be used to modify the dictionary.
pkasting@chromium.org36515db2009-11-26 05:47:52 +0900322 //
323 // YOU SHOULD ALWAYS USE THE XXXWithoutPathExpansion() APIs WITH THESE, NOT
324 // THE NORMAL XXX() APIs. This makes sure things will work correctly if any
325 // keys have '.'s in them.
darin@chromium.org020e0b12011-04-30 03:08:21 +0900326 class key_iterator
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900327 : private std::iterator<std::input_iterator_tag, const std::string> {
jar@chromium.orgaf39a372009-02-18 07:50:14 +0900328 public:
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900329 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
erg@google.combf6ce9f2010-01-27 08:08:02 +0900330 key_iterator operator++() {
331 ++itr_;
332 return *this;
333 }
viettrungluu@chromium.org178423d2010-07-31 04:47:47 +0900334 const std::string& operator*() { return itr_->first; }
initial.commit3f4a7322008-07-27 06:49:38 +0900335 bool operator!=(const key_iterator& other) { return itr_ != other.itr_; }
336 bool operator==(const key_iterator& other) { return itr_ == other.itr_; }
337
jar@chromium.orgaf39a372009-02-18 07:50:14 +0900338 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900339 ValueMap::const_iterator itr_;
340 };
341
342 key_iterator begin_keys() const { return key_iterator(dictionary_.begin()); }
343 key_iterator end_keys() const { return key_iterator(dictionary_.end()); }
344
erg@google.comd5fffd42011-01-08 03:06:45 +0900345 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900346 virtual DictionaryValue* DeepCopy() const OVERRIDE;
347 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900348
initial.commit3f4a7322008-07-27 06:49:38 +0900349 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900350 ValueMap dictionary_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900351
352 DISALLOW_COPY_AND_ASSIGN(DictionaryValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900353};
354
355// This type of Value represents a list of other Value values.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900356class BASE_EXPORT ListValue : public Value {
initial.commit3f4a7322008-07-27 06:49:38 +0900357 public:
erg@google.comd5fffd42011-01-08 03:06:45 +0900358 typedef ValueVector::iterator iterator;
359 typedef ValueVector::const_iterator const_iterator;
360
erg@chromium.org493f5f62010-07-16 06:03:54 +0900361 ListValue();
hans@chromium.org78b75932011-05-25 18:08:19 +0900362 virtual ~ListValue();
initial.commit3f4a7322008-07-27 06:49:38 +0900363
initial.commit3f4a7322008-07-27 06:49:38 +0900364 // Clears the contents of this ListValue
365 void Clear();
366
367 // Returns the number of Values in this list.
368 size_t GetSize() const { return list_.size(); }
369
tony@chromium.orge4948ab2009-12-02 09:20:32 +0900370 // Returns whether the list is empty.
371 bool empty() const { return list_.empty(); }
372
initial.commit3f4a7322008-07-27 06:49:38 +0900373 // Sets the list item at the given index to be the Value specified by
374 // the value given. If the index beyond the current end of the list, null
375 // Values will be used to pad out the list.
376 // Returns true if successful, or false if the index was negative or
377 // the value is a null pointer.
378 bool Set(size_t index, Value* in_value);
379
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900380 // Gets the Value at the given index. Modifies |out_value| (and returns true)
initial.commit3f4a7322008-07-27 06:49:38 +0900381 // only if the index falls within the current list range.
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900382 // Note that the list always owns the Value passed out via |out_value|.
initial.commit3f4a7322008-07-27 06:49:38 +0900383 bool Get(size_t index, Value** out_value) const;
384
skerner@chromium.org53f71f02010-04-09 04:06:15 +0900385 // Convenience forms of Get(). Modifies |out_value| (and returns true)
386 // only if the index is valid and the Value at that index can be returned
387 // in the specified form.
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900388 bool GetBoolean(size_t index, bool* out_value) const;
389 bool GetInteger(size_t index, int* out_value) const;
arv@chromium.org13413eb2011-02-01 10:02:07 +0900390 bool GetDouble(size_t index, double* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900391 bool GetString(size_t index, std::string* out_value) const;
viettrungluu@chromium.org58767ef2010-08-05 04:35:33 +0900392 bool GetString(size_t index, string16* out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900393 bool GetBinary(size_t index, BinaryValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900394 bool GetDictionary(size_t index, DictionaryValue** out_value) const;
aa@chromium.orgc93b02f2009-01-21 06:05:32 +0900395 bool GetList(size_t index, ListValue** out_value) const;
initial.commit3f4a7322008-07-27 06:49:38 +0900396
397 // Removes the Value with the specified index from this list.
398 // If |out_value| is non-NULL, the removed Value AND ITS OWNERSHIP will be
ericroman@google.com3d19ee52009-01-06 03:37:51 +0900399 // passed out via |out_value|. If |out_value| is NULL, the removed value will
initial.commit3f4a7322008-07-27 06:49:38 +0900400 // be deleted. This method returns true if |index| is valid; otherwise
401 // it will return false and the ListValue object will be unchanged.
402 bool Remove(size_t index, Value** out_value);
403
pkasting@chromium.orgdfe6a692009-12-01 04:59:11 +0900404 // Removes the first instance of |value| found in the list, if any, and
tfarina@chromium.org09cf4342011-08-14 02:34:31 +0900405 // deletes it. |index| is the location where |value| was found. Returns false
406 // if not found.
407 bool Remove(const Value& value, size_t* index);
pkasting@chromium.org727139c2009-05-09 09:33:04 +0900408
initial.commit3f4a7322008-07-27 06:49:38 +0900409 // Appends a Value to the end of the list.
410 void Append(Value* in_value);
411
markusheintz@chromium.org78621872011-03-18 22:56:38 +0900412 // Appends a Value if it's not already present. Takes ownership of the
413 // |in_value|. Returns true if successful, or false if the value was already
414 // present. If the value was already present the |in_value| is deleted.
zork@chromium.orgb5f742b2010-04-13 06:48:10 +0900415 bool AppendIfNotPresent(Value* in_value);
416
erikkay@chromium.org9034a232009-08-29 05:26:05 +0900417 // Insert a Value at index.
418 // Returns true if successful, or false if the index was out of range.
419 bool Insert(size_t index, Value* in_value);
420
pastarmovj@chromium.org1602a472011-09-20 00:23:10 +0900421 // Searches for the first instance of |value| in the list using the Equals
422 // method of the Value type.
423 // Returns a const_iterator to the found item or to end() if none exists.
424 const_iterator Find(const Value& value) const;
425
brettw@chromium.org2031cd82010-08-20 03:05:56 +0900426 // Swaps contents with the |other| list.
427 void Swap(ListValue* other) {
428 list_.swap(other->list_);
429 }
430
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900431 // Iteration.
432 iterator begin() { return list_.begin(); }
433 iterator end() { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900434
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900435 const_iterator begin() const { return list_.begin(); }
436 const_iterator end() const { return list_.end(); }
initial.commit3f4a7322008-07-27 06:49:38 +0900437
erg@google.comd5fffd42011-01-08 03:06:45 +0900438 // Overridden from Value:
tfarina@chromium.orgcc177402011-08-12 05:56:32 +0900439 virtual bool GetAsList(ListValue** out_value) OVERRIDE;
440 virtual bool GetAsList(const ListValue** out_value) const OVERRIDE;
441 virtual ListValue* DeepCopy() const OVERRIDE;
442 virtual bool Equals(const Value* other) const OVERRIDE;
erg@google.comd5fffd42011-01-08 03:06:45 +0900443
initial.commit3f4a7322008-07-27 06:49:38 +0900444 private:
initial.commit3f4a7322008-07-27 06:49:38 +0900445 ValueVector list_;
jcampan@chromium.orgd1105672009-09-15 01:56:12 +0900446
447 DISALLOW_COPY_AND_ASSIGN(ListValue);
initial.commit3f4a7322008-07-27 06:49:38 +0900448};
449
450// This interface is implemented by classes that know how to serialize and
451// deserialize Value objects.
darin@chromium.orge585bed2011-08-06 00:34:00 +0900452class BASE_EXPORT ValueSerializer {
initial.commit3f4a7322008-07-27 06:49:38 +0900453 public:
erg@chromium.org493f5f62010-07-16 06:03:54 +0900454 virtual ~ValueSerializer();
mmentovai@google.com4a5b6272008-08-07 00:46:59 +0900455
initial.commit3f4a7322008-07-27 06:49:38 +0900456 virtual bool Serialize(const Value& root) = 0;
457
458 // This method deserializes the subclass-specific format into a Value object.
aa@chromium.orgca9c79e2008-12-30 04:59:08 +0900459 // If the return value is non-NULL, the caller takes ownership of returned
erikkay@chromium.org64b2cf42010-04-07 00:42:39 +0900460 // Value. If the return value is NULL, and if error_code is non-NULL,
461 // error_code will be set with the underlying error.
462 // If |error_message| is non-null, it will be filled in with a formatted
463 // error message including the location of the error if appropriate.
464 virtual Value* Deserialize(int* error_code, std::string* error_str) = 0;
initial.commit3f4a7322008-07-27 06:49:38 +0900465};
466
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900467} // namespace base
468
469// http://crbug.com/88666
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900470using base::DictionaryValue;
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900471using base::ListValue;
472using base::StringValue;
473using base::Value;
dmazzoni@chromium.org13e53652011-07-13 04:15:03 +0900474
darin@chromium.org01f10702008-09-27 05:22:42 +0900475#endif // BASE_VALUES_H_