#include "libcef_dll/cpptoc/dictionary_value_cpptoc.h"
#include "libcef_dll/cpptoc/binary_value_cpptoc.h"
#include "libcef_dll/cpptoc/list_value_cpptoc.h"
#include "libcef_dll/cpptoc/value_cpptoc.h"
#include "libcef_dll/shutdown_checker.h"
#include "libcef_dll/transfer_util.h"
CEF_EXPORT cef_dictionary_value_t* cef_dictionary_value_create() {
shutdown_checker::AssertNotShutdown();
CefRefPtr<CefDictionaryValue> _retval = CefDictionaryValue::Create();
return CefDictionaryValueCppToC::Wrap(_retval);
}
namespace {
int CEF_CALLBACK
dictionary_value_is_valid(struct _cef_dictionary_value_t* self) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->IsValid();
return _retval;
}
int CEF_CALLBACK
dictionary_value_is_owned(struct _cef_dictionary_value_t* self) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->IsOwned();
return _retval;
}
int CEF_CALLBACK
dictionary_value_is_read_only(struct _cef_dictionary_value_t* self) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->IsReadOnly();
return _retval;
}
int CEF_CALLBACK
dictionary_value_is_same(struct _cef_dictionary_value_t* self,
struct _cef_dictionary_value_t* that) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(that);
if (!that)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->IsSame(
CefDictionaryValueCppToC::Unwrap(that));
return _retval;
}
int CEF_CALLBACK
dictionary_value_is_equal(struct _cef_dictionary_value_t* self,
struct _cef_dictionary_value_t* that) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(that);
if (!that)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->IsEqual(
CefDictionaryValueCppToC::Unwrap(that));
return _retval;
}
struct _cef_dictionary_value_t* CEF_CALLBACK
dictionary_value_copy(struct _cef_dictionary_value_t* self,
int exclude_empty_children) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return NULL;
CefRefPtr<CefDictionaryValue> _retval =
CefDictionaryValueCppToC::Get(self)->Copy(exclude_empty_children ? true
: false);
return CefDictionaryValueCppToC::Wrap(_retval);
}
size_t CEF_CALLBACK
dictionary_value_get_size(struct _cef_dictionary_value_t* self) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
size_t _retval = CefDictionaryValueCppToC::Get(self)->GetSize();
return _retval;
}
int CEF_CALLBACK dictionary_value_clear(struct _cef_dictionary_value_t* self) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->Clear();
return _retval;
}
int CEF_CALLBACK dictionary_value_has_key(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->HasKey(CefString(key));
return _retval;
}
int CEF_CALLBACK dictionary_value_get_keys(struct _cef_dictionary_value_t* self,
cef_string_list_t keys) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(keys);
if (!keys)
return 0;
std::vector<CefString> keysList;
transfer_string_list_contents(keys, keysList);
bool _retval = CefDictionaryValueCppToC::Get(self)->GetKeys(keysList);
cef_string_list_clear(keys);
transfer_string_list_contents(keysList, keys);
return _retval;
}
int CEF_CALLBACK dictionary_value_remove(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->Remove(CefString(key));
return _retval;
}
cef_value_type_t CEF_CALLBACK
dictionary_value_get_type(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return VTYPE_INVALID;
DCHECK(key);
if (!key)
return VTYPE_INVALID;
cef_value_type_t _retval =
CefDictionaryValueCppToC::Get(self)->GetType(CefString(key));
return _retval;
}
cef_value_t* CEF_CALLBACK
dictionary_value_get_value(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return NULL;
DCHECK(key);
if (!key)
return NULL;
CefRefPtr<CefValue> _retval =
CefDictionaryValueCppToC::Get(self)->GetValue(CefString(key));
return CefValueCppToC::Wrap(_retval);
}
int CEF_CALLBACK dictionary_value_get_bool(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->GetBool(CefString(key));
return _retval;
}
int CEF_CALLBACK dictionary_value_get_int(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
int _retval = CefDictionaryValueCppToC::Get(self)->GetInt(CefString(key));
return _retval;
}
double CEF_CALLBACK
dictionary_value_get_double(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
double _retval =
CefDictionaryValueCppToC::Get(self)->GetDouble(CefString(key));
return _retval;
}
cef_string_userfree_t CEF_CALLBACK
dictionary_value_get_string(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return NULL;
DCHECK(key);
if (!key)
return NULL;
CefString _retval =
CefDictionaryValueCppToC::Get(self)->GetString(CefString(key));
return _retval.DetachToUserFree();
}
cef_binary_value_t* CEF_CALLBACK
dictionary_value_get_binary(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return NULL;
DCHECK(key);
if (!key)
return NULL;
CefRefPtr<CefBinaryValue> _retval =
CefDictionaryValueCppToC::Get(self)->GetBinary(CefString(key));
return CefBinaryValueCppToC::Wrap(_retval);
}
struct _cef_dictionary_value_t* CEF_CALLBACK
dictionary_value_get_dictionary(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return NULL;
DCHECK(key);
if (!key)
return NULL;
CefRefPtr<CefDictionaryValue> _retval =
CefDictionaryValueCppToC::Get(self)->GetDictionary(CefString(key));
return CefDictionaryValueCppToC::Wrap(_retval);
}
struct _cef_list_value_t* CEF_CALLBACK
dictionary_value_get_list(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return NULL;
DCHECK(key);
if (!key)
return NULL;
CefRefPtr<CefListValue> _retval =
CefDictionaryValueCppToC::Get(self)->GetList(CefString(key));
return CefListValueCppToC::Wrap(_retval);
}
int CEF_CALLBACK
dictionary_value_set_value(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
cef_value_t* value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
DCHECK(value);
if (!value)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetValue(
CefString(key), CefValueCppToC::Unwrap(value));
return _retval;
}
int CEF_CALLBACK dictionary_value_set_null(struct _cef_dictionary_value_t* self,
const cef_string_t* key) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetNull(CefString(key));
return _retval;
}
int CEF_CALLBACK dictionary_value_set_bool(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
int value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetBool(
CefString(key), value ? true : false);
return _retval;
}
int CEF_CALLBACK dictionary_value_set_int(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
int value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval =
CefDictionaryValueCppToC::Get(self)->SetInt(CefString(key), value);
return _retval;
}
int CEF_CALLBACK
dictionary_value_set_double(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
double value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval =
CefDictionaryValueCppToC::Get(self)->SetDouble(CefString(key), value);
return _retval;
}
int CEF_CALLBACK
dictionary_value_set_string(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
const cef_string_t* value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetString(
CefString(key), CefString(value));
return _retval;
}
int CEF_CALLBACK
dictionary_value_set_binary(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
cef_binary_value_t* value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
DCHECK(value);
if (!value)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetBinary(
CefString(key), CefBinaryValueCppToC::Unwrap(value));
return _retval;
}
int CEF_CALLBACK
dictionary_value_set_dictionary(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
struct _cef_dictionary_value_t* value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
DCHECK(value);
if (!value)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetDictionary(
CefString(key), CefDictionaryValueCppToC::Unwrap(value));
return _retval;
}
int CEF_CALLBACK dictionary_value_set_list(struct _cef_dictionary_value_t* self,
const cef_string_t* key,
struct _cef_list_value_t* value) {
shutdown_checker::AssertNotShutdown();
DCHECK(self);
if (!self)
return 0;
DCHECK(key);
if (!key)
return 0;
DCHECK(value);
if (!value)
return 0;
bool _retval = CefDictionaryValueCppToC::Get(self)->SetList(
CefString(key), CefListValueCppToC::Unwrap(value));
return _retval;
}
}
CefDictionaryValueCppToC::CefDictionaryValueCppToC() {
GetStruct()->is_valid = dictionary_value_is_valid;
GetStruct()->is_owned = dictionary_value_is_owned;
GetStruct()->is_read_only = dictionary_value_is_read_only;
GetStruct()->is_same = dictionary_value_is_same;
GetStruct()->is_equal = dictionary_value_is_equal;
GetStruct()->copy = dictionary_value_copy;
GetStruct()->get_size = dictionary_value_get_size;
GetStruct()->clear = dictionary_value_clear;
GetStruct()->has_key = dictionary_value_has_key;
GetStruct()->get_keys = dictionary_value_get_keys;
GetStruct()->remove = dictionary_value_remove;
GetStruct()->get_type = dictionary_value_get_type;
GetStruct()->get_value = dictionary_value_get_value;
GetStruct()->get_bool = dictionary_value_get_bool;
GetStruct()->get_int = dictionary_value_get_int;
GetStruct()->get_double = dictionary_value_get_double;
GetStruct()->get_string = dictionary_value_get_string;
GetStruct()->get_binary = dictionary_value_get_binary;
GetStruct()->get_dictionary = dictionary_value_get_dictionary;
GetStruct()->get_list = dictionary_value_get_list;
GetStruct()->set_value = dictionary_value_set_value;
GetStruct()->set_null = dictionary_value_set_null;
GetStruct()->set_bool = dictionary_value_set_bool;
GetStruct()->set_int = dictionary_value_set_int;
GetStruct()->set_double = dictionary_value_set_double;
GetStruct()->set_string = dictionary_value_set_string;
GetStruct()->set_binary = dictionary_value_set_binary;
GetStruct()->set_dictionary = dictionary_value_set_dictionary;
GetStruct()->set_list = dictionary_value_set_list;
}
CefDictionaryValueCppToC::~CefDictionaryValueCppToC() {
shutdown_checker::AssertNotShutdown();
}
template <>
CefRefPtr<CefDictionaryValue> CefCppToCRefCounted<
CefDictionaryValueCppToC,
CefDictionaryValue,
cef_dictionary_value_t>::UnwrapDerived(CefWrapperType type,
cef_dictionary_value_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
return nullptr;
}
template <>
CefWrapperType CefCppToCRefCounted<CefDictionaryValueCppToC,
CefDictionaryValue,
cef_dictionary_value_t>::kWrapperType =
WT_DICTIONARY_VALUE;