blob: d1ee11577c1895da35b3d0d4a055dc3ec412480f [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated from the Jinja2 template
// third_party/blink/renderer/bindings/templates/dictionary_v8.cc.tmpl
// by the script code_generator_v8.py.
// DO NOT MODIFY!
// clang-format off
#include "third_party/blink/renderer/bindings/tests/results/core/v8_test_permissive_dictionary.h"
#include "base/stl_util.h"
#include "third_party/blink/renderer/bindings/core/v8/idl_types.h"
#include "third_party/blink/renderer/bindings/core/v8/native_value_traits_impl.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
namespace blink {
static const base::span<const v8::Eternal<v8::Name>>
eternalV8TestPermissiveDictionaryKeys(v8::Isolate* isolate) {
static const char* const kKeys[] = {
"booleanMember",
};
return V8PerIsolateData::From(isolate)->FindOrCreateEternalNameCache(kKeys, kKeys);
}
void V8TestPermissiveDictionary::ToImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8_value, TestPermissiveDictionary* impl, ExceptionState& exception_state) {
if (IsUndefinedOrNull(v8_value)) {
return;
}
if (!v8_value->IsObject()) {
// Do nothing.
return;
}
v8::Local<v8::Object> v8Object = v8_value.As<v8::Object>();
ALLOW_UNUSED_LOCAL(v8Object);
const auto* keys = eternalV8TestPermissiveDictionaryKeys(isolate).data();
v8::TryCatch block(isolate);
v8::Local<v8::Context> context = isolate->GetCurrentContext();
v8::Local<v8::Value> boolean_member_value;
if (!v8Object->Get(context, keys[0].Get(isolate)).ToLocal(&boolean_member_value)) {
exception_state.RethrowV8Exception(block.Exception());
return;
}
if (boolean_member_value.IsEmpty() || boolean_member_value->IsUndefined()) {
// Do nothing.
} else {
bool boolean_member_cpp_value{ NativeValueTraits<IDLBoolean>::NativeValue(isolate, boolean_member_value, exception_state) };
if (exception_state.HadException())
return;
impl->setBooleanMember(boolean_member_cpp_value);
}
}
v8::Local<v8::Value> TestPermissiveDictionary::ToV8Impl(v8::Local<v8::Object> creationContext, v8::Isolate* isolate) const {
v8::Local<v8::Object> v8Object = v8::Object::New(isolate);
if (!toV8TestPermissiveDictionary(this, v8Object, creationContext, isolate))
return v8::Undefined(isolate);
return v8Object;
}
bool toV8TestPermissiveDictionary(const TestPermissiveDictionary* impl, v8::Local<v8::Object> dictionary, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
const auto* keys = eternalV8TestPermissiveDictionaryKeys(isolate).data();
v8::Local<v8::Context> context = isolate->GetCurrentContext();
auto create_property = [dictionary, context, keys, isolate](
size_t key_index, v8::Local<v8::Value> value) {
bool added_property;
v8::Local<v8::Name> key = keys[key_index].Get(isolate);
if (!dictionary->CreateDataProperty(context, key, value)
.To(&added_property)) {
return false;
}
return added_property;
};
v8::Local<v8::Value> boolean_member_value;
bool boolean_member_has_value_or_default = false;
if (impl->hasBooleanMember()) {
boolean_member_value = v8::Boolean::New(isolate, impl->booleanMember());
boolean_member_has_value_or_default = true;
}
if (boolean_member_has_value_or_default &&
!create_property(0, boolean_member_value)) {
return false;
}
return true;
}
TestPermissiveDictionary* NativeValueTraits<TestPermissiveDictionary>::NativeValue(v8::Isolate* isolate, v8::Local<v8::Value> value, ExceptionState& exception_state) {
TestPermissiveDictionary* impl = MakeGarbageCollected<TestPermissiveDictionary>();
V8TestPermissiveDictionary::ToImpl(isolate, value, impl, exception_state);
return impl;
}
} // namespace blink