blob: 9d03759b1d364c5cc33b2bfdfa0df1f05a038156 [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"
32#include "bindings/v8/V8CustomElementLifecycleCallbacks.h"
33
34#include "V8Element.h"
Ben Murdoch02772c62013-07-26 10:21:05 +010035#include "bindings/v8/CustomElementBinding.h"
Ben Murdoche69819b2013-07-17 14:56:49 +010036#include "bindings/v8/DOMDataStore.h"
37#include "bindings/v8/ScriptController.h"
38#include "bindings/v8/V8Binding.h"
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000039#include "bindings/v8/V8HiddenValue.h"
Ben Murdoch02772c62013-07-26 10:21:05 +010040#include "bindings/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)09380292014-02-21 12:17:33 +000053PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ExecutionContext* executionContext, 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)1e202182013-10-18 15:46:42 +010055 v8::Isolate* isolate = toIsolate(executionContext);
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)09380292014-02-21 12:17:33 +000066 return adoptRef(new V8CustomElementLifecycleCallbacks(executionContext, 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)09380292014-02-21 12:17:33 +000092V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ExecutionContext* executionContext, 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)
93 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
94 , ContextLifecycleObserver(executionContext)
95 , m_isolate(toIsolate(executionContext))
Torne (Richard Coles)f79f16f2013-10-31 11:16:44 +000096 , m_owner(0)
Torne (Richard Coles)09380292014-02-21 12:17:33 +000097 , m_world(DOMWrapperWorld::current(m_isolate))
98 , m_prototype(m_isolate, prototype)
99 , m_created(m_isolate, created)
100 , m_attached(m_isolate, attached)
101 , m_detached(m_isolate, detached)
102 , m_attributeChanged(m_isolate, attributeChanged)
Ben Murdoche69819b2013-07-17 14:56:49 +0100103{
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000104 m_prototype.setWeak(&m_prototype, weakCallback<v8::Object>);
Ben Murdoche69819b2013-07-17 14:56:49 +0100105
106#define MAKE_WEAK(Var, _) \
107 if (!m_##Var.isEmpty()) \
Torne (Richard Coles)a854de02013-12-18 16:25:25 +0000108 m_##Var.setWeak(&m_##Var, weakCallback<v8::Function>);
Ben Murdoche69819b2013-07-17 14:56:49 +0100109
110 CALLBACK_LIST(MAKE_WEAK)
111#undef MAKE_WEAK
112}
113
Ben Murdoch02772c62013-07-26 10:21:05 +0100114V8PerContextData* V8CustomElementLifecycleCallbacks::creationContextData()
115{
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100116 if (!executionContext())
Ben Murdoch02772c62013-07-26 10:21:05 +0100117 return 0;
118
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100119 v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
Ben Murdoch02772c62013-07-26 10:21:05 +0100120 if (context.IsEmpty())
121 return 0;
122
123 return V8PerContextData::from(context);
124}
125
126V8CustomElementLifecycleCallbacks::~V8CustomElementLifecycleCallbacks()
127{
128 if (!m_owner)
129 return;
130
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000131 v8::HandleScope handleScope(m_isolate);
Ben Murdoch02772c62013-07-26 10:21:05 +0100132 if (V8PerContextData* perContextData = creationContextData())
133 perContextData->clearCustomElementBinding(m_owner);
134}
135
136bool V8CustomElementLifecycleCallbacks::setBinding(CustomElementDefinition* owner, PassOwnPtr<CustomElementBinding> binding)
137{
138 ASSERT(!m_owner);
139
140 V8PerContextData* perContextData = creationContextData();
141 if (!perContextData)
142 return false;
143
144 m_owner = owner;
145
146 // Bindings retrieve the prototype when needed from per-context data.
147 perContextData->addCustomElementBinding(owner, binding);
148
149 return true;
150}
151
Ben Murdoche69819b2013-07-17 14:56:49 +0100152void V8CustomElementLifecycleCallbacks::created(Element* element)
153{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000154 // FIXME: callbacks while paused should be queued up for execution to
155 // continue then be delivered in order rather than delivered immediately.
156 // Bug 329665 tracks similar behavior for other synchronous events.
157 if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
Ben Murdoche69819b2013-07-17 14:56:49 +0100158 return;
159
Ben Murdoch7757ec22013-07-23 11:17:36 +0100160 element->setCustomElementState(Element::Upgraded);
Ben Murdoche69819b2013-07-17 14:56:49 +0100161
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000162 v8::HandleScope handleScope(m_isolate);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100163 v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
Ben Murdoche69819b2013-07-17 14:56:49 +0100164 if (context.IsEmpty())
165 return;
166
167 v8::Context::Scope scope(context);
Ben Murdoche69819b2013-07-17 14:56:49 +0100168
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000169 v8::Handle<v8::Object> receiver = DOMDataStore::current(m_isolate).get<V8Element>(element, m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100170 if (!receiver.IsEmpty()) {
171 // Swizzle the prototype of the existing wrapper. We don't need to
172 // worry about non-existent wrappers; they will get the right
173 // prototype when wrapped.
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000174 v8::Handle<v8::Object> prototype = m_prototype.newLocal(m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100175 if (prototype.IsEmpty())
176 return;
177 receiver->SetPrototype(prototype);
178 }
179
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000180 v8::Handle<v8::Function> callback = m_created.newLocal(m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100181 if (callback.IsEmpty())
182 return;
183
184 if (receiver.IsEmpty())
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000185 receiver = toV8(element, context->Global(), m_isolate).As<v8::Object>();
Ben Murdoche69819b2013-07-17 14:56:49 +0100186
187 ASSERT(!receiver.IsEmpty());
188
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000189 InspectorInstrumentation::willExecuteCustomElementCallback(element);
190
Ben Murdoche69819b2013-07-17 14:56:49 +0100191 v8::TryCatch exceptionCatcher;
192 exceptionCatcher.SetVerbose(true);
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000193 ScriptController::callFunction(executionContext(), callback, receiver, 0, 0, m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100194}
195
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000196void V8CustomElementLifecycleCallbacks::attached(Element* element)
Ben Murdoche69819b2013-07-17 14:56:49 +0100197{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000198 call(m_attached, element);
Ben Murdoche69819b2013-07-17 14:56:49 +0100199}
200
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000201void V8CustomElementLifecycleCallbacks::detached(Element* element)
Ben Murdoche69819b2013-07-17 14:56:49 +0100202{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000203 call(m_detached, element);
Ben Murdoche69819b2013-07-17 14:56:49 +0100204}
205
206void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
207{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000208 // FIXME: callbacks while paused should be queued up for execution to
209 // continue then be delivered in order rather than delivered immediately.
210 // Bug 329665 tracks similar behavior for other synchronous events.
211 if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
Ben Murdoche69819b2013-07-17 14:56:49 +0100212 return;
213
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000214 v8::HandleScope handleScope(m_isolate);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100215 v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
Ben Murdoche69819b2013-07-17 14:56:49 +0100216 if (context.IsEmpty())
217 return;
218
219 v8::Context::Scope scope(context);
Ben Murdoche69819b2013-07-17 14:56:49 +0100220
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000221 v8::Handle<v8::Object> receiver = toV8(element, context->Global(), m_isolate).As<v8::Object>();
Ben Murdoche69819b2013-07-17 14:56:49 +0100222 ASSERT(!receiver.IsEmpty());
223
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000224 v8::Handle<v8::Function> callback = m_attributeChanged.newLocal(m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100225 if (callback.IsEmpty())
226 return;
227
228 v8::Handle<v8::Value> argv[] = {
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000229 v8String(m_isolate, name),
230 oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null(m_isolate)) : v8::Handle<v8::Value>(v8String(m_isolate, oldValue)),
231 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null(m_isolate)) : v8::Handle<v8::Value>(v8String(m_isolate, newValue))
Ben Murdoche69819b2013-07-17 14:56:49 +0100232 };
233
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000234 InspectorInstrumentation::willExecuteCustomElementCallback(element);
235
Ben Murdoche69819b2013-07-17 14:56:49 +0100236 v8::TryCatch exceptionCatcher;
237 exceptionCatcher.SetVerbose(true);
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000238 ScriptController::callFunction(executionContext(), callback, receiver, WTF_ARRAY_LENGTH(argv), argv, m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100239}
240
241void V8CustomElementLifecycleCallbacks::call(const ScopedPersistent<v8::Function>& weakCallback, Element* element)
242{
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000243 // FIXME: callbacks while paused should be queued up for execution to
244 // continue then be delivered in order rather than delivered immediately.
245 // Bug 329665 tracks similar behavior for other synchronous events.
246 if (!executionContext() || executionContext()->activeDOMObjectsAreStopped())
Ben Murdoche69819b2013-07-17 14:56:49 +0100247 return;
248
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000249 v8::HandleScope handleScope(m_isolate);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100250 v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
Ben Murdoche69819b2013-07-17 14:56:49 +0100251 if (context.IsEmpty())
252 return;
253
254 v8::Context::Scope scope(context);
Ben Murdoche69819b2013-07-17 14:56:49 +0100255
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000256 v8::Handle<v8::Function> callback = weakCallback.newLocal(m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100257 if (callback.IsEmpty())
258 return;
259
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000260 v8::Handle<v8::Object> receiver = toV8(element, context->Global(), m_isolate).As<v8::Object>();
Ben Murdoche69819b2013-07-17 14:56:49 +0100261 ASSERT(!receiver.IsEmpty());
262
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000263 InspectorInstrumentation::willExecuteCustomElementCallback(element);
264
Ben Murdoche69819b2013-07-17 14:56:49 +0100265 v8::TryCatch exceptionCatcher;
266 exceptionCatcher.SetVerbose(true);
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000267 ScriptController::callFunction(executionContext(), callback, receiver, 0, 0, m_isolate);
Ben Murdoche69819b2013-07-17 14:56:49 +0100268}
269
270} // namespace WebCore