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
|
// Copyright (c) 2011 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.
// An implementation of WebThread in terms of base::MessageLoop and
// base::Thread
#include "webkit/glue/webthread_impl.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/message_loop.h"
#include "base/threading/platform_thread.h"
namespace webkit_glue {
WebThreadBase::WebThreadBase() { }
WebThreadBase::~WebThreadBase() { }
class WebThreadBase::TaskObserverAdapter : public MessageLoop::TaskObserver {
public:
TaskObserverAdapter(WebThread::TaskObserver* observer)
: observer_(observer) { }
// WebThread::TaskObserver does not have a willProcessTask method.
virtual void WillProcessTask(base::TimeTicks) OVERRIDE { }
virtual void DidProcessTask(base::TimeTicks) OVERRIDE {
observer_->didProcessTask();
}
private:
WebThread::TaskObserver* observer_;
};
void WebThreadBase::addTaskObserver(TaskObserver* observer) {
CHECK(IsCurrentThread());
std::pair<TaskObserverMap::iterator, bool> result = task_observer_map_.insert(
std::make_pair(observer, static_cast<TaskObserverAdapter*>(NULL)));
if (result.second)
result.first->second = new TaskObserverAdapter(observer);
MessageLoop::current()->AddTaskObserver(result.first->second);
}
void WebThreadBase::removeTaskObserver(TaskObserver* observer) {
CHECK(IsCurrentThread());
TaskObserverMap::iterator iter = task_observer_map_.find(observer);
if (iter == task_observer_map_.end())
return;
MessageLoop::current()->RemoveTaskObserver(iter->second);
delete iter->second;
task_observer_map_.erase(iter);
}
WebThreadImpl::WebThreadImpl(const char* name)
: thread_(new base::Thread(name)) {
thread_->Start();
}
void WebThreadImpl::postTask(Task* task) {
thread_->message_loop()->PostTask(
FROM_HERE, base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)));
}
void WebThreadImpl::postDelayedTask(
Task* task, long long delay_ms) {
thread_->message_loop()->PostDelayedTask(
FROM_HERE,
base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)),
delay_ms);
}
bool WebThreadImpl::IsCurrentThread() const {
return thread_->thread_id() == base::PlatformThread::CurrentId();
}
WebThreadImpl::~WebThreadImpl() {
thread_->Stop();
}
WebThreadImplForMessageLoop::WebThreadImplForMessageLoop(
base::MessageLoopProxy* message_loop)
: message_loop_(message_loop) {
}
void WebThreadImplForMessageLoop::postTask(Task* task) {
message_loop_->PostTask(
FROM_HERE, base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)));
}
void WebThreadImplForMessageLoop::postDelayedTask(
Task* task, long long delay_ms) {
message_loop_->PostDelayedTask(
FROM_HERE,
base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)),
delay_ms);
}
bool WebThreadImplForMessageLoop::IsCurrentThread() const {
return message_loop_->BelongsToCurrentThread();
}
WebThreadImplForMessageLoop::~WebThreadImplForMessageLoop() {
}
}
|