blob: 4ae325778c850038519b10a6231fe9b09d38ed15 [file] [log] [blame]
Ben Murdoche69819b2013-07-17 14:56:49 +01001/*
2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include "config.h"
Ben Murdoch197021e2014-07-20 18:26:29 -070032#include "bindings/core/v8/V8CustomElementLifecycleCallbacks.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010033
Ben Murdoch197021e2014-07-20 18:26:29 -070034#include "bindings/core/v8/CustomElementBinding.h"
35#include "bindings/core/v8/DOMDataStore.h"
36#include "bindings/core/v8/ScriptController.h"
37#include "bindings/core/v8/V8Binding.h"
Torne (Richard Coles)f6b7aed2014-06-09 12:01:17 +010038#include "bindings/core/v8/V8Element.h"
Ben Murdoch197021e2014-07-20 18:26:29 -070039#include "bindings/core/v8/V8HiddenValue.h"
40#include "bindings/core/v8/V8PerContextData.h"
Torne (Richard Coles)1e202182013-10-18 15:46:42 +010041#include "core/dom/ExecutionContext.h"
Torne (Richard Coles)09380292014-02-21 12:17:33 +000042#include "core/inspector/InspectorInstrumentation.h"
Ben Murdoch02772c62013-07-26 10:21:05 +010043#include "wtf/PassOwnPtr.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010044
45namespace WebCore {
46
47#define CALLBACK_LIST(V) \
48 V(created, Created) \
Torne (Richard Coles)09380292014-02-21 12:17:33 +000049 V(attached, Attached) \
50 V(detached, Detached) \
Ben Murdoche69819b2013-07-17 14:56:49 +010051 V(attributeChanged, AttributeChanged)
52
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +010053PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
Ben Murdoche69819b2013-07-17 14:56:49 +010054{
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +010055 v8::Isolate* isolate = scriptState->isolate();
Ben Murdoche69819b2013-07-17 14:56:49 +010056 // A given object can only be used as a Custom Element prototype
57 // once; see customElementIsInterfacePrototypeObject
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000058#define SET_HIDDEN_VALUE(Value, Name) \
59 ASSERT(V8HiddenValue::getHiddenValue(isolate, prototype, V8HiddenValue::customElement##Name(isolate)).IsEmpty()); \
Ben Murdoche69819b2013-07-17 14:56:49 +010060 if (!Value.IsEmpty()) \
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000061 V8HiddenValue::setHiddenValue(isolate, prototype, V8HiddenValue::customElement##Name(isolate), Value);
Ben Murdoche69819b2013-07-17 14:56:49 +010062
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000063 CALLBACK_LIST(SET_HIDDEN_VALUE)
64#undef SET_HIDDEN_VALUE
Ben Murdoche69819b2013-07-17 14:56:49 +010065
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +010066 return adoptRef(new V8CustomElementLifecycleCallbacks(scriptState, prototype, created, attached, detached, attributeChanged));
Ben Murdoche69819b2013-07-17 14:56:49 +010067}
68
Torne (Richard Coles)09380292014-02-21 12:17:33 +000069static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
Ben Murdoche69819b2013-07-17 14:56:49 +010070{
71 // V8 Custom Elements always run created to swizzle prototypes.
72 int flags = CustomElementLifecycleCallbacks::Created;
73
Torne (Richard Coles)09380292014-02-21 12:17:33 +000074 if (!attached.IsEmpty())
75 flags |= CustomElementLifecycleCallbacks::Attached;
Ben Murdoche69819b2013-07-17 14:56:49 +010076
Torne (Richard Coles)09380292014-02-21 12:17:33 +000077 if (!detached.IsEmpty())
78 flags |= CustomElementLifecycleCallbacks::Detached;
Ben Murdoche69819b2013-07-17 14:56:49 +010079
80 if (!attributeChanged.IsEmpty())
81 flags |= CustomElementLifecycleCallbacks::AttributeChanged;
82
83 return CustomElementLifecycleCallbacks::CallbackType(flags);
84}
85
86template <typename T>
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000087static void weakCallback(const v8::WeakCallbackData<T, ScopedPersistent<T> >& data)
Ben Murdoche69819b2013-07-17 14:56:49 +010088{
Torne (Richard Coles)a854de02013-12-18 16:25:25 +000089 data.GetParameter()->clear();
Ben Murdoche69819b2013-07-17 14:56:49 +010090}
91
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +010092V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
Torne (Richard Coles)09380292014-02-21 12:17:33 +000093 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +010094 , ContextLifecycleObserver(scriptState->executionContext())
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000095 , m_owner(0)
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +010096 , m_scriptState(scriptState)
97 , m_prototype(scriptState->isolate(), prototype)
98 , m_created(scriptState->isolate(), created)
99 , m_attached(scriptState->isolate(), attached)
100 , m_detached(scriptState->isolate(), detached)
101 , m_attributeChanged(scriptState->isolate(), attributeChanged)
Ben Murdoche69819b2013-07-17 14:56:49 +0100102{
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000103 m_prototype.setWeak(&m_prototype, weakCallback<v8::Object>);
Ben Murdoche69819b2013-07-17 14:56:49 +0100104
105#define MAKE_WEAK(Var, _) \
106 if (!m_##Var.isEmpty()) \
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000107 m_##Var.setWeak(&m_##Var, weakCallback<v8::Function>);
Ben Murdoche69819b2013-07-17 14:56:49 +0100108
109 CALLBACK_LIST(MAKE_WEAK)
110#undef MAKE_WEAK
111}
112
Ben Murdoch02772c62013-07-26 10:21:05 +0100113V8PerContextData* V8CustomElementLifecycleCallbacks::creationContextData()
114{
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100115 if (!executionContext())
Ben Murdoch02772c62013-07-26 10:21:05 +0100116 return 0;
117
Ben Murdochaafa69c2014-04-03 12:30:15 +0100118 v8::Handle<v8::Context> context = m_scriptState->context();
Ben Murdoch02772c62013-07-26 10:21:05 +0100119 if (context.IsEmpty())
120 return 0;
121
122 return V8PerContextData::from(context);
123}
124
125V8CustomElementLifecycleCallbacks::~V8CustomElementLifecycleCallbacks()
126{
127 if (!m_owner)
128 return;
129
Ben Murdochaafa69c2014-04-03 12:30:15 +0100130 v8::HandleScope handleScope(m_scriptState->isolate());
Ben Murdoch02772c62013-07-26 10:21:05 +0100131 if (V8PerContextData* perContextData = creationContextData())
132 perContextData->clearCustomElementBinding(m_owner);
133}
134
135bool V8CustomElementLifecycleCallbacks::setBinding(CustomElementDefinition* owner, PassOwnPtr<CustomElementBinding> binding)
136{
137 ASSERT(!m_owner);
138
139 V8PerContextData* perContextData = creationContextData();
140 if (!perContextData)
141 return false;
142
143 m_owner = owner;
144
145 // Bindings retrieve the prototype when needed from per-context data.
146 perContextData->addCustomElementBinding(owner, binding);
147
148 return true;
149}
150
Ben Murdoche69819b2013-07-17 14:56:49 +0100151void V8CustomElementLifecycleCallbacks::created(Element* element)
152{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000153 // FIXME: callbacks while paused should be queued up for execution to
154 // continue then be delivered in order rather than delivered immediately.
155 // Bug 329665 tracks similar behavior for other synchronous events.
156 if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
Ben Murdoche69819b2013-07-17 14:56:49 +0100157 return;
158
Ben Murdoch7757ec22013-07-23 11:17:36 +0100159 element->setCustomElementState(Element::Upgraded);
Ben Murdoche69819b2013-07-17 14:56:49 +0100160
Ben Murdocha9984bf2014-04-10 11:22:39 +0100161 if (m_scriptState->contextIsEmpty())
Ben Murdoche69819b2013-07-17 14:56:49 +0100162 return;
Bo Liuf91f5fa2014-05-01 10:37:55 -0700163 ScriptState::Scope scope(m_scriptState.get());
Ben Murdocha9984bf2014-04-10 11:22:39 +0100164 v8::Isolate* isolate = m_scriptState->isolate();
165 v8::Handle<v8::Context> context = m_scriptState->context();
Torne (Richard Coles)d6cdb822014-06-03 10:59:05 +0100166 v8::Handle<v8::Object> receiver = m_scriptState->world().domDataStore().get<V8Element>(element, isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100167 if (!receiver.IsEmpty()) {
168 // Swizzle the prototype of the existing wrapper. We don't need to
169 // worry about non-existent wrappers; they will get the right
170 // prototype when wrapped.
Ben Murdochaafa69c2014-04-03 12:30:15 +0100171 v8::Handle<v8::Object> prototype = m_prototype.newLocal(isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100172 if (prototype.IsEmpty())
173 return;
174 receiver->SetPrototype(prototype);
175 }
176
Ben Murdochaafa69c2014-04-03 12:30:15 +0100177 v8::Handle<v8::Function> callback = m_created.newLocal(isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100178 if (callback.IsEmpty())
179 return;
180
181 if (receiver.IsEmpty())
Ben Murdochaafa69c2014-04-03 12:30:15 +0100182 receiver = toV8(element, context->Global(), isolate).As<v8::Object>();
Ben Murdoche69819b2013-07-17 14:56:49 +0100183
184 ASSERT(!receiver.IsEmpty());
185
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000186 InspectorInstrumentation::willExecuteCustomElementCallback(element);
187
Ben Murdoche69819b2013-07-17 14:56:49 +0100188 v8::TryCatch exceptionCatcher;
189 exceptionCatcher.SetVerbose(true);
Ben Murdochaafa69c2014-04-03 12:30:15 +0100190 ScriptController::callFunction(executionContext(), callback, receiver, 0, 0, isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100191}
192
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000193void V8CustomElementLifecycleCallbacks::attached(Element* element)
Ben Murdoche69819b2013-07-17 14:56:49 +0100194{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000195 call(m_attached, element);
Ben Murdoche69819b2013-07-17 14:56:49 +0100196}
197
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000198void V8CustomElementLifecycleCallbacks::detached(Element* element)
Ben Murdoche69819b2013-07-17 14:56:49 +0100199{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000200 call(m_detached, element);
Ben Murdoche69819b2013-07-17 14:56:49 +0100201}
202
203void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
204{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000205 // FIXME: callbacks while paused should be queued up for execution to
206 // continue then be delivered in order rather than delivered immediately.
207 // Bug 329665 tracks similar behavior for other synchronous events.
208 if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
Ben Murdoche69819b2013-07-17 14:56:49 +0100209 return;
210
Ben Murdocha9984bf2014-04-10 11:22:39 +0100211 if (m_scriptState->contextIsEmpty())
Ben Murdoche69819b2013-07-17 14:56:49 +0100212 return;
Bo Liuf91f5fa2014-05-01 10:37:55 -0700213 ScriptState::Scope scope(m_scriptState.get());
Ben Murdocha9984bf2014-04-10 11:22:39 +0100214 v8::Isolate* isolate = m_scriptState->isolate();
215 v8::Handle<v8::Context> context = m_scriptState->context();
Ben Murdochaafa69c2014-04-03 12:30:15 +0100216 v8::Handle<v8::Object> receiver = toV8(element, context->Global(), isolate).As<v8::Object>();
Ben Murdoche69819b2013-07-17 14:56:49 +0100217 ASSERT(!receiver.IsEmpty());
218
Ben Murdochaafa69c2014-04-03 12:30:15 +0100219 v8::Handle<v8::Function> callback = m_attributeChanged.newLocal(isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100220 if (callback.IsEmpty())
221 return;
222
223 v8::Handle<v8::Value> argv[] = {
Ben Murdochaafa69c2014-04-03 12:30:15 +0100224 v8String(isolate, name),
225 oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, oldValue)),
226 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, newValue))
Ben Murdoche69819b2013-07-17 14:56:49 +0100227 };
228
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000229 InspectorInstrumentation::willExecuteCustomElementCallback(element);
230
Ben Murdoche69819b2013-07-17 14:56:49 +0100231 v8::TryCatch exceptionCatcher;
232 exceptionCatcher.SetVerbose(true);
Ben Murdochaafa69c2014-04-03 12:30:15 +0100233 ScriptController::callFunction(executionContext(), callback, receiver, WTF_ARRAY_LENGTH(argv), argv, isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100234}
235
236void V8CustomElementLifecycleCallbacks::call(const ScopedPersistent<v8::Function>& weakCallback, Element* element)
237{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000238 // FIXME: callbacks while paused should be queued up for execution to
239 // continue then be delivered in order rather than delivered immediately.
240 // Bug 329665 tracks similar behavior for other synchronous events.
241 if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
Ben Murdoche69819b2013-07-17 14:56:49 +0100242 return;
243
Ben Murdocha9984bf2014-04-10 11:22:39 +0100244 if (m_scriptState->contextIsEmpty())
Ben Murdoche69819b2013-07-17 14:56:49 +0100245 return;
Bo Liuf91f5fa2014-05-01 10:37:55 -0700246 ScriptState::Scope scope(m_scriptState.get());
Ben Murdocha9984bf2014-04-10 11:22:39 +0100247 v8::Isolate* isolate = m_scriptState->isolate();
248 v8::Handle<v8::Context> context = m_scriptState->context();
Ben Murdochaafa69c2014-04-03 12:30:15 +0100249 v8::Handle<v8::Function> callback = weakCallback.newLocal(isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100250 if (callback.IsEmpty())
251 return;
252
Ben Murdochaafa69c2014-04-03 12:30:15 +0100253 v8::Handle<v8::Object> receiver = toV8(element, context->Global(), isolate).As<v8::Object>();
Ben Murdoche69819b2013-07-17 14:56:49 +0100254 ASSERT(!receiver.IsEmpty());
255
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000256 InspectorInstrumentation::willExecuteCustomElementCallback(element);
257
Ben Murdoche69819b2013-07-17 14:56:49 +0100258 v8::TryCatch exceptionCatcher;
259 exceptionCatcher.SetVerbose(true);
Ben Murdochaafa69c2014-04-03 12:30:15 +0100260 ScriptController::callFunction(executionContext(), callback, receiver, 0, 0, isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100261}
262
263} // namespace WebCore