blob: 0591902320532b8870de824fa67a2f97341e7f2d (
plain)
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
|
// 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 "chrome/worker/worker_thread.h"
#include "base/command_line.h"
#include "base/lazy_instance.h"
#include "base/thread_local.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/worker_messages.h"
#include "chrome/worker/webworker_stub.h"
#include "chrome/worker/websharedworker_stub.h"
#include "chrome/worker/worker_webkitclient_impl.h"
#include "third_party/WebKit/WebKit/chromium/public/WebKit.h"
#include "third_party/WebKit/WebKit/chromium/public/WebRuntimeFeatures.h"
using WebKit::WebRuntimeFeatures;
static base::LazyInstance<base::ThreadLocalPointer<WorkerThread> > lazy_tls(
base::LINKER_INITIALIZED);
WorkerThread::WorkerThread() {
lazy_tls.Pointer()->Set(this);
webkit_client_.reset(new WorkerWebKitClientImpl);
WebKit::initialize(webkit_client_.get());
const CommandLine& command_line = *CommandLine::ForCurrentProcess();
#if defined(OS_WIN)
// We don't yet support notifications on non-Windows, so hide it from pages.
WebRuntimeFeatures::enableNotifications(
!command_line.HasSwitch(switches::kDisableDesktopNotifications));
#endif
WebRuntimeFeatures::enableSockets(
!command_line.HasSwitch(switches::kDisableWebSockets));
}
WorkerThread::~WorkerThread() {
// Shutdown in reverse of the initialization order.
WebKit::shutdown();
lazy_tls.Pointer()->Set(NULL);
}
WorkerThread* WorkerThread::current() {
return lazy_tls.Pointer()->Get();
}
void WorkerThread::OnControlMessageReceived(const IPC::Message& msg) {
IPC_BEGIN_MESSAGE_MAP(WorkerThread, msg)
IPC_MESSAGE_HANDLER(WorkerProcessMsg_CreateWorker, OnCreateWorker)
IPC_END_MESSAGE_MAP()
}
void WorkerThread::OnCreateWorker(const GURL& url,
bool is_shared,
const string16& name,
int route_id) {
// WebWorkerStub and WebSharedWorkerStub own themselves.
if (is_shared)
new WebSharedWorkerStub(name, route_id);
else
new WebWorkerStub(url, route_id);
}
// The browser process is likely dead. Terminate all workers.
void WorkerThread::OnChannelError() {
set_on_channel_error_called(true);
for (WorkerStubsList::iterator it = worker_stubs_.begin();
it != worker_stubs_.end(); ++it) {
(*it)->OnChannelError();
}
}
void WorkerThread::RemoveWorkerStub(WebWorkerStubBase* stub) {
worker_stubs_.erase(stub);
}
void WorkerThread::AddWorkerStub(WebWorkerStubBase* stub) {
worker_stubs_.insert(stub);
}
|