blob: bf5256a7d830f1b8d4c5be9b9f002bddada868f5 [file] [log] [blame]
[email protected]91462212009-04-10 15:09:391// Copyright (c) 2009 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commitd7cae122008-07-26 21:49:384
[email protected]ea15e982008-08-15 07:31:205#include "base/message_loop.h"
6
[email protected]fc7fb6e2008-08-16 03:09:057#include <algorithm>
8
[email protected]f1ea2fa2008-08-21 22:26:069#include "base/compiler_specific.h"
[email protected]f886b7bf2008-09-10 10:54:0610#include "base/lazy_instance.h"
initial.commitd7cae122008-07-26 21:49:3811#include "base/logging.h"
[email protected]b16ef312008-08-19 18:36:2312#include "base/message_pump_default.h"
initial.commitd7cae122008-07-26 21:49:3813#include "base/string_util.h"
[email protected]f886b7bf2008-09-10 10:54:0614#include "base/thread_local.h"
initial.commitd7cae122008-07-26 21:49:3815
[email protected]96c9ea12008-09-23 21:08:2816#if defined(OS_MACOSX)
17#include "base/message_pump_mac.h"
18#endif
[email protected]36987e92008-09-18 18:46:2619#if defined(OS_POSIX)
20#include "base/message_pump_libevent.h"
[email protected]d680c5c2009-05-14 16:44:2621#include "base/third_party/valgrind/valgrind.h"
[email protected]36987e92008-09-18 18:46:2622#endif
[email protected]e5cd46b2009-04-27 18:17:2423#if defined(OS_LINUX)
[email protected]8fc3a482008-10-03 16:52:5924#include "base/message_pump_glib.h"
25#endif
[email protected]36987e92008-09-18 18:46:2626
[email protected]e1acf6f2008-10-27 20:43:3327using base::Time;
28using base::TimeDelta;
29
[email protected]f886b7bf2008-09-10 10:54:0630// A lazily created thread local storage for quick access to a thread's message
31// loop, if one exists. This should be safe and free of static constructors.
32static base::LazyInstance<base::ThreadLocalPointer<MessageLoop> > lazy_tls_ptr(
33 base::LINKER_INITIALIZED);
initial.commitd7cae122008-07-26 21:49:3834
35//------------------------------------------------------------------------------
36
initial.commitd7cae122008-07-26 21:49:3837// Logical events for Histogram profiling. Run with -message-loop-histogrammer
38// to get an accounting of messages and actions taken on each thread.
[email protected]fc7fb6e2008-08-16 03:09:0539static const int kTaskRunEvent = 0x1;
40static const int kTimerEvent = 0x2;
initial.commitd7cae122008-07-26 21:49:3841
42// Provide range of message IDs for use in histogramming and debug display.
43static const int kLeastNonZeroMessageId = 1;
44static const int kMaxMessageId = 1099;
45static const int kNumberOfDistinctMessagesDisplayed = 1100;
46
47//------------------------------------------------------------------------------
48
[email protected]fc7fb6e2008-08-16 03:09:0549#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:3850
initial.commitd7cae122008-07-26 21:49:3851// Upon a SEH exception in this thread, it restores the original unhandled
52// exception filter.
53static int SEHFilter(LPTOP_LEVEL_EXCEPTION_FILTER old_filter) {
54 ::SetUnhandledExceptionFilter(old_filter);
55 return EXCEPTION_CONTINUE_SEARCH;
56}
57
58// Retrieves a pointer to the current unhandled exception filter. There
59// is no standalone getter method.
60static LPTOP_LEVEL_EXCEPTION_FILTER GetTopSEHFilter() {
61 LPTOP_LEVEL_EXCEPTION_FILTER top_filter = NULL;
62 top_filter = ::SetUnhandledExceptionFilter(0);
63 ::SetUnhandledExceptionFilter(top_filter);
64 return top_filter;
65}
66
[email protected]fc7fb6e2008-08-16 03:09:0567#endif // defined(OS_WIN)
68
initial.commitd7cae122008-07-26 21:49:3869//------------------------------------------------------------------------------
70
[email protected]f886b7bf2008-09-10 10:54:0671// static
72MessageLoop* MessageLoop::current() {
73 // TODO(darin): sadly, we cannot enable this yet since people call us even
74 // when they have no intention of using us.
75 //DCHECK(loop) << "Ouch, did you forget to initialize me?";
76 return lazy_tls_ptr.Pointer()->Get();
77}
78
[email protected]4d9bdfaf2008-08-26 05:53:5779MessageLoop::MessageLoop(Type type)
80 : type_(type),
[email protected]a5b94a92008-08-12 23:25:4381 nestable_tasks_allowed_(true),
[email protected]b16ef312008-08-19 18:36:2382 exception_restoration_(false),
[email protected]752578562008-09-07 08:08:2983 state_(NULL),
84 next_sequence_num_(0) {
[email protected]f886b7bf2008-09-10 10:54:0685 DCHECK(!current()) << "should only have one message loop per thread";
86 lazy_tls_ptr.Pointer()->Set(this);
[email protected]4d9bdfaf2008-08-26 05:53:5787
[email protected]fc7fb6e2008-08-16 03:09:0588#if defined(OS_WIN)
[email protected]1a8f5d1d2008-09-25 20:33:0489 // TODO(rvargas): Get rid of the OS guards.
[email protected]9bcbf472008-08-30 00:22:4890 if (type_ == TYPE_DEFAULT) {
91 pump_ = new base::MessagePumpDefault();
[email protected]1a8f5d1d2008-09-25 20:33:0492 } else if (type_ == TYPE_IO) {
93 pump_ = new base::MessagePumpForIO();
[email protected]9bcbf472008-08-30 00:22:4894 } else {
[email protected]1a8f5d1d2008-09-25 20:33:0495 DCHECK(type_ == TYPE_UI);
96 pump_ = new base::MessagePumpForUI();
[email protected]9bcbf472008-08-30 00:22:4897 }
[email protected]36987e92008-09-18 18:46:2698#elif defined(OS_POSIX)
[email protected]96c9ea12008-09-23 21:08:2899 if (type_ == TYPE_UI) {
[email protected]8fc3a482008-10-03 16:52:59100#if defined(OS_MACOSX)
[email protected]96c9ea12008-09-23 21:08:28101 pump_ = base::MessagePumpMac::Create();
[email protected]8fc3a482008-10-03 16:52:59102#elif defined(OS_LINUX)
103 pump_ = new base::MessagePumpForUI();
104#endif // OS_LINUX
105 } else if (type_ == TYPE_IO) {
[email protected]36987e92008-09-18 18:46:26106 pump_ = new base::MessagePumpLibevent();
107 } else {
108 pump_ = new base::MessagePumpDefault();
109 }
[email protected]96c9ea12008-09-23 21:08:28110#endif // OS_POSIX
initial.commitd7cae122008-07-26 21:49:38111}
112
113MessageLoop::~MessageLoop() {
114 DCHECK(this == current());
[email protected]2a127252008-08-05 23:16:41115
116 // Let interested parties have one last shot at accessing this.
117 FOR_EACH_OBSERVER(DestructionObserver, destruction_observers_,
118 WillDestroyCurrentMessageLoop());
119
[email protected]08de3cde2008-09-09 05:55:35120 DCHECK(!state_);
121
[email protected]001747c2008-09-10 00:37:07122 // Clean up any unprocessed tasks, but take care: deleting a task could
123 // result in the addition of more tasks (e.g., via DeleteSoon). We set a
124 // limit on the number of times we will allow a deleted task to generate more
125 // tasks. Normally, we should only pass through this loop once or twice. If
126 // we end up hitting the loop limit, then it is probably due to one task that
127 // is being stubborn. Inspect the queues to see who is left.
128 bool did_work;
129 for (int i = 0; i < 100; ++i) {
130 DeletePendingTasks();
131 ReloadWorkQueue();
132 // If we end up with empty queues, then break out of the loop.
133 did_work = DeletePendingTasks();
134 if (!did_work)
135 break;
[email protected]08de3cde2008-09-09 05:55:35136 }
[email protected]001747c2008-09-10 00:37:07137 DCHECK(!did_work);
138
139 // OK, now make it so that no one can find us.
[email protected]2b89d22b22008-09-10 11:14:56140 lazy_tls_ptr.Pointer()->Set(NULL);
initial.commitd7cae122008-07-26 21:49:38141}
142
[email protected]2a127252008-08-05 23:16:41143void MessageLoop::AddDestructionObserver(DestructionObserver *obs) {
144 DCHECK(this == current());
145 destruction_observers_.AddObserver(obs);
146}
147
148void MessageLoop::RemoveDestructionObserver(DestructionObserver *obs) {
149 DCHECK(this == current());
150 destruction_observers_.RemoveObserver(obs);
151}
152
[email protected]ea15e982008-08-15 07:31:20153void MessageLoop::Run() {
[email protected]fc7fb6e2008-08-16 03:09:05154 AutoRunState save_state(this);
155 RunHandler();
[email protected]ea15e982008-08-15 07:31:20156}
157
[email protected]7e0e8762008-07-31 13:10:20158void MessageLoop::RunAllPending() {
[email protected]fc7fb6e2008-08-16 03:09:05159 AutoRunState save_state(this);
160 state_->quit_received = true; // Means run until we would otherwise block.
161 RunHandler();
initial.commitd7cae122008-07-26 21:49:38162}
163
164// Runs the loop in two different SEH modes:
165// enable_SEH_restoration_ = false : any unhandled exception goes to the last
166// one that calls SetUnhandledExceptionFilter().
167// enable_SEH_restoration_ = true : any unhandled exception goes to the filter
168// that was existed before the loop was run.
[email protected]fc7fb6e2008-08-16 03:09:05169void MessageLoop::RunHandler() {
170#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:38171 if (exception_restoration_) {
172 LPTOP_LEVEL_EXCEPTION_FILTER current_filter = GetTopSEHFilter();
173 __try {
[email protected]fc7fb6e2008-08-16 03:09:05174 RunInternal();
initial.commitd7cae122008-07-26 21:49:38175 } __except(SEHFilter(current_filter)) {
176 }
[email protected]fc7fb6e2008-08-16 03:09:05177 return;
initial.commitd7cae122008-07-26 21:49:38178 }
[email protected]fc7fb6e2008-08-16 03:09:05179#endif
180
181 RunInternal();
initial.commitd7cae122008-07-26 21:49:38182}
183
184//------------------------------------------------------------------------------
initial.commitd7cae122008-07-26 21:49:38185
[email protected]fc7fb6e2008-08-16 03:09:05186void MessageLoop::RunInternal() {
187 DCHECK(this == current());
188
initial.commitd7cae122008-07-26 21:49:38189 StartHistogrammer();
190
[email protected]148d1052009-07-31 22:53:37191#if defined(OS_WIN) || defined(OS_LINUX)
192 if (state_->dispatcher && type() == TYPE_UI) {
193 static_cast<base::MessagePumpForUI*>(pump_.get())->
194 RunWithDispatcher(this, state_->dispatcher);
[email protected]fc7fb6e2008-08-16 03:09:05195 return;
[email protected]7e0e8762008-07-31 13:10:20196 }
[email protected]fc7fb6e2008-08-16 03:09:05197#endif
[email protected]1d2eb132008-12-08 17:36:06198
[email protected]fc7fb6e2008-08-16 03:09:05199 pump_->Run(this);
[email protected]b8f2fe5d2008-07-30 07:50:53200}
[email protected]7622bd02008-07-30 06:58:56201
[email protected]3882c4332008-07-30 19:03:59202//------------------------------------------------------------------------------
203// Wrapper functions for use in above message loop framework.
204
initial.commitd7cae122008-07-26 21:49:38205bool MessageLoop::ProcessNextDelayedNonNestableTask() {
[email protected]fc7fb6e2008-08-16 03:09:05206 if (state_->run_depth != 1)
initial.commitd7cae122008-07-26 21:49:38207 return false;
208
[email protected]752578562008-09-07 08:08:29209 if (deferred_non_nestable_work_queue_.empty())
initial.commitd7cae122008-07-26 21:49:38210 return false;
[email protected]1d2eb132008-12-08 17:36:06211
[email protected]752578562008-09-07 08:08:29212 Task* task = deferred_non_nestable_work_queue_.front().task;
213 deferred_non_nestable_work_queue_.pop();
[email protected]1d2eb132008-12-08 17:36:06214
[email protected]752578562008-09-07 08:08:29215 RunTask(task);
initial.commitd7cae122008-07-26 21:49:38216 return true;
217}
218
initial.commitd7cae122008-07-26 21:49:38219//------------------------------------------------------------------------------
220
221void MessageLoop::Quit() {
[email protected]fc7fb6e2008-08-16 03:09:05222 DCHECK(current() == this);
223 if (state_) {
224 state_->quit_received = true;
225 } else {
226 NOTREACHED() << "Must be inside Run to call Quit";
initial.commitd7cae122008-07-26 21:49:38227 }
initial.commitd7cae122008-07-26 21:49:38228}
229
[email protected]752578562008-09-07 08:08:29230void MessageLoop::PostTask(
231 const tracked_objects::Location& from_here, Task* task) {
232 PostTask_Helper(from_here, task, 0, true);
233}
234
235void MessageLoop::PostDelayedTask(
[email protected]743ace42009-06-17 17:23:51236 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
[email protected]752578562008-09-07 08:08:29237 PostTask_Helper(from_here, task, delay_ms, true);
238}
239
240void MessageLoop::PostNonNestableTask(
241 const tracked_objects::Location& from_here, Task* task) {
242 PostTask_Helper(from_here, task, 0, false);
243}
244
245void MessageLoop::PostNonNestableDelayedTask(
[email protected]743ace42009-06-17 17:23:51246 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
[email protected]752578562008-09-07 08:08:29247 PostTask_Helper(from_here, task, delay_ms, false);
248}
249
initial.commitd7cae122008-07-26 21:49:38250// Possibly called on a background thread!
[email protected]752578562008-09-07 08:08:29251void MessageLoop::PostTask_Helper(
[email protected]743ace42009-06-17 17:23:51252 const tracked_objects::Location& from_here, Task* task, int64 delay_ms,
[email protected]752578562008-09-07 08:08:29253 bool nestable) {
initial.commitd7cae122008-07-26 21:49:38254 task->SetBirthPlace(from_here);
[email protected]9bcbf472008-08-30 00:22:48255
[email protected]752578562008-09-07 08:08:29256 PendingTask pending_task(task, nestable);
[email protected]9bcbf472008-08-30 00:22:48257
258 if (delay_ms > 0) {
[email protected]752578562008-09-07 08:08:29259 pending_task.delayed_run_time =
[email protected]9bcbf472008-08-30 00:22:48260 Time::Now() + TimeDelta::FromMilliseconds(delay_ms);
261 } else {
262 DCHECK(delay_ms == 0) << "delay should not be negative";
263 }
264
initial.commitd7cae122008-07-26 21:49:38265 // Warning: Don't try to short-circuit, and handle this thread's tasks more
266 // directly, as it could starve handling of foreign threads. Put every task
267 // into this queue.
268
[email protected]fc7fb6e2008-08-16 03:09:05269 scoped_refptr<base::MessagePump> pump;
initial.commitd7cae122008-07-26 21:49:38270 {
[email protected]fc7fb6e2008-08-16 03:09:05271 AutoLock locked(incoming_queue_lock_);
272
[email protected]752578562008-09-07 08:08:29273 bool was_empty = incoming_queue_.empty();
274 incoming_queue_.push(pending_task);
initial.commitd7cae122008-07-26 21:49:38275 if (!was_empty)
276 return; // Someone else should have started the sub-pump.
277
[email protected]fc7fb6e2008-08-16 03:09:05278 pump = pump_;
[email protected]ea15e982008-08-15 07:31:20279 }
[email protected]fc7fb6e2008-08-16 03:09:05280 // Since the incoming_queue_ may contain a task that destroys this message
281 // loop, we cannot exit incoming_queue_lock_ until we are done with |this|.
282 // We use a stack-based reference to the message pump so that we can call
283 // ScheduleWork outside of incoming_queue_lock_.
[email protected]ea15e982008-08-15 07:31:20284
[email protected]fc7fb6e2008-08-16 03:09:05285 pump->ScheduleWork();
initial.commitd7cae122008-07-26 21:49:38286}
287
288void MessageLoop::SetNestableTasksAllowed(bool allowed) {
[email protected]124a2bdf2008-08-09 00:14:09289 if (nestable_tasks_allowed_ != allowed) {
290 nestable_tasks_allowed_ = allowed;
291 if (!nestable_tasks_allowed_)
292 return;
293 // Start the native pump if we are not already pumping.
[email protected]fc7fb6e2008-08-16 03:09:05294 pump_->ScheduleWork();
[email protected]124a2bdf2008-08-09 00:14:09295 }
initial.commitd7cae122008-07-26 21:49:38296}
297
298bool MessageLoop::NestableTasksAllowed() const {
299 return nestable_tasks_allowed_;
300}
301
[email protected]b5f95102009-07-01 19:53:59302bool MessageLoop::IsNested() {
303 return state_->run_depth > 1;
304}
305
initial.commitd7cae122008-07-26 21:49:38306//------------------------------------------------------------------------------
initial.commitd7cae122008-07-26 21:49:38307
initial.commitd7cae122008-07-26 21:49:38308void MessageLoop::RunTask(Task* task) {
initial.commitd7cae122008-07-26 21:49:38309 DCHECK(nestable_tasks_allowed_);
310 // Execute the task and assume the worst: It is probably not reentrant.
311 nestable_tasks_allowed_ = false;
[email protected]752578562008-09-07 08:08:29312
313 HistogramEvent(kTaskRunEvent);
314 task->Run();
315 delete task;
316
317 nestable_tasks_allowed_ = true;
initial.commitd7cae122008-07-26 21:49:38318}
319
[email protected]752578562008-09-07 08:08:29320bool MessageLoop::DeferOrRunPendingTask(const PendingTask& pending_task) {
321 if (pending_task.nestable || state_->run_depth == 1) {
322 RunTask(pending_task.task);
323 // Show that we ran a task (Note: a new one might arrive as a
324 // consequence!).
325 return true;
326 }
327
328 // We couldn't run the task now because we're in a nested message loop
329 // and the task isn't nestable.
330 deferred_non_nestable_work_queue_.push(pending_task);
331 return false;
initial.commitd7cae122008-07-26 21:49:38332}
333
[email protected]001747c2008-09-10 00:37:07334void MessageLoop::AddToDelayedWorkQueue(const PendingTask& pending_task) {
335 // Move to the delayed work queue. Initialize the sequence number
336 // before inserting into the delayed_work_queue_. The sequence number
337 // is used to faciliate FIFO sorting when two tasks have the same
338 // delayed_run_time value.
339 PendingTask new_pending_task(pending_task);
340 new_pending_task.sequence_num = next_sequence_num_++;
341 delayed_work_queue_.push(new_pending_task);
342}
343
initial.commitd7cae122008-07-26 21:49:38344void MessageLoop::ReloadWorkQueue() {
345 // We can improve performance of our loading tasks from incoming_queue_ to
[email protected]fc7fb6e2008-08-16 03:09:05346 // work_queue_ by waiting until the last minute (work_queue_ is empty) to
347 // load. That reduces the number of locks-per-task significantly when our
[email protected]752578562008-09-07 08:08:29348 // queues get large.
349 if (!work_queue_.empty())
initial.commitd7cae122008-07-26 21:49:38350 return; // Wait till we *really* need to lock and load.
351
352 // Acquire all we can from the inter-thread queue with one lock acquisition.
initial.commitd7cae122008-07-26 21:49:38353 {
354 AutoLock lock(incoming_queue_lock_);
[email protected]752578562008-09-07 08:08:29355 if (incoming_queue_.empty())
initial.commitd7cae122008-07-26 21:49:38356 return;
[email protected]b2f0ea12009-09-02 20:05:21357 incoming_queue_.Swap(&work_queue_); // Constant time
[email protected]752578562008-09-07 08:08:29358 DCHECK(incoming_queue_.empty());
initial.commitd7cae122008-07-26 21:49:38359 }
360}
361
[email protected]001747c2008-09-10 00:37:07362bool MessageLoop::DeletePendingTasks() {
363 bool did_work = !work_queue_.empty();
364 while (!work_queue_.empty()) {
365 PendingTask pending_task = work_queue_.front();
366 work_queue_.pop();
367 if (!pending_task.delayed_run_time.is_null()) {
368 // We want to delete delayed tasks in the same order in which they would
369 // normally be deleted in case of any funny dependencies between delayed
370 // tasks.
371 AddToDelayedWorkQueue(pending_task);
372 } else {
373 // TODO(darin): Delete all tasks once it is safe to do so.
[email protected]d680c5c2009-05-14 16:44:26374 // Until it is totally safe, just do it when running Purify or
375 // Valgrind.
[email protected]686dd8d2009-07-23 22:28:49376#if defined(PURIFY)
[email protected]404ec5e2009-03-11 20:06:02377 delete pending_task.task;
[email protected]d680c5c2009-05-14 16:44:26378#elif defined(OS_POSIX)
379 if (RUNNING_ON_VALGRIND)
380 delete pending_task.task;
381#endif // defined(OS_POSIX)
[email protected]001747c2008-09-10 00:37:07382 }
initial.commitd7cae122008-07-26 21:49:38383 }
[email protected]001747c2008-09-10 00:37:07384 did_work |= !deferred_non_nestable_work_queue_.empty();
385 while (!deferred_non_nestable_work_queue_.empty()) {
[email protected]20472832009-03-11 19:46:41386 // TODO(darin): Delete all tasks once it is safe to do so.
[email protected]686dd8d2009-07-23 22:28:49387 // Until it is totaly safe, only delete them under Purify and Valgrind.
388 Task* task = NULL;
389#if defined(PURIFY)
390 task = deferred_non_nestable_work_queue_.front().task;
391#elif defined(OS_POSIX)
392 if (RUNNING_ON_VALGRIND)
393 task = deferred_non_nestable_work_queue_.front().task;
[email protected]8df21d32009-03-11 19:53:50394#endif
395 deferred_non_nestable_work_queue_.pop();
[email protected]686dd8d2009-07-23 22:28:49396 if (task)
397 delete task;
initial.commitd7cae122008-07-26 21:49:38398 }
[email protected]001747c2008-09-10 00:37:07399 did_work |= !delayed_work_queue_.empty();
400 while (!delayed_work_queue_.empty()) {
401 Task* task = delayed_work_queue_.top().task;
402 delayed_work_queue_.pop();
403 delete task;
404 }
405 return did_work;
initial.commitd7cae122008-07-26 21:49:38406}
407
[email protected]fc7fb6e2008-08-16 03:09:05408bool MessageLoop::DoWork() {
[email protected]752578562008-09-07 08:08:29409 if (!nestable_tasks_allowed_) {
410 // Task can't be executed right now.
411 return false;
412 }
413
414 for (;;) {
415 ReloadWorkQueue();
416 if (work_queue_.empty())
417 break;
418
419 // Execute oldest task.
420 do {
421 PendingTask pending_task = work_queue_.front();
422 work_queue_.pop();
423 if (!pending_task.delayed_run_time.is_null()) {
[email protected]001747c2008-09-10 00:37:07424 AddToDelayedWorkQueue(pending_task);
[email protected]72deacd2008-09-23 19:19:20425 // If we changed the topmost task, then it is time to re-schedule.
426 if (delayed_work_queue_.top().task == pending_task.task)
[email protected]752578562008-09-07 08:08:29427 pump_->ScheduleDelayedWork(pending_task.delayed_run_time);
428 } else {
429 if (DeferOrRunPendingTask(pending_task))
430 return true;
431 }
432 } while (!work_queue_.empty());
433 }
434
435 // Nothing happened.
436 return false;
[email protected]fc7fb6e2008-08-16 03:09:05437}
438
[email protected]b24250fc2008-08-20 06:30:58439bool MessageLoop::DoDelayedWork(Time* next_delayed_work_time) {
[email protected]752578562008-09-07 08:08:29440 if (!nestable_tasks_allowed_ || delayed_work_queue_.empty()) {
441 *next_delayed_work_time = Time();
442 return false;
443 }
[email protected]1d2eb132008-12-08 17:36:06444
[email protected]752578562008-09-07 08:08:29445 if (delayed_work_queue_.top().delayed_run_time > Time::Now()) {
446 *next_delayed_work_time = delayed_work_queue_.top().delayed_run_time;
447 return false;
448 }
[email protected]fc7fb6e2008-08-16 03:09:05449
[email protected]752578562008-09-07 08:08:29450 PendingTask pending_task = delayed_work_queue_.top();
451 delayed_work_queue_.pop();
[email protected]1d2eb132008-12-08 17:36:06452
[email protected]752578562008-09-07 08:08:29453 if (!delayed_work_queue_.empty())
454 *next_delayed_work_time = delayed_work_queue_.top().delayed_run_time;
[email protected]fc7fb6e2008-08-16 03:09:05455
[email protected]752578562008-09-07 08:08:29456 return DeferOrRunPendingTask(pending_task);
[email protected]fc7fb6e2008-08-16 03:09:05457}
458
459bool MessageLoop::DoIdleWork() {
460 if (ProcessNextDelayedNonNestableTask())
461 return true;
462
463 if (state_->quit_received)
464 pump_->Quit();
465
466 return false;
467}
468
469//------------------------------------------------------------------------------
470// MessageLoop::AutoRunState
471
472MessageLoop::AutoRunState::AutoRunState(MessageLoop* loop) : loop_(loop) {
473 // Make the loop reference us.
474 previous_state_ = loop_->state_;
475 if (previous_state_) {
476 run_depth = previous_state_->run_depth + 1;
[email protected]ea15e982008-08-15 07:31:20477 } else {
[email protected]fc7fb6e2008-08-16 03:09:05478 run_depth = 1;
[email protected]ea15e982008-08-15 07:31:20479 }
[email protected]fc7fb6e2008-08-16 03:09:05480 loop_->state_ = this;
481
482 // Initialize the other fields:
483 quit_received = false;
[email protected]148d1052009-07-31 22:53:37484#if defined(OS_WIN) || defined(OS_LINUX)
[email protected]fc7fb6e2008-08-16 03:09:05485 dispatcher = NULL;
486#endif
487}
488
489MessageLoop::AutoRunState::~AutoRunState() {
490 loop_->state_ = previous_state_;
[email protected]a5b94a92008-08-12 23:25:43491}
492
initial.commitd7cae122008-07-26 21:49:38493//------------------------------------------------------------------------------
[email protected]752578562008-09-07 08:08:29494// MessageLoop::PendingTask
initial.commitd7cae122008-07-26 21:49:38495
[email protected]752578562008-09-07 08:08:29496bool MessageLoop::PendingTask::operator<(const PendingTask& other) const {
497 // Since the top of a priority queue is defined as the "greatest" element, we
498 // need to invert the comparison here. We want the smaller time to be at the
499 // top of the heap.
initial.commitd7cae122008-07-26 21:49:38500
[email protected]752578562008-09-07 08:08:29501 if (delayed_run_time < other.delayed_run_time)
502 return false;
initial.commitd7cae122008-07-26 21:49:38503
[email protected]752578562008-09-07 08:08:29504 if (delayed_run_time > other.delayed_run_time)
505 return true;
initial.commitd7cae122008-07-26 21:49:38506
[email protected]752578562008-09-07 08:08:29507 // If the times happen to match, then we use the sequence number to decide.
508 // Compare the difference to support integer roll-over.
509 return (sequence_num - other.sequence_num) > 0;
initial.commitd7cae122008-07-26 21:49:38510}
511
512//------------------------------------------------------------------------------
513// Method and data for histogramming events and actions taken by each instance
514// on each thread.
515
516// static
517bool MessageLoop::enable_histogrammer_ = false;
518
519// static
520void MessageLoop::EnableHistogrammer(bool enable) {
521 enable_histogrammer_ = enable;
522}
523
524void MessageLoop::StartHistogrammer() {
525 if (enable_histogrammer_ && !message_histogram_.get()
526 && StatisticsRecorder::WasStarted()) {
[email protected]fc7fb6e2008-08-16 03:09:05527 DCHECK(!thread_name_.empty());
[email protected]553dba62009-02-24 19:08:23528 message_histogram_.reset(
529 new LinearHistogram(("MsgLoop:" + thread_name_).c_str(),
530 kLeastNonZeroMessageId,
531 kMaxMessageId,
532 kNumberOfDistinctMessagesDisplayed));
initial.commitd7cae122008-07-26 21:49:38533 message_histogram_->SetFlags(message_histogram_->kHexRangePrintingFlag);
534 message_histogram_->SetRangeDescriptions(event_descriptions_);
535 }
536}
537
538void MessageLoop::HistogramEvent(int event) {
539 if (message_histogram_.get())
540 message_histogram_->Add(event);
541}
542
initial.commitd7cae122008-07-26 21:49:38543// Provide a macro that takes an expression (such as a constant, or macro
544// constant) and creates a pair to initalize an array of pairs. In this case,
545// our pair consists of the expressions value, and the "stringized" version
546// of the expression (i.e., the exrpression put in quotes). For example, if
547// we have:
548// #define FOO 2
549// #define BAR 5
550// then the following:
551// VALUE_TO_NUMBER_AND_NAME(FOO + BAR)
552// will expand to:
553// {7, "FOO + BAR"}
554// We use the resulting array as an argument to our histogram, which reads the
555// number as a bucket identifier, and proceeds to use the corresponding name
556// in the pair (i.e., the quoted string) when printing out a histogram.
557#define VALUE_TO_NUMBER_AND_NAME(name) {name, #name},
558
initial.commitd7cae122008-07-26 21:49:38559// static
560const LinearHistogram::DescriptionPair MessageLoop::event_descriptions_[] = {
initial.commitd7cae122008-07-26 21:49:38561 // Provide some pretty print capability in our histogram for our internal
562 // messages.
563
initial.commitd7cae122008-07-26 21:49:38564 // A few events we handle (kindred to messages), and used to profile actions.
565 VALUE_TO_NUMBER_AND_NAME(kTaskRunEvent)
initial.commitd7cae122008-07-26 21:49:38566 VALUE_TO_NUMBER_AND_NAME(kTimerEvent)
567
568 {-1, NULL} // The list must be null terminated, per API to histogram.
569};
license.botbf09a502008-08-24 00:55:55570
[email protected]4d9bdfaf2008-08-26 05:53:57571//------------------------------------------------------------------------------
572// MessageLoopForUI
573
[email protected]4d9bdfaf2008-08-26 05:53:57574#if defined(OS_WIN)
[email protected]4d9bdfaf2008-08-26 05:53:57575void MessageLoopForUI::WillProcessMessage(const MSG& message) {
576 pump_win()->WillProcessMessage(message);
577}
578void MessageLoopForUI::DidProcessMessage(const MSG& message) {
579 pump_win()->DidProcessMessage(message);
580}
581void MessageLoopForUI::PumpOutPendingPaintMessages() {
[email protected]17b89142008-11-07 21:52:15582 pump_ui()->PumpOutPendingPaintMessages();
[email protected]4d9bdfaf2008-08-26 05:53:57583}
584
585#endif // defined(OS_WIN)
586
[email protected]148d1052009-07-31 22:53:37587#if defined(OS_LINUX) || defined(OS_WIN)
588void MessageLoopForUI::AddObserver(Observer* observer) {
589 pump_ui()->AddObserver(observer);
590}
591
592void MessageLoopForUI::RemoveObserver(Observer* observer) {
593 pump_ui()->RemoveObserver(observer);
594}
595
596void MessageLoopForUI::Run(Dispatcher* dispatcher) {
597 AutoRunState save_state(this);
598 state_->dispatcher = dispatcher;
599 RunHandler();
600}
601#endif // defined(OS_LINUX) || defined(OS_WIN)
602
[email protected]4d9bdfaf2008-08-26 05:53:57603//------------------------------------------------------------------------------
604// MessageLoopForIO
605
606#if defined(OS_WIN)
607
[email protected]32cda29d2008-10-09 23:58:43608void MessageLoopForIO::RegisterIOHandler(HANDLE file, IOHandler* handler) {
609 pump_io()->RegisterIOHandler(file, handler);
610}
611
[email protected]17b89142008-11-07 21:52:15612bool MessageLoopForIO::WaitForIOCompletion(DWORD timeout, IOHandler* filter) {
613 return pump_io()->WaitForIOCompletion(timeout, filter);
[email protected]32cda29d2008-10-09 23:58:43614}
615
[email protected]36987e92008-09-18 18:46:26616#elif defined(OS_POSIX)
617
[email protected]e45e6c02008-12-15 22:02:17618bool MessageLoopForIO::WatchFileDescriptor(int fd,
619 bool persistent,
620 Mode mode,
621 FileDescriptorWatcher *controller,
622 Watcher *delegate) {
623 return pump_libevent()->WatchFileDescriptor(
624 fd,
625 persistent,
626 static_cast<base::MessagePumpLibevent::Mode>(mode),
627 controller,
628 delegate);
[email protected]36987e92008-09-18 18:46:26629}
630
[email protected]36987e92008-09-18 18:46:26631#endif