Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / bindings / v8 / V8ErrorHandler.cpp
1 /*
2  * Copyright (C) 2010 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/V8ErrorHandler.h"
33
34 #include "V8ErrorEvent.h"
35 #include "bindings/v8/ScriptController.h"
36 #include "bindings/v8/V8Binding.h"
37 #include "bindings/v8/V8ScriptRunner.h"
38 #include "core/dom/Document.h"
39 #include "core/dom/ExecutionContext.h"
40 #include "core/events/ErrorEvent.h"
41 #include "core/events/ThreadLocalEventNames.h"
42 #include "core/frame/Frame.h"
43
44 namespace WebCore {
45
46 V8ErrorHandler::V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, v8::Isolate* isolate)
47     : V8EventListener(listener, isInline, isolate)
48 {
49 }
50
51 v8::Local<v8::Value> V8ErrorHandler::callListenerFunction(ExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
52 {
53     if (!event->hasInterface(EventNames::ErrorEvent))
54         return V8EventListener::callListenerFunction(context, jsEvent, event);
55
56     ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event);
57
58     v8::Isolate* isolate = toV8Context(context, world())->GetIsolate();
59     if (errorEvent->world() && errorEvent->world() != world())
60         return v8::Null(isolate);
61
62     v8::Local<v8::Object> listener = getListenerObject(context);
63     v8::Local<v8::Value> returnValue;
64     if (!listener.IsEmpty() && listener->IsFunction()) {
65         v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
66         v8::Local<v8::Object> thisValue = isolate->GetCurrentContext()->Global();
67
68         v8::Local<v8::Value> error = getHiddenValue(isolate, jsEvent->ToObject(), "error");
69         if (error.IsEmpty())
70             error = v8::Null(isolate);
71
72         v8::Handle<v8::Value> parameters[5] = { v8String(isolate, errorEvent->message()), v8String(isolate, errorEvent->filename()), v8::Integer::New(isolate, errorEvent->lineno()), v8::Integer::New(isolate, errorEvent->colno()), error };
73         v8::TryCatch tryCatch;
74         tryCatch.SetVerbose(true);
75         if (worldType(isolate) == WorkerWorld)
76             returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate);
77         else
78             returnValue = ScriptController::callFunction(context, callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate);
79     }
80     return returnValue;
81 }
82
83 // static
84 void V8ErrorHandler::storeExceptionOnErrorEventWrapper(ErrorEvent* event, v8::Handle<v8::Value> data, v8::Isolate* isolate)
85 {
86     v8::Local<v8::Value> wrappedEvent = toV8(event, v8::Handle<v8::Object>(), isolate);
87     if (!wrappedEvent.IsEmpty()) {
88         ASSERT(wrappedEvent->IsObject());
89         setHiddenValue(isolate, v8::Local<v8::Object>::Cast(wrappedEvent), "error", data);
90     }
91 }
92
93 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue)
94 {
95     return returnValue->IsBoolean() && returnValue->BooleanValue();
96 }
97
98 } // namespace WebCore