2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
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
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.
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.
32 #include "DRTDevToolsAgent.h"
34 #include "DRTDevToolsCallArgs.h"
35 #include "DRTDevToolsClient.h"
37 #include "WebCString.h"
38 #include "WebDevToolsAgent.h"
39 #include "WebString.h"
41 #include "webkit/support/webkit_support.h"
43 using namespace WebKit;
45 DRTDevToolsAgent::DRTDevToolsAgent()
46 : m_drtDevToolsClient(0)
49 static int devToolsAgentCounter = 0;
51 m_routingID = ++devToolsAgentCounter;
53 WebDevToolsAgent::setMessageLoopDispatchHandler(&DRTDevToolsAgent::dispatchMessageLoop);
56 void DRTDevToolsAgent::reset()
58 m_taskList.revokeAll();
61 void DRTDevToolsAgent::setWebView(WebView* webView)
66 void DRTDevToolsAgent::sendMessageToInspectorFrontend(const WebKit::WebString& data)
68 if (m_drtDevToolsClient)
69 m_drtDevToolsClient->asyncCall(DRTDevToolsCallArgs(data));
72 void DRTDevToolsAgent::runtimePropertyChanged(const WebKit::WebString& name, const WebKit::WebString& value)
77 WebCString DRTDevToolsAgent::debuggerScriptSource()
79 return webkit_support::GetDevToolsDebuggerScriptSource();
82 WebDevToolsAgentClient::WebKitClientMessageLoop* DRTDevToolsAgent::createClientMessageLoop()
84 return webkit_support::CreateDevToolsMessageLoop();
87 void DRTDevToolsAgent::asyncCall(const DRTDevToolsCallArgs& args)
89 postTask(new AsyncCallTask(this, args));
92 void DRTDevToolsAgent::call(const DRTDevToolsCallArgs &args)
94 WebDevToolsAgent* agent = webDevToolsAgent();
96 agent->dispatchOnInspectorBackend(args.m_data);
97 if (DRTDevToolsCallArgs::callsCount() == 1 && m_drtDevToolsClient)
98 m_drtDevToolsClient->allMessagesProcessed();
101 void DRTDevToolsAgent::delayedFrontendLoaded()
103 WebDevToolsAgent* agent = webDevToolsAgent();
105 agent->frontendLoaded();
109 WebDevToolsAgent* DRTDevToolsAgent::webDevToolsAgent()
113 return m_webView->devToolsAgent();
116 void DRTDevToolsAgent::attach(DRTDevToolsClient* client)
118 ASSERT(!m_drtDevToolsClient);
119 m_drtDevToolsClient = client;
120 WebDevToolsAgent* agent = webDevToolsAgent();
125 void DRTDevToolsAgent::detach()
127 ASSERT(m_drtDevToolsClient);
128 WebDevToolsAgent* agent = webDevToolsAgent();
131 m_drtDevToolsClient = 0;
134 void DRTDevToolsAgent::frontendLoaded()
136 postTask(new DelayedFrontendLoadedTask(this));
139 bool DRTDevToolsAgent::setTimelineProfilingEnabled(bool enabled)
141 WebDevToolsAgent* agent = webDevToolsAgent();
144 agent->setTimelineProfilingEnabled(enabled);
148 bool DRTDevToolsAgent::evaluateInWebInspector(long callID, const std::string& script)
150 WebDevToolsAgent* agent = webDevToolsAgent();
153 agent->evaluateInWebInspector(callID, WebString::fromUTF8(script));
158 void DRTDevToolsAgent::dispatchMessageLoop()
160 webkit_support::DispatchMessageLoop();