// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights // reserved. Use of this source code is governed by a BSD-style license that // can be found in the LICENSE file. #include "libcef/common/values_impl.h" #include #include #include "base/memory/ptr_util.h" // CefValueImpl implementation. // static CefRefPtr CefValue::Create() { return new CefValueImpl(new base::Value()); } // static CefRefPtr CefValueImpl::GetOrCreateRefOrCopy( base::Value* value, void* parent_value, bool read_only, CefValueController* controller) { DCHECK(value); if (value->IsType(base::Value::Type::BINARY)) { return new CefValueImpl( CefBinaryValueImpl::GetOrCreateRef(value, parent_value, controller)); } if (value->IsType(base::Value::Type::DICTIONARY)) { base::DictionaryValue* dict_value = static_cast(value); return new CefValueImpl(CefDictionaryValueImpl::GetOrCreateRef( dict_value, parent_value, read_only, controller)); } if (value->IsType(base::Value::Type::LIST)) { base::ListValue* list_value = static_cast(value); return new CefValueImpl(CefListValueImpl::GetOrCreateRef( list_value, parent_value, read_only, controller)); } return new CefValueImpl(value->DeepCopy()); } CefValueImpl::CefValueImpl() {} CefValueImpl::CefValueImpl(base::Value* value) { SetValue(value); } CefValueImpl::CefValueImpl(CefRefPtr value) : binary_value_(value) {} CefValueImpl::CefValueImpl(CefRefPtr value) : dictionary_value_(value) {} CefValueImpl::CefValueImpl(CefRefPtr value) : list_value_(value) {} CefValueImpl::~CefValueImpl() {} void CefValueImpl::SetValue(base::Value* value) { base::AutoLock lock_scope(lock_); SetValueInternal(value); } base::Value* CefValueImpl::CopyOrDetachValue( CefValueController* new_controller) { base::AutoLock lock_scope(lock_); if (binary_value_) { return static_cast(binary_value_.get()) ->CopyOrDetachValue(new_controller); } if (dictionary_value_) { return static_cast(dictionary_value_.get()) ->CopyOrDetachValue(new_controller); } if (list_value_) { return static_cast(list_value_.get()) ->CopyOrDetachValue(new_controller); } return value_->DeepCopy(); } void CefValueImpl::SwapValue(base::Value* new_value, void* new_parent_value, CefValueController* new_controller) { base::AutoLock lock_scope(lock_); if (binary_value_) { binary_value_ = CefBinaryValueImpl::GetOrCreateRef( new_value, new_parent_value, new_controller); } else if (dictionary_value_) { dictionary_value_ = CefDictionaryValueImpl::GetOrCreateRef( static_cast(new_value), new_parent_value, false, new_controller); } else if (list_value_) { list_value_ = CefListValueImpl::GetOrCreateRef( static_cast(new_value), new_parent_value, false, new_controller); } } bool CefValueImpl::IsValid() { base::AutoLock lock_scope(lock_); if (binary_value_) return binary_value_->IsValid(); if (dictionary_value_) return dictionary_value_->IsValid(); if (list_value_) return list_value_->IsValid(); return (value_ != NULL); } bool CefValueImpl::IsOwned() { base::AutoLock lock_scope(lock_); if (binary_value_) return binary_value_->IsOwned(); if (dictionary_value_) return dictionary_value_->IsOwned(); if (list_value_) return list_value_->IsOwned(); return false; } bool CefValueImpl::IsReadOnly() { base::AutoLock lock_scope(lock_); if (binary_value_) return true; if (dictionary_value_) return dictionary_value_->IsReadOnly(); if (list_value_) return list_value_->IsReadOnly(); return false; } bool CefValueImpl::IsSame(CefRefPtr that) { if (that.get() == this) return true; if (!that.get() || that->GetType() != GetType()) return false; CefValueImpl* impl = static_cast(that.get()); base::AutoLock lock_scope(lock_); base::AutoLock lock_scope2(impl->lock_); if (binary_value_) return binary_value_->IsSame(impl->binary_value_); if (dictionary_value_) return dictionary_value_->IsSame(impl->dictionary_value_); if (list_value_) return list_value_->IsSame(impl->list_value_); // Simple types are never the same. return false; } bool CefValueImpl::IsEqual(CefRefPtr that) { if (that.get() == this) return true; if (!that.get() || that->GetType() != GetType()) return false; CefValueImpl* impl = static_cast(that.get()); base::AutoLock lock_scope(lock_); base::AutoLock lock_scope2(impl->lock_); if (binary_value_) return binary_value_->IsEqual(impl->binary_value_); if (dictionary_value_) return dictionary_value_->IsEqual(impl->dictionary_value_); if (list_value_) return list_value_->IsEqual(impl->list_value_); if (!value_) // Invalid types are equal. return true; return value_->Equals(impl->value_.get()); } CefRefPtr CefValueImpl::Copy() { base::AutoLock lock_scope(lock_); if (binary_value_) return new CefValueImpl(binary_value_->Copy()); if (dictionary_value_) return new CefValueImpl(dictionary_value_->Copy(false)); if (list_value_) return new CefValueImpl(list_value_->Copy()); if (value_) return new CefValueImpl(value_->DeepCopy()); return new CefValueImpl(); } CefValueType CefValueImpl::GetType() { base::AutoLock lock_scope(lock_); if (binary_value_) return VTYPE_BINARY; if (dictionary_value_) return VTYPE_DICTIONARY; if (list_value_) return VTYPE_LIST; if (value_) { switch (value_->GetType()) { case base::Value::Type::NONE: return VTYPE_NULL; case base::Value::Type::BOOLEAN: return VTYPE_BOOL; case base::Value::Type::INTEGER: return VTYPE_INT; case base::Value::Type::DOUBLE: return VTYPE_DOUBLE; case base::Value::Type::STRING: return VTYPE_STRING; default: NOTREACHED(); break; } } return VTYPE_INVALID; } bool CefValueImpl::GetBool() { base::AutoLock lock_scope(lock_); bool ret_value = false; if (value_) value_->GetAsBoolean(&ret_value); return ret_value; } int CefValueImpl::GetInt() { base::AutoLock lock_scope(lock_); int ret_value = 0; if (value_) value_->GetAsInteger(&ret_value); return ret_value; } double CefValueImpl::GetDouble() { base::AutoLock lock_scope(lock_); double ret_value = 0; if (value_) value_->GetAsDouble(&ret_value); return ret_value; } CefString CefValueImpl::GetString() { base::AutoLock lock_scope(lock_); std::string ret_value; if (value_) value_->GetAsString(&ret_value); return ret_value; } CefRefPtr CefValueImpl::GetBinary() { base::AutoLock lock_scope(lock_); return binary_value_; } CefRefPtr CefValueImpl::GetDictionary() { base::AutoLock lock_scope(lock_); return dictionary_value_; } CefRefPtr CefValueImpl::GetList() { base::AutoLock lock_scope(lock_); return list_value_; } bool CefValueImpl::SetNull() { SetValue(new base::Value()); return true; } bool CefValueImpl::SetBool(bool value) { SetValue(new base::Value(value)); return true; } bool CefValueImpl::SetInt(int value) { SetValue(new base::Value(value)); return true; } bool CefValueImpl::SetDouble(double value) { SetValue(new base::Value(value)); return true; } bool CefValueImpl::SetString(const CefString& value) { SetValue(new base::Value(value.ToString())); return true; } bool CefValueImpl::SetBinary(CefRefPtr value) { base::AutoLock lock_scope(lock_); SetValueInternal(NULL); binary_value_ = value; return true; } bool CefValueImpl::SetDictionary(CefRefPtr value) { base::AutoLock lock_scope(lock_); SetValueInternal(NULL); dictionary_value_ = value; return true; } bool CefValueImpl::SetList(CefRefPtr value) { base::AutoLock lock_scope(lock_); SetValueInternal(NULL); list_value_ = value; return true; } void CefValueImpl::SetValueInternal(base::Value* value) { lock_.AssertAcquired(); value_.reset(NULL); binary_value_ = NULL; dictionary_value_ = NULL; list_value_ = NULL; if (value) { switch (value->GetType()) { case base::Value::Type::BINARY: binary_value_ = new CefBinaryValueImpl(value, true); return; case base::Value::Type::DICTIONARY: dictionary_value_ = new CefDictionaryValueImpl( static_cast(value), true, false); return; case base::Value::Type::LIST: list_value_ = new CefListValueImpl(static_cast(value), true, false); return; default: value_.reset(value); } } } CefValueController* CefValueImpl::GetValueController() const { lock_.AssertAcquired(); if (binary_value_) { return static_cast(binary_value_.get())->controller(); } else if (dictionary_value_) { return static_cast(dictionary_value_.get()) ->controller(); } else if (list_value_) { return static_cast(list_value_.get())->controller(); } return NULL; } void CefValueImpl::AcquireLock() { lock_.Acquire(); CefValueController* controller = GetValueController(); if (controller) controller->lock(); } void CefValueImpl::ReleaseLock() { CefValueController* controller = GetValueController(); if (controller) { controller->AssertLockAcquired(); controller->unlock(); } lock_.Release(); } base::Value* CefValueImpl::GetValueUnsafe() const { lock_.AssertAcquired(); if (binary_value_) { return static_cast(binary_value_.get()) ->GetValueUnsafe(); } else if (dictionary_value_) { return static_cast(dictionary_value_.get()) ->GetValueUnsafe(); } else if (list_value_) { return static_cast(list_value_.get())->GetValueUnsafe(); } return value_.get(); } // CefBinaryValueImpl implementation. CefRefPtr CefBinaryValue::Create(const void* data, size_t data_size) { DCHECK(data); DCHECK_GT(data_size, (size_t)0); if (!data || data_size == 0) return NULL; return new CefBinaryValueImpl(static_cast(const_cast(data)), data_size); } // static CefRefPtr CefBinaryValueImpl::GetOrCreateRef( base::Value* value, void* parent_value, CefValueController* controller) { DCHECK(value); DCHECK(parent_value); DCHECK(controller); CefValueController::Object* object = controller->Get(value); if (object) return static_cast(object); return new CefBinaryValueImpl(value, parent_value, CefBinaryValueImpl::kReference, controller); } CefBinaryValueImpl::CefBinaryValueImpl(base::Value* value, bool will_delete) : CefValueBase( value, NULL, will_delete ? kOwnerWillDelete : kOwnerNoDelete, true, NULL) {} CefBinaryValueImpl::CefBinaryValueImpl(char* data, size_t data_size) : CefValueBase( new base::Value(std::vector(data, data + data_size)), NULL, kOwnerWillDelete, true, NULL) {} base::Value* CefBinaryValueImpl::CopyValue() { CEF_VALUE_VERIFY_RETURN(false, NULL); return const_value().DeepCopy(); } base::Value* CefBinaryValueImpl::CopyOrDetachValue( CefValueController* new_controller) { base::Value* new_value; if (!will_delete()) { // Copy the value. new_value = CopyValue(); } else { // Take ownership of the value. new_value = Detach(new_controller); } DCHECK(new_value); return new_value; } bool CefBinaryValueImpl::IsSameValue(const base::Value* that) { CEF_VALUE_VERIFY_RETURN(false, false); return (&const_value() == that); } bool CefBinaryValueImpl::IsEqualValue(const base::Value* that) { CEF_VALUE_VERIFY_RETURN(false, false); return const_value().Equals(that); } base::Value* CefBinaryValueImpl::GetValueUnsafe() { if (!VerifyAttached()) return NULL; controller()->AssertLockAcquired(); return const_cast(&const_value()); } bool CefBinaryValueImpl::IsValid() { return !detached(); } bool CefBinaryValueImpl::IsOwned() { return !will_delete(); } bool CefBinaryValueImpl::IsSame(CefRefPtr that) { if (!that.get()) return false; if (that.get() == this) return true; CEF_VALUE_VERIFY_RETURN(false, false); return static_cast(that.get()) ->IsSameValue(&const_value()); } bool CefBinaryValueImpl::IsEqual(CefRefPtr that) { if (!that.get()) return false; if (that.get() == this) return true; CEF_VALUE_VERIFY_RETURN(false, false); return static_cast(that.get()) ->IsEqualValue(&const_value()); } CefRefPtr CefBinaryValueImpl::Copy() { CEF_VALUE_VERIFY_RETURN(false, NULL); return new CefBinaryValueImpl(const_value().DeepCopy(), NULL, CefBinaryValueImpl::kOwnerWillDelete, NULL); } size_t CefBinaryValueImpl::GetSize() { CEF_VALUE_VERIFY_RETURN(false, 0); return const_value().GetBlob().size(); } size_t CefBinaryValueImpl::GetData(void* buffer, size_t buffer_size, size_t data_offset) { DCHECK(buffer); DCHECK_GT(buffer_size, (size_t)0); if (!buffer || buffer_size == 0) return 0; CEF_VALUE_VERIFY_RETURN(false, 0); size_t size = const_value().GetBlob().size(); DCHECK_LT(data_offset, size); if (data_offset >= size) return 0; size = std::min(buffer_size, size - data_offset); const char* data = const_value().GetBlob().data(); memcpy(buffer, data + data_offset, size); return size; } CefBinaryValueImpl::CefBinaryValueImpl(base::Value* value, void* parent_value, ValueMode value_mode, CefValueController* controller) : CefValueBase(value, parent_value, value_mode, true, controller) {} // CefDictionaryValueImpl implementation. // static CefRefPtr CefDictionaryValue::Create() { return new CefDictionaryValueImpl(new base::DictionaryValue(), true, false); } // static CefRefPtr CefDictionaryValueImpl::GetOrCreateRef( base::DictionaryValue* value, void* parent_value, bool read_only, CefValueController* controller) { CefValueController::Object* object = controller->Get(value); if (object) return static_cast(object); return new CefDictionaryValueImpl(value, parent_value, CefDictionaryValueImpl::kReference, read_only, controller); } CefDictionaryValueImpl::CefDictionaryValueImpl(base::DictionaryValue* value, bool will_delete, bool read_only) : CefValueBase( value, NULL, will_delete ? kOwnerWillDelete : kOwnerNoDelete, read_only, NULL) {} base::DictionaryValue* CefDictionaryValueImpl::CopyValue() { CEF_VALUE_VERIFY_RETURN(false, NULL); return const_value().DeepCopy(); } base::DictionaryValue* CefDictionaryValueImpl::CopyOrDetachValue( CefValueController* new_controller) { base::DictionaryValue* new_value; if (!will_delete()) { // Copy the value. new_value = CopyValue(); } else { // Take ownership of the value. new_value = Detach(new_controller); } DCHECK(new_value); return new_value; } bool CefDictionaryValueImpl::IsSameValue(const base::DictionaryValue* that) { CEF_VALUE_VERIFY_RETURN(false, false); return (&const_value() == that); } bool CefDictionaryValueImpl::IsEqualValue(const base::DictionaryValue* that) { CEF_VALUE_VERIFY_RETURN(false, false); return const_value().Equals(that); } base::DictionaryValue* CefDictionaryValueImpl::GetValueUnsafe() { if (!VerifyAttached()) return NULL; controller()->AssertLockAcquired(); return const_cast(&const_value()); } bool CefDictionaryValueImpl::IsValid() { return !detached(); } bool CefDictionaryValueImpl::IsOwned() { return !will_delete(); } bool CefDictionaryValueImpl::IsReadOnly() { return read_only(); } bool CefDictionaryValueImpl::IsSame(CefRefPtr that) { if (!that.get()) return false; if (that.get() == this) return true; CEF_VALUE_VERIFY_RETURN(false, false); return static_cast(that.get()) ->IsSameValue(&const_value()); } bool CefDictionaryValueImpl::IsEqual(CefRefPtr that) { if (!that.get()) return false; if (that.get() == this) return true; CEF_VALUE_VERIFY_RETURN(false, false); return static_cast(that.get()) ->IsEqualValue(&const_value()); } CefRefPtr CefDictionaryValueImpl::Copy( bool exclude_empty_children) { CEF_VALUE_VERIFY_RETURN(false, NULL); base::DictionaryValue* value; if (exclude_empty_children) { value = const_cast(const_value()) .DeepCopyWithoutEmptyChildren() .release(); } else { value = const_value().DeepCopy(); } return new CefDictionaryValueImpl( value, NULL, CefDictionaryValueImpl::kOwnerWillDelete, false, NULL); } size_t CefDictionaryValueImpl::GetSize() { CEF_VALUE_VERIFY_RETURN(false, 0); return const_value().size(); } bool CefDictionaryValueImpl::Clear() { CEF_VALUE_VERIFY_RETURN(true, false); // Detach any dependent values. controller()->RemoveDependencies(mutable_value()); mutable_value()->Clear(); return true; } bool CefDictionaryValueImpl::HasKey(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, 0); return const_value().HasKey(base::StringPiece(key)); } bool CefDictionaryValueImpl::GetKeys(KeyList& keys) { CEF_VALUE_VERIFY_RETURN(false, 0); for (base::DictionaryValue::Iterator i(const_value()); !i.IsAtEnd(); i.Advance()) { keys.push_back(i.key()); } return true; } bool CefDictionaryValueImpl::Remove(const CefString& key) { CEF_VALUE_VERIFY_RETURN(true, false); return RemoveInternal(key); } CefValueType CefDictionaryValueImpl::GetType(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, VTYPE_INVALID); const base::Value* out_value = NULL; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value)) { switch (out_value->GetType()) { case base::Value::Type::NONE: return VTYPE_NULL; case base::Value::Type::BOOLEAN: return VTYPE_BOOL; case base::Value::Type::INTEGER: return VTYPE_INT; case base::Value::Type::DOUBLE: return VTYPE_DOUBLE; case base::Value::Type::STRING: return VTYPE_STRING; case base::Value::Type::BINARY: return VTYPE_BINARY; case base::Value::Type::DICTIONARY: return VTYPE_DICTIONARY; case base::Value::Type::LIST: return VTYPE_LIST; } } return VTYPE_INVALID; } CefRefPtr CefDictionaryValueImpl::GetValue(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value)) { return CefValueImpl::GetOrCreateRefOrCopy( const_cast(out_value), const_cast(&const_value()), read_only(), controller()); } return NULL; } bool CefDictionaryValueImpl::GetBool(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, false); const base::Value* out_value = NULL; bool ret_value = false; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value)) out_value->GetAsBoolean(&ret_value); return ret_value; } int CefDictionaryValueImpl::GetInt(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, 0); const base::Value* out_value = NULL; int ret_value = 0; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value)) out_value->GetAsInteger(&ret_value); return ret_value; } double CefDictionaryValueImpl::GetDouble(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, 0); const base::Value* out_value = NULL; double ret_value = 0; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value)) out_value->GetAsDouble(&ret_value); return ret_value; } CefString CefDictionaryValueImpl::GetString(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, CefString()); const base::Value* out_value = NULL; std::string ret_value; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value)) out_value->GetAsString(&ret_value); return ret_value; } CefRefPtr CefDictionaryValueImpl::GetBinary( const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value) && out_value->IsType(base::Value::Type::BINARY)) { base::Value* binary_value = const_cast(out_value); return CefBinaryValueImpl::GetOrCreateRef( binary_value, const_cast(&const_value()), controller()); } return NULL; } CefRefPtr CefDictionaryValueImpl::GetDictionary( const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value) && out_value->IsType(base::Value::Type::DICTIONARY)) { base::DictionaryValue* dict_value = static_cast( const_cast(out_value)); return CefDictionaryValueImpl::GetOrCreateRef( dict_value, const_cast(&const_value()), read_only(), controller()); } return NULL; } CefRefPtr CefDictionaryValueImpl::GetList(const CefString& key) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().GetWithoutPathExpansion(base::StringPiece(key), &out_value) && out_value->IsType(base::Value::Type::LIST)) { base::ListValue* list_value = static_cast(const_cast(out_value)); return CefListValueImpl::GetOrCreateRef( list_value, const_cast(&const_value()), read_only(), controller()); } return NULL; } bool CefDictionaryValueImpl::SetValue(const CefString& key, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefValueImpl* impl = static_cast(value.get()); DCHECK(impl); base::Value* new_value = impl->CopyOrDetachValue(controller()); base::Value* actual_value = SetInternal(key, new_value); impl->SwapValue(actual_value, mutable_value(), controller()); return true; } bool CefDictionaryValueImpl::SetNull(const CefString& key) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(key, new base::Value()); return true; } bool CefDictionaryValueImpl::SetBool(const CefString& key, bool value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(key, new base::Value(value)); return true; } bool CefDictionaryValueImpl::SetInt(const CefString& key, int value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(key, new base::Value(value)); return true; } bool CefDictionaryValueImpl::SetDouble(const CefString& key, double value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(key, new base::Value(value)); return true; } bool CefDictionaryValueImpl::SetString(const CefString& key, const CefString& value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(key, new base::Value(value.ToString())); return true; } bool CefDictionaryValueImpl::SetBinary(const CefString& key, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefBinaryValueImpl* impl = static_cast(value.get()); DCHECK(impl); SetInternal(key, impl->CopyOrDetachValue(controller())); return true; } bool CefDictionaryValueImpl::SetDictionary( const CefString& key, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefDictionaryValueImpl* impl = static_cast(value.get()); DCHECK(impl); SetInternal(key, impl->CopyOrDetachValue(controller())); return true; } bool CefDictionaryValueImpl::SetList(const CefString& key, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefListValueImpl* impl = static_cast(value.get()); DCHECK(impl); SetInternal(key, impl->CopyOrDetachValue(controller())); return true; } bool CefDictionaryValueImpl::RemoveInternal(const CefString& key) { std::unique_ptr out_value; if (!mutable_value()->RemoveWithoutPathExpansion(base::StringPiece(key), &out_value)) { return false; } // Remove the value. controller()->Remove(out_value.get(), true); // Only list and dictionary types may have dependencies. if (out_value->IsType(base::Value::Type::LIST) || out_value->IsType(base::Value::Type::DICTIONARY)) { controller()->RemoveDependencies(out_value.get()); } return true; } base::Value* CefDictionaryValueImpl::SetInternal(const CefString& key, base::Value* value) { DCHECK(value); RemoveInternal(key); mutable_value()->SetWithoutPathExpansion( base::StringPiece(key), base::WrapUnique(value)); return value; } CefDictionaryValueImpl::CefDictionaryValueImpl(base::DictionaryValue* value, void* parent_value, ValueMode value_mode, bool read_only, CefValueController* controller) : CefValueBase(value, parent_value, value_mode, read_only, controller) {} // CefListValueImpl implementation. // static CefRefPtr CefListValue::Create() { return new CefListValueImpl(new base::ListValue(), true, false); } // static CefRefPtr CefListValueImpl::GetOrCreateRef( base::ListValue* value, void* parent_value, bool read_only, CefValueController* controller) { CefValueController::Object* object = controller->Get(value); if (object) return static_cast(object); return new CefListValueImpl(value, parent_value, CefListValueImpl::kReference, read_only, controller); } CefListValueImpl::CefListValueImpl(base::ListValue* value, bool will_delete, bool read_only) : CefValueBase( value, NULL, will_delete ? kOwnerWillDelete : kOwnerNoDelete, read_only, NULL) {} base::ListValue* CefListValueImpl::CopyValue() { CEF_VALUE_VERIFY_RETURN(false, NULL); return const_value().DeepCopy(); } base::ListValue* CefListValueImpl::CopyOrDetachValue( CefValueController* new_controller) { base::ListValue* new_value; if (!will_delete()) { // Copy the value. new_value = CopyValue(); } else { // Take ownership of the value. new_value = Detach(new_controller); } DCHECK(new_value); return new_value; } bool CefListValueImpl::IsSameValue(const base::ListValue* that) { CEF_VALUE_VERIFY_RETURN(false, false); return (&const_value() == that); } bool CefListValueImpl::IsEqualValue(const base::ListValue* that) { CEF_VALUE_VERIFY_RETURN(false, false); return const_value().Equals(that); } base::ListValue* CefListValueImpl::GetValueUnsafe() { if (!VerifyAttached()) return NULL; controller()->AssertLockAcquired(); return const_cast(&const_value()); } bool CefListValueImpl::IsValid() { return !detached(); } bool CefListValueImpl::IsOwned() { return !will_delete(); } bool CefListValueImpl::IsReadOnly() { return read_only(); } bool CefListValueImpl::IsSame(CefRefPtr that) { if (!that.get()) return false; if (that.get() == this) return true; CEF_VALUE_VERIFY_RETURN(false, false); return static_cast(that.get()) ->IsSameValue(&const_value()); } bool CefListValueImpl::IsEqual(CefRefPtr that) { if (!that.get()) return false; if (that.get() == this) return true; CEF_VALUE_VERIFY_RETURN(false, false); return static_cast(that.get()) ->IsEqualValue(&const_value()); } CefRefPtr CefListValueImpl::Copy() { CEF_VALUE_VERIFY_RETURN(false, NULL); return new CefListValueImpl(const_value().DeepCopy(), NULL, CefListValueImpl::kOwnerWillDelete, false, NULL); } bool CefListValueImpl::SetSize(size_t size) { CEF_VALUE_VERIFY_RETURN(true, false); size_t current_size = const_value().GetSize(); if (size < current_size) { // Clean up any values above the requested size. for (size_t i = current_size - 1; i >= size; --i) RemoveInternal(i); } else if (size > 0) { // Expand the list size. mutable_value()->Set(size - 1, base::MakeUnique()); } return true; } size_t CefListValueImpl::GetSize() { CEF_VALUE_VERIFY_RETURN(false, 0); return const_value().GetSize(); } bool CefListValueImpl::Clear() { CEF_VALUE_VERIFY_RETURN(true, false); // Detach any dependent values. controller()->RemoveDependencies(mutable_value()); mutable_value()->Clear(); return true; } bool CefListValueImpl::Remove(size_t index) { CEF_VALUE_VERIFY_RETURN(true, false); return RemoveInternal(index); } CefValueType CefListValueImpl::GetType(size_t index) { CEF_VALUE_VERIFY_RETURN(false, VTYPE_INVALID); const base::Value* out_value = NULL; if (const_value().Get(index, &out_value)) { switch (out_value->GetType()) { case base::Value::Type::NONE: return VTYPE_NULL; case base::Value::Type::BOOLEAN: return VTYPE_BOOL; case base::Value::Type::INTEGER: return VTYPE_INT; case base::Value::Type::DOUBLE: return VTYPE_DOUBLE; case base::Value::Type::STRING: return VTYPE_STRING; case base::Value::Type::BINARY: return VTYPE_BINARY; case base::Value::Type::DICTIONARY: return VTYPE_DICTIONARY; case base::Value::Type::LIST: return VTYPE_LIST; } } return VTYPE_INVALID; } CefRefPtr CefListValueImpl::GetValue(size_t index) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().Get(index, &out_value)) { return CefValueImpl::GetOrCreateRefOrCopy( const_cast(out_value), const_cast(&const_value()), read_only(), controller()); } return NULL; } bool CefListValueImpl::GetBool(size_t index) { CEF_VALUE_VERIFY_RETURN(false, false); const base::Value* out_value = NULL; bool ret_value = false; if (const_value().Get(index, &out_value)) out_value->GetAsBoolean(&ret_value); return ret_value; } int CefListValueImpl::GetInt(size_t index) { CEF_VALUE_VERIFY_RETURN(false, 0); const base::Value* out_value = NULL; int ret_value = 0; if (const_value().Get(index, &out_value)) out_value->GetAsInteger(&ret_value); return ret_value; } double CefListValueImpl::GetDouble(size_t index) { CEF_VALUE_VERIFY_RETURN(false, 0); const base::Value* out_value = NULL; double ret_value = 0; if (const_value().Get(index, &out_value)) out_value->GetAsDouble(&ret_value); return ret_value; } CefString CefListValueImpl::GetString(size_t index) { CEF_VALUE_VERIFY_RETURN(false, CefString()); const base::Value* out_value = NULL; std::string ret_value; if (const_value().Get(index, &out_value)) out_value->GetAsString(&ret_value); return ret_value; } CefRefPtr CefListValueImpl::GetBinary(size_t index) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().Get(index, &out_value) && out_value->IsType(base::Value::Type::BINARY)) { base::Value* binary_value = const_cast(out_value); return CefBinaryValueImpl::GetOrCreateRef( binary_value, const_cast(&const_value()), controller()); } return NULL; } CefRefPtr CefListValueImpl::GetDictionary(size_t index) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().Get(index, &out_value) && out_value->IsType(base::Value::Type::DICTIONARY)) { base::DictionaryValue* dict_value = static_cast( const_cast(out_value)); return CefDictionaryValueImpl::GetOrCreateRef( dict_value, const_cast(&const_value()), read_only(), controller()); } return NULL; } CefRefPtr CefListValueImpl::GetList(size_t index) { CEF_VALUE_VERIFY_RETURN(false, NULL); const base::Value* out_value = NULL; if (const_value().Get(index, &out_value) && out_value->IsType(base::Value::Type::LIST)) { base::ListValue* list_value = static_cast(const_cast(out_value)); return CefListValueImpl::GetOrCreateRef( list_value, const_cast(&const_value()), read_only(), controller()); } return NULL; } bool CefListValueImpl::SetValue(size_t index, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefValueImpl* impl = static_cast(value.get()); DCHECK(impl); base::Value* new_value = impl->CopyOrDetachValue(controller()); base::Value* actual_value = SetInternal(index, new_value); impl->SwapValue(actual_value, mutable_value(), controller()); return true; } bool CefListValueImpl::SetNull(size_t index) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(index, new base::Value()); return true; } bool CefListValueImpl::SetBool(size_t index, bool value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(index, new base::Value(value)); return true; } bool CefListValueImpl::SetInt(size_t index, int value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(index, new base::Value(value)); return true; } bool CefListValueImpl::SetDouble(size_t index, double value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(index, new base::Value(value)); return true; } bool CefListValueImpl::SetString(size_t index, const CefString& value) { CEF_VALUE_VERIFY_RETURN(true, false); SetInternal(index, new base::Value(value.ToString())); return true; } bool CefListValueImpl::SetBinary(size_t index, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefBinaryValueImpl* impl = static_cast(value.get()); DCHECK(impl); SetInternal(index, impl->CopyOrDetachValue(controller())); return true; } bool CefListValueImpl::SetDictionary(size_t index, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefDictionaryValueImpl* impl = static_cast(value.get()); DCHECK(impl); SetInternal(index, impl->CopyOrDetachValue(controller())); return true; } bool CefListValueImpl::SetList(size_t index, CefRefPtr value) { CEF_VALUE_VERIFY_RETURN(true, false); CefListValueImpl* impl = static_cast(value.get()); DCHECK(impl); SetInternal(index, impl->CopyOrDetachValue(controller())); return true; } bool CefListValueImpl::RemoveInternal(size_t index) { // base::Value now uses move semantics which means that Remove() will return // a new base::Value object with the moved contents of the base::Value that // exists in the implementation std::vector. Consequently we use Get() to // retrieve the actual base::Value pointer as it exists in the std::vector. const base::Value* actual_value = nullptr; if (!const_value().Get(index, &actual_value)) return false; DCHECK(actual_value); std::unique_ptr out_value; if (!mutable_value()->Remove(index, &out_value)) return false; // Remove the value. controller()->Remove(const_cast(actual_value), true); // Only list and dictionary types may have dependencies. if (out_value->IsType(base::Value::Type::LIST) || out_value->IsType(base::Value::Type::DICTIONARY)) { controller()->RemoveDependencies(const_cast(actual_value)); } return true; } base::Value* CefListValueImpl::SetInternal(size_t index, base::Value* value) { DCHECK(value); if (RemoveInternal(index)) mutable_value()->Insert(index, base::WrapUnique(value)); else mutable_value()->Set(index, base::WrapUnique(value)); // base::Value now uses move semantics which means that Insert()/Set() will // move the contents of the passed-in base::Value instead of keeping the same // object. Consequently we use Get() to retrieve the actual base::Value // pointer as it exists in the std::vector. const base::Value* actual_value = nullptr; const_value().Get(index, &actual_value); DCHECK(actual_value); // |value| will have been deleted at this point. Update the controller to // reference |actual_value| instead. controller()->Swap(value, const_cast(actual_value)); return const_cast(actual_value); } CefListValueImpl::CefListValueImpl(base::ListValue* value, void* parent_value, ValueMode value_mode, bool read_only, CefValueController* controller) : CefValueBase(value, parent_value, value_mode, read_only, controller) {}