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
->GetDictionary(
495 current_path
.substr(0, delimiter_position
), &child_dictionary
)) {
499 current_dictionary
= child_dictionary
;
500 current_path
= current_path
.substr(delimiter_position
+ 1);
503 return current_dictionary
->GetWithoutPathExpansion(current_path
.as_string(),
507 bool DictionaryValue::Get(StringPiece path
, Value
** out_value
) {
508 return static_cast<const DictionaryValue
&>(*this).Get(
510 const_cast<const Value
**>(out_value
));
513 bool DictionaryValue::GetBoolean(const std::string
& path
,
514 bool* bool_value
) const {
516 if (!Get(path
, &value
))
519 return value
->GetAsBoolean(bool_value
);
522 bool DictionaryValue::GetInteger(const std::string
& path
,
523 int* out_value
) const {
525 if (!Get(path
, &value
))
528 return value
->GetAsInteger(out_value
);
531 bool DictionaryValue::GetDouble(const std::string
& path
,
532 double* out_value
) const {
534 if (!Get(path
, &value
))
537 return value
->GetAsDouble(out_value
);
540 bool DictionaryValue::GetString(const std::string
& path
,
541 std::string
* out_value
) const {
543 if (!Get(path
, &value
))
546 return value
->GetAsString(out_value
);
549 bool DictionaryValue::GetString(const std::string
& path
,
550 string16
* out_value
) const {
552 if (!Get(path
, &value
))
555 return value
->GetAsString(out_value
);
558 bool DictionaryValue::GetStringASCII(const std::string
& path
,
559 std::string
* out_value
) const {
561 if (!GetString(path
, &out
))
564 if (!IsStringASCII(out
)) {
569 out_value
->assign(out
);
573 bool DictionaryValue::GetBinary(const std::string
& path
,
574 const BinaryValue
** out_value
) const {
576 bool result
= Get(path
, &value
);
577 if (!result
|| !value
->IsType(TYPE_BINARY
))
581 *out_value
= static_cast<const BinaryValue
*>(value
);
586 bool DictionaryValue::GetBinary(const std::string
& path
,
587 BinaryValue
** out_value
) {
588 return static_cast<const DictionaryValue
&>(*this).GetBinary(
590 const_cast<const BinaryValue
**>(out_value
));
593 bool DictionaryValue::GetDictionary(StringPiece path
,
594 const DictionaryValue
** out_value
) const {
596 bool result
= Get(path
, &value
);
597 if (!result
|| !value
->IsType(TYPE_DICTIONARY
))
601 *out_value
= static_cast<const DictionaryValue
*>(value
);
606 bool DictionaryValue::GetDictionary(StringPiece path
,
607 DictionaryValue
** out_value
) {
608 return static_cast<const DictionaryValue
&>(*this).GetDictionary(
610 const_cast<const DictionaryValue
**>(out_value
));
613 bool DictionaryValue::GetList(const std::string
& path
,
614 const ListValue
** out_value
) const {
616 bool result
= Get(path
, &value
);
617 if (!result
|| !value
->IsType(TYPE_LIST
))
621 *out_value
= static_cast<const ListValue
*>(value
);
626 bool DictionaryValue::GetList(const std::string
& path
, ListValue
** out_value
) {
627 return static_cast<const DictionaryValue
&>(*this).GetList(
629 const_cast<const ListValue
**>(out_value
));
632 bool DictionaryValue::GetWithoutPathExpansion(const std::string
& key
,
633 const Value
** out_value
) const {
634 DCHECK(IsStringUTF8(key
));
635 ValueMap::const_iterator entry_iterator
= dictionary_
.find(key
);
636 if (entry_iterator
== dictionary_
.end())
639 const Value
* entry
= entry_iterator
->second
;
645 bool DictionaryValue::GetWithoutPathExpansion(const std::string
& key
,
647 return static_cast<const DictionaryValue
&>(*this).GetWithoutPathExpansion(
649 const_cast<const Value
**>(out_value
));
652 bool DictionaryValue::GetBooleanWithoutPathExpansion(const std::string
& key
,
653 bool* out_value
) const {
655 if (!GetWithoutPathExpansion(key
, &value
))
658 return value
->GetAsBoolean(out_value
);
661 bool DictionaryValue::GetIntegerWithoutPathExpansion(const std::string
& key
,
662 int* out_value
) const {
664 if (!GetWithoutPathExpansion(key
, &value
))
667 return value
->GetAsInteger(out_value
);
670 bool DictionaryValue::GetDoubleWithoutPathExpansion(const std::string
& key
,
671 double* out_value
) const {
673 if (!GetWithoutPathExpansion(key
, &value
))
676 return value
->GetAsDouble(out_value
);
679 bool DictionaryValue::GetStringWithoutPathExpansion(
680 const std::string
& key
,
681 std::string
* out_value
) const {
683 if (!GetWithoutPathExpansion(key
, &value
))
686 return value
->GetAsString(out_value
);
689 bool DictionaryValue::GetStringWithoutPathExpansion(const std::string
& key
,
690 string16
* out_value
) const {
692 if (!GetWithoutPathExpansion(key
, &value
))
695 return value
->GetAsString(out_value
);
698 bool DictionaryValue::GetDictionaryWithoutPathExpansion(
699 const std::string
& key
,
700 const DictionaryValue
** out_value
) const {
702 bool result
= GetWithoutPathExpansion(key
, &value
);
703 if (!result
|| !value
->IsType(TYPE_DICTIONARY
))
707 *out_value
= static_cast<const DictionaryValue
*>(value
);
712 bool DictionaryValue::GetDictionaryWithoutPathExpansion(
713 const std::string
& key
,
714 DictionaryValue
** out_value
) {
715 const DictionaryValue
& const_this
=
716 static_cast<const DictionaryValue
&>(*this);
717 return const_this
.GetDictionaryWithoutPathExpansion(
719 const_cast<const DictionaryValue
**>(out_value
));
722 bool DictionaryValue::GetListWithoutPathExpansion(
723 const std::string
& key
,
724 const ListValue
** out_value
) const {
726 bool result
= GetWithoutPathExpansion(key
, &value
);
727 if (!result
|| !value
->IsType(TYPE_LIST
))
731 *out_value
= static_cast<const ListValue
*>(value
);
736 bool DictionaryValue::GetListWithoutPathExpansion(const std::string
& key
,
737 ListValue
** out_value
) {
739 static_cast<const DictionaryValue
&>(*this).GetListWithoutPathExpansion(
741 const_cast<const ListValue
**>(out_value
));
744 bool DictionaryValue::Remove(const std::string
& path
,
745 scoped_ptr
<Value
>* out_value
) {
746 DCHECK(IsStringUTF8(path
));
747 std::string
current_path(path
);
748 DictionaryValue
* current_dictionary
= this;
749 size_t delimiter_position
= current_path
.rfind('.');
750 if (delimiter_position
!= std::string::npos
) {
751 if (!GetDictionary(current_path
.substr(0, delimiter_position
),
752 ¤t_dictionary
))
754 current_path
.erase(0, delimiter_position
+ 1);
757 return current_dictionary
->RemoveWithoutPathExpansion(current_path
,
761 bool DictionaryValue::RemoveWithoutPathExpansion(const std::string
& key
,
762 scoped_ptr
<Value
>* out_value
) {
763 DCHECK(IsStringUTF8(key
));
764 ValueMap::iterator entry_iterator
= dictionary_
.find(key
);
765 if (entry_iterator
== dictionary_
.end())
768 Value
* entry
= entry_iterator
->second
;
770 out_value
->reset(entry
);
773 dictionary_
.erase(entry_iterator
);
777 bool DictionaryValue::RemovePath(const std::string
& path
,
778 scoped_ptr
<Value
>* out_value
) {
780 size_t delimiter_position
= path
.find('.');
782 if (delimiter_position
== std::string::npos
)
783 return RemoveWithoutPathExpansion(path
, out_value
);
785 const std::string subdict_path
= path
.substr(0, delimiter_position
);
786 DictionaryValue
* subdict
= NULL
;
787 if (!GetDictionary(subdict_path
, &subdict
))
789 result
= subdict
->RemovePath(path
.substr(delimiter_position
+ 1),
791 if (result
&& subdict
->empty())
792 RemoveWithoutPathExpansion(subdict_path
, NULL
);
797 scoped_ptr
<DictionaryValue
> DictionaryValue::DeepCopyWithoutEmptyChildren()
799 scoped_ptr
<DictionaryValue
> copy
= CopyDictionaryWithoutEmptyChildren(*this);
801 copy
.reset(new DictionaryValue
);
805 void DictionaryValue::MergeDictionary(const DictionaryValue
* dictionary
) {
806 for (DictionaryValue::Iterator
it(*dictionary
); !it
.IsAtEnd(); it
.Advance()) {
807 const Value
* merge_value
= &it
.value();
808 // Check whether we have to merge dictionaries.
809 if (merge_value
->IsType(Value::TYPE_DICTIONARY
)) {
810 DictionaryValue
* sub_dict
;
811 if (GetDictionaryWithoutPathExpansion(it
.key(), &sub_dict
)) {
812 sub_dict
->MergeDictionary(
813 static_cast<const DictionaryValue
*>(merge_value
));
817 // All other cases: Make a copy and hook it up.
818 SetWithoutPathExpansion(it
.key(), merge_value
->DeepCopy());
822 void DictionaryValue::Swap(DictionaryValue
* other
) {
823 dictionary_
.swap(other
->dictionary_
);
826 DictionaryValue::Iterator::Iterator(const DictionaryValue
& target
)
828 it_(target
.dictionary_
.begin()) {}
830 DictionaryValue::Iterator::~Iterator() {}
832 DictionaryValue
* DictionaryValue::DeepCopy() const {
833 DictionaryValue
* result
= new DictionaryValue
;
835 for (ValueMap::const_iterator
current_entry(dictionary_
.begin());
836 current_entry
!= dictionary_
.end(); ++current_entry
) {
837 result
->SetWithoutPathExpansion(current_entry
->first
,
838 current_entry
->second
->DeepCopy());
844 scoped_ptr
<DictionaryValue
> DictionaryValue::CreateDeepCopy() const {
845 return make_scoped_ptr(DeepCopy());
848 bool DictionaryValue::Equals(const Value
* other
) const {
849 if (other
->GetType() != GetType())
852 const DictionaryValue
* other_dict
=
853 static_cast<const DictionaryValue
*>(other
);
854 Iterator
lhs_it(*this);
855 Iterator
rhs_it(*other_dict
);
856 while (!lhs_it
.IsAtEnd() && !rhs_it
.IsAtEnd()) {
857 if (lhs_it
.key() != rhs_it
.key() ||
858 !lhs_it
.value().Equals(&rhs_it
.value())) {
864 if (!lhs_it
.IsAtEnd() || !rhs_it
.IsAtEnd())
870 ///////////////////// ListValue ////////////////////
872 ListValue::ListValue() : Value(TYPE_LIST
) {
875 ListValue::~ListValue() {
879 void ListValue::Clear() {
880 for (ValueVector::iterator
i(list_
.begin()); i
!= list_
.end(); ++i
)
885 bool ListValue::Set(size_t index
, Value
* in_value
) {
889 if (index
>= list_
.size()) {
890 // Pad out any intermediate indexes with null settings
891 while (index
> list_
.size())
892 Append(CreateNullValue());
895 DCHECK(list_
[index
] != in_value
);
897 list_
[index
] = in_value
;
902 bool ListValue::Set(size_t index
, scoped_ptr
<Value
> in_value
) {
903 return Set(index
, in_value
.release());
906 bool ListValue::Get(size_t index
, const Value
** out_value
) const {
907 if (index
>= list_
.size())
911 *out_value
= list_
[index
];
916 bool ListValue::Get(size_t index
, Value
** out_value
) {
917 return static_cast<const ListValue
&>(*this).Get(
919 const_cast<const Value
**>(out_value
));
922 bool ListValue::GetBoolean(size_t index
, bool* bool_value
) const {
924 if (!Get(index
, &value
))
927 return value
->GetAsBoolean(bool_value
);
930 bool ListValue::GetInteger(size_t index
, int* out_value
) const {
932 if (!Get(index
, &value
))
935 return value
->GetAsInteger(out_value
);
938 bool ListValue::GetDouble(size_t index
, double* out_value
) const {
940 if (!Get(index
, &value
))
943 return value
->GetAsDouble(out_value
);
946 bool ListValue::GetString(size_t index
, std::string
* out_value
) const {
948 if (!Get(index
, &value
))
951 return value
->GetAsString(out_value
);
954 bool ListValue::GetString(size_t index
, string16
* out_value
) const {
956 if (!Get(index
, &value
))
959 return value
->GetAsString(out_value
);
962 bool ListValue::GetBinary(size_t index
, const BinaryValue
** out_value
) const {
964 bool result
= Get(index
, &value
);
965 if (!result
|| !value
->IsType(TYPE_BINARY
))
969 *out_value
= static_cast<const BinaryValue
*>(value
);
974 bool ListValue::GetBinary(size_t index
, BinaryValue
** out_value
) {
975 return static_cast<const ListValue
&>(*this).GetBinary(
977 const_cast<const BinaryValue
**>(out_value
));
980 bool ListValue::GetDictionary(size_t index
,
981 const DictionaryValue
** out_value
) const {
983 bool result
= Get(index
, &value
);
984 if (!result
|| !value
->IsType(TYPE_DICTIONARY
))
988 *out_value
= static_cast<const DictionaryValue
*>(value
);
993 bool ListValue::GetDictionary(size_t index
, DictionaryValue
** out_value
) {
994 return static_cast<const ListValue
&>(*this).GetDictionary(
996 const_cast<const DictionaryValue
**>(out_value
));
999 bool ListValue::GetList(size_t index
, const ListValue
** out_value
) const {
1001 bool result
= Get(index
, &value
);
1002 if (!result
|| !value
->IsType(TYPE_LIST
))
1006 *out_value
= static_cast<const ListValue
*>(value
);
1011 bool ListValue::GetList(size_t index
, ListValue
** out_value
) {
1012 return static_cast<const ListValue
&>(*this).GetList(
1014 const_cast<const ListValue
**>(out_value
));
1017 bool ListValue::Remove(size_t index
, scoped_ptr
<Value
>* out_value
) {
1018 if (index
>= list_
.size())
1022 out_value
->reset(list_
[index
]);
1024 delete list_
[index
];
1026 list_
.erase(list_
.begin() + index
);
1030 bool ListValue::Remove(const Value
& value
, size_t* index
) {
1031 for (ValueVector::iterator
i(list_
.begin()); i
!= list_
.end(); ++i
) {
1032 if ((*i
)->Equals(&value
)) {
1033 size_t previous_index
= i
- list_
.begin();
1038 *index
= previous_index
;
1045 ListValue::iterator
ListValue::Erase(iterator iter
,
1046 scoped_ptr
<Value
>* out_value
) {
1048 out_value
->reset(*iter
);
1052 return list_
.erase(iter
);
1055 void ListValue::Append(scoped_ptr
<Value
> in_value
) {
1056 Append(in_value
.release());
1059 void ListValue::Append(Value
* in_value
) {
1061 list_
.push_back(in_value
);
1064 void ListValue::AppendBoolean(bool in_value
) {
1065 Append(new FundamentalValue(in_value
));
1068 void ListValue::AppendInteger(int in_value
) {
1069 Append(new FundamentalValue(in_value
));
1072 void ListValue::AppendDouble(double in_value
) {
1073 Append(new FundamentalValue(in_value
));
1076 void ListValue::AppendString(const std::string
& in_value
) {
1077 Append(new StringValue(in_value
));
1080 void ListValue::AppendString(const string16
& in_value
) {
1081 Append(new StringValue(in_value
));
1084 void ListValue::AppendStrings(const std::vector
<std::string
>& in_values
) {
1085 for (std::vector
<std::string
>::const_iterator it
= in_values
.begin();
1086 it
!= in_values
.end(); ++it
) {
1091 void ListValue::AppendStrings(const std::vector
<string16
>& in_values
) {
1092 for (std::vector
<string16
>::const_iterator it
= in_values
.begin();
1093 it
!= in_values
.end(); ++it
) {
1098 bool ListValue::AppendIfNotPresent(Value
* in_value
) {
1100 for (ValueVector::const_iterator
i(list_
.begin()); i
!= list_
.end(); ++i
) {
1101 if ((*i
)->Equals(in_value
)) {
1106 list_
.push_back(in_value
);
1110 bool ListValue::Insert(size_t index
, Value
* in_value
) {
1112 if (index
> list_
.size())
1115 list_
.insert(list_
.begin() + index
, in_value
);
1119 ListValue::const_iterator
ListValue::Find(const Value
& value
) const {
1120 return std::find_if(list_
.begin(), list_
.end(), ValueEquals(&value
));
1123 void ListValue::Swap(ListValue
* other
) {
1124 list_
.swap(other
->list_
);
1127 bool ListValue::GetAsList(ListValue
** out_value
) {
1133 bool ListValue::GetAsList(const ListValue
** out_value
) const {
1139 ListValue
* ListValue::DeepCopy() const {
1140 ListValue
* result
= new ListValue
;
1142 for (ValueVector::const_iterator
i(list_
.begin()); i
!= list_
.end(); ++i
)
1143 result
->Append((*i
)->DeepCopy());
1148 scoped_ptr
<ListValue
> ListValue::CreateDeepCopy() const {
1149 return make_scoped_ptr(DeepCopy());
1152 bool ListValue::Equals(const Value
* other
) const {
1153 if (other
->GetType() != GetType())
1156 const ListValue
* other_list
=
1157 static_cast<const ListValue
*>(other
);
1158 const_iterator lhs_it
, rhs_it
;
1159 for (lhs_it
= begin(), rhs_it
= other_list
->begin();
1160 lhs_it
!= end() && rhs_it
!= other_list
->end();
1161 ++lhs_it
, ++rhs_it
) {
1162 if (!(*lhs_it
)->Equals(*rhs_it
))
1165 if (lhs_it
!= end() || rhs_it
!= other_list
->end())
1171 ValueSerializer::~ValueSerializer() {
1174 ValueDeserializer::~ValueDeserializer() {
1177 std::ostream
& operator<<(std::ostream
& out
, const Value
& value
) {
1179 JSONWriter::WriteWithOptions(value
, JSONWriter::OPTIONS_PRETTY_PRINT
, &json
);