blob: 6b655fb204157262aca5c28f159459ebab6139cb [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/interface.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_interface_named_constructor.h"
#include <algorithm>
#include "base/memory/scoped_refptr.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/bindings/core/v8/v8_dom_configuration.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/platform/bindings/exception_messages.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/runtime_call_stats.h"
#include "third_party/blink/renderer/platform/bindings/v8_object_constructor.h"
#include "third_party/blink/renderer/platform/bindings/v8_per_context_data.h"
#include "third_party/blink/renderer/platform/bindings/v8_private_property.h"
#include "third_party/blink/renderer/platform/scheduler/public/cooperative_scheduling_manager.h"
#include "third_party/blink/renderer/platform/wtf/get_ptr.h"
namespace blink {
// Suppress warning: global constructors, because struct WrapperTypeInfo is trivial
// and does not depend on another global objects.
#if defined(COMPONENT_BUILD) && defined(WIN32) && defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
const WrapperTypeInfo v8_test_interface_named_constructor_wrapper_type_info = {
gin::kEmbedderBlink,
V8TestInterfaceNamedConstructor::DomTemplate,
nullptr,
"TestInterfaceNamedConstructor",
nullptr,
WrapperTypeInfo::kWrapperTypeObjectPrototype,
WrapperTypeInfo::kObjectClassId,
WrapperTypeInfo::kInheritFromActiveScriptWrappable,
};
#if defined(COMPONENT_BUILD) && defined(WIN32) && defined(__clang__)
#pragma clang diagnostic pop
#endif
// This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestInterfaceNamedConstructor.h.
// For details, see the comment of DEFINE_WRAPPERTYPEINFO in
// platform/bindings/ScriptWrappable.h.
const WrapperTypeInfo& TestInterfaceNamedConstructor::wrapper_type_info_ = v8_test_interface_named_constructor_wrapper_type_info;
// [ActiveScriptWrappable]
static_assert(
std::is_base_of<ActiveScriptWrappableBase, TestInterfaceNamedConstructor>::value,
"TestInterfaceNamedConstructor does not inherit from ActiveScriptWrappable<>, but specifying "
"[ActiveScriptWrappable] extended attribute in the IDL file. "
"Be consistent.");
static_assert(
!std::is_same<decltype(&TestInterfaceNamedConstructor::HasPendingActivity),
decltype(&ScriptWrappable::HasPendingActivity)>::value,
"TestInterfaceNamedConstructor is not overriding hasPendingActivity(), but is specifying "
"[ActiveScriptWrappable] extended attribute in the IDL file. "
"Be consistent.");
namespace test_interface_named_constructor_v8_internal {
} // namespace test_interface_named_constructor_v8_internal
void V8TestInterfaceNamedConstructor::TestNamedConstructorConstructorAttributeConstructorGetterCallback(
v8::Local<v8::Name> property, const v8::PropertyCallbackInfo<v8::Value>& info) {
RUNTIME_CALL_TIMER_SCOPE_DISABLED_BY_DEFAULT(info.GetIsolate(), "Blink_TestInterfaceNamedConstructor_testNamedConstructorConstructorAttribute_ConstructorGetterCallback");
V8TestNamedConstructor::NamedConstructorAttributeGetter(property, info);
}
// Suppress warning: global constructors, because struct WrapperTypeInfo is trivial
// and does not depend on another global objects.
#if defined(COMPONENT_BUILD) && defined(WIN32) && defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
const WrapperTypeInfo v8_test_interface_named_constructor_constructor_wrapper_type_info = {
gin::kEmbedderBlink,
V8TestInterfaceNamedConstructorConstructor::DomTemplate,
nullptr,
"TestInterfaceNamedConstructor",
nullptr,
WrapperTypeInfo::kWrapperTypeObjectPrototype,
WrapperTypeInfo::kObjectClassId,
WrapperTypeInfo::kInheritFromActiveScriptWrappable,
};
#if defined(COMPONENT_BUILD) && defined(WIN32) && defined(__clang__)
#pragma clang diagnostic pop
#endif
static void V8TestInterfaceNamedConstructorConstructorCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
RUNTIME_CALL_TIMER_SCOPE_DISABLED_BY_DEFAULT(info.GetIsolate(), "Blink_TestInterfaceNamedConstructor_ConstructorCallback");
if (!info.IsConstructCall()) {
V8ThrowException::ThrowTypeError(info.GetIsolate(), ExceptionMessages::ConstructorNotCallableAsFunction("Audio"));
return;
}
if (ConstructorMode::Current(info.GetIsolate()) == ConstructorMode::kWrapExistingObject) {
V8SetReturnValue(info, info.Holder());
return;
}
ExceptionState exception_state(info.GetIsolate(), ExceptionState::kConstructionContext, "TestInterfaceNamedConstructor");
if (UNLIKELY(info.Length() < 1)) {
exception_state.ThrowTypeError(ExceptionMessages::NotEnoughArguments(1, info.Length()));
return;
}
V8StringResource<> string_arg;
bool default_undefined_optional_boolean_arg;
int32_t default_undefined_optional_long_arg;
V8StringResource<> default_undefined_optional_string_arg;
V8StringResource<> default_null_string_optionalstring_arg;
V8StringResource<> optional_string_arg;
int num_args_passed = info.Length();
while (num_args_passed > 0) {
if (!info[num_args_passed - 1]->IsUndefined())
break;
--num_args_passed;
}
string_arg = info[0];
if (!string_arg.Prepare())
return;
default_undefined_optional_boolean_arg = NativeValueTraits<IDLBoolean>::NativeValue(info.GetIsolate(), info[1], exception_state);
if (exception_state.HadException())
return;
default_undefined_optional_long_arg = NativeValueTraits<IDLLong>::NativeValue(info.GetIsolate(), info[2], exception_state);
if (exception_state.HadException())
return;
default_undefined_optional_string_arg = info[3];
if (!default_undefined_optional_string_arg.Prepare())
return;
if (!info[4]->IsUndefined()) {
default_null_string_optionalstring_arg = info[4];
if (!default_null_string_optionalstring_arg.Prepare())
return;
} else {
default_null_string_optionalstring_arg = nullptr;
}
if (UNLIKELY(num_args_passed <= 5)) {
Document& document = *ToLocalDOMWindow(
info.NewTarget().As<v8::Object>()->CreationContext())->document();
TestInterfaceNamedConstructor* impl = TestInterfaceNamedConstructor::CreateForJSConstructor(document, string_arg, default_undefined_optional_boolean_arg, default_undefined_optional_long_arg, default_undefined_optional_string_arg, default_null_string_optionalstring_arg, exception_state);
if (exception_state.HadException()) {
return;
}
v8::Local<v8::Object> wrapper = info.Holder();
wrapper = impl->AssociateWithWrapper(info.GetIsolate(), V8TestInterfaceNamedConstructorConstructor::GetWrapperTypeInfo(), wrapper);
V8SetReturnValue(info, wrapper);
return;
}
optional_string_arg = info[5];
if (!optional_string_arg.Prepare())
return;
Document& document = *ToLocalDOMWindow(
info.NewTarget().As<v8::Object>()->CreationContext())->document();
TestInterfaceNamedConstructor* impl = TestInterfaceNamedConstructor::CreateForJSConstructor(document, string_arg, default_undefined_optional_boolean_arg, default_undefined_optional_long_arg, default_undefined_optional_string_arg, default_null_string_optionalstring_arg, optional_string_arg, exception_state);
if (exception_state.HadException()) {
return;
}
v8::Local<v8::Object> wrapper = info.Holder();
wrapper = impl->AssociateWithWrapper(info.GetIsolate(), V8TestInterfaceNamedConstructorConstructor::GetWrapperTypeInfo(), wrapper);
V8SetReturnValue(info, wrapper);
}
v8::Local<v8::FunctionTemplate> V8TestInterfaceNamedConstructorConstructor::DomTemplate(
v8::Isolate* isolate, const DOMWrapperWorld& world) {
static int dom_template_key; // This address is used for a key to look up the dom template.
V8PerIsolateData* data = V8PerIsolateData::From(isolate);
v8::Local<v8::FunctionTemplate> result =
data->FindInterfaceTemplate(world, &dom_template_key);
if (!result.IsEmpty())
return result;
result = v8::FunctionTemplate::New(isolate, V8TestInterfaceNamedConstructorConstructorCallback);
v8::Local<v8::ObjectTemplate> instance_template = result->InstanceTemplate();
instance_template->SetInternalFieldCount(V8TestInterfaceNamedConstructor::kInternalFieldCount);
result->SetClassName(V8AtomicString(isolate, "Audio"));
result->Inherit(V8TestInterfaceNamedConstructor::DomTemplate(isolate, world));
data->SetInterfaceTemplate(world, &dom_template_key, result);
return result;
}
void V8TestInterfaceNamedConstructorConstructor::NamedConstructorAttributeGetter(
v8::Local<v8::Name> property_name,
const v8::PropertyCallbackInfo<v8::Value>& info) {
v8::Local<v8::Context> creationContext = info.Holder()->CreationContext();
V8PerContextData* per_context_data = V8PerContextData::From(creationContext);
if (!per_context_data) {
// TODO(yukishiino): Return a valid named constructor even after the context is detached
return;
}
v8::Local<v8::Function> named_constructor =
per_context_data->ConstructorForType(V8TestInterfaceNamedConstructorConstructor::GetWrapperTypeInfo());
// Set the prototype of named constructors to the regular constructor.
static const V8PrivateProperty::SymbolKey kPrivatePropertyInitialized;
auto private_property =
V8PrivateProperty::GetSymbol(
info.GetIsolate(), kPrivatePropertyInitialized);
v8::Local<v8::Context> current_context = info.GetIsolate()->GetCurrentContext();
v8::Local<v8::Value> private_value;
if (!private_property.GetOrUndefined(named_constructor).ToLocal(&private_value) ||
private_value->IsUndefined()) {
v8::Local<v8::Function> interface =
per_context_data->ConstructorForType(V8TestInterfaceNamedConstructor::GetWrapperTypeInfo());
v8::Local<v8::Value> interface_prototype =
interface->Get(current_context, V8AtomicString(info.GetIsolate(), "prototype"))
.ToLocalChecked();
// https://heycam.github.io/webidl/#named-constructors
// 8. Perform ! DefinePropertyOrThrow(F, "prototype",
// PropertyDescriptor{[[Value]]: proto, [[Writable]]: false,
// [[Enumerable]]: false,
// [Configurable]]: false}).
const v8::PropertyAttribute prototype_attributes =
static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontEnum | v8::DontDelete);
bool result = named_constructor->DefineOwnProperty(
current_context, V8AtomicString(info.GetIsolate(), "prototype"),
interface_prototype, prototype_attributes).ToChecked();
CHECK(result);
private_property.Set(named_constructor, v8::True(info.GetIsolate()));
}
V8SetReturnValue(info, named_constructor);
}
static void InstallV8TestInterfaceNamedConstructorTemplate(
v8::Isolate* isolate,
const DOMWrapperWorld& world,
v8::Local<v8::FunctionTemplate> interface_template) {
// Initialize the interface object's template.
V8DOMConfiguration::InitializeDOMInterfaceTemplate(isolate, interface_template, V8TestInterfaceNamedConstructor::GetWrapperTypeInfo()->interface_name, v8::Local<v8::FunctionTemplate>(), V8TestInterfaceNamedConstructor::kInternalFieldCount);
v8::Local<v8::Signature> signature = v8::Signature::New(isolate, interface_template);
ALLOW_UNUSED_LOCAL(signature);
v8::Local<v8::ObjectTemplate> instance_template = interface_template->InstanceTemplate();
ALLOW_UNUSED_LOCAL(instance_template);
v8::Local<v8::ObjectTemplate> prototype_template = interface_template->PrototypeTemplate();
ALLOW_UNUSED_LOCAL(prototype_template);
// Register IDL constants, attributes and operations.
static constexpr V8DOMConfiguration::AttributeConfiguration
kAttributeConfigurations[] = {
{ "testNamedConstructorConstructorAttribute", V8TestInterfaceNamedConstructor::TestNamedConstructorConstructorAttributeConstructorGetterCallback, nullptr, static_cast<v8::PropertyAttribute>(v8::DontEnum), V8DOMConfiguration::kOnInstance, V8DOMConfiguration::kCheckHolder, V8DOMConfiguration::kHasSideEffect, V8DOMConfiguration::kReplaceWithDataProperty, V8DOMConfiguration::kAllWorlds },
};
V8DOMConfiguration::InstallAttributes(
isolate, world, instance_template, prototype_template,
kAttributeConfigurations, base::size(kAttributeConfigurations));
// Custom signature
V8TestInterfaceNamedConstructor::InstallRuntimeEnabledFeaturesOnTemplate(
isolate, world, interface_template);
}
void V8TestInterfaceNamedConstructor::InstallRuntimeEnabledFeaturesOnTemplate(
v8::Isolate* isolate,
const DOMWrapperWorld& world,
v8::Local<v8::FunctionTemplate> interface_template) {
v8::Local<v8::Signature> signature = v8::Signature::New(isolate, interface_template);
ALLOW_UNUSED_LOCAL(signature);
v8::Local<v8::ObjectTemplate> instance_template = interface_template->InstanceTemplate();
ALLOW_UNUSED_LOCAL(instance_template);
v8::Local<v8::ObjectTemplate> prototype_template = interface_template->PrototypeTemplate();
ALLOW_UNUSED_LOCAL(prototype_template);
// Register IDL constants, attributes and operations.
// Custom signature
}
v8::Local<v8::FunctionTemplate> V8TestInterfaceNamedConstructor::DomTemplate(
v8::Isolate* isolate, const DOMWrapperWorld& world) {
return V8DOMConfiguration::DomClassTemplate(
isolate, world, const_cast<WrapperTypeInfo*>(V8TestInterfaceNamedConstructor::GetWrapperTypeInfo()),
InstallV8TestInterfaceNamedConstructorTemplate);
}
bool V8TestInterfaceNamedConstructor::HasInstance(v8::Local<v8::Value> v8_value, v8::Isolate* isolate) {
return V8PerIsolateData::From(isolate)->HasInstance(V8TestInterfaceNamedConstructor::GetWrapperTypeInfo(), v8_value);
}
v8::Local<v8::Object> V8TestInterfaceNamedConstructor::FindInstanceInPrototypeChain(
v8::Local<v8::Value> v8_value, v8::Isolate* isolate) {
return V8PerIsolateData::From(isolate)->FindInstanceInPrototypeChain(
V8TestInterfaceNamedConstructor::GetWrapperTypeInfo(), v8_value);
}
TestInterfaceNamedConstructor* V8TestInterfaceNamedConstructor::ToImplWithTypeCheck(
v8::Isolate* isolate, v8::Local<v8::Value> value) {
return HasInstance(value, isolate) ? ToImpl(v8::Local<v8::Object>::Cast(value)) : nullptr;
}
} // namespace blink