blob: ca85d6a536c19da351324328c740ecc25d0c7979 [file] [log] [blame]
[email protected]81ce9f3b2011-04-05 04:48:531// Copyright (c) 2011 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]b224f792011-04-20 16:02:239#include "base/bind.h"
[email protected]f1ea2fa2008-08-21 22:26:0610#include "base/compiler_specific.h"
[email protected]fcb30f7b2011-05-19 22:28:2511#include "base/debug/alias.h"
[email protected]19d8a902011-10-03 17:51:2512#include "base/debug/trace_event.h"
[email protected]f886b7bf2008-09-10 10:54:0613#include "base/lazy_instance.h"
initial.commitd7cae122008-07-26 21:49:3814#include "base/logging.h"
[email protected]e57a7162011-06-15 04:14:2315#include "base/memory/scoped_ptr.h"
[email protected]edd685f2011-08-15 20:33:4616#include "base/message_loop_proxy_impl.h"
[email protected]b16ef312008-08-19 18:36:2317#include "base/message_pump_default.h"
[email protected]835d7c82010-10-14 04:38:3818#include "base/metrics/histogram.h"
[email protected]d8858e372011-01-04 19:06:5119#include "base/third_party/dynamic_annotations/dynamic_annotations.h"
[email protected]1357c322010-12-30 22:18:5620#include "base/threading/thread_local.h"
[email protected]14255a992011-05-15 19:20:4921#include "base/time.h"
[email protected]b224f792011-04-20 16:02:2322#include "base/tracked_objects.h"
initial.commitd7cae122008-07-26 21:49:3823
[email protected]96c9ea12008-09-23 21:08:2824#if defined(OS_MACOSX)
25#include "base/message_pump_mac.h"
26#endif
[email protected]36987e92008-09-18 18:46:2627#if defined(OS_POSIX)
28#include "base/message_pump_libevent.h"
29#endif
[email protected]61c86c62011-08-02 16:11:1630#if defined(OS_ANDROID)
31#include "base/message_pump_android.h"
32#endif
[email protected]258dca42011-09-21 00:17:1933#if defined(TOOLKIT_USES_GTK)
[email protected]b224f792011-04-20 16:02:2334#include <gdk/gdk.h>
35#include <gdk/gdkx.h>
[email protected]2047ef42011-06-24 20:10:2536#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
[email protected]36987e92008-09-18 18:46:2637
[email protected]dd1f9fe2011-11-15 23:36:3038using base::PendingTask;
[email protected]e1acf6f2008-10-27 20:43:3339using base::TimeDelta;
[email protected]7e7fab42010-11-06 22:23:2940using base::TimeTicks;
[email protected]e1acf6f2008-10-27 20:43:3341
[email protected]5097dc82010-07-15 17:23:2342namespace {
43
[email protected]f886b7bf2008-09-10 10:54:0644// A lazily created thread local storage for quick access to a thread's message
45// loop, if one exists. This should be safe and free of static constructors.
[email protected]6de0fd1d2011-11-15 13:31:4946base::LazyInstance<base::ThreadLocalPointer<MessageLoop> > lazy_tls_ptr =
47 LAZY_INSTANCE_INITIALIZER;
initial.commitd7cae122008-07-26 21:49:3848
initial.commitd7cae122008-07-26 21:49:3849// Logical events for Histogram profiling. Run with -message-loop-histogrammer
50// to get an accounting of messages and actions taken on each thread.
[email protected]5097dc82010-07-15 17:23:2351const int kTaskRunEvent = 0x1;
52const int kTimerEvent = 0x2;
initial.commitd7cae122008-07-26 21:49:3853
54// Provide range of message IDs for use in histogramming and debug display.
[email protected]5097dc82010-07-15 17:23:2355const int kLeastNonZeroMessageId = 1;
56const int kMaxMessageId = 1099;
57const int kNumberOfDistinctMessagesDisplayed = 1100;
58
59// Provide a macro that takes an expression (such as a constant, or macro
60// constant) and creates a pair to initalize an array of pairs. In this case,
61// our pair consists of the expressions value, and the "stringized" version
62// of the expression (i.e., the exrpression put in quotes). For example, if
63// we have:
64// #define FOO 2
65// #define BAR 5
66// then the following:
67// VALUE_TO_NUMBER_AND_NAME(FOO + BAR)
68// will expand to:
69// {7, "FOO + BAR"}
70// We use the resulting array as an argument to our histogram, which reads the
71// number as a bucket identifier, and proceeds to use the corresponding name
72// in the pair (i.e., the quoted string) when printing out a histogram.
73#define VALUE_TO_NUMBER_AND_NAME(name) {name, #name},
74
[email protected]835d7c82010-10-14 04:38:3875const base::LinearHistogram::DescriptionPair event_descriptions_[] = {
[email protected]5097dc82010-07-15 17:23:2376 // Provide some pretty print capability in our histogram for our internal
77 // messages.
78
79 // A few events we handle (kindred to messages), and used to profile actions.
80 VALUE_TO_NUMBER_AND_NAME(kTaskRunEvent)
81 VALUE_TO_NUMBER_AND_NAME(kTimerEvent)
82
83 {-1, NULL} // The list must be null terminated, per API to histogram.
84};
85
86bool enable_histogrammer_ = false;
87
[email protected]61c86c62011-08-02 16:11:1688MessageLoop::MessagePumpFactory* message_pump_for_ui_factory_ = NULL;
89
[email protected]5097dc82010-07-15 17:23:2390} // namespace
initial.commitd7cae122008-07-26 21:49:3891
92//------------------------------------------------------------------------------
93
[email protected]fc7fb6e2008-08-16 03:09:0594#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:3895
initial.commitd7cae122008-07-26 21:49:3896// Upon a SEH exception in this thread, it restores the original unhandled
97// exception filter.
98static int SEHFilter(LPTOP_LEVEL_EXCEPTION_FILTER old_filter) {
99 ::SetUnhandledExceptionFilter(old_filter);
100 return EXCEPTION_CONTINUE_SEARCH;
101}
102
103// Retrieves a pointer to the current unhandled exception filter. There
104// is no standalone getter method.
105static LPTOP_LEVEL_EXCEPTION_FILTER GetTopSEHFilter() {
106 LPTOP_LEVEL_EXCEPTION_FILTER top_filter = NULL;
107 top_filter = ::SetUnhandledExceptionFilter(0);
108 ::SetUnhandledExceptionFilter(top_filter);
109 return top_filter;
110}
111
[email protected]fc7fb6e2008-08-16 03:09:05112#endif // defined(OS_WIN)
113
initial.commitd7cae122008-07-26 21:49:38114//------------------------------------------------------------------------------
115
[email protected]3a3d47472010-07-15 21:03:54116MessageLoop::TaskObserver::TaskObserver() {
117}
118
119MessageLoop::TaskObserver::~TaskObserver() {
120}
121
122MessageLoop::DestructionObserver::~DestructionObserver() {
123}
124
125//------------------------------------------------------------------------------
126
[email protected]4d9bdfaf2008-08-26 05:53:57127MessageLoop::MessageLoop(Type type)
128 : type_(type),
[email protected]a5b94a92008-08-12 23:25:43129 nestable_tasks_allowed_(true),
[email protected]b16ef312008-08-19 18:36:23130 exception_restoration_(false),
[email protected]81ce9f3b2011-04-05 04:48:53131 message_histogram_(NULL),
[email protected]752578562008-09-07 08:08:29132 state_(NULL),
[email protected]b224f792011-04-20 16:02:23133 should_leak_tasks_(true),
[email protected]2ec01fe2011-03-24 03:40:28134#ifdef OS_WIN
135 os_modal_loop_(false),
136#endif // OS_WIN
[email protected]752578562008-09-07 08:08:29137 next_sequence_num_(0) {
[email protected]f886b7bf2008-09-10 10:54:06138 DCHECK(!current()) << "should only have one message loop per thread";
139 lazy_tls_ptr.Pointer()->Set(this);
[email protected]4d9bdfaf2008-08-26 05:53:57140
[email protected]edd685f2011-08-15 20:33:46141 message_loop_proxy_ = new base::MessageLoopProxyImpl();
142
[email protected]e6e55fb2010-04-15 01:04:29143// TODO(rvargas): Get rid of the OS guards.
[email protected]fc7fb6e2008-08-16 03:09:05144#if defined(OS_WIN)
[email protected]e6e55fb2010-04-15 01:04:29145#define MESSAGE_PUMP_UI new base::MessagePumpForUI()
146#define MESSAGE_PUMP_IO new base::MessagePumpForIO()
147#elif defined(OS_MACOSX)
148#define MESSAGE_PUMP_UI base::MessagePumpMac::Create()
149#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
[email protected]61c86c62011-08-02 16:11:16150#elif defined(OS_ANDROID)
151#define MESSAGE_PUMP_UI new base::MessagePumpForUI()
152#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
[email protected]4076d2f2011-08-11 18:20:22153#elif defined(USE_WAYLAND)
154#define MESSAGE_PUMP_UI new base::MessagePumpWayland()
155#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
[email protected]69c88e12011-11-23 02:07:45156#elif defined(USE_AURA)
[email protected]2047ef42011-06-24 20:10:25157#define MESSAGE_PUMP_UI new base::MessagePumpX()
[email protected]71ad9c6f2010-10-22 16:17:47158#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
[email protected]5cffdfd2010-12-01 08:45:51159#elif defined(OS_NACL)
160// Currently NaCl doesn't have a UI or an IO MessageLoop.
161// TODO(abarth): Figure out if we need these.
162#define MESSAGE_PUMP_UI NULL
163#define MESSAGE_PUMP_IO NULL
[email protected]e6e55fb2010-04-15 01:04:29164#elif defined(OS_POSIX) // POSIX but not MACOSX.
[email protected]2047ef42011-06-24 20:10:25165#define MESSAGE_PUMP_UI new base::MessagePumpGtk()
[email protected]e6e55fb2010-04-15 01:04:29166#define MESSAGE_PUMP_IO new base::MessagePumpLibevent()
[email protected]e43eddf12009-12-29 00:32:52167#else
[email protected]e6e55fb2010-04-15 01:04:29168#error Not implemented
[email protected]e43eddf12009-12-29 00:32:52169#endif
[email protected]e6e55fb2010-04-15 01:04:29170
171 if (type_ == TYPE_UI) {
[email protected]61c86c62011-08-02 16:11:16172 if (message_pump_for_ui_factory_)
173 pump_ = message_pump_for_ui_factory_();
174 else
175 pump_ = MESSAGE_PUMP_UI;
[email protected]8fc3a482008-10-03 16:52:59176 } else if (type_ == TYPE_IO) {
[email protected]e6e55fb2010-04-15 01:04:29177 pump_ = MESSAGE_PUMP_IO;
[email protected]36987e92008-09-18 18:46:26178 } else {
[email protected]e6e55fb2010-04-15 01:04:29179 DCHECK_EQ(TYPE_DEFAULT, type_);
[email protected]36987e92008-09-18 18:46:26180 pump_ = new base::MessagePumpDefault();
181 }
initial.commitd7cae122008-07-26 21:49:38182}
183
184MessageLoop::~MessageLoop() {
[email protected]c3bf6982010-11-10 20:28:06185 DCHECK_EQ(this, current());
[email protected]2a127252008-08-05 23:16:41186
[email protected]08de3cde2008-09-09 05:55:35187 DCHECK(!state_);
188
[email protected]001747c2008-09-10 00:37:07189 // Clean up any unprocessed tasks, but take care: deleting a task could
190 // result in the addition of more tasks (e.g., via DeleteSoon). We set a
191 // limit on the number of times we will allow a deleted task to generate more
192 // tasks. Normally, we should only pass through this loop once or twice. If
193 // we end up hitting the loop limit, then it is probably due to one task that
194 // is being stubborn. Inspect the queues to see who is left.
195 bool did_work;
196 for (int i = 0; i < 100; ++i) {
197 DeletePendingTasks();
198 ReloadWorkQueue();
199 // If we end up with empty queues, then break out of the loop.
200 did_work = DeletePendingTasks();
201 if (!did_work)
202 break;
[email protected]08de3cde2008-09-09 05:55:35203 }
[email protected]001747c2008-09-10 00:37:07204 DCHECK(!did_work);
205
[email protected]582384772010-11-30 00:25:29206 // Let interested parties have one last shot at accessing this.
207 FOR_EACH_OBSERVER(DestructionObserver, destruction_observers_,
208 WillDestroyCurrentMessageLoop());
209
[email protected]edd685f2011-08-15 20:33:46210 // Tell the message_loop_proxy that we are dying.
211 static_cast<base::MessageLoopProxyImpl*>(message_loop_proxy_.get())->
212 WillDestroyCurrentMessageLoop();
213 message_loop_proxy_ = NULL;
214
[email protected]001747c2008-09-10 00:37:07215 // OK, now make it so that no one can find us.
[email protected]2b89d22b22008-09-10 11:14:56216 lazy_tls_ptr.Pointer()->Set(NULL);
[email protected]14255a992011-05-15 19:20:49217
218#if defined(OS_WIN)
219 // If we left the high-resolution timer activated, deactivate it now.
220 // Doing this is not-critical, it is mainly to make sure we track
221 // the high resolution timer activations properly in our unit tests.
222 if (!high_resolution_timer_expiration_.is_null()) {
223 base::Time::ActivateHighResolutionTimer(false);
224 high_resolution_timer_expiration_ = base::TimeTicks();
225 }
226#endif
initial.commitd7cae122008-07-26 21:49:38227}
228
[email protected]9989c9bb2011-01-07 20:23:43229// static
230MessageLoop* MessageLoop::current() {
231 // TODO(darin): sadly, we cannot enable this yet since people call us even
232 // when they have no intention of using us.
233 // DCHECK(loop) << "Ouch, did you forget to initialize me?";
234 return lazy_tls_ptr.Pointer()->Get();
235}
236
237// static
238void MessageLoop::EnableHistogrammer(bool enable) {
239 enable_histogrammer_ = enable;
240}
241
[email protected]61c86c62011-08-02 16:11:16242// static
243void MessageLoop::InitMessagePumpForUIFactory(MessagePumpFactory* factory) {
244 DCHECK(!message_pump_for_ui_factory_);
245 message_pump_for_ui_factory_ = factory;
246}
247
[email protected]23c386b2010-09-15 22:14:36248void MessageLoop::AddDestructionObserver(
249 DestructionObserver* destruction_observer) {
[email protected]c3bf6982010-11-10 20:28:06250 DCHECK_EQ(this, current());
[email protected]23c386b2010-09-15 22:14:36251 destruction_observers_.AddObserver(destruction_observer);
[email protected]2a127252008-08-05 23:16:41252}
253
[email protected]23c386b2010-09-15 22:14:36254void MessageLoop::RemoveDestructionObserver(
255 DestructionObserver* destruction_observer) {
[email protected]c3bf6982010-11-10 20:28:06256 DCHECK_EQ(this, current());
[email protected]23c386b2010-09-15 22:14:36257 destruction_observers_.RemoveObserver(destruction_observer);
[email protected]2a127252008-08-05 23:16:41258}
259
[email protected]752578562008-09-07 08:08:29260void MessageLoop::PostTask(
261 const tracked_objects::Location& from_here, Task* task) {
[email protected]a42d4632011-10-26 21:48:00262 DCHECK(task);
[email protected]b224f792011-04-20 16:02:23263 PendingTask pending_task(
[email protected]dd1f9fe2011-11-15 23:36:30264 from_here,
[email protected]180c85e2011-07-26 18:25:16265 base::Bind(
266 &base::subtle::TaskClosureAdapter::Run,
267 new base::subtle::TaskClosureAdapter(task, &should_leak_tasks_)),
[email protected]b224f792011-04-20 16:02:23268 CalculateDelayedRuntime(0), true);
269 AddToIncomingQueue(&pending_task);
[email protected]752578562008-09-07 08:08:29270}
271
272void MessageLoop::PostDelayedTask(
[email protected]743ace42009-06-17 17:23:51273 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
[email protected]a42d4632011-10-26 21:48:00274 DCHECK(task);
[email protected]b224f792011-04-20 16:02:23275 PendingTask pending_task(
[email protected]dd1f9fe2011-11-15 23:36:30276 from_here,
[email protected]180c85e2011-07-26 18:25:16277 base::Bind(
278 &base::subtle::TaskClosureAdapter::Run,
279 new base::subtle::TaskClosureAdapter(task, &should_leak_tasks_)),
[email protected]b224f792011-04-20 16:02:23280 CalculateDelayedRuntime(delay_ms), true);
281 AddToIncomingQueue(&pending_task);
[email protected]752578562008-09-07 08:08:29282}
283
284void MessageLoop::PostNonNestableTask(
285 const tracked_objects::Location& from_here, Task* task) {
[email protected]a42d4632011-10-26 21:48:00286 DCHECK(task);
[email protected]b224f792011-04-20 16:02:23287 PendingTask pending_task(
[email protected]dd1f9fe2011-11-15 23:36:30288 from_here,
[email protected]180c85e2011-07-26 18:25:16289 base::Bind(
290 &base::subtle::TaskClosureAdapter::Run,
291 new base::subtle::TaskClosureAdapter(task, &should_leak_tasks_)),
[email protected]b224f792011-04-20 16:02:23292 CalculateDelayedRuntime(0), false);
293 AddToIncomingQueue(&pending_task);
[email protected]752578562008-09-07 08:08:29294}
295
296void MessageLoop::PostNonNestableDelayedTask(
[email protected]743ace42009-06-17 17:23:51297 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
[email protected]a42d4632011-10-26 21:48:00298 DCHECK(task);
[email protected]b224f792011-04-20 16:02:23299 PendingTask pending_task(
[email protected]dd1f9fe2011-11-15 23:36:30300 from_here,
[email protected]180c85e2011-07-26 18:25:16301 base::Bind(
302 &base::subtle::TaskClosureAdapter::Run,
303 new base::subtle::TaskClosureAdapter(task, &should_leak_tasks_)),
[email protected]b224f792011-04-20 16:02:23304 CalculateDelayedRuntime(delay_ms), false);
305 AddToIncomingQueue(&pending_task);
306}
307
308void MessageLoop::PostTask(
309 const tracked_objects::Location& from_here, const base::Closure& task) {
[email protected]a42d4632011-10-26 21:48:00310 DCHECK(!task.is_null()) << from_here.ToString();
[email protected]dd1f9fe2011-11-15 23:36:30311 PendingTask pending_task(from_here, task, CalculateDelayedRuntime(0), true);
[email protected]b224f792011-04-20 16:02:23312 AddToIncomingQueue(&pending_task);
313}
314
315void MessageLoop::PostDelayedTask(
316 const tracked_objects::Location& from_here, const base::Closure& task,
317 int64 delay_ms) {
[email protected]a42d4632011-10-26 21:48:00318 DCHECK(!task.is_null()) << from_here.ToString();
[email protected]dd1f9fe2011-11-15 23:36:30319 PendingTask pending_task(from_here, task,
[email protected]b224f792011-04-20 16:02:23320 CalculateDelayedRuntime(delay_ms), true);
321 AddToIncomingQueue(&pending_task);
322}
323
324void MessageLoop::PostNonNestableTask(
325 const tracked_objects::Location& from_here, const base::Closure& task) {
[email protected]a42d4632011-10-26 21:48:00326 DCHECK(!task.is_null()) << from_here.ToString();
[email protected]dd1f9fe2011-11-15 23:36:30327 PendingTask pending_task(from_here, task, CalculateDelayedRuntime(0), false);
[email protected]b224f792011-04-20 16:02:23328 AddToIncomingQueue(&pending_task);
329}
330
331void MessageLoop::PostNonNestableDelayedTask(
332 const tracked_objects::Location& from_here, const base::Closure& task,
333 int64 delay_ms) {
[email protected]a42d4632011-10-26 21:48:00334 DCHECK(!task.is_null()) << from_here.ToString();
[email protected]dd1f9fe2011-11-15 23:36:30335 PendingTask pending_task(from_here, task,
[email protected]b224f792011-04-20 16:02:23336 CalculateDelayedRuntime(delay_ms), false);
337 AddToIncomingQueue(&pending_task);
[email protected]752578562008-09-07 08:08:29338}
339
[email protected]9989c9bb2011-01-07 20:23:43340void MessageLoop::Run() {
341 AutoRunState save_state(this);
342 RunHandler();
343}
[email protected]9bcbf472008-08-30 00:22:48344
[email protected]9989c9bb2011-01-07 20:23:43345void MessageLoop::RunAllPending() {
346 AutoRunState save_state(this);
347 state_->quit_received = true; // Means run until we would otherwise block.
348 RunHandler();
349}
[email protected]9bcbf472008-08-30 00:22:48350
[email protected]9989c9bb2011-01-07 20:23:43351void MessageLoop::Quit() {
352 DCHECK_EQ(this, current());
353 if (state_) {
354 state_->quit_received = true;
[email protected]9bcbf472008-08-30 00:22:48355 } else {
[email protected]9989c9bb2011-01-07 20:23:43356 NOTREACHED() << "Must be inside Run to call Quit";
[email protected]9bcbf472008-08-30 00:22:48357 }
[email protected]9989c9bb2011-01-07 20:23:43358}
[email protected]9bcbf472008-08-30 00:22:48359
[email protected]9989c9bb2011-01-07 20:23:43360void MessageLoop::QuitNow() {
361 DCHECK_EQ(this, current());
362 if (state_) {
363 pump_->Quit();
364 } else {
365 NOTREACHED() << "Must be inside Run to call Quit";
[email protected]57f030a2010-06-29 04:58:15366 }
initial.commitd7cae122008-07-26 21:49:38367}
368
[email protected]51718592011-10-21 06:21:57369static void QuitCurrent() {
370 MessageLoop::current()->Quit();
371}
372
[email protected]8c6517e52011-10-17 01:20:36373// static
374base::Closure MessageLoop::QuitClosure() {
[email protected]51718592011-10-21 06:21:57375 return base::Bind(&QuitCurrent);
[email protected]8c6517e52011-10-17 01:20:36376}
377
initial.commitd7cae122008-07-26 21:49:38378void MessageLoop::SetNestableTasksAllowed(bool allowed) {
[email protected]124a2bdf2008-08-09 00:14:09379 if (nestable_tasks_allowed_ != allowed) {
380 nestable_tasks_allowed_ = allowed;
381 if (!nestable_tasks_allowed_)
382 return;
383 // Start the native pump if we are not already pumping.
[email protected]fc7fb6e2008-08-16 03:09:05384 pump_->ScheduleWork();
[email protected]124a2bdf2008-08-09 00:14:09385 }
initial.commitd7cae122008-07-26 21:49:38386}
387
388bool MessageLoop::NestableTasksAllowed() const {
389 return nestable_tasks_allowed_;
390}
391
[email protected]b5f95102009-07-01 19:53:59392bool MessageLoop::IsNested() {
393 return state_->run_depth > 1;
394}
395
[email protected]9989c9bb2011-01-07 20:23:43396void MessageLoop::AddTaskObserver(TaskObserver* task_observer) {
397 DCHECK_EQ(this, current());
398 task_observers_.AddObserver(task_observer);
399}
400
401void MessageLoop::RemoveTaskObserver(TaskObserver* task_observer) {
402 DCHECK_EQ(this, current());
403 task_observers_.RemoveObserver(task_observer);
404}
405
[email protected]8d6ab8f52011-01-26 00:53:48406void MessageLoop::AssertIdle() const {
407 // We only check |incoming_queue_|, since we don't want to lock |work_queue_|.
408 base::AutoLock lock(incoming_queue_lock_);
409 DCHECK(incoming_queue_.empty());
410}
411
[email protected]e6244c182011-11-01 22:06:58412bool MessageLoop::is_running() const {
413 DCHECK_EQ(this, current());
414 return state_ != NULL;
415}
416
initial.commitd7cae122008-07-26 21:49:38417//------------------------------------------------------------------------------
initial.commitd7cae122008-07-26 21:49:38418
[email protected]9989c9bb2011-01-07 20:23:43419// Runs the loop in two different SEH modes:
420// enable_SEH_restoration_ = false : any unhandled exception goes to the last
421// one that calls SetUnhandledExceptionFilter().
422// enable_SEH_restoration_ = true : any unhandled exception goes to the filter
423// that was existed before the loop was run.
424void MessageLoop::RunHandler() {
425#if defined(OS_WIN)
426 if (exception_restoration_) {
427 RunInternalInSEHFrame();
428 return;
429 }
430#endif
431
432 RunInternal();
433}
434
435#if defined(OS_WIN)
436__declspec(noinline) void MessageLoop::RunInternalInSEHFrame() {
437 LPTOP_LEVEL_EXCEPTION_FILTER current_filter = GetTopSEHFilter();
438 __try {
439 RunInternal();
440 } __except(SEHFilter(current_filter)) {
441 }
442 return;
443}
444#endif
445
446void MessageLoop::RunInternal() {
447 DCHECK_EQ(this, current());
448
449 StartHistogrammer();
450
[email protected]61c86c62011-08-02 16:11:16451#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
[email protected]9989c9bb2011-01-07 20:23:43452 if (state_->dispatcher && type() == TYPE_UI) {
453 static_cast<base::MessagePumpForUI*>(pump_.get())->
454 RunWithDispatcher(this, state_->dispatcher);
455 return;
456 }
457#endif
458
459 pump_->Run(this);
460}
461
462bool MessageLoop::ProcessNextDelayedNonNestableTask() {
463 if (state_->run_depth != 1)
464 return false;
465
466 if (deferred_non_nestable_work_queue_.empty())
467 return false;
468
[email protected]b224f792011-04-20 16:02:23469 PendingTask pending_task = deferred_non_nestable_work_queue_.front();
[email protected]9989c9bb2011-01-07 20:23:43470 deferred_non_nestable_work_queue_.pop();
471
[email protected]b224f792011-04-20 16:02:23472 RunTask(pending_task);
[email protected]9989c9bb2011-01-07 20:23:43473 return true;
474}
475
[email protected]b224f792011-04-20 16:02:23476void MessageLoop::RunTask(const PendingTask& pending_task) {
[email protected]19d8a902011-10-03 17:51:25477 UNSHIPPED_TRACE_EVENT2("task", "MessageLoop::RunTask",
478 "src_file", pending_task.posted_from.file_name(),
479 "src_func", pending_task.posted_from.function_name());
initial.commitd7cae122008-07-26 21:49:38480 DCHECK(nestable_tasks_allowed_);
481 // Execute the task and assume the worst: It is probably not reentrant.
482 nestable_tasks_allowed_ = false;
[email protected]752578562008-09-07 08:08:29483
[email protected]fcb30f7b2011-05-19 22:28:25484 // Before running the task, store the program counter where it was posted
485 // and deliberately alias it to ensure it is on the stack if the task
486 // crashes. Be careful not to assume that the variable itself will have the
487 // expected value when displayed by the optimizer in an optimized build.
488 // Look at a memory dump of the stack.
[email protected]19d8a902011-10-03 17:51:25489 const void* program_counter =
490 pending_task.posted_from.program_counter();
[email protected]fcb30f7b2011-05-19 22:28:25491 base::debug::Alias(&program_counter);
492
[email protected]752578562008-09-07 08:08:29493 HistogramEvent(kTaskRunEvent);
[email protected]84b57952011-10-15 23:52:45494
[email protected]dda97682011-11-14 05:24:07495 tracked_objects::TrackedTime start_time =
496 tracked_objects::ThreadData::NowForStartOfRun();
[email protected]84b57952011-10-15 23:52:45497
[email protected]9cfb89a2010-06-09 21:20:41498 FOR_EACH_OBSERVER(TaskObserver, task_observers_,
[email protected]b224f792011-04-20 16:02:23499 WillProcessTask(pending_task.time_posted));
500 pending_task.task.Run();
501 FOR_EACH_OBSERVER(TaskObserver, task_observers_,
502 DidProcessTask(pending_task.time_posted));
[email protected]b2a9bbd2011-10-31 22:36:21503
504 tracked_objects::ThreadData::TallyRunOnNamedThreadIfTracking(pending_task,
[email protected]dda97682011-11-14 05:24:07505 start_time, tracked_objects::ThreadData::NowForEndOfRun());
[email protected]752578562008-09-07 08:08:29506
507 nestable_tasks_allowed_ = true;
initial.commitd7cae122008-07-26 21:49:38508}
509
[email protected]84b57952011-10-15 23:52:45510bool MessageLoop::DeferOrRunPendingTask(const PendingTask& pending_task) {
[email protected]752578562008-09-07 08:08:29511 if (pending_task.nestable || state_->run_depth == 1) {
[email protected]b224f792011-04-20 16:02:23512 RunTask(pending_task);
[email protected]752578562008-09-07 08:08:29513 // Show that we ran a task (Note: a new one might arrive as a
514 // consequence!).
515 return true;
516 }
517
518 // We couldn't run the task now because we're in a nested message loop
519 // and the task isn't nestable.
520 deferred_non_nestable_work_queue_.push(pending_task);
521 return false;
initial.commitd7cae122008-07-26 21:49:38522}
523
[email protected]001747c2008-09-10 00:37:07524void MessageLoop::AddToDelayedWorkQueue(const PendingTask& pending_task) {
525 // Move to the delayed work queue. Initialize the sequence number
526 // before inserting into the delayed_work_queue_. The sequence number
527 // is used to faciliate FIFO sorting when two tasks have the same
528 // delayed_run_time value.
529 PendingTask new_pending_task(pending_task);
530 new_pending_task.sequence_num = next_sequence_num_++;
531 delayed_work_queue_.push(new_pending_task);
532}
533
initial.commitd7cae122008-07-26 21:49:38534void MessageLoop::ReloadWorkQueue() {
535 // We can improve performance of our loading tasks from incoming_queue_ to
[email protected]fc7fb6e2008-08-16 03:09:05536 // work_queue_ by waiting until the last minute (work_queue_ is empty) to
537 // load. That reduces the number of locks-per-task significantly when our
[email protected]752578562008-09-07 08:08:29538 // queues get large.
539 if (!work_queue_.empty())
initial.commitd7cae122008-07-26 21:49:38540 return; // Wait till we *really* need to lock and load.
541
542 // Acquire all we can from the inter-thread queue with one lock acquisition.
initial.commitd7cae122008-07-26 21:49:38543 {
[email protected]20305ec2011-01-21 04:55:52544 base::AutoLock lock(incoming_queue_lock_);
[email protected]752578562008-09-07 08:08:29545 if (incoming_queue_.empty())
initial.commitd7cae122008-07-26 21:49:38546 return;
[email protected]b2f0ea12009-09-02 20:05:21547 incoming_queue_.Swap(&work_queue_); // Constant time
[email protected]752578562008-09-07 08:08:29548 DCHECK(incoming_queue_.empty());
initial.commitd7cae122008-07-26 21:49:38549 }
550}
551
[email protected]001747c2008-09-10 00:37:07552bool MessageLoop::DeletePendingTasks() {
553 bool did_work = !work_queue_.empty();
[email protected]b224f792011-04-20 16:02:23554 // TODO(darin): Delete all tasks once it is safe to do so.
[email protected]64e95e12011-08-17 17:41:02555 // Until it is totally safe, just do it when running Valgrind.
[email protected]b224f792011-04-20 16:02:23556 //
557 // See http://crbug.com/61131
558 //
[email protected]64e95e12011-08-17 17:41:02559#if defined(USE_HEAPCHECKER)
[email protected]b224f792011-04-20 16:02:23560 should_leak_tasks_ = false;
561#else
562 if (RunningOnValgrind())
563 should_leak_tasks_ = false;
564#endif // defined(OS_POSIX)
[email protected]001747c2008-09-10 00:37:07565 while (!work_queue_.empty()) {
566 PendingTask pending_task = work_queue_.front();
567 work_queue_.pop();
568 if (!pending_task.delayed_run_time.is_null()) {
569 // We want to delete delayed tasks in the same order in which they would
570 // normally be deleted in case of any funny dependencies between delayed
571 // tasks.
572 AddToDelayedWorkQueue(pending_task);
[email protected]001747c2008-09-10 00:37:07573 }
initial.commitd7cae122008-07-26 21:49:38574 }
[email protected]001747c2008-09-10 00:37:07575 did_work |= !deferred_non_nestable_work_queue_.empty();
576 while (!deferred_non_nestable_work_queue_.empty()) {
[email protected]8df21d32009-03-11 19:53:50577 deferred_non_nestable_work_queue_.pop();
initial.commitd7cae122008-07-26 21:49:38578 }
[email protected]001747c2008-09-10 00:37:07579 did_work |= !delayed_work_queue_.empty();
[email protected]b224f792011-04-20 16:02:23580
581 // Historically, we always delete the task regardless of valgrind status. It's
582 // not completely clear why we want to leak them in the loops above. This
583 // code is replicating legacy behavior, and should not be considered
584 // absolutely "correct" behavior. See TODO above about deleting all tasks
585 // when it's safe.
586 should_leak_tasks_ = false;
[email protected]001747c2008-09-10 00:37:07587 while (!delayed_work_queue_.empty()) {
[email protected]001747c2008-09-10 00:37:07588 delayed_work_queue_.pop();
[email protected]001747c2008-09-10 00:37:07589 }
[email protected]b224f792011-04-20 16:02:23590 should_leak_tasks_ = true;
[email protected]001747c2008-09-10 00:37:07591 return did_work;
initial.commitd7cae122008-07-26 21:49:38592}
593
[email protected]b224f792011-04-20 16:02:23594TimeTicks MessageLoop::CalculateDelayedRuntime(int64 delay_ms) {
595 TimeTicks delayed_run_time;
[email protected]9989c9bb2011-01-07 20:23:43596 if (delay_ms > 0) {
[email protected]b224f792011-04-20 16:02:23597 delayed_run_time =
[email protected]9989c9bb2011-01-07 20:23:43598 TimeTicks::Now() + TimeDelta::FromMilliseconds(delay_ms);
599
600#if defined(OS_WIN)
601 if (high_resolution_timer_expiration_.is_null()) {
602 // Windows timers are granular to 15.6ms. If we only set high-res
603 // timers for those under 15.6ms, then a 18ms timer ticks at ~32ms,
604 // which as a percentage is pretty inaccurate. So enable high
605 // res timers for any timer which is within 2x of the granularity.
606 // This is a tradeoff between accuracy and power management.
607 bool needs_high_res_timers =
608 delay_ms < (2 * base::Time::kMinLowResolutionThresholdMs);
609 if (needs_high_res_timers) {
[email protected]14255a992011-05-15 19:20:49610 if (base::Time::ActivateHighResolutionTimer(true)) {
611 high_resolution_timer_expiration_ = TimeTicks::Now() +
612 TimeDelta::FromMilliseconds(kHighResolutionTimerModeLeaseTimeMs);
613 }
[email protected]9989c9bb2011-01-07 20:23:43614 }
615 }
616#endif
617 } else {
618 DCHECK_EQ(delay_ms, 0) << "delay should not be negative";
619 }
620
621#if defined(OS_WIN)
622 if (!high_resolution_timer_expiration_.is_null()) {
623 if (TimeTicks::Now() > high_resolution_timer_expiration_) {
624 base::Time::ActivateHighResolutionTimer(false);
625 high_resolution_timer_expiration_ = TimeTicks();
626 }
627 }
628#endif
629
[email protected]b224f792011-04-20 16:02:23630 return delayed_run_time;
631}
632
633// Possibly called on a background thread!
634void MessageLoop::AddToIncomingQueue(PendingTask* pending_task) {
[email protected]9989c9bb2011-01-07 20:23:43635 // Warning: Don't try to short-circuit, and handle this thread's tasks more
636 // directly, as it could starve handling of foreign threads. Put every task
637 // into this queue.
638
639 scoped_refptr<base::MessagePump> pump;
640 {
[email protected]20305ec2011-01-21 04:55:52641 base::AutoLock locked(incoming_queue_lock_);
[email protected]9989c9bb2011-01-07 20:23:43642
643 bool was_empty = incoming_queue_.empty();
[email protected]b224f792011-04-20 16:02:23644 incoming_queue_.push(*pending_task);
645 pending_task->task.Reset();
[email protected]9989c9bb2011-01-07 20:23:43646 if (!was_empty)
647 return; // Someone else should have started the sub-pump.
648
649 pump = pump_;
650 }
651 // Since the incoming_queue_ may contain a task that destroys this message
652 // loop, we cannot exit incoming_queue_lock_ until we are done with |this|.
653 // We use a stack-based reference to the message pump so that we can call
654 // ScheduleWork outside of incoming_queue_lock_.
655
656 pump->ScheduleWork();
657}
658
659//------------------------------------------------------------------------------
660// Method and data for histogramming events and actions taken by each instance
661// on each thread.
662
663void MessageLoop::StartHistogrammer() {
[email protected]81ce9f3b2011-04-05 04:48:53664 if (enable_histogrammer_ && !message_histogram_
[email protected]9989c9bb2011-01-07 20:23:43665 && base::StatisticsRecorder::IsActive()) {
666 DCHECK(!thread_name_.empty());
667 message_histogram_ = base::LinearHistogram::FactoryGet(
668 "MsgLoop:" + thread_name_,
669 kLeastNonZeroMessageId, kMaxMessageId,
670 kNumberOfDistinctMessagesDisplayed,
671 message_histogram_->kHexRangePrintingFlag);
672 message_histogram_->SetRangeDescriptions(event_descriptions_);
673 }
674}
675
676void MessageLoop::HistogramEvent(int event) {
[email protected]81ce9f3b2011-04-05 04:48:53677 if (message_histogram_)
[email protected]9989c9bb2011-01-07 20:23:43678 message_histogram_->Add(event);
679}
680
[email protected]fc7fb6e2008-08-16 03:09:05681bool MessageLoop::DoWork() {
[email protected]752578562008-09-07 08:08:29682 if (!nestable_tasks_allowed_) {
683 // Task can't be executed right now.
684 return false;
685 }
686
687 for (;;) {
688 ReloadWorkQueue();
689 if (work_queue_.empty())
690 break;
691
692 // Execute oldest task.
693 do {
694 PendingTask pending_task = work_queue_.front();
695 work_queue_.pop();
696 if (!pending_task.delayed_run_time.is_null()) {
[email protected]001747c2008-09-10 00:37:07697 AddToDelayedWorkQueue(pending_task);
[email protected]b224f792011-04-20 16:02:23698 // If we changed the topmost task, then it is time to reschedule.
699 if (delayed_work_queue_.top().task.Equals(pending_task.task))
[email protected]752578562008-09-07 08:08:29700 pump_->ScheduleDelayedWork(pending_task.delayed_run_time);
701 } else {
702 if (DeferOrRunPendingTask(pending_task))
703 return true;
704 }
705 } while (!work_queue_.empty());
706 }
707
708 // Nothing happened.
709 return false;
[email protected]fc7fb6e2008-08-16 03:09:05710}
711
[email protected]b224f792011-04-20 16:02:23712bool MessageLoop::DoDelayedWork(TimeTicks* next_delayed_work_time) {
[email protected]11f76c72010-10-21 06:32:33713 if (!nestable_tasks_allowed_ || delayed_work_queue_.empty()) {
[email protected]7e7fab42010-11-06 22:23:29714 recent_time_ = *next_delayed_work_time = TimeTicks();
[email protected]752578562008-09-07 08:08:29715 return false;
716 }
[email protected]1d2eb132008-12-08 17:36:06717
[email protected]7e7fab42010-11-06 22:23:29718 // When we "fall behind," there will be a lot of tasks in the delayed work
[email protected]a8f7d3d2010-11-04 23:23:42719 // queue that are ready to run. To increase efficiency when we fall behind,
720 // we will only call Time::Now() intermittently, and then process all tasks
721 // that are ready to run before calling it again. As a result, the more we
722 // fall behind (and have a lot of ready-to-run delayed tasks), the more
723 // efficient we'll be at handling the tasks.
[email protected]7e7fab42010-11-06 22:23:29724
725 TimeTicks next_run_time = delayed_work_queue_.top().delayed_run_time;
[email protected]a8f7d3d2010-11-04 23:23:42726 if (next_run_time > recent_time_) {
[email protected]7e7fab42010-11-06 22:23:29727 recent_time_ = TimeTicks::Now(); // Get a better view of Now();
[email protected]a8f7d3d2010-11-04 23:23:42728 if (next_run_time > recent_time_) {
729 *next_delayed_work_time = next_run_time;
730 return false;
731 }
[email protected]752578562008-09-07 08:08:29732 }
[email protected]fc7fb6e2008-08-16 03:09:05733
[email protected]11f76c72010-10-21 06:32:33734 PendingTask pending_task = delayed_work_queue_.top();
735 delayed_work_queue_.pop();
[email protected]1d2eb132008-12-08 17:36:06736
[email protected]11f76c72010-10-21 06:32:33737 if (!delayed_work_queue_.empty())
[email protected]752578562008-09-07 08:08:29738 *next_delayed_work_time = delayed_work_queue_.top().delayed_run_time;
[email protected]fc7fb6e2008-08-16 03:09:05739
[email protected]752578562008-09-07 08:08:29740 return DeferOrRunPendingTask(pending_task);
[email protected]fc7fb6e2008-08-16 03:09:05741}
742
743bool MessageLoop::DoIdleWork() {
744 if (ProcessNextDelayedNonNestableTask())
745 return true;
746
747 if (state_->quit_received)
748 pump_->Quit();
749
750 return false;
751}
752
753//------------------------------------------------------------------------------
754// MessageLoop::AutoRunState
755
756MessageLoop::AutoRunState::AutoRunState(MessageLoop* loop) : loop_(loop) {
757 // Make the loop reference us.
758 previous_state_ = loop_->state_;
759 if (previous_state_) {
760 run_depth = previous_state_->run_depth + 1;
[email protected]ea15e982008-08-15 07:31:20761 } else {
[email protected]fc7fb6e2008-08-16 03:09:05762 run_depth = 1;
[email protected]ea15e982008-08-15 07:31:20763 }
[email protected]fc7fb6e2008-08-16 03:09:05764 loop_->state_ = this;
765
766 // Initialize the other fields:
767 quit_received = false;
[email protected]61c86c62011-08-02 16:11:16768#if !defined(OS_MACOSX) && !defined(OS_ANDROID)
[email protected]fc7fb6e2008-08-16 03:09:05769 dispatcher = NULL;
770#endif
771}
772
773MessageLoop::AutoRunState::~AutoRunState() {
774 loop_->state_ = previous_state_;
[email protected]a5b94a92008-08-12 23:25:43775}
776
initial.commitd7cae122008-07-26 21:49:38777//------------------------------------------------------------------------------
[email protected]4d9bdfaf2008-08-26 05:53:57778// MessageLoopForUI
779
780#if defined(OS_WIN)
[email protected]4d9bdfaf2008-08-26 05:53:57781void MessageLoopForUI::DidProcessMessage(const MSG& message) {
782 pump_win()->DidProcessMessage(message);
783}
[email protected]4d9bdfaf2008-08-26 05:53:57784#endif // defined(OS_WIN)
785
[email protected]61c86c62011-08-02 16:11:16786#if defined(OS_ANDROID)
787void MessageLoopForUI::Start() {
788 // No Histogram support for UI message loop as it is managed by Java side
789 static_cast<base::MessagePumpForUI*>(pump_.get())->Start(this);
790}
791#endif
792
793#if !defined(OS_MACOSX) && !defined(OS_NACL) && !defined(OS_ANDROID)
[email protected]148d1052009-07-31 22:53:37794void MessageLoopForUI::AddObserver(Observer* observer) {
795 pump_ui()->AddObserver(observer);
796}
797
798void MessageLoopForUI::RemoveObserver(Observer* observer) {
799 pump_ui()->RemoveObserver(observer);
800}
801
[email protected]4d6285312011-10-24 07:19:51802void MessageLoopForUI::RunWithDispatcher(Dispatcher* dispatcher) {
[email protected]148d1052009-07-31 22:53:37803 AutoRunState save_state(this);
804 state_->dispatcher = dispatcher;
805 RunHandler();
806}
[email protected]35e9b66a2011-10-06 18:19:21807
808void MessageLoopForUI::RunAllPendingWithDispatcher(Dispatcher* dispatcher) {
809 AutoRunState save_state(this);
810 state_->dispatcher = dispatcher;
811 state_->quit_received = true; // Means run until we would otherwise block.
812 RunHandler();
813}
814
[email protected]61c86c62011-08-02 16:11:16815#endif // !defined(OS_MACOSX) && !defined(OS_NACL) && !defined(OS_ANDROID)
[email protected]148d1052009-07-31 22:53:37816
[email protected]4d9bdfaf2008-08-26 05:53:57817//------------------------------------------------------------------------------
818// MessageLoopForIO
819
820#if defined(OS_WIN)
821
[email protected]32cda29d2008-10-09 23:58:43822void MessageLoopForIO::RegisterIOHandler(HANDLE file, IOHandler* handler) {
823 pump_io()->RegisterIOHandler(file, handler);
824}
825
[email protected]17b89142008-11-07 21:52:15826bool MessageLoopForIO::WaitForIOCompletion(DWORD timeout, IOHandler* filter) {
827 return pump_io()->WaitForIOCompletion(timeout, filter);
[email protected]32cda29d2008-10-09 23:58:43828}
829
[email protected]5cffdfd2010-12-01 08:45:51830#elif defined(OS_POSIX) && !defined(OS_NACL)
[email protected]36987e92008-09-18 18:46:26831
[email protected]e45e6c02008-12-15 22:02:17832bool MessageLoopForIO::WatchFileDescriptor(int fd,
833 bool persistent,
834 Mode mode,
835 FileDescriptorWatcher *controller,
836 Watcher *delegate) {
837 return pump_libevent()->WatchFileDescriptor(
838 fd,
839 persistent,
840 static_cast<base::MessagePumpLibevent::Mode>(mode),
841 controller,
842 delegate);
[email protected]36987e92008-09-18 18:46:26843}
844
[email protected]36987e92008-09-18 18:46:26845#endif