1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/values.h"
13 #include "base/json/json_writer.h"
14 #include "base/logging.h"
15 #include "base/move.h"
16 #include "base/strings/string_util.h"
17 #include "base/strings/utf_string_conversions.h"
23 scoped_ptr
<Value
> CopyWithoutEmptyChildren(const Value
& node
);
25 // Make a deep copy of |node|, but don't include empty lists or dictionaries
26 // in the copy. It's possible for this function to return NULL and it
27 // expects |node| to always be non-NULL.
28 scoped_ptr
<ListValue
> CopyListWithoutEmptyChildren(const ListValue
& list
) {
29 scoped_ptr
<ListValue
> copy
;
30 for (ListValue::const_iterator it
= list
.begin(); it
!= list
.end(); ++it
) {
31 scoped_ptr
<Value
> child_copy
= CopyWithoutEmptyChildren(**it
);
34 copy
.reset(new ListValue
);
35 copy
->Append(child_copy
.Pass());
41 scoped_ptr
<DictionaryValue
> CopyDictionaryWithoutEmptyChildren(
42 const DictionaryValue
& dict
) {
43 scoped_ptr
<DictionaryValue
> copy
;
44 for (DictionaryValue::Iterator
it(dict
); !it
.IsAtEnd(); it
.Advance()) {
45 scoped_ptr
<Value
> child_copy
= CopyWithoutEmptyChildren(it
.value());
48 copy
.reset(new DictionaryValue
);
49 copy
->SetWithoutPathExpansion(it
.key(), child_copy
.Pass());
55 scoped_ptr
<Value
> CopyWithoutEmptyChildren(const Value
& node
) {
56 switch (node
.GetType()) {
57 case Value::TYPE_LIST
:
58 return CopyListWithoutEmptyChildren(static_cast<const ListValue
&>(node
));
60 case Value::TYPE_DICTIONARY
:
61 return CopyDictionaryWithoutEmptyChildren(
62 static_cast<const DictionaryValue
&>(node
));
65 return node
.CreateDeepCopy();
69 // A small functor for comparing Values for std::find_if and similar.
72 // Pass the value against which all consecutive calls of the () operator will
73 // compare their argument to. This Value object must not be destroyed while
74 // the ValueEquals is in use.
75 explicit ValueEquals(const Value
* first
) : first_(first
) { }
77 bool operator ()(const Value
* second
) const {
78 return first_
->Equals(second
);
91 scoped_ptr
<Value
> Value::CreateNullValue() {
92 return make_scoped_ptr(new Value(TYPE_NULL
));
95 bool Value::GetAsBinary(const BinaryValue
** out_value
) const {
99 bool Value::GetAsBoolean(bool* out_value
) const {
103 bool Value::GetAsInteger(int* out_value
) const {
107 bool Value::GetAsDouble(double* out_value
) const {
111 bool Value::GetAsString(std::string
* out_value
) const {
115 bool Value::GetAsString(string16
* out_value
) const {
119 bool Value::GetAsString(const StringValue
** out_value
) const {
123 bool Value::GetAsList(ListValue
** out_value
) {
127 bool Value::GetAsList(const ListValue
** out_value
) const {
131 bool Value::GetAsDictionary(DictionaryValue
** out_value
) {
135 bool Value::GetAsDictionary(const DictionaryValue
** out_value
) const {
139 Value
* Value::DeepCopy() const {
140 // This method should only be getting called for null Values--all subclasses
141 // need to provide their own implementation;.
142 DCHECK(IsType(TYPE_NULL
));
143 return CreateNullValue().release();
146 scoped_ptr
<Value
> Value::CreateDeepCopy() const {
147 return make_scoped_ptr(DeepCopy());
150 bool Value::Equals(const Value
* other
) const {
151 // This method should only be getting called for null Values--all subclasses
152 // need to provide their own implementation;.
153 DCHECK(IsType(TYPE_NULL
));
154 return other
->IsType(TYPE_NULL
);
158 bool Value::Equals(const Value
* a
, const Value
* b
) {
159 if ((a
== NULL
) && (b
== NULL
)) return true;
160 if ((a
== NULL
) ^ (b
== NULL
)) return false;
164 Value::Value(Type type
) : type_(type
) {}
166 Value::Value(const Value
& that
) : type_(that
.type_
) {}
168 Value
& Value::operator=(const Value
& that
) {
173 ///////////////////// FundamentalValue ////////////////////
175 FundamentalValue::FundamentalValue(bool in_value
)
176 : Value(TYPE_BOOLEAN
), boolean_value_(in_value
) {
179 FundamentalValue::FundamentalValue(int in_value
)
180 : Value(TYPE_INTEGER
), integer_value_(in_value
) {
183 FundamentalValue::FundamentalValue(double in_value
)
184 : Value(TYPE_DOUBLE
), double_value_(in_value
) {
185 if (!std::isfinite(double_value_
)) {
186 NOTREACHED() << "Non-finite (i.e. NaN or positive/negative infinity) "
187 << "values cannot be represented in JSON";
192 FundamentalValue::~FundamentalValue() {
195 bool FundamentalValue::GetAsBoolean(bool* out_value
) const {
196 if (out_value
&& IsType(TYPE_BOOLEAN
))
197 *out_value
= boolean_value_
;
198 return (IsType(TYPE_BOOLEAN
));
201 bool FundamentalValue::GetAsInteger(int* out_value
) const {
202 if (out_value
&& IsType(TYPE_INTEGER
))
203 *out_value
= integer_value_
;
204 return (IsType(TYPE_INTEGER
));
207 bool FundamentalValue::GetAsDouble(double* out_value
) const {
208 if (out_value
&& IsType(TYPE_DOUBLE
))
209 *out_value
= double_value_
;
210 else if (out_value
&& IsType(TYPE_INTEGER
))
211 *out_value
= integer_value_
;
212 return (IsType(TYPE_DOUBLE
) || IsType(TYPE_INTEGER
));
215 FundamentalValue
* FundamentalValue::DeepCopy() const {
218 return new FundamentalValue(boolean_value_
);
221 return new FundamentalValue(integer_value_
);
224 return new FundamentalValue(double_value_
);
232 bool FundamentalValue::Equals(const Value
* other
) const {
233 if (other
->GetType() != GetType())
239 return GetAsBoolean(&lhs
) && other
->GetAsBoolean(&rhs
) && lhs
== rhs
;
243 return GetAsInteger(&lhs
) && other
->GetAsInteger(&rhs
) && lhs
== rhs
;
247 return GetAsDouble(&lhs
) && other
->GetAsDouble(&rhs
) && lhs
== rhs
;
255 ///////////////////// StringValue ////////////////////
257 StringValue::StringValue(const std::string
& in_value
)
258 : Value(TYPE_STRING
),
260 DCHECK(IsStringUTF8(in_value
));
263 StringValue::StringValue(const string16
& in_value
)
264 : Value(TYPE_STRING
),
265 value_(UTF16ToUTF8(in_value
)) {
268 StringValue::~StringValue() {
271 std::string
* StringValue::GetString() {
275 const std::string
& StringValue::GetString() const {
279 bool StringValue::GetAsString(std::string
* out_value
) const {
285 bool StringValue::GetAsString(string16
* out_value
) const {
287 *out_value
= UTF8ToUTF16(value_
);
291 bool StringValue::GetAsString(const StringValue
** out_value
) const {
297 StringValue
* StringValue::DeepCopy() const {
298 return new StringValue(value_
);
301 bool StringValue::Equals(const Value
* other
) const {
302 if (other
->GetType() != GetType())
304 std::string lhs
, rhs
;
305 return GetAsString(&lhs
) && other
->GetAsString(&rhs
) && lhs
== rhs
;
308 ///////////////////// BinaryValue ////////////////////
310 BinaryValue::BinaryValue()
311 : Value(TYPE_BINARY
),
315 BinaryValue::BinaryValue(scoped_ptr
<char[]> buffer
, size_t size
)
316 : Value(TYPE_BINARY
),
317 buffer_(buffer
.Pass()),
321 BinaryValue::~BinaryValue() {
325 BinaryValue
* BinaryValue::CreateWithCopiedBuffer(const char* buffer
,
327 char* buffer_copy
= new char[size
];
328 memcpy(buffer_copy
, buffer
, size
);
329 scoped_ptr
<char[]> scoped_buffer_copy(buffer_copy
);
330 return new BinaryValue(scoped_buffer_copy
.Pass(), size
);
333 bool BinaryValue::GetAsBinary(const BinaryValue
** out_value
) const {
339 BinaryValue
* BinaryValue::DeepCopy() const {
340 return CreateWithCopiedBuffer(buffer_
.get(), size_
);
343 bool BinaryValue::Equals(const Value
* other
) const {
344 if (other
->GetType() != GetType())
346 const BinaryValue
* other_binary
= static_cast<const BinaryValue
*>(other
);
347 if (other_binary
->size_
!= size_
)
349 return !memcmp(GetBuffer(), other_binary
->GetBuffer(), size_
);
352 ///////////////////// DictionaryValue ////////////////////
354 DictionaryValue::DictionaryValue()
355 : Value(TYPE_DICTIONARY
) {
358 DictionaryValue::~DictionaryValue() {
362 bool DictionaryValue::GetAsDictionary(DictionaryValue
** out_value
) {
368 bool DictionaryValue::GetAsDictionary(const DictionaryValue
** out_value
) const {
374 bool DictionaryValue::HasKey(const std::string
& key
) const {
375 DCHECK(IsStringUTF8(key
));
376 ValueMap::const_iterator current_entry
= dictionary_
.find(key
);
377 DCHECK((current_entry
== dictionary_
.end()) || current_entry
->second
);
378 return current_entry
!= dictionary_
.end();
381 void DictionaryValue::Clear() {
382 ValueMap::iterator dict_iterator
= dictionary_
.begin();
383 while (dict_iterator
!= dictionary_
.end()) {
384 delete dict_iterator
->second
;
391 void DictionaryValue::Set(const std::string
& path
, scoped_ptr
<Value
> in_value
) {
392 DCHECK(IsStringUTF8(path
));
395 std::string
current_path(path
);
396 DictionaryValue
* current_dictionary
= this;
397 for (size_t delimiter_position
= current_path
.find('.');
398 delimiter_position
!= std::string::npos
;
399 delimiter_position
= current_path
.find('.')) {
400 // Assume that we're indexing into a dictionary.
401 std::string
key(current_path
, 0, delimiter_position
);
402 DictionaryValue
* child_dictionary
= NULL
;
403 if (!current_dictionary
->GetDictionary(key
, &child_dictionary
)) {
404 child_dictionary
= new DictionaryValue
;
405 current_dictionary
->SetWithoutPathExpansion(key
, child_dictionary
);
408 current_dictionary
= child_dictionary
;
409 current_path
.erase(0, delimiter_position
+ 1);
412 current_dictionary
->SetWithoutPathExpansion(current_path
, in_value
.Pass());
415 void DictionaryValue::Set(const std::string
& path
, Value
* in_value
) {
416 Set(path
, make_scoped_ptr(in_value
));
419 void DictionaryValue::SetBoolean(const std::string
& path
, bool in_value
) {
420 Set(path
, new FundamentalValue(in_value
));
423 void DictionaryValue::SetInteger(const std::string
& path
, int in_value
) {
424 Set(path
, new FundamentalValue(in_value
));
427 void DictionaryValue::SetDouble(const std::string
& path
, double in_value
) {
428 Set(path
, new FundamentalValue(in_value
));
431 void DictionaryValue::SetString(const std::string
& path
,
432 const std::string
& in_value
) {
433 Set(path
, new StringValue(in_value
));
436 void DictionaryValue::SetString(const std::string
& path
,
437 const string16
& in_value
) {
438 Set(path
, new StringValue(in_value
));
441 void DictionaryValue::SetWithoutPathExpansion(const std::string
& key
,
442 scoped_ptr
<Value
> in_value
) {
443 Value
* bare_ptr
= in_value
.release();
444 // If there's an existing value here, we need to delete it, because
445 // we own all our children.
446 std::pair
<ValueMap::iterator
, bool> ins_res
=
447 dictionary_
.insert(std::make_pair(key
, bare_ptr
));
448 if (!ins_res
.second
) {
449 DCHECK_NE(ins_res
.first
->second
, bare_ptr
); // This would be bogus
450 delete ins_res
.first
->second
;
451 ins_res
.first
->second
= bare_ptr
;
455 void DictionaryValue::SetWithoutPathExpansion(const std::string
& key
,
457 SetWithoutPathExpansion(key
, make_scoped_ptr(in_value
));
460 void DictionaryValue::SetBooleanWithoutPathExpansion(
461 const std::string
& path
, bool in_value
) {
462 SetWithoutPathExpansion(path
, new FundamentalValue(in_value
));
465 void DictionaryValue::SetIntegerWithoutPathExpansion(
466 const std::string
& path
, int in_value
) {
467 SetWithoutPathExpansion(path
, new FundamentalValue(in_value
));
470 void DictionaryValue::SetDoubleWithoutPathExpansion(
471 const std::string
& path
, double in_value
) {
472 SetWithoutPathExpansion(path
, new FundamentalValue(in_value
));
475 void DictionaryValue::SetStringWithoutPathExpansion(
476 const std::string
& path
, const std::string
& in_value
) {
477 SetWithoutPathExpansion(path
, new StringValue(in_value
));
480 void DictionaryValue::SetStringWithoutPathExpansion(
481 const std::string
& path
, const string16
& in_value
) {
482 SetWithoutPathExpansion(path
, new StringValue(in_value
));
485 bool DictionaryValue::Get(StringPiece path
,
486 const Value
** out_value
) const {
487 DCHECK(IsStringUTF8(path
));
488 StringPiece
current_path(path
);
489 const DictionaryValue
* current_dictionary
= this;
490 for (size_t delimiter_position
= current_path
.find('.');
491 delimiter_position
!= std::string::npos
;
492 delimiter_position
= current_path
.find('.')) {
493 const DictionaryValue
* child_dictionary
= NULL
;
494 if (!current_dictionary
->GetDictionaryWithoutPathExpansion(
495 current_path
.substr(0, delimiter_position
).as_string(),
496 &child_dictionary
)) {
500 current_dictionary
= child_dictionary
;
501 current_path
= current_path
.substr(delimiter_position
+ 1);
504 return current_dictionary
->GetWithoutPathExpansion(current_path
.as_string(),
508 bool DictionaryValue::Get(StringPiece path
, Value
** out_value
) {
509 return static_cast<const DictionaryValue
&>(*this).Get(
511 const_cast<const Value
**>(out_value
));
514 bool DictionaryValue::GetBoolean(const std::string
& path
,
515 bool* bool_value
) const {
517 if (!Get(path
, &value
))
520 return value
->GetAsBoolean(bool_value
);
523 bool DictionaryValue::GetInteger(const std::string
& path
,
524 int* out_value
) const {
526 if (!Get(path
, &value
))
529 return value
->GetAsInteger(out_value
);
532 bool DictionaryValue::GetDouble(const std::string
& path
,
533 double* out_value
) const {
535 if (!Get(path
, &value
))
538 return value
->GetAsDouble(out_value
);
541 bool DictionaryValue::GetString(const std::string
& path
,
542 std::string
* out_value
) const {
544 if (!Get(path
, &value
))
547 return value
->GetAsString(out_value
);
550 bool DictionaryValue::GetString(const std::string
& path
,
551 string16
* out_value
) const {
553 if (!Get(path
, &value
))
556 return value
->GetAsString(out_value
);
559 bool DictionaryValue::GetStringASCII(const std::string
& path
,
560 std::string
* out_value
) const {
562 if (!GetString(path
, &out
))
565 if (!IsStringASCII(out
)) {
570 out_value
->assign(out
);
574 bool DictionaryValue::GetBinary(const std::string
& path
,
575 const BinaryValue
** out_value
) const {
577 bool result
= Get(path
, &value
);
578 if (!result
|| !value
->IsType(TYPE_BINARY
))
582 *out_value
= static_cast<const BinaryValue
*>(value
);
587 bool DictionaryValue::GetBinary(const std::string
& path
,
588 BinaryValue
** out_value
) {
589 return static_cast<const DictionaryValue
&>(*this).GetBinary(
591 const_cast<const BinaryValue
**>(out_value
));
594 bool DictionaryValue::GetDictionary(StringPiece path
,
595 const DictionaryValue
** out_value
) const {
597 bool result
= Get(path
, &value
);
598 if (!result
|| !value
->IsType(TYPE_DICTIONARY
))
602 *out_value
= static_cast<const DictionaryValue
*>(value
);
607 bool DictionaryValue::GetDictionary(StringPiece path
,
608 DictionaryValue
** out_value
) {
609 return static_cast<const DictionaryValue
&>(*this).GetDictionary(
611 const_cast<const DictionaryValue
**>(out_value
));
614 bool DictionaryValue::GetList(const std::string
& path
,
615 const ListValue
** out_value
) const {
617 bool result
= Get(path
, &value
);
618 if (!result
|| !value
->IsType(TYPE_LIST
))
622 *out_value
= static_cast<const ListValue
*>(value
);
627 bool DictionaryValue::GetList(const std::string
& path
, ListValue
** out_value
) {
628 return static_cast<const DictionaryValue
&>(*this).GetList(
630 const_cast<const ListValue
**>(out_value
));
633 bool DictionaryValue::GetWithoutPathExpansion(const std::string
& key
,
634 const Value
** out_value
) const {
635 DCHECK(IsStringUTF8(key
));
636 ValueMap::const_iterator entry_iterator
= dictionary_
.find(key
);
637 if (entry_iterator
== dictionary_
.end())
640 const Value
* entry
= entry_iterator
->second
;
646 bool DictionaryValue::GetWithoutPathExpansion(const std::string
& key
,
648 return static_cast<const DictionaryValue
&>(*this).GetWithoutPathExpansion(
650 const_cast<const Value
**>(out_value
));
653 bool DictionaryValue::GetBooleanWithoutPathExpansion(const std::string
& key
,
654 bool* out_value
) const {
656 if (!GetWithoutPathExpansion(key
, &value
))
659 return value
->GetAsBoolean(out_value
);
662 bool DictionaryValue::GetIntegerWithoutPathExpansion(const std::string
& key
,
663 int* out_value
) const {
665 if (!GetWithoutPathExpansion(key
, &value
))
668 return value
->GetAsInteger(out_value
);
671 bool DictionaryValue::GetDoubleWithoutPathExpansion(const std::string
& key
,
672 double* out_value
) const {
674 if (!GetWithoutPathExpansion(key
, &value
))
677 return value
->GetAsDouble(out_value
);
680 bool DictionaryValue::GetStringWithoutPathExpansion(
681 const std::string
& key
,
682 std::string
* out_value
) const {
684 if (!GetWithoutPathExpansion(key
, &value
))
687 return value
->GetAsString(out_value
);
690 bool DictionaryValue::GetStringWithoutPathExpansion(const std::string
& key
,
691 string16
* out_value
) const {
693 if (!GetWithoutPathExpansion(key
, &value
))
696 return value
->GetAsString(out_value
);
699 bool DictionaryValue::GetDictionaryWithoutPathExpansion(
700 const std::string
& key
,
701 const DictionaryValue
** out_value
) const {
703 bool result
= GetWithoutPathExpansion(key
, &value
);
704 if (!result
|| !value
->IsType(TYPE_DICTIONARY
))
708 *out_value
= static_cast<const DictionaryValue
*>(value
);
713 bool DictionaryValue::GetDictionaryWithoutPathExpansion(
714 const std::string
& key
,
715 DictionaryValue
** out_value
) {
716 const DictionaryValue
& const_this
=
717 static_cast<const DictionaryValue
&>(*this);
718 return const_this
.GetDictionaryWithoutPathExpansion(
720 const_cast<const DictionaryValue
**>(out_value
));
723 bool DictionaryValue::GetListWithoutPathExpansion(
724 const std::string
& key
,
725 const ListValue
** out_value
) const {
727 bool result
= GetWithoutPathExpansion(key
, &value
);
728 if (!result
|| !value
->IsType(TYPE_LIST
))
732 *out_value
= static_cast<const ListValue
*>(value
);
737 bool DictionaryValue::GetListWithoutPathExpansion(const std::string
& key
,
738 ListValue
** out_value
) {
740 static_cast<const DictionaryValue
&>(*this).GetListWithoutPathExpansion(
742 const_cast<const ListValue
**>(out_value
));
745 bool DictionaryValue::Remove(const std::string
& path
,
746 scoped_ptr
<Value
>* out_value
) {
747 DCHECK(IsStringUTF8(path
));
748 std::string
current_path(path
);
749 DictionaryValue
* current_dictionary
= this;
750 size_t delimiter_position
= current_path
.rfind('.');
751 if (delimiter_position
!= std::string::npos
) {
752 if (!GetDictionary(current_path
.substr(0, delimiter_position
),
753 ¤t_dictionary
))
755 current_path
.erase(0, delimiter_position
+ 1);
758 return current_dictionary
->RemoveWithoutPathExpansion(current_path
,
762 bool DictionaryValue::RemoveWithoutPathExpansion(const std::string
& key
,
763 scoped_ptr
<Value
>* out_value
) {
764 DCHECK(IsStringUTF8(key
));
765 ValueMap::iterator entry_iterator
= dictionary_
.find(key
);
766 if (entry_iterator
== dictionary_
.end())
769 Value
* entry
= entry_iterator
->second
;
771 out_value
->reset(entry
);
774 dictionary_
.erase(entry_iterator
);
778 bool DictionaryValue::RemovePath(const std::string
& path
,
779 scoped_ptr
<Value
>* out_value
) {
781 size_t delimiter_position
= path
.find('.');
783 if (delimiter_position
== std::string::npos
)
784 return RemoveWithoutPathExpansion(path
, out_value
);
786 const std::string subdict_path
= path
.substr(0, delimiter_position
);
787 DictionaryValue
* subdict
= NULL
;
788 if (!GetDictionary(subdict_path
, &subdict
))
790 result
= subdict
->RemovePath(path
.substr(delimiter_position
+ 1),
792 if (result
&& subdict
->empty())
793 RemoveWithoutPathExpansion(subdict_path
, NULL
);
798 scoped_ptr
<DictionaryValue
> DictionaryValue::DeepCopyWithoutEmptyChildren()
800 scoped_ptr
<DictionaryValue
> copy
= CopyDictionaryWithoutEmptyChildren(*this);
802 copy
.reset(new DictionaryValue
);
806 void DictionaryValue::MergeDictionary(const DictionaryValue
* dictionary
) {
807 for (DictionaryValue::Iterator
it(*dictionary
); !it
.IsAtEnd(); it
.Advance()) {
808 const Value
* merge_value
= &it
.value();
809 // Check whether we have to merge dictionaries.
810 if (merge_value
->IsType(Value::TYPE_DICTIONARY
)) {
811 DictionaryValue
* sub_dict
;
812 if (GetDictionaryWithoutPathExpansion(it
.key(), &sub_dict
)) {
813 sub_dict
->MergeDictionary(
814 static_cast<const DictionaryValue
*>(merge_value
));
818 // All other cases: Make a copy and hook it up.
819 SetWithoutPathExpansion(it
.key(), merge_value
->DeepCopy());
823 void DictionaryValue::Swap(DictionaryValue
* other
) {
824 dictionary_
.swap(other
->dictionary_
);
827 DictionaryValue::Iterator::Iterator(const DictionaryValue
& target
)
829 it_(target
.dictionary_
.begin()) {}
831 DictionaryValue::Iterator::~Iterator() {}
833 DictionaryValue
* DictionaryValue::DeepCopy() const {
834 DictionaryValue
* result
= new DictionaryValue
;
836 for (ValueMap::const_iterator
current_entry(dictionary_
.begin());
837 current_entry
!= dictionary_
.end(); ++current_entry
) {
838 result
->SetWithoutPathExpansion(current_entry
->first
,
839 current_entry
->second
->DeepCopy());
845 scoped_ptr
<DictionaryValue
> DictionaryValue::CreateDeepCopy() const {
846 return make_scoped_ptr(DeepCopy());
849 bool DictionaryValue::Equals(const Value
* other
) const {
850 if (other
->GetType() != GetType())
853 const DictionaryValue
* other_dict
=
854 static_cast<const DictionaryValue
*>(other
);
855 Iterator
lhs_it(*this);
856 Iterator
rhs_it(*other_dict
);
857 while (!lhs_it
.IsAtEnd() && !rhs_it
.IsAtEnd()) {
858 if (lhs_it
.key() != rhs_it
.key() ||
859 !lhs_it
.value().Equals(&rhs_it
.value())) {
865 if (!lhs_it
.IsAtEnd() || !rhs_it
.IsAtEnd())
871 ///////////////////// ListValue ////////////////////
873 ListValue::ListValue() : Value(TYPE_LIST
) {
876 ListValue::~ListValue() {
880 void ListValue::Clear() {
881 for (ValueVector::iterator
i(list_
.begin()); i
!= list_
.end(); ++i
)
886 bool ListValue::Set(size_t index
, Value
* in_value
) {
890 if (index
>= list_
.size()) {
891 // Pad out any intermediate indexes with null settings
892 while (index
> list_
.size())
893 Append(CreateNullValue());
896 DCHECK(list_
[index
] != in_value
);
898 list_
[index
] = in_value
;
903 bool ListValue::Set(size_t index
, scoped_ptr
<Value
> in_value
) {
904 return Set(index
, in_value
.release());
907 bool ListValue::Get(size_t index
, const Value
** out_value
) const {
908 if (index
>= list_
.size())
912 *out_value
= list_
[index
];
917 bool ListValue::Get(size_t index
, Value
** out_value
) {
918 return static_cast<const ListValue
&>(*this).Get(
920 const_cast<const Value
**>(out_value
));
923 bool ListValue::GetBoolean(size_t index
, bool* bool_value
) const {
925 if (!Get(index
, &value
))
928 return value
->GetAsBoolean(bool_value
);
931 bool ListValue::GetInteger(size_t index
, int* out_value
) const {
933 if (!Get(index
, &value
))
936 return value
->GetAsInteger(out_value
);
939 bool ListValue::GetDouble(size_t index
, double* out_value
) const {
941 if (!Get(index
, &value
))
944 return value
->GetAsDouble(out_value
);
947 bool ListValue::GetString(size_t index
, std::string
* out_value
) const {
949 if (!Get(index
, &value
))
952 return value
->GetAsString(out_value
);
955 bool ListValue::GetString(size_t index
, string16
* out_value
) const {
957 if (!Get(index
, &value
))
960 return value
->GetAsString(out_value
);
963 bool ListValue::GetBinary(size_t index
, const BinaryValue
** out_value
) const {
965 bool result
= Get(index
, &value
);
966 if (!result
|| !value
->IsType(TYPE_BINARY
))
970 *out_value
= static_cast<const BinaryValue
*>(value
);
975 bool ListValue::GetBinary(size_t index
, BinaryValue
** out_value
) {
976 return static_cast<const ListValue
&>(*this).GetBinary(
978 const_cast<const BinaryValue
**>(out_value
));
981 bool ListValue::GetDictionary(size_t index
,
982 const DictionaryValue
** out_value
) const {
984 bool result
= Get(index
, &value
);
985 if (!result
|| !value
->IsType(TYPE_DICTIONARY
))
989 *out_value
= static_cast<const DictionaryValue
*>(value
);
994 bool ListValue::GetDictionary(size_t index
, DictionaryValue
** out_value
) {
995 return static_cast<const ListValue
&>(*this).GetDictionary(
997 const_cast<const DictionaryValue
**>(out_value
));
1000 bool ListValue::GetList(size_t index
, const ListValue
** out_value
) const {
1002 bool result
= Get(index
, &value
);
1003 if (!result
|| !value
->IsType(TYPE_LIST
))
1007 *out_value
= static_cast<const ListValue
*>(value
);
1012 bool ListValue::GetList(size_t index
, ListValue
** out_value
) {
1013 return static_cast<const ListValue
&>(*this).GetList(
1015 const_cast<const ListValue
**>(out_value
));
1018 bool ListValue::Remove(size_t index
, scoped_ptr
<Value
>* out_value
) {
1019 if (index
>= list_
.size())
1023 out_value
->reset(list_
[index
]);
1025 delete list_
[index
];
1027 list_
.erase(list_
.begin() + index
);
1031 bool ListValue::Remove(const Value
& value
, size_t* index
) {
1032 for (ValueVector::iterator
i(list_
.begin()); i
!= list_
.end(); ++i
) {
1033 if ((*i
)->Equals(&value
)) {
1034 size_t previous_index
= i
- list_
.begin();
1039 *index
= previous_index
;
1046 ListValue::iterator
ListValue::Erase(iterator iter
,
1047 scoped_ptr
<Value
>* out_value
) {
1049 out_value
->reset(*iter
);
1053 return list_
.erase(iter
);
1056 void ListValue::Append(scoped_ptr
<Value
> in_value
) {
1057 Append(in_value
.release());
1060 void ListValue::Append(Value
* in_value
) {
1062 list_
.push_back(in_value
);
1065 void ListValue::AppendBoolean(bool in_value
) {
1066 Append(new FundamentalValue(in_value
));
1069 void ListValue::AppendInteger(int in_value
) {
1070 Append(new FundamentalValue(in_value
));
1073 void ListValue::AppendDouble(double in_value
) {
1074 Append(new FundamentalValue(in_value
));
1077 void ListValue::AppendString(const std::string
& in_value
) {
1078 Append(new StringValue(in_value
));
1081 void ListValue::AppendString(const string16
& in_value
) {
1082 Append(new StringValue(in_value
));
1085 void ListValue::AppendStrings(const std::vector
<std::string
>& in_values
) {
1086 for (std::vector
<std::string
>::const_iterator it
= in_values
.begin();
1087 it
!= in_values
.end(); ++it
) {
1092 void ListValue::AppendStrings(const std::vector
<string16
>& in_values
) {
1093 for (std::vector
<string16
>::const_iterator it
= in_values
.begin();
1094 it
!= in_values
.end(); ++it
) {
1099 bool ListValue::AppendIfNotPresent(Value
* in_value
) {
1101 for (ValueVector::const_iterator
i(list_
.begin()); i
!= list_
.end(); ++i
) {
1102 if ((*i
)->Equals(in_value
)) {
1107 list_
.push_back(in_value
);
1111 bool ListValue::Insert(size_t index
, Value
* in_value
) {
1113 if (index
> list_
.size())
1116 list_
.insert(list_
.begin() + index
, in_value
);
1120 ListValue::const_iterator
ListValue::Find(const Value
& value
) const {
1121 return std::find_if(list_
.begin(), list_
.end(), ValueEquals(&value
));
1124 void ListValue::Swap(ListValue
* other
) {
1125 list_
.swap(other
->list_
);
1128 bool ListValue::GetAsList(ListValue
** out_value
) {
1134 bool ListValue::GetAsList(const ListValue
** out_value
) const {
1140 ListValue
* ListValue::DeepCopy() const {
1141 ListValue
* result
= new ListValue
;
1143 for (ValueVector::const_iterator
i(list_
.begin()); i
!= list_
.end(); ++i
)
1144 result
->Append((*i
)->DeepCopy());
1149 scoped_ptr
<ListValue
> ListValue::CreateDeepCopy() const {
1150 return make_scoped_ptr(DeepCopy());
1153 bool ListValue::Equals(const Value
* other
) const {
1154 if (other
->GetType() != GetType())
1157 const ListValue
* other_list
=
1158 static_cast<const ListValue
*>(other
);
1159 const_iterator lhs_it
, rhs_it
;
1160 for (lhs_it
= begin(), rhs_it
= other_list
->begin();
1161 lhs_it
!= end() && rhs_it
!= other_list
->end();
1162 ++lhs_it
, ++rhs_it
) {
1163 if (!(*lhs_it
)->Equals(*rhs_it
))
1166 if (lhs_it
!= end() || rhs_it
!= other_list
->end())
1172 ValueSerializer::~ValueSerializer() {
1175 ValueDeserializer::~ValueDeserializer() {
1178 std::ostream
& operator<<(std::ostream
& out
, const Value
& value
) {
1180 JSONWriter::WriteWithOptions(value
, JSONWriter::OPTIONS_PRETTY_PRINT
, &json
);