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
|
// 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.
#ifndef WEBKIT_GLUE_WEBWORKERCLIENT_IMPL_H_
#define WEBKIT_GLUE_WEBWORKERCLIENT_IMPL_H_
#if ENABLE(WORKERS)
#include "webkit/api/public/WebWorkerClient.h"
#include "WorkerContextProxy.h"
#include <wtf/RefPtr.h>
namespace WebCore {
class ScriptExecutionContext;
}
namespace WebKit {
class WebWorker;
}
// The purpose of this class is to provide a WorkerContextProxy
// implementation that we can give to WebKit. Internally, it converts the
// data types to Chrome compatible ones so that renderer code can use it over
// IPC.
class WebWorkerClientImpl : public WebCore::WorkerContextProxy,
public WebKit::WebWorkerClient {
public:
WebWorkerClientImpl(WebCore::Worker* worker);
void set_webworker(WebKit::WebWorker* webworker);
// WebCore::WorkerContextProxy methods:
// These are called on the thread that created the worker. In the renderer
// process, this will be the main WebKit thread. In the worker process, this
// will be the thread of the executing worker (not the main WebKit thread).
virtual void startWorkerContext(const WebCore::KURL& script_url,
const WebCore::String& user_agent,
const WebCore::String& source_code);
virtual void terminateWorkerContext();
virtual void postMessageToWorkerContext(const WebCore::String& message);
virtual bool hasPendingActivity() const;
virtual void workerObjectDestroyed();
// WebWorkerClient methods:
// These are called on the main WebKit thread.
virtual void postMessageToWorkerObject(const WebKit::WebString& message);
virtual void postExceptionToWorkerObject(
const WebKit::WebString& error_message,
int line_number,
const WebKit::WebString& source_url);
virtual void postConsoleMessageToWorkerObject(
int destination_id,
int source_id,
int message_level,
const WebKit::WebString& message,
int line_number,
const WebKit::WebString& source_url);
virtual void confirmMessageFromWorkerObject(bool has_pending_activity);
virtual void reportPendingActivity(bool has_pending_activity);
virtual void workerContextDestroyed();
private:
virtual ~WebWorkerClientImpl();
// Methods used to support WebWorkerClientImpl being constructed on worker
// threads.
// These tasks are dispatched on the WebKit thread.
static void StartWorkerContextTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr,
const WebCore::String& script_url,
const WebCore::String& user_agent,
const WebCore::String& source_code);
static void TerminateWorkerContextTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr);
static void PostMessageToWorkerContextTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr,
const WebCore::String& message);
static void WorkerObjectDestroyedTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr);
// These tasks are dispatched on the thread that created the worker (i.e.
// main WebKit thread in renderer process, and the worker thread in the worker
// process).
static void PostMessageToWorkerObjectTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr,
const WebCore::String& message);
static void PostExceptionToWorkerObjectTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr,
const WebCore::String& error_message,
int line_number,
const WebCore::String& source_url);
static void PostConsoleMessageToWorkerObjectTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr,
int destination_id,
int source_id,
int message_level,
const WebCore::String& message,
int line_number,
const WebCore::String& source_url);
static void ConfirmMessageFromWorkerObjectTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr);
static void ReportPendingActivityTask(
WebCore::ScriptExecutionContext* context,
WebWorkerClientImpl* this_ptr,
bool has_pending_activity);
// Guard against context from being destroyed before a worker exits.
WTF::RefPtr<WebCore::ScriptExecutionContext> script_execution_context_;
WebCore::Worker* worker_;
WebKit::WebWorker* webworker_;
bool asked_to_terminate_;
uint32 unconfirmed_message_count_;
bool worker_context_had_pending_activity_;
WTF::ThreadIdentifier worker_thread_id_;
};
#endif
#endif // WEBKIT_GLUE_WEBWORKERCLIENT_IMPL_H_
|