Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / v8 / V8AbstractEventListener.cpp
1 /*
2  * Copyright (C) 2006, 2007, 2008, 2009 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/V8AbstractEventListener.h"
33
34 #include "V8Event.h"
35 #include "V8EventTarget.h"
36 #include "bindings/v8/V8Binding.h"
37 #include "bindings/v8/V8EventListenerList.h"
38 #include "bindings/v8/V8HiddenValue.h"
39 #include "core/events/BeforeUnloadEvent.h"
40 #include "core/events/Event.h"
41 #include "core/inspector/InspectorCounters.h"
42 #include "core/workers/WorkerGlobalScope.h"
43
44 namespace WebCore {
45
46 V8AbstractEventListener::V8AbstractEventListener(bool isAttribute, DOMWrapperWorld& world, v8::Isolate* isolate)
47     : EventListener(JSEventListenerType)
48     , m_isAttribute(isAttribute)
49     , m_world(world)
50     , m_isolate(isolate)
51 {
52     if (isMainThread())
53         InspectorCounters::incrementCounter(InspectorCounters::JSEventListenerCounter);
54 }
55
56 V8AbstractEventListener::~V8AbstractEventListener()
57 {
58     if (!m_listener.isEmpty()) {
59         v8::HandleScope scope(m_isolate);
60         V8EventListenerList::clearWrapper(m_listener.newLocal(m_isolate), m_isAttribute, m_isolate);
61     }
62     if (isMainThread())
63         InspectorCounters::decrementCounter(InspectorCounters::JSEventListenerCounter);
64 }
65
66 void V8AbstractEventListener::handleEvent(ExecutionContext* context, Event* event)
67 {
68     // Don't reenter V8 if execution was terminated in this instance of V8.
69     if (context->isJSExecutionForbidden())
70         return;
71
72     ASSERT(event);
73
74     // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
75     // See issue 889829.
76     RefPtr<V8AbstractEventListener> protect(this);
77
78     v8::HandleScope handleScope(m_isolate);
79
80     v8::Local<v8::Context> v8Context = toV8Context(context, world());
81     if (v8Context.IsEmpty())
82         return;
83
84     // Enter the V8 context in which to perform the event handling.
85     v8::Context::Scope scope(v8Context);
86
87     // Get the V8 wrapper for the event object.
88     v8::Isolate* isolate = v8Context->GetIsolate();
89     v8::Handle<v8::Value> jsEvent = toV8(event, v8::Handle<v8::Object>(), isolate);
90     if (jsEvent.IsEmpty())
91         return;
92     invokeEventHandler(context, event, v8::Local<v8::Value>::New(isolate, jsEvent));
93 }
94
95 void V8AbstractEventListener::setListenerObject(v8::Handle<v8::Object> listener)
96 {
97     m_listener.set(m_isolate, listener);
98     m_listener.setWeak(this, &setWeakCallback);
99 }
100
101 void V8AbstractEventListener::invokeEventHandler(ExecutionContext* context, Event* event, v8::Local<v8::Value> jsEvent)
102 {
103     // If jsEvent is empty, attempt to set it as a hidden value would crash v8.
104     if (jsEvent.IsEmpty())
105         return;
106
107     v8::Local<v8::Context> v8Context = toV8Context(context, world());
108     if (v8Context.IsEmpty())
109         return;
110     v8::Isolate* isolate = v8Context->GetIsolate();
111
112     v8::Local<v8::Value> returnValue;
113     {
114         // Catch exceptions thrown in the event handler so they do not propagate to javascript code that caused the event to fire.
115         v8::TryCatch tryCatch;
116         tryCatch.SetVerbose(true);
117
118         // Save the old 'event' property so we can restore it later.
119         v8::Local<v8::Value> savedEvent = V8HiddenValue::getHiddenValue(v8Context->GetIsolate(), v8Context->Global(), V8HiddenValue::event(isolate));
120         tryCatch.Reset();
121
122         // Make the event available in the global object, so DOMWindow can expose it.
123         V8HiddenValue::setHiddenValue(v8Context->GetIsolate(), v8Context->Global(), V8HiddenValue::event(isolate), jsEvent);
124         tryCatch.Reset();
125
126         returnValue = callListenerFunction(context, jsEvent, event);
127         if (tryCatch.HasCaught())
128             event->target()->uncaughtExceptionInEventHandler();
129
130         if (!tryCatch.CanContinue()) { // Result of TerminateExecution().
131             if (context->isWorkerGlobalScope())
132                 toWorkerGlobalScope(context)->script()->forbidExecution();
133             return;
134         }
135         tryCatch.Reset();
136
137         // Restore the old event. This must be done for all exit paths through this method.
138         if (savedEvent.IsEmpty())
139             V8HiddenValue::setHiddenValue(v8Context->GetIsolate(), v8Context->Global(), V8HiddenValue::event(isolate), v8::Undefined(v8Context->GetIsolate()));
140         else
141             V8HiddenValue::setHiddenValue(v8Context->GetIsolate(), v8Context->Global(), V8HiddenValue::event(isolate), savedEvent);
142         tryCatch.Reset();
143     }
144
145     if (returnValue.IsEmpty())
146         return;
147
148     if (m_isAttribute && !returnValue->IsNull() && !returnValue->IsUndefined() && event->isBeforeUnloadEvent()) {
149         TOSTRING_VOID(V8StringResource<>, stringReturnValue, returnValue);
150         toBeforeUnloadEvent(event)->setReturnValue(stringReturnValue);
151     }
152
153     if (m_isAttribute && shouldPreventDefault(returnValue))
154         event->preventDefault();
155 }
156
157 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue)
158 {
159     // Prevent default action if the return value is false in accord with the spec
160     // http://www.w3.org/TR/html5/webappapis.html#event-handler-attributes
161     return returnValue->IsBoolean() && !returnValue->BooleanValue();
162 }
163
164 v8::Local<v8::Object> V8AbstractEventListener::getReceiverObject(ExecutionContext* context, Event* event)
165 {
166     v8::Isolate* isolate = toV8Context(context, world())->GetIsolate();
167     v8::Local<v8::Object> listener = m_listener.newLocal(isolate);
168     if (!m_listener.isEmpty() && !listener->IsFunction())
169         return listener;
170
171     EventTarget* target = event->currentTarget();
172     v8::Handle<v8::Value> value = toV8(target, v8::Handle<v8::Object>(), isolate);
173     if (value.IsEmpty())
174         return v8::Local<v8::Object>();
175     return v8::Local<v8::Object>::New(isolate, v8::Handle<v8::Object>::Cast(value));
176 }
177
178 bool V8AbstractEventListener::belongsToTheCurrentWorld() const
179 {
180     return m_isolate->InContext() && m_world == &DOMWrapperWorld::current(m_isolate);
181 }
182
183 void V8AbstractEventListener::setWeakCallback(const v8::WeakCallbackData<v8::Object, V8AbstractEventListener> &data)
184 {
185     data.GetParameter()->m_listener.clear();
186 }
187
188 } // namespace WebCore