1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // An implementation of WebThread in terms of base::MessageLoop and
8 #include "mojo/services/html_viewer/webthread_impl.h"
10 #include "base/bind.h"
11 #include "base/bind_helpers.h"
12 #include "base/message_loop/message_loop.h"
13 #include "base/pending_task.h"
14 #include "base/threading/platform_thread.h"
18 WebThreadBase::WebThreadBase() {}
19 WebThreadBase::~WebThreadBase() {}
21 class WebThreadBase::TaskObserverAdapter
22 : public base::MessageLoop::TaskObserver
{
24 TaskObserverAdapter(WebThread::TaskObserver
* observer
)
25 : observer_(observer
) {}
27 void WillProcessTask(const base::PendingTask
& pending_task
) override
{
28 observer_
->willProcessTask();
31 void DidProcessTask(const base::PendingTask
& pending_task
) override
{
32 observer_
->didProcessTask();
36 WebThread::TaskObserver
* observer_
;
39 void WebThreadBase::addTaskObserver(TaskObserver
* observer
) {
40 CHECK(isCurrentThread());
41 std::pair
<TaskObserverMap::iterator
, bool> result
= task_observer_map_
.insert(
42 std::make_pair(observer
, static_cast<TaskObserverAdapter
*>(NULL
)));
44 result
.first
->second
= new TaskObserverAdapter(observer
);
45 base::MessageLoop::current()->AddTaskObserver(result
.first
->second
);
48 void WebThreadBase::removeTaskObserver(TaskObserver
* observer
) {
49 CHECK(isCurrentThread());
50 TaskObserverMap::iterator iter
= task_observer_map_
.find(observer
);
51 if (iter
== task_observer_map_
.end())
53 base::MessageLoop::current()->RemoveTaskObserver(iter
->second
);
55 task_observer_map_
.erase(iter
);
58 WebThreadImpl::WebThreadImpl(const char* name
)
59 : thread_(new base::Thread(name
)) {
63 void WebThreadImpl::postTask(Task
* task
) {
64 thread_
->message_loop()->PostTask(
65 FROM_HERE
, base::Bind(&blink::WebThread::Task::run
, base::Owned(task
)));
68 void WebThreadImpl::postDelayedTask(Task
* task
, long long delay_ms
) {
69 thread_
->message_loop()->PostDelayedTask(
71 base::Bind(&blink::WebThread::Task::run
, base::Owned(task
)),
72 base::TimeDelta::FromMilliseconds(delay_ms
));
75 void WebThreadImpl::enterRunLoop() {
76 CHECK(isCurrentThread());
77 CHECK(!thread_
->message_loop()->is_running()); // We don't support nesting.
78 thread_
->message_loop()->Run();
81 void WebThreadImpl::exitRunLoop() {
82 CHECK(isCurrentThread());
83 CHECK(thread_
->message_loop()->is_running());
84 thread_
->message_loop()->Quit();
87 bool WebThreadImpl::isCurrentThread() const {
88 return thread_
->thread_id() == base::PlatformThread::CurrentId();
91 blink::PlatformThreadId
WebThreadImpl::threadId() const {
92 return thread_
->thread_id();
95 WebThreadImpl::~WebThreadImpl() {
99 WebThreadImplForMessageLoop::WebThreadImplForMessageLoop(
100 base::MessageLoopProxy
* message_loop
)
101 : message_loop_(message_loop
) {}
103 void WebThreadImplForMessageLoop::postTask(Task
* task
) {
104 message_loop_
->PostTask(
105 FROM_HERE
, base::Bind(&blink::WebThread::Task::run
, base::Owned(task
)));
108 void WebThreadImplForMessageLoop::postDelayedTask(Task
* task
,
109 long long delay_ms
) {
110 message_loop_
->PostDelayedTask(
112 base::Bind(&blink::WebThread::Task::run
, base::Owned(task
)),
113 base::TimeDelta::FromMilliseconds(delay_ms
));
116 void WebThreadImplForMessageLoop::enterRunLoop() {
117 CHECK(isCurrentThread());
118 // We don't support nesting.
119 CHECK(!base::MessageLoop::current()->is_running());
120 base::MessageLoop::current()->Run();
123 void WebThreadImplForMessageLoop::exitRunLoop() {
124 CHECK(isCurrentThread());
125 CHECK(base::MessageLoop::current()->is_running());
126 base::MessageLoop::current()->Quit();
129 bool WebThreadImplForMessageLoop::isCurrentThread() const {
130 return message_loop_
->BelongsToCurrentThread();
133 blink::PlatformThreadId
WebThreadImplForMessageLoop::threadId() const {
137 WebThreadImplForMessageLoop::~WebThreadImplForMessageLoop() {}