Chromium Code Reviews| Index: Source/bindings/templates/interface_base.cpp |
| diff --git a/Source/bindings/templates/interface_base.cpp b/Source/bindings/templates/interface_base.cpp |
| index 2f9ba99f0a8142b6d9598fc2e9af7b6f0fd7304b..2043cb663648b24883a177b589ce8f30e86fcc1e 100644 |
| --- a/Source/bindings/templates/interface_base.cpp |
| +++ b/Source/bindings/templates/interface_base.cpp |
| @@ -6,12 +6,13 @@ |
| #include "config.h" |
| {% filter conditional(conditional_string) %} |
| -#include "{{v8_class}}.h" |
| +#include "{{actual_v8_class}}.h" |
| -{% for filename in cpp_includes if filename != '%s.h' % v8_class %} |
| +{% for filename in cpp_includes if filename != '%s.h' % actual_cpp_class %} |
| #include "{{filename}}" |
| {% endfor %} |
| +{% block initialize_script_wrappable %}{% endblock %} |
| namespace blink { |
| {% set to_active_dom_object = '%s::toActiveDOMObject' % v8_class |
| if is_active_dom_object else '0' %} |
| @@ -24,7 +25,9 @@ namespace blink { |
| {% set wrapper_type_prototype = 'WrapperTypeExceptionPrototype' if is_exception else |
| 'WrapperTypeObjectPrototype' %} |
| -const WrapperTypeInfo {{v8_class}}::wrapperTypeInfo = { gin::kEmbedderBlink, {{v8_class}}::domTemplate, {{v8_class}}::refObject, {{v8_class}}::derefObject, {{v8_class}}::createPersistentHandle, {{to_active_dom_object}}, {{to_event_target}}, {{visit_dom_wrapper}}, {{v8_class}}::installConditionallyEnabledMethods, {{v8_class}}::installConditionallyEnabledProperties, {{parent_wrapper_type_info}}, WrapperTypeInfo::{{wrapper_type_prototype}}, WrapperTypeInfo::{{wrapper_class_id}}, WrapperTypeInfo::{{lifetime}}, WrapperTypeInfo::{{gc_type}} }; |
| +{% set wrapper_type_info_type = '' if has_partial_interface else 'const ' %} |
| +{% if not is_partial %} |
| +{{wrapper_type_info_type}}WrapperTypeInfo {{v8_class}}::wrapperTypeInfo = { gin::kEmbedderBlink, {{v8_class}}::domTemplate, {{v8_class}}::refObject, {{v8_class}}::derefObject, {{v8_class}}::createPersistentHandle, {{to_active_dom_object}}, {{to_event_target}}, {{visit_dom_wrapper}}, {{v8_class}}::installConditionallyEnabledMethods, {{v8_class}}::installConditionallyEnabledProperties, {{parent_wrapper_type_info}}, WrapperTypeInfo::{{wrapper_type_prototype}}, WrapperTypeInfo::{{wrapper_class_id}}, WrapperTypeInfo::{{lifetime}}, WrapperTypeInfo::{{gc_type}} }; |
| {% if is_script_wrappable %} |
| // This static member must be declared by DEFINE_WRAPPERTYPEINFO in {{cpp_class}}.h. |
| @@ -33,7 +36,15 @@ const WrapperTypeInfo {{v8_class}}::wrapperTypeInfo = { gin::kEmbedderBlink, {{v |
| const WrapperTypeInfo& {{cpp_class}}::s_wrapperTypeInfo = {{v8_class}}::wrapperTypeInfo; |
| {% endif %} |
| -namespace {{cpp_class}}V8Internal { |
| +{% endif %} |
| +namespace {{actual_cpp_class}}V8Internal { |
| +{% if has_partial_interface %} |
| +{% for method in methods %} |
|
bashi
2014/10/15 05:29:23
nit: you can merge "for" and "if".
tasak
2014/10/15 11:24:19
Done.
|
| +{% if method.overloads and method.overloads.has_partial_overloads %} |
| +static void (*{{method.name}}MethodForPartialInterface)(const v8::FunctionCallbackInfo<v8::Value>&) = 0; |
| +{% endif %} |
| +{% endfor %} |
| +{% endif %} |
| {# Constants #} |
| {% from 'constants.cpp' import constant_getter_callback |
| @@ -105,13 +116,29 @@ static void {{cpp_class}}ForceSetAttributeOnThis(v8::Local<v8::String> name, v8: |
| static void {{cpp_class}}ForceSetAttributeOnThisCallback(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) |
| { |
| - {{cpp_class}}V8Internal::{{cpp_class}}ForceSetAttributeOnThis(name, v8Value, info); |
| + {{actual_cpp_class}}V8Internal::{{cpp_class}}ForceSetAttributeOnThis(name, v8Value, info); |
| +} |
| + |
| +{% endif %} |
| +{% endblock %} |
| +{##############################################################################} |
| +{% block security_check_functions %} |
| +{% if has_access_check_callbacks %} |
| +bool indexedSecurityCheck(v8::Local<v8::Object> host, uint32_t index, v8::AccessType type, v8::Local<v8::Value>) |
| +{ |
| + {{cpp_class}}* impl = {{v8_class}}::toImpl(host); |
| + return BindingSecurity::shouldAllowAccessToFrame(v8::Isolate::GetCurrent(), impl->frame(), DoNotReportSecurityError); |
| +} |
| + |
| +bool namedSecurityCheck(v8::Local<v8::Object> host, v8::Local<v8::Value> key, v8::AccessType type, v8::Local<v8::Value>) |
| +{ |
| + {{cpp_class}}* impl = {{v8_class}}::toImpl(host); |
| + return BindingSecurity::shouldAllowAccessToFrame(v8::Isolate::GetCurrent(), impl->frame(), DoNotReportSecurityError); |
| } |
| {% endif %} |
| {% endblock %} |
| {##############################################################################} |
| -{% block security_check_functions %}{% endblock %} |
| {# Methods #} |
| {% from 'methods.cpp' import generate_method, overload_resolution_method, |
| method_callback, origin_safe_method_getter, generate_constructor, |
| @@ -120,17 +147,26 @@ static void {{cpp_class}}ForceSetAttributeOnThisCallback(v8::Local<v8::String> n |
| {% for method in methods %} |
| {% if method.should_be_exposed_to_script %} |
| {% for world_suffix in method.world_suffixes %} |
| -{% if not method.is_custom %} |
| +{% if not method.is_custom and method.visible %} |
| {{generate_method(method, world_suffix)}} |
| {% endif %} |
| -{% if method.overloads %} |
| +{% if method.overloads and method.overloads.visible %} |
| {{overload_resolution_method(method.overloads, world_suffix)}} |
| {% endif %} |
| {% if not method.overload_index or method.overloads %} |
| +{# If overloads_callback_visible_in_partial is True, method callback #} |
| +{# function used by installAttribute is generated in this partial interface. #} |
| +{# Otherwise, not generated. Because only 1 callback is available for |
| +{# each method. #} |
| +{% if ( method.overloads and method.overloads.visible and |
|
bashi
2014/10/15 05:29:23
nit: remove space after/before open/close parenthe
tasak
2014/10/15 11:24:19
Done.
|
| + (not method.overloads.has_partial_overloads or not is_partial) ) or |
| + (not method.overloads and method.visible) %} |
| {# A single callback is generated for overloaded methods #} |
| +{# with considering partial overloads #} |
| {{method_callback(method, world_suffix)}} |
| {% endif %} |
| -{% if method.is_do_not_check_security %} |
| +{% endif %} |
| +{% if method.is_do_not_check_security and method.visible %} |
| {{origin_safe_method_getter(method, world_suffix)}} |
| {% endif %} |
| {% endfor %} |
| @@ -164,12 +200,13 @@ static void {{cpp_class}}ForceSetAttributeOnThisCallback(v8::Local<v8::String> n |
| {% block named_property_deleter_callback %}{% endblock %} |
| {% block named_property_enumerator %}{% endblock %} |
| {% block named_property_enumerator_callback %}{% endblock %} |
| -} // namespace {{cpp_class}}V8Internal |
| +} // namespace {{actual_cpp_class}}V8Internal |
| {% block visit_dom_wrapper %}{% endblock %} |
| {% block shadow_attributes %}{% endblock %} |
| {##############################################################################} |
| {% block install_attributes %} |
| +{% from 'attributes.cpp' import attribute_configuration with context %} |
| {% if has_attribute_configuration %} |
| static const V8DOMConfiguration::AttributeConfiguration {{v8_class}}Attributes[] = { |
| {% for attribute in attributes |
| @@ -190,6 +227,7 @@ static const V8DOMConfiguration::AttributeConfiguration {{v8_class}}Attributes[] |
| {% endblock %} |
| {##############################################################################} |
| {% block install_accessors %} |
| +{% from 'attributes.cpp' import attribute_configuration with context %} |
| {% if has_accessors %} |
| static const V8DOMConfiguration::AccessorConfiguration {{v8_class}}Accessors[] = { |
| {% for attribute in attributes if attribute.is_expose_js_accessors and attribute.should_be_exposed_to_script %} |
| @@ -221,10 +259,19 @@ static const V8DOMConfiguration::MethodConfiguration {{v8_class}}Methods[] = { |
| {##############################################################################} |
| {% block install_dom_template %} |
| {% from 'methods.cpp' import install_custom_signature with context %} |
| +{% from 'attributes.cpp' import attribute_configuration with context %} |
| {% from 'constants.cpp' import install_constants with context %} |
| +{% if has_partial_interface or is_partial %} |
| +void {{actual_v8_class}}::install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) |
| +{% else %} |
| static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate) |
| +{% endif %} |
| { |
| + {% if is_partial %} |
| + {{v8_class}}::install{{v8_class}}Template(functionTemplate, isolate); |
| + {% else %} |
| functionTemplate->ReadOnlyPrototype(); |
| + {% endif %} |
| v8::Local<v8::Signature> defaultSignature; |
| {% set parent_template = |
| @@ -290,7 +337,7 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio |
| {{install_constants() | indent}} |
| {% endif %} |
| {# Special operations #} |
| - {# V8 has access-check callback API and it's used on Window instead of |
| + {# V8 has access-check callback API and it\'s used on Window instead of |
| deleters or enumerators; see ObjectTemplate::SetAccessCheckCallbacks. |
| In addition, the getter should be set on the prototype template, to get |
| the implementation straight out of the Window prototype, regardless of |
| @@ -332,7 +379,7 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio |
| functionTemplate->{{set_on_template}}()->SetNamedPropertyHandler({{named_property_getter_callback}}, {{named_property_setter_callback}}, {{named_property_query_callback}}, {{named_property_deleter_callback}}, {{named_property_enumerator_callback}}); |
| {% endif %} |
| {% if iterator_method %} |
| - static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolKeyedIteratorConfiguration = { v8::Symbol::GetIterator, {{cpp_class}}V8Internal::iteratorMethodCallback, 0, V8DOMConfiguration::ExposedToAllScripts }; |
| + static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolKeyedIteratorConfiguration = { v8::Symbol::GetIterator, {{actual_cpp_class}}V8Internal::iteratorMethodCallback, 0, V8DOMConfiguration::ExposedToAllScripts }; |
| V8DOMConfiguration::installMethod(prototypeTemplate, defaultSignature, v8::DontDelete, symbolKeyedIteratorConfiguration, isolate); |
| {% endif %} |
| {# End special operations #} |
| @@ -365,6 +412,7 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio |
| {% endfilter %} |
| {% endfor %} |
| {# Special interfaces #} |
| + {% if not is_partial %} |
| {% if interface_name == 'Window' %} |
| prototypeTemplate->SetInternalFieldCount(V8Window::internalFieldCount); |
| @@ -382,6 +430,7 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio |
| // Custom toString template |
| functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData::from(isolate)->toStringTemplate()); |
| + {% endif %} |
| } |
| {% endblock %} |
| @@ -389,8 +438,25 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio |
| {% block get_dom_template %}{% endblock %} |
| {% block has_instance %}{% endblock %} |
| {% block to_impl_with_type_check %}{% endblock %} |
| -{% block install_conditional_attributes %}{% endblock %} |
| -{% block install_conditional_methods %}{% endblock %} |
| +{##############################################################################} |
| +{% block install_conditional_attributes %} |
| +{% from 'attributes.cpp' import install_conditionally_enabled_properties |
| + with context %} |
| +{% if is_partial or has_conditional_attributes %} |
| +{{install_conditionally_enabled_properties()}} |
| + |
| +{% endif %} |
| +{% endblock %} |
| +{##############################################################################} |
| +{% block install_conditional_methods %} |
| +{% from 'methods.cpp' import install_conditionally_enabled_methods |
| + with context %} |
| +{% if is_partial or conditionally_enabled_methods %} |
| +{{install_conditionally_enabled_methods()}} |
| + |
| +{% endif %} |
| +{% endblock %} |
| +{##############################################################################} |
| {% block to_active_dom_object %}{% endblock %} |
| {% block to_event_target %}{% endblock %} |
| {% block get_shadow_object_template %}{% endblock %} |
| @@ -406,5 +472,6 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio |
| {{attribute_setter_implemented_in_private_script(attribute)}} |
| {% endif %} |
| {% endfor %} |
| +{% block partial_interface %}{% endblock %} |
| } // namespace blink |
| {% endfilter %} |