- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / inspector / PageDebuggerAgent.cpp
1 /*
2  * Copyright (C) 2011 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/PageDebuggerAgent.h"
33
34 #include "bindings/v8/DOMWrapperWorld.h"
35 #include "bindings/v8/PageScriptDebugServer.h"
36 #include "bindings/v8/ScriptController.h"
37 #include "bindings/v8/ScriptSourceCode.h"
38 #include "core/inspector/InspectorOverlay.h"
39 #include "core/inspector/InspectorPageAgent.h"
40 #include "core/inspector/InstrumentingAgents.h"
41 #include "core/loader/DocumentLoader.h"
42 #include "core/frame/Frame.h"
43 #include "core/page/Page.h"
44 #include "core/page/PageConsole.h"
45
46 namespace WebCore {
47
48 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
49 {
50     return adoptPtr(new PageDebuggerAgent(instrumentingAgents, inspectorState, pageScriptDebugServer, pageAgent, injectedScriptManager, overlay));
51 }
52
53 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
54     : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager)
55     , m_pageScriptDebugServer(pageScriptDebugServer)
56     , m_pageAgent(pageAgent)
57     , m_overlay(overlay)
58 {
59     m_overlay->overlayHost()->setListener(this);
60 }
61
62 PageDebuggerAgent::~PageDebuggerAgent()
63 {
64 }
65
66 void PageDebuggerAgent::enable()
67 {
68     InspectorDebuggerAgent::enable();
69     m_instrumentingAgents->setPageDebuggerAgent(this);
70 }
71
72 void PageDebuggerAgent::disable()
73 {
74     InspectorDebuggerAgent::disable();
75     m_instrumentingAgents->setPageDebuggerAgent(0);
76 }
77
78 void PageDebuggerAgent::startListeningScriptDebugServer()
79 {
80     scriptDebugServer().addListener(this, m_pageAgent->page());
81 }
82
83 void PageDebuggerAgent::stopListeningScriptDebugServer()
84 {
85     scriptDebugServer().removeListener(this, m_pageAgent->page());
86 }
87
88 PageScriptDebugServer& PageDebuggerAgent::scriptDebugServer()
89 {
90     return *m_pageScriptDebugServer;
91 }
92
93 void PageDebuggerAgent::muteConsole()
94 {
95     PageConsole::mute();
96 }
97
98 void PageDebuggerAgent::unmuteConsole()
99 {
100     PageConsole::unmute();
101 }
102
103 void PageDebuggerAgent::overlayResumed()
104 {
105     ErrorString error;
106     resume(&error);
107 }
108
109 void PageDebuggerAgent::overlaySteppedOver()
110 {
111     ErrorString error;
112     stepOver(&error, 0);
113 }
114
115 InjectedScript PageDebuggerAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId)
116 {
117     if (!executionContextId) {
118         ScriptState* scriptState = mainWorldScriptState(m_pageAgent->mainFrame());
119         return injectedScriptManager()->injectedScriptFor(scriptState);
120     }
121     InjectedScript injectedScript = injectedScriptManager()->injectedScriptForId(*executionContextId);
122     if (injectedScript.hasNoValue())
123         *errorString = "Execution context with given id not found.";
124     return injectedScript;
125 }
126
127 void PageDebuggerAgent::setOverlayMessage(ErrorString*, const String* message)
128 {
129     m_overlay->setPausedInDebuggerMessage(message);
130 }
131
132 void PageDebuggerAgent::didClearWindowObjectInWorld(Frame* frame, DOMWrapperWorld* world)
133 {
134     if (world != mainThreadNormalWorld() || frame != m_pageAgent->mainFrame())
135         return;
136
137     reset();
138
139     scriptDebugServer().setPreprocessorSource(String());
140     ASSERT(m_pageAgent);
141     if (!m_pageAgent->scriptPreprocessorSource().isEmpty())
142         scriptDebugServer().setPreprocessorSource(m_pageAgent->scriptPreprocessorSource());
143 }
144
145 String PageDebuggerAgent::preprocessEventListener(Frame* frame, const String& source, const String& url, const String& functionName)
146 {
147     ASSERT(frame);
148     ASSERT(m_pageScriptDebugServer);
149     return m_pageScriptDebugServer->preprocessEventListener(frame, source, url, functionName);
150 }
151
152 PassOwnPtr<ScriptSourceCode> PageDebuggerAgent::preprocess(Frame* frame, const ScriptSourceCode& sourceCode)
153 {
154     ASSERT(m_pageScriptDebugServer);
155     ASSERT(frame);
156     return m_pageScriptDebugServer->preprocess(frame, sourceCode);
157 }
158
159 void PageDebuggerAgent::didCommitLoad(Frame* frame, DocumentLoader* loader)
160 {
161     Frame* mainFrame = frame->page()->mainFrame();
162     if (loader->frame() == mainFrame)
163         pageDidCommitLoad();
164 }
165
166 } // namespace WebCore
167