Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1229)

Unified Diff: sky/engine/bindings2/scripts/v8_attributes.py

Issue 914413004: Add a new bindings2/scripts directory for Dart bindings (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Remove idlrenderer.py it's not used Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/bindings2/scripts/utilities.py ('k') | sky/engine/bindings2/scripts/v8_globals.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings2/scripts/v8_attributes.py
diff --git a/sky/engine/bindings/scripts/v8_attributes.py b/sky/engine/bindings2/scripts/v8_attributes.py
similarity index 58%
copy from sky/engine/bindings/scripts/v8_attributes.py
copy to sky/engine/bindings2/scripts/v8_attributes.py
index eac7e38ff662819fd2d5e6939bb0dd097a3942e6..ab4042ec602b608fb940de0d61467af153e66a4f 100644
--- a/sky/engine/bindings/scripts/v8_attributes.py
+++ b/sky/engine/bindings2/scripts/v8_attributes.py
@@ -50,32 +50,16 @@ def attribute_context(interface, attribute):
idl_type.add_includes_for_type()
- # [CheckSecurity]
- is_check_security_for_node = 'CheckSecurity' in extended_attributes
- if is_check_security_for_node:
- includes.add('bindings/core/v8/BindingSecurity.h')
# [CustomElementCallbacks], [Reflect]
is_custom_element_callbacks = 'CustomElementCallbacks' in extended_attributes
is_reflect = 'Reflect' in extended_attributes
if is_custom_element_callbacks or is_reflect:
includes.add('core/dom/custom/CustomElementProcessingStack.h')
- # [PerWorldBindings]
- if 'PerWorldBindings' in extended_attributes:
- assert idl_type.is_wrapper_type or 'LogActivity' in extended_attributes, '[PerWorldBindings] should only be used with wrapper types: %s.%s' % (interface.name, attribute.name)
# [TypeChecking]
has_type_checking_unrestricted = (
(has_extended_attribute_value(interface, 'TypeChecking', 'Unrestricted') or
has_extended_attribute_value(attribute, 'TypeChecking', 'Unrestricted')) and
idl_type.name in ('Float', 'Double'))
- # [ImplementedInPrivateScript]
- is_implemented_in_private_script = 'ImplementedInPrivateScript' in extended_attributes
- if is_implemented_in_private_script:
- includes.add('bindings/core/v8/PrivateScriptRunner.h')
- includes.add('core/frame/LocalFrame.h')
- includes.add('platform/ScriptForbiddenScope.h')
-
- # [OnlyExposedToPrivateScript]
- is_only_exposed_to_private_script = 'OnlyExposedToPrivateScript' in extended_attributes
if (base_idl_type == 'EventHandler' and
interface.name in ['Window'] and
@@ -83,20 +67,13 @@ def attribute_context(interface, attribute):
includes.add('bindings/core/v8/V8ErrorHandler.h')
context = {
- 'access_control_list': access_control_list(attribute),
- 'activity_logging_world_list_for_getter': v8_utilities.activity_logging_world_list(attribute, 'Getter'), # [ActivityLogging]
- 'activity_logging_world_list_for_setter': v8_utilities.activity_logging_world_list(attribute, 'Setter'), # [ActivityLogging]
- 'activity_logging_include_old_value_for_setter': 'LogPreviousValue' in extended_attributes, # [ActivityLogging]
- 'activity_logging_world_check': v8_utilities.activity_logging_world_check(attribute), # [ActivityLogging]
'argument_cpp_type': idl_type.cpp_type_args(used_as_rvalue_type=True),
'cached_attribute_validation_method': extended_attributes.get('CachedAttribute'),
- 'conditional_string': v8_utilities.conditional_string(attribute),
'constructor_type': idl_type.constructor_type_name
if is_constructor_attribute(attribute) else None,
'cpp_name': cpp_name(attribute),
'cpp_type': idl_type.cpp_type,
'cpp_type_initializer': idl_type.cpp_type_initializer,
- 'deprecate_as': v8_utilities.deprecate_as(attribute), # [DeprecateAs]
'enum_validation_expression': idl_type.enum_validation_expression,
'exposed_test': v8_utilities.exposed(attribute, interface), # [Exposed]
'has_custom_getter': has_custom_getter(attribute),
@@ -105,13 +82,10 @@ def attribute_context(interface, attribute):
'idl_type': str(idl_type), # need trailing [] on array for Dictionary::ConversionContext::setConversionType
'is_call_with_execution_context': v8_utilities.has_extended_attribute_value(attribute, 'CallWith', 'ExecutionContext'),
'is_call_with_script_state': v8_utilities.has_extended_attribute_value(attribute, 'CallWith', 'ScriptState'),
- 'is_check_security_for_node': is_check_security_for_node,
'is_custom_element_callbacks': is_custom_element_callbacks,
- 'is_expose_js_accessors': 'ExposeJSAccessors' in extended_attributes,
'is_getter_raises_exception': # [RaisesException]
'RaisesException' in extended_attributes and
extended_attributes['RaisesException'] in (None, 'Getter'),
- 'is_implemented_in_private_script': is_implemented_in_private_script,
'is_initialized_by_event_constructor':
'InitializedByEventConstructor' in extended_attributes,
'is_keep_alive_for_gc': is_keep_alive_for_gc(interface, attribute),
@@ -119,30 +93,18 @@ def attribute_context(interface, attribute):
'is_explicit_nullable': idl_type.is_explicit_nullable,
'is_partial_interface_member':
'PartialInterfaceImplementedAs' in extended_attributes,
- 'is_per_world_bindings': 'PerWorldBindings' in extended_attributes,
'is_read_only': attribute.is_read_only,
'is_reflect': is_reflect,
'is_replaceable': 'Replaceable' in attribute.extended_attributes,
'is_static': attribute.is_static,
'is_url': 'URL' in extended_attributes,
- 'is_unforgeable': 'Unforgeable' in extended_attributes,
- 'measure_as': v8_utilities.measure_as(attribute), # [MeasureAs]
'name': attribute.name,
- 'only_exposed_to_private_script': is_only_exposed_to_private_script,
- 'private_script_v8_value_to_local_cpp_value': idl_type.v8_value_to_local_cpp_value(
- extended_attributes, 'v8Value', 'cppValue', isolate='scriptState->isolate()', used_in_private_script=True),
- 'property_attributes': property_attributes(attribute),
'put_forwards': 'PutForwards' in extended_attributes,
'reflect_empty': extended_attributes.get('ReflectEmpty'),
'reflect_invalid': extended_attributes.get('ReflectInvalid', ''),
'reflect_missing': extended_attributes.get('ReflectMissing'),
'reflect_only': extended_attribute_value_as_list(attribute, 'ReflectOnly'),
- 'runtime_enabled_function': v8_utilities.runtime_enabled_function_name(attribute), # [RuntimeEnabled]
'setter_callback': setter_callback_name(interface, attribute),
- 'should_be_exposed_to_script': not (is_implemented_in_private_script and is_only_exposed_to_private_script),
- 'world_suffixes': ['', 'ForMainWorld']
- if 'PerWorldBindings' in extended_attributes
- else [''], # [PerWorldBindings]
}
if is_constructor_attribute(attribute):
@@ -162,54 +124,10 @@ def attribute_context(interface, attribute):
################################################################################
def getter_context(interface, attribute, context):
- idl_type = attribute.idl_type
- base_idl_type = idl_type.base_type
- extended_attributes = attribute.extended_attributes
-
cpp_value = getter_expression(interface, attribute, context)
- # Normally we can inline the function call into the return statement to
- # avoid the overhead of using a Ref<> temporary, but for some cases
- # (nullable types, EventHandler, [CachedAttribute], or if there are
- # exceptions), we need to use a local variable.
- # FIXME: check if compilers are smart enough to inline this, and if so,
- # always use a local variable (for readability and CG simplicity).
- release = False
- if 'ImplementedInPrivateScript' in extended_attributes:
- if (not idl_type.is_wrapper_type and
- not idl_type.is_basic_type and
- not idl_type.is_enum):
- raise Exception('Private scripts supports only primitive types and DOM wrappers.')
-
- context['cpp_value_original'] = cpp_value
- cpp_value = 'result'
- # EventHandler has special handling
- if base_idl_type != 'EventHandler':
- release = idl_type.release
- elif (idl_type.is_explicit_nullable or
- base_idl_type == 'EventHandler' or
- 'CachedAttribute' in extended_attributes or
- 'LogPreviousValue' in extended_attributes or
- 'ReflectOnly' in extended_attributes or
- context['is_keep_alive_for_gc'] or
- context['is_getter_raises_exception']):
- context['cpp_value_original'] = cpp_value
- cpp_value = 'cppValue'
- # EventHandler has special handling
- if base_idl_type != 'EventHandler':
- release = idl_type.release
-
- def v8_set_return_value_statement(for_main_world=False):
- if context['is_keep_alive_for_gc']:
- return 'v8SetReturnValue(info, wrapper)'
- return idl_type.v8_set_return_value(cpp_value, extended_attributes=extended_attributes, script_wrappable='impl', release=release, for_main_world=for_main_world)
context.update({
'cpp_value': cpp_value,
- 'cpp_value_to_v8_value': idl_type.cpp_value_to_v8_value(
- cpp_value=cpp_value, creation_context='info.Holder()',
- extended_attributes=extended_attributes),
- 'v8_set_return_value_for_main_world': v8_set_return_value_statement(for_main_world=True),
- 'v8_set_return_value': v8_set_return_value_statement(),
})
@@ -218,17 +136,12 @@ def getter_expression(interface, attribute, context):
this_getter_base_name = getter_base_name(interface, attribute, arguments)
getter_name = scoped_name(interface, attribute, this_getter_base_name)
- if 'ImplementedInPrivateScript' in attribute.extended_attributes:
- arguments.append('toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext())')
- arguments.append('impl')
- arguments.append('&result')
arguments.extend(v8_utilities.call_with_arguments(
attribute.extended_attributes.get('CallWith')))
# Members of IDL partial interface definitions are implemented in C++ as
# static member functions, which for instance members (non-static members)
# take *impl as their first argument
if ('PartialInterfaceImplementedAs' in attribute.extended_attributes and
- not 'ImplementedInPrivateScript' in attribute.extended_attributes and
not attribute.is_static):
arguments.append('*impl')
if attribute.idl_type.is_explicit_nullable:
@@ -248,9 +161,6 @@ CONTENT_ATTRIBUTE_GETTER_NAMES = {
def getter_base_name(interface, attribute, arguments):
extended_attributes = attribute.extended_attributes
- if 'ImplementedInPrivateScript' in extended_attributes:
- return '%sAttributeGetter' % uncapitalize(cpp_name(attribute))
-
if 'Reflect' not in extended_attributes:
return uncapitalize(cpp_name(attribute))
@@ -288,7 +198,7 @@ def is_keep_alive_for_gc(interface, attribute):
attribute.name == 'self' or
# FIXME: Remove these hard-coded hacks.
base_idl_type in ['EventTarget', 'Window'] or
- base_idl_type.startswith(('HTML', 'SVG')))))
+ base_idl_type.startswith('HTML'))))
################################################################################
@@ -333,58 +243,8 @@ def setter_context(interface, attribute, context):
'is_setter_call_with_execution_context': v8_utilities.has_extended_attribute_value(
attribute, 'SetterCallWith', 'ExecutionContext'),
'is_setter_raises_exception': is_setter_raises_exception,
- 'private_script_cpp_value_to_v8_value': idl_type.cpp_value_to_v8_value(
- 'cppValue', isolate='scriptState->isolate()',
- creation_context='scriptState->context()->Global()'),
- 'v8_value_to_local_cpp_value': idl_type.v8_value_to_local_cpp_value(
- extended_attributes, 'v8Value', 'cppValue'),
})
- # setter_expression() depends on context values we set above.
- context['cpp_setter'] = setter_expression(interface, attribute, context)
-
-
-def setter_expression(interface, attribute, context):
- extended_attributes = attribute.extended_attributes
- arguments = v8_utilities.call_with_arguments(
- extended_attributes.get('SetterCallWith') or
- extended_attributes.get('CallWith'))
-
- this_setter_base_name = setter_base_name(interface, attribute, arguments)
- setter_name = scoped_name(interface, attribute, this_setter_base_name)
-
- # Members of IDL partial interface definitions are implemented in C++ as
- # static member functions, which for instance members (non-static members)
- # take *impl as their first argument
- if ('PartialInterfaceImplementedAs' in extended_attributes and
- not 'ImplementedInPrivateScript' in extended_attributes and
- not attribute.is_static):
- arguments.append('*impl')
- idl_type = attribute.idl_type
- if 'ImplementedInPrivateScript' in extended_attributes:
- arguments.append('toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext())')
- arguments.append('impl')
- arguments.append('cppValue')
- elif idl_type.base_type == 'EventHandler':
- getter_name = scoped_name(interface, attribute, cpp_name(attribute))
- context['event_handler_getter_expression'] = '%s(%s)' % (
- getter_name, ', '.join(arguments))
- if (interface.name in ['Window'] and
- attribute.name == 'onerror'):
- includes.add('bindings/core/v8/V8ErrorHandler.h')
- arguments.append('V8EventListenerList::findOrCreateWrapper<V8ErrorHandler>(v8Value, ScriptState::current(info.GetIsolate()))')
- else:
- arguments.append('V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, ListenerFindOrCreate)')
- elif idl_type.is_interface_type:
- # FIXME: should be able to eliminate WTF::getPtr in most or all cases
- arguments.append('WTF::getPtr(cppValue)')
- else:
- arguments.append('cppValue')
- if context['is_setter_raises_exception']:
- arguments.append('exceptionState')
-
- return '%s(%s)' % (setter_name, ', '.join(arguments))
-
CONTENT_ATTRIBUTE_SETTER_NAMES = {
'boolean': 'setBooleanAttribute',
@@ -394,9 +254,6 @@ CONTENT_ATTRIBUTE_SETTER_NAMES = {
def setter_base_name(interface, attribute, arguments):
- if 'ImplementedInPrivateScript' in attribute.extended_attributes:
- return '%sAttributeSetter' % uncapitalize(cpp_name(attribute))
-
if 'Reflect' not in attribute.extended_attributes:
return 'set%s' % capitalize(cpp_name(attribute))
arguments.append(scoped_content_attribute_name(interface, attribute))
@@ -410,7 +267,7 @@ def setter_base_name(interface, attribute, arguments):
def scoped_content_attribute_name(interface, attribute):
content_attribute_name = attribute.extended_attributes['Reflect'] or attribute.name.lower()
namespace = 'HTMLNames'
- includes.add('core/%s.h' % namespace)
+ includes.add('gen/sky/core/%s.h' % namespace)
return '%s::%sAttr' % (namespace, content_attribute_name)
@@ -431,36 +288,6 @@ def setter_callback_name(interface, attribute):
return '%sV8Internal::%sAttributeSetterCallback' % (cpp_class_name, attribute.name)
-# [DoNotCheckSecurity], [Unforgeable]
-def access_control_list(attribute):
- extended_attributes = attribute.extended_attributes
- access_control = []
- if 'DoNotCheckSecurity' in extended_attributes:
- do_not_check_security = extended_attributes['DoNotCheckSecurity']
- if do_not_check_security == 'Setter':
- access_control.append('v8::ALL_CAN_WRITE')
- else:
- access_control.append('v8::ALL_CAN_READ')
- if (not attribute.is_read_only or
- 'Replaceable' in extended_attributes):
- access_control.append('v8::ALL_CAN_WRITE')
- if 'Unforgeable' in extended_attributes:
- access_control.append('v8::PROHIBITS_OVERWRITING')
- return access_control or ['v8::DEFAULT']
-
-
-# [NotEnumerable], [Unforgeable]
-def property_attributes(attribute):
- extended_attributes = attribute.extended_attributes
- property_attributes_list = []
- if ('NotEnumerable' in extended_attributes or
- is_constructor_attribute(attribute)):
- property_attributes_list.append('v8::DontEnum')
- if 'Unforgeable' in extended_attributes:
- property_attributes_list.append('v8::DontDelete')
- return property_attributes_list or ['v8::None']
-
-
# [Custom], [Custom=Getter]
def has_custom_getter(attribute):
extended_attributes = attribute.extended_attributes
@@ -488,7 +315,3 @@ idl_types.IdlType.constructor_type_name = property(
def is_constructor_attribute(attribute):
# FIXME: replace this with [ConstructorAttribute] extended attribute
return attribute.idl_type.name.endswith('Constructor')
-
-
-def constructor_getter_context(interface, attribute, context):
- context['needs_constructor_getter_callback'] = context['measure_as'] or context['deprecate_as']
« no previous file with comments | « sky/engine/bindings2/scripts/utilities.py ('k') | sky/engine/bindings2/scripts/v8_globals.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698