~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/inspector/InspectorFrontendHost.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
 
3
 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 *
 
9
 * 1.  Redistributions of source code must retain the above copyright
 
10
 *     notice, this list of conditions and the following disclaimer.
 
11
 * 2.  Redistributions in binary form must reproduce the above copyright
 
12
 *     notice, this list of conditions and the following disclaimer in the
 
13
 *     documentation and/or other materials provided with the distribution.
 
14
 * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
 
15
 *     its contributors may be used to endorse or promote products derived
 
16
 *     from this software without specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
 
19
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
 
22
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
25
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
#include "config.h"
 
31
 
 
32
#if ENABLE(INSPECTOR)
 
33
 
 
34
#include "InspectorFrontendHost.h"
 
35
 
 
36
#include "ContextMenu.h"
 
37
#include "ContextMenuItem.h"
 
38
#include "ContextMenuController.h"
 
39
#include "ContextMenuProvider.h"
 
40
#include "Element.h"
 
41
#include "Frame.h"
 
42
#include "FrameLoader.h"
 
43
#include "HitTestResult.h"
 
44
#include "HTMLFrameOwnerElement.h"
 
45
#include "InspectorAgent.h"
 
46
#include "InspectorController.h"
 
47
#include "InspectorFrontendClient.h"
 
48
#include "Page.h"
 
49
#include "Pasteboard.h"
 
50
#include "ScriptFunctionCall.h"
 
51
#include "UserGestureIndicator.h"
 
52
 
 
53
#include <wtf/RefPtr.h>
 
54
#include <wtf/StdLibExtras.h>
 
55
 
 
56
using namespace std;
 
57
 
 
58
namespace WebCore {
 
59
 
 
60
#if ENABLE(CONTEXT_MENUS)
 
61
class FrontendMenuProvider : public ContextMenuProvider {
 
62
public:
 
63
    static PassRefPtr<FrontendMenuProvider> create(InspectorFrontendHost* frontendHost, ScriptObject frontendApiObject, const Vector<ContextMenuItem>& items)
 
64
    {
 
65
        return adoptRef(new FrontendMenuProvider(frontendHost, frontendApiObject, items));
 
66
    }
 
67
    
 
68
    void disconnect()
 
69
    {
 
70
        m_frontendApiObject = ScriptObject();
 
71
        m_frontendHost = 0;
 
72
    }
 
73
    
 
74
private:
 
75
    FrontendMenuProvider(InspectorFrontendHost* frontendHost, ScriptObject frontendApiObject, const Vector<ContextMenuItem>& items)
 
76
        : m_frontendHost(frontendHost)
 
77
        , m_frontendApiObject(frontendApiObject)
 
78
        , m_items(items)
 
79
    {
 
80
    }
 
81
 
 
82
    virtual ~FrontendMenuProvider()
 
83
    {
 
84
        contextMenuCleared();
 
85
    }
 
86
    
 
87
    virtual void populateContextMenu(ContextMenu* menu)
 
88
    {
 
89
        for (size_t i = 0; i < m_items.size(); ++i)
 
90
            menu->appendItem(m_items[i]);
 
91
    }
 
92
    
 
93
    virtual void contextMenuItemSelected(ContextMenuItem* item)
 
94
    {
 
95
        if (m_frontendHost) {
 
96
            UserGestureIndicator gestureIndicator(DefinitelyProcessingUserGesture);
 
97
            int itemNumber = item->action() - ContextMenuItemBaseCustomTag;
 
98
 
 
99
            ScriptFunctionCall function(m_frontendApiObject, "contextMenuItemSelected");
 
100
            function.appendArgument(itemNumber);
 
101
            function.call();
 
102
        }
 
103
    }
 
104
    
 
105
    virtual void contextMenuCleared()
 
106
    {
 
107
        if (m_frontendHost) {
 
108
            ScriptFunctionCall function(m_frontendApiObject, "contextMenuCleared");
 
109
            function.call();
 
110
 
 
111
            m_frontendHost->m_menuProvider = 0;
 
112
        }
 
113
        m_items.clear();
 
114
    }
 
115
 
 
116
    InspectorFrontendHost* m_frontendHost;
 
117
    ScriptObject m_frontendApiObject;
 
118
    Vector<ContextMenuItem> m_items;
 
119
};
 
120
#endif
 
121
 
 
122
InspectorFrontendHost::InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage)
 
123
    : m_client(client)
 
124
    , m_frontendPage(frontendPage)
 
125
#if ENABLE(CONTEXT_MENUS)
 
126
    , m_menuProvider(0)
 
127
#endif
 
128
{
 
129
}
 
130
 
 
131
InspectorFrontendHost::~InspectorFrontendHost()
 
132
{
 
133
    ASSERT(!m_client);
 
134
}
 
135
 
 
136
void InspectorFrontendHost::disconnectClient()
 
137
{
 
138
    m_client = 0;
 
139
#if ENABLE(CONTEXT_MENUS)
 
140
    if (m_menuProvider)
 
141
        m_menuProvider->disconnect();
 
142
#endif
 
143
    m_frontendPage = 0;
 
144
}
 
145
 
 
146
void InspectorFrontendHost::loaded()
 
147
{
 
148
    if (m_client)
 
149
        m_client->frontendLoaded();
 
150
}
 
151
 
 
152
void InspectorFrontendHost::requestSetDockSide(const String& side)
 
153
{
 
154
    if (!m_client)
 
155
        return;
 
156
    if (side == "undocked")
 
157
        m_client->requestSetDockSide(InspectorFrontendClient::UNDOCKED);
 
158
    else if (side == "right")
 
159
        m_client->requestSetDockSide(InspectorFrontendClient::DOCKED_TO_RIGHT);
 
160
    else if (side == "bottom")
 
161
        m_client->requestSetDockSide(InspectorFrontendClient::DOCKED_TO_BOTTOM);
 
162
}
 
163
 
 
164
void InspectorFrontendHost::closeWindow()
 
165
{
 
166
    if (m_client) {
 
167
        m_client->closeWindow();
 
168
        disconnectClient(); // Disconnect from client.
 
169
    }
 
170
}
 
171
 
 
172
void InspectorFrontendHost::bringToFront()
 
173
{
 
174
    if (m_client)
 
175
        m_client->bringToFront();
 
176
}
 
177
 
 
178
void InspectorFrontendHost::setZoomFactor(float zoom)
 
179
{
 
180
    m_frontendPage->mainFrame()->setPageAndTextZoomFactors(zoom, 1);
 
181
}
 
182
 
 
183
void InspectorFrontendHost::inspectedURLChanged(const String& newURL)
 
184
{
 
185
    if (m_client)
 
186
        m_client->inspectedURLChanged(newURL);
 
187
}
 
188
 
 
189
void InspectorFrontendHost::setAttachedWindowHeight(unsigned height)
 
190
{
 
191
    if (m_client)
 
192
        m_client->changeAttachedWindowHeight(height);
 
193
}
 
194
 
 
195
void InspectorFrontendHost::moveWindowBy(float x, float y) const
 
196
{
 
197
    if (m_client)
 
198
        m_client->moveWindowBy(x, y);
 
199
}
 
200
 
 
201
void InspectorFrontendHost::setInjectedScriptForOrigin(const String& origin, const String& script)
 
202
{
 
203
    ASSERT(m_frontendPage->inspectorController());
 
204
    m_frontendPage->inspectorController()->setInjectedScriptForOrigin(origin, script);
 
205
}
 
206
 
 
207
String InspectorFrontendHost::localizedStringsURL()
 
208
{
 
209
    return m_client ? m_client->localizedStringsURL() : "";
 
210
}
 
211
 
 
212
String InspectorFrontendHost::hiddenPanels()
 
213
{
 
214
    return m_client ? m_client->hiddenPanels() : "";
 
215
}
 
216
 
 
217
void InspectorFrontendHost::copyText(const String& text)
 
218
{
 
219
    Pasteboard::generalPasteboard()->writePlainText(text, Pasteboard::CannotSmartReplace);
 
220
}
 
221
 
 
222
void InspectorFrontendHost::openInNewTab(const String& url)
 
223
{
 
224
    if (m_client)
 
225
        m_client->openInNewTab(url);
 
226
}
 
227
 
 
228
bool InspectorFrontendHost::canSave()
 
229
{
 
230
    if (m_client)
 
231
        return m_client->canSave();
 
232
    return false;
 
233
}
 
234
 
 
235
void InspectorFrontendHost::save(const String& url, const String& content, bool forceSaveAs)
 
236
{
 
237
    if (m_client)
 
238
        m_client->save(url, content, forceSaveAs);
 
239
}
 
240
 
 
241
void InspectorFrontendHost::append(const String& url, const String& content)
 
242
{
 
243
    if (m_client)
 
244
        m_client->append(url, content);
 
245
}
 
246
 
 
247
void InspectorFrontendHost::close(const String&)
 
248
{
 
249
}
 
250
 
 
251
bool InspectorFrontendHost::canInspectWorkers()
 
252
{
 
253
#if ENABLE(WORKERS)
 
254
    if (m_client)
 
255
        return m_client->canInspectWorkers();
 
256
    return false;
 
257
#else
 
258
    return false;
 
259
#endif
 
260
}
 
261
 
 
262
void InspectorFrontendHost::sendMessageToBackend(const String& message)
 
263
{
 
264
    if (m_client)
 
265
        m_client->sendMessageToBackend(message);
 
266
}
 
267
 
 
268
#if ENABLE(CONTEXT_MENUS)
 
269
void InspectorFrontendHost::showContextMenu(Event* event, const Vector<ContextMenuItem>& items)
 
270
{
 
271
    ASSERT(m_frontendPage);
 
272
    ScriptState* frontendScriptState = scriptStateFromPage(debuggerWorld(), m_frontendPage);
 
273
    ScriptObject frontendApiObject;
 
274
    if (!ScriptGlobalObject::get(frontendScriptState, "InspectorFrontendAPI", frontendApiObject)) {
 
275
        ASSERT_NOT_REACHED();
 
276
        return;
 
277
    }
 
278
    RefPtr<FrontendMenuProvider> menuProvider = FrontendMenuProvider::create(this, frontendApiObject, items);
 
279
    ContextMenuController* menuController = m_frontendPage->contextMenuController();
 
280
    menuController->showContextMenu(event, menuProvider);
 
281
    m_menuProvider = menuProvider.get();
 
282
}
 
283
#endif
 
284
 
 
285
String InspectorFrontendHost::loadResourceSynchronously(const String& url)
 
286
{
 
287
    ResourceRequest request(url);
 
288
    request.setHTTPMethod("GET");
 
289
 
 
290
    Vector<char> data;
 
291
    ResourceError error;
 
292
    ResourceResponse response;
 
293
    m_frontendPage->mainFrame()->loader()->loadResourceSynchronously(request, DoNotAllowStoredCredentials, error, response, data);
 
294
    return String(data.data(), data.size());
 
295
}
 
296
 
 
297
} // namespace WebCore
 
298
 
 
299
#endif // ENABLE(INSPECTOR)