1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include <string>
#include "Document.h"
#include "EventListener.h"
#include "InspectorController.h"
#include "Node.h"
#include "Page.h"
#include "PlatformString.h"
#include "ScriptValue.h"
#include <wtf/OwnPtr.h>
#undef LOG
#include "base/values.h"
#include "webkit/glue/devtools/debugger_agent_impl.h"
#include "webkit/glue/devtools/debugger_agent_manager.h"
#include "webkit/glue/devtools/dom_agent_impl.h"
#include "webkit/glue/devtools/net_agent_impl.h"
#include "webkit/glue/glue_util.h"
#include "webkit/glue/webdatasource.h"
#include "webkit/glue/webdevtoolsagent_delegate.h"
#include "webkit/glue/webdevtoolsagent_impl.h"
#include "webkit/glue/weburlrequest.h"
#include "webkit/glue/webview_impl.h"
using WebCore::Document;
using WebCore::InspectorController;
using WebCore::Node;
using WebCore::Page;
using WebCore::ScriptValue;
using WebCore::String;
WebDevToolsAgentImpl::WebDevToolsAgentImpl(
WebViewImpl* web_view_impl,
WebDevToolsAgentDelegate* delegate)
: delegate_(delegate),
web_view_impl_(web_view_impl),
document_(NULL),
attached_(false) {
debugger_agent_delegate_stub_.reset(new DebuggerAgentDelegateStub(this));
dom_agent_delegate_stub_.reset(new DomAgentDelegateStub(this));
net_agent_delegate_stub_.reset(new NetAgentDelegateStub(this));
tools_agent_delegate_stub_.reset(new ToolsAgentDelegateStub(this));
}
WebDevToolsAgentImpl::~WebDevToolsAgentImpl() {
}
void WebDevToolsAgentImpl::Attach() {
if (attached_) {
return;
}
debugger_agent_impl_.reset(
new DebuggerAgentImpl(debugger_agent_delegate_stub_.get()));
dom_agent_impl_.reset(new DomAgentImpl(dom_agent_delegate_stub_.get()));
net_agent_impl_.reset(new NetAgentImpl(net_agent_delegate_stub_.get()));
if (document_) {
dom_agent_impl_->SetDocument(document_);
net_agent_impl_->SetDocument(document_);
}
attached_ = true;
}
void WebDevToolsAgentImpl::Detach() {
dom_agent_impl_.reset(NULL);
net_agent_impl_.reset(NULL);
debugger_agent_impl_.reset(NULL);
attached_ = false;
}
void WebDevToolsAgentImpl::SetMainFrameDocumentReady(bool ready) {
if (ready) {
Page* page = web_view_impl_->page();
document_ = page->mainFrame()->document();
} else {
document_ = NULL;
}
if (attached_) {
dom_agent_impl_->SetDocument(document_);
net_agent_impl_->SetDocument(document_);
}
}
void WebDevToolsAgentImpl::DidCommitLoadForFrame(
WebViewImpl* webview,
WebFrame* frame,
bool is_new_navigation) {
if (!attached_) {
return;
}
dom_agent_impl_->DiscardBindings();
WebDataSource* ds = frame->GetDataSource();
const WebRequest& request = ds->GetRequest();
GURL url = ds->HasUnreachableURL() ?
ds->GetUnreachableURL() :
request.GetURL();
tools_agent_delegate_stub_->FrameNavigate(
url.possibly_invalid_spec(),
webview->GetMainFrame() == frame);
}
void WebDevToolsAgentImpl::HighlightDOMNode(int node_id) {
if (!attached_)
return;
Node* node = dom_agent_impl_->GetNodeForId(node_id);
if (!node)
return;
Page* page = web_view_impl_->page();
page->inspectorController()->highlight(node);
}
void WebDevToolsAgentImpl::HideDOMNodeHighlight() {
Page* page = web_view_impl_->page();
page->inspectorController()->hideHighlight();
}
void WebDevToolsAgentImpl::EvaluateJavaSctipt(int call_id, const String& js) {
Page* page = web_view_impl_->page();
if (!page->mainFrame()) {
return;
}
ScriptValue result = page->mainFrame()->loader()->executeScript(js);
String result_string;
if (!result.hasNoValue()) {
result_string = result.toString(NULL);
}
tools_agent_delegate_stub_->DidEvaluateJavaSctipt(call_id, result_string);
}
void WebDevToolsAgentImpl::DispatchMessageFromClient(
const std::string& raw_msg) {
OwnPtr<ListValue> message(
static_cast<ListValue*>(DevToolsRpc::ParseMessage(raw_msg)));
if (ToolsAgentDispatch::Dispatch(this, *message.get()))
return;
if (!attached_)
return;
if (debugger_agent_impl_.get() &&
DebuggerAgentDispatch::Dispatch(
debugger_agent_impl_.get(),
*message.get()))
return;
if (DomAgentDispatch::Dispatch(dom_agent_impl_.get(), *message.get()))
return;
if (NetAgentDispatch::Dispatch(net_agent_impl_.get(), *message.get()))
return;
}
void WebDevToolsAgentImpl::InspectElement(int x, int y) {
Node* node = web_view_impl_->GetNodeForWindowPos(x, y);
if (!node)
return;
int node_id = dom_agent_impl_->PushNodePathToClient(node);
tools_agent_delegate_stub_->UpdateFocusedNode(node_id);
}
void WebDevToolsAgentImpl::SendRpcMessage(const std::string& raw_msg) {
delegate_->SendMessageToClient(raw_msg);
}
// static
void WebDevToolsAgent::ExecuteDebuggerCommand(const std::string& command) {
DebuggerAgentManager::ExecuteDebuggerCommand(command);
}
|