Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / inspector / JavaScriptCallFrame.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 "core/inspector/JavaScriptCallFrame.h"
33
34 #include "bindings/v8/ScriptValue.h"
35 #include "bindings/v8/V8Binding.h"
36
37 namespace WebCore {
38
39 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
40     : m_isolate(v8::Isolate::GetCurrent())
41     , m_debuggerContext(m_isolate, debuggerContext)
42     , m_callFrame(m_isolate, callFrame)
43 {
44     ScriptWrappable::init(this);
45 }
46
47 JavaScriptCallFrame::~JavaScriptCallFrame()
48 {
49 }
50
51 JavaScriptCallFrame* JavaScriptCallFrame::caller()
52 {
53     if (!m_caller) {
54         v8::HandleScope handleScope(m_isolate);
55         v8::Handle<v8::Context> debuggerContext = m_debuggerContext.newLocal(m_isolate);
56         v8::Context::Scope contextScope(debuggerContext);
57         v8::Handle<v8::Value> callerFrame = m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "caller"));
58         if (!callerFrame->IsObject())
59             return 0;
60         m_caller = JavaScriptCallFrame::create(debuggerContext, v8::Handle<v8::Object>::Cast(callerFrame));
61     }
62     return m_caller.get();
63 }
64
65 int JavaScriptCallFrame::callV8FunctionReturnInt(const char* name) const
66 {
67     v8::HandleScope handleScope(m_isolate);
68     v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
69     v8::Handle<v8::Function> func = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, name)));
70     v8::Handle<v8::Value> result = func->Call(callFrame, 0, 0);
71     if (result->IsInt32())
72         return result->Int32Value();
73     return 0;
74 }
75
76 String JavaScriptCallFrame::callV8FunctionReturnString(const char* name) const
77 {
78     v8::HandleScope handleScope(m_isolate);
79     v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
80     v8::Handle<v8::Function> func = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, name)));
81     v8::Handle<v8::Value> result = func->Call(callFrame, 0, 0);
82     return toCoreStringWithUndefinedOrNullCheck(result);
83 }
84
85 int JavaScriptCallFrame::sourceID() const
86 {
87     return callV8FunctionReturnInt("sourceID");
88 }
89
90 int JavaScriptCallFrame::line() const
91 {
92     return callV8FunctionReturnInt("line");
93 }
94
95 int JavaScriptCallFrame::column() const
96 {
97     return callV8FunctionReturnInt("column");
98 }
99
100 String JavaScriptCallFrame::functionName() const
101 {
102     return callV8FunctionReturnString("functionName");
103 }
104
105 v8::Handle<v8::Value> JavaScriptCallFrame::scopeChain() const
106 {
107     v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
108     v8::Handle<v8::Function> func = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "scopeChain")));
109     v8::Handle<v8::Array> scopeChain = v8::Handle<v8::Array>::Cast(func->Call(callFrame, 0, 0));
110     v8::Handle<v8::Array> result = v8::Array::New(m_isolate, scopeChain->Length());
111     for (uint32_t i = 0; i < scopeChain->Length(); i++)
112         result->Set(i, scopeChain->Get(i));
113     return result;
114 }
115
116 int JavaScriptCallFrame::scopeType(int scopeIndex) const
117 {
118     v8::Handle<v8::Array> scopeType = v8::Handle<v8::Array>::Cast(m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "scopeType")));
119     return scopeType->Get(scopeIndex)->Int32Value();
120 }
121
122 v8::Handle<v8::Value> JavaScriptCallFrame::thisObject() const
123 {
124     return m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "thisObject"));
125 }
126
127 String JavaScriptCallFrame::stepInPositions() const
128 {
129     return callV8FunctionReturnString("stepInPositions");
130 }
131
132 bool JavaScriptCallFrame::isAtReturn() const
133 {
134     v8::HandleScope handleScope(m_isolate);
135     v8::Context::Scope contextScope(m_debuggerContext.newLocal(m_isolate));
136     v8::Handle<v8::Value> result = m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "isAtReturn"));
137     if (result->IsBoolean())
138         return result->BooleanValue();
139     return false;
140 }
141
142 v8::Handle<v8::Value> JavaScriptCallFrame::returnValue() const
143 {
144     return m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "returnValue"));
145 }
146
147 v8::Handle<v8::Value> JavaScriptCallFrame::evaluate(const String& expression)
148 {
149     v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
150     v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "evaluate")));
151     v8::Handle<v8::Value> argv[] = { v8String(m_debuggerContext.newLocal(m_isolate)->GetIsolate(), expression) };
152     return evalFunction->Call(callFrame, WTF_ARRAY_LENGTH(argv), argv);
153 }
154
155 v8::Handle<v8::Value> JavaScriptCallFrame::restart()
156 {
157     v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
158     v8::Handle<v8::Function> restartFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "restart")));
159     v8::Debug::SetLiveEditEnabled(m_isolate, true);
160     v8::Handle<v8::Value> result = restartFunction->Call(callFrame, 0, 0);
161     v8::Debug::SetLiveEditEnabled(m_isolate, false);
162     return result;
163 }
164
165 v8::Handle<v8::Object> JavaScriptCallFrame::innerCallFrame()
166 {
167     return m_callFrame.newLocal(m_isolate);
168 }
169
170 ScriptValue JavaScriptCallFrame::setVariableValue(int scopeNumber, const String& variableName, const ScriptValue& newValue)
171 {
172     v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate);
173     v8::Handle<v8::Function> setVariableValueFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "setVariableValue")));
174     v8::Handle<v8::Value> argv[] = {
175         v8::Handle<v8::Value>(v8::Integer::New(m_isolate, scopeNumber)),
176         v8String(m_isolate, variableName),
177         newValue.v8Value()
178     };
179     return ScriptValue(setVariableValueFunction->Call(callFrame, WTF_ARRAY_LENGTH(argv), argv), m_isolate);
180 }
181
182 } // namespace WebCore