blob: 424cb70938d058a90288ceb5314bf73c8ae3200c [file] [log] [blame]
[email protected]c3bc1ff2012-02-09 18:51:351// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]96c9ea12008-09-23 21:08:282// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// The basis for all native run loops on the Mac is the CFRunLoop. It can be
6// used directly, it can be used as the driving force behind the similar
7// Foundation NSRunLoop, and it can be used to implement higher-level event
8// loops such as the NSApplication event loop.
9//
10// This file introduces a basic CFRunLoop-based implementation of the
11// MessagePump interface called CFRunLoopBase. CFRunLoopBase contains all
12// of the machinery necessary to dispatch events to a delegate, but does not
13// implement the specific run loop. Concrete subclasses must provide their
14// own DoRun and Quit implementations.
15//
16// A concrete subclass that just runs a CFRunLoop loop is provided in
17// MessagePumpCFRunLoop. For an NSRunLoop, the similar MessagePumpNSRunLoop
18// is provided.
19//
20// For the application's event loop, an implementation based on AppKit's
21// NSApplication event system is provided in MessagePumpNSApplication.
22//
23// Typically, MessagePumpNSApplication only makes sense on a Cocoa
24// application's main thread. If a CFRunLoop-based message pump is needed on
25// any other thread, one of the other concrete subclasses is preferrable.
26// MessagePumpMac::Create is defined, which returns a new NSApplication-based
27// or NSRunLoop-based MessagePump subclass depending on which thread it is
28// called on.
29
[email protected]59e69e742013-06-18 20:27:5230#ifndef BASE_MESSAGE_LOOP_MESSAGE_PUMP_MAC_H_
31#define BASE_MESSAGE_LOOP_MESSAGE_PUMP_MAC_H_
[email protected]96c9ea12008-09-23 21:08:2832
[email protected]59e69e742013-06-18 20:27:5233#include "base/message_loop/message_pump.h"
[email protected]96c9ea12008-09-23 21:08:2834
[email protected]54aa4f12013-07-22 22:24:1335#include "base/basictypes.h"
36
[email protected]96c9ea12008-09-23 21:08:2837#include <CoreFoundation/CoreFoundation.h>
38
[email protected]370d7cb2013-09-05 14:53:1239#include "base/memory/weak_ptr.h"
40
[email protected]a3668802010-12-18 01:18:2941#if !defined(__OBJC__)
[email protected]67373012009-11-05 22:10:2142class NSAutoreleasePool;
[email protected]a3668802010-12-18 01:18:2943#else // !defined(__OBJC__)
[email protected]feb727e2012-07-13 11:02:5744#if defined(OS_IOS)
45#import <Foundation/Foundation.h>
46#else
[email protected]a3668802010-12-18 01:18:2947#import <AppKit/AppKit.h>
48
49// Clients must subclass NSApplication and implement this protocol if they use
50// MessagePumpMac.
51@protocol CrAppProtocol
52// Must return true if -[NSApplication sendEvent:] is currently on the stack.
53// See the comment for |CreateAutoreleasePool()| in the cc file for why this is
54// necessary.
55- (BOOL)isHandlingSendEvent;
56@end
[email protected]feb727e2012-07-13 11:02:5757#endif // !defined(OS_IOS)
[email protected]a3668802010-12-18 01:18:2958#endif // !defined(__OBJC__)
[email protected]67373012009-11-05 22:10:2159
[email protected]96c9ea12008-09-23 21:08:2860namespace base {
61
[email protected]370d7cb2013-09-05 14:53:1262class MessagePumpInstrumentation;
[email protected]feb727e2012-07-13 11:02:5763class RunLoop;
[email protected]7e7fab42010-11-06 22:23:2964class TimeTicks;
[email protected]7b38a2f2009-03-16 20:02:4265
[email protected]96c9ea12008-09-23 21:08:2866class MessagePumpCFRunLoopBase : public MessagePump {
[email protected]67373012009-11-05 22:10:2167 // Needs access to CreateAutoreleasePool.
68 friend class MessagePumpScopedAutoreleasePool;
[email protected]96c9ea12008-09-23 21:08:2869 public:
70 MessagePumpCFRunLoopBase();
[email protected]54aa4f12013-07-22 22:24:1371 virtual ~MessagePumpCFRunLoopBase();
[email protected]96c9ea12008-09-23 21:08:2872
73 // Subclasses should implement the work they need to do in MessagePump::Run
74 // in the DoRun method. MessagePumpCFRunLoopBase::Run calls DoRun directly.
75 // This arrangement is used because MessagePumpCFRunLoopBase needs to set
76 // up and tear down things before and after the "meat" of DoRun.
[email protected]b1719462011-11-16 00:08:0877 virtual void Run(Delegate* delegate) OVERRIDE;
[email protected]96c9ea12008-09-23 21:08:2878 virtual void DoRun(Delegate* delegate) = 0;
79
[email protected]b1719462011-11-16 00:08:0880 virtual void ScheduleWork() OVERRIDE;
81 virtual void ScheduleDelayedWork(const TimeTicks& delayed_work_time) OVERRIDE;
[email protected]96c9ea12008-09-23 21:08:2882
83 protected:
[email protected]8670fe5e2009-10-22 01:47:4984 // Accessors for private data members to be used by subclasses.
85 CFRunLoopRef run_loop() const { return run_loop_; }
86 int nesting_level() const { return nesting_level_; }
87 int run_nesting_level() const { return run_nesting_level_; }
[email protected]c83d0102009-10-13 13:51:1988
[email protected]feb727e2012-07-13 11:02:5789 // Sets this pump's delegate. Signals the appropriate sources if
90 // |delegateless_work_| is true. |delegate| can be NULL.
91 void SetDelegate(Delegate* delegate);
92
[email protected]67373012009-11-05 22:10:2193 // Return an autorelease pool to wrap around any work being performed.
94 // In some cases, CreateAutoreleasePool may return nil intentionally to
95 // preventing an autorelease pool from being created, allowing any
96 // objects autoreleased by work to fall into the current autorelease pool.
97 virtual NSAutoreleasePool* CreateAutoreleasePool();
98
[email protected]370d7cb2013-09-05 14:53:1299 // Enables instrumentation of the MessagePump. See MessagePumpInstrumentation
100 // in the implementation for details.
101 void EnableInstrumentation();
102 WeakPtr<MessagePumpInstrumentation> instrumentation_;
103
[email protected]96c9ea12008-09-23 21:08:28104 private:
105 // Timer callback scheduled by ScheduleDelayedWork. This does not do any
[email protected]4554c232011-02-17 19:25:04106 // work, but it signals work_source_ so that delayed work can be performed
107 // within the appropriate priority constraints.
[email protected]96c9ea12008-09-23 21:08:28108 static void RunDelayedWorkTimer(CFRunLoopTimerRef timer, void* info);
109
110 // Perform highest-priority work. This is associated with work_source_
[email protected]4554c232011-02-17 19:25:04111 // signalled by ScheduleWork or RunDelayedWorkTimer. The static method calls
112 // the instance method; the instance method returns true if it resignalled
113 // work_source_ to be called again from the loop.
[email protected]c4280a92009-06-25 19:23:11114 static void RunWorkSource(void* info);
115 bool RunWork();
[email protected]96c9ea12008-09-23 21:08:28116
[email protected]370d7cb2013-09-05 14:53:12117 // Perform idle-priority work. This is normally called by
118 // StartOrEndWaitObserver, but is also associated with idle_work_source_. When
119 // this function actually does perform idle work, it will resignal that
120 // source. The static method calls the instance method; the instance method
121 // returns true if idle work was done.
[email protected]c4280a92009-06-25 19:23:11122 static void RunIdleWorkSource(void* info);
123 bool RunIdleWork();
124
125 // Perform work that may have been deferred because it was not runnable
126 // within a nested run loop. This is associated with
[email protected]8670fe5e2009-10-22 01:47:49127 // nesting_deferred_work_source_ and is signalled by
128 // MaybeScheduleNestingDeferredWork when returning from a nested loop,
129 // so that an outer loop will be able to perform the necessary tasks if it
130 // permits nestable tasks.
[email protected]c4280a92009-06-25 19:23:11131 static void RunNestingDeferredWorkSource(void* info);
132 bool RunNestingDeferredWork();
[email protected]96c9ea12008-09-23 21:08:28133
[email protected]8670fe5e2009-10-22 01:47:49134 // Schedules possible nesting-deferred work to be processed before the run
[email protected]af87d5b02009-10-22 16:18:03135 // loop goes to sleep, exits, or begins processing sources at the top of its
136 // loop. If this function detects that a nested loop had run since the
137 // previous attempt to schedule nesting-deferred work, it will schedule a
138 // call to RunNestingDeferredWorkSource.
[email protected]8670fe5e2009-10-22 01:47:49139 void MaybeScheduleNestingDeferredWork();
140
[email protected]96c9ea12008-09-23 21:08:28141 // Observer callback responsible for performing idle-priority work, before
142 // the run loop goes to sleep. Associated with idle_work_observer_.
[email protected]370d7cb2013-09-05 14:53:12143 static void StartOrEndWaitObserver(CFRunLoopObserverRef observer,
144 CFRunLoopActivity activity, void* info);
[email protected]96c9ea12008-09-23 21:08:28145
[email protected]af87d5b02009-10-22 16:18:03146 // Observer callback called before the run loop processes any sources.
147 // Associated with pre_source_observer_.
148 static void PreSourceObserver(CFRunLoopObserverRef observer,
149 CFRunLoopActivity activity, void* info);
150
[email protected]c4280a92009-06-25 19:23:11151 // Observer callback called when the run loop starts and stops, at the
152 // beginning and end of calls to CFRunLoopRun. This is used to maintain
153 // nesting_level_. Associated with enter_exit_observer_.
154 static void EnterExitObserver(CFRunLoopObserverRef observer,
155 CFRunLoopActivity activity, void* info);
156
157 // Called by EnterExitObserver after performing maintenance on nesting_level_.
158 // This allows subclasses an opportunity to perform additional processing on
159 // the basis of run loops starting and stopping.
160 virtual void EnterExitRunLoop(CFRunLoopActivity activity);
161
[email protected]8670fe5e2009-10-22 01:47:49162 // The thread's run loop.
163 CFRunLoopRef run_loop_;
164
[email protected]c4280a92009-06-25 19:23:11165 // The timer, sources, and observers are described above alongside their
[email protected]96c9ea12008-09-23 21:08:28166 // callbacks.
167 CFRunLoopTimerRef delayed_work_timer_;
168 CFRunLoopSourceRef work_source_;
[email protected]c4280a92009-06-25 19:23:11169 CFRunLoopSourceRef idle_work_source_;
170 CFRunLoopSourceRef nesting_deferred_work_source_;
171 CFRunLoopObserverRef pre_wait_observer_;
[email protected]af87d5b02009-10-22 16:18:03172 CFRunLoopObserverRef pre_source_observer_;
[email protected]c4280a92009-06-25 19:23:11173 CFRunLoopObserverRef enter_exit_observer_;
[email protected]96c9ea12008-09-23 21:08:28174
175 // (weak) Delegate passed as an argument to the innermost Run call.
176 Delegate* delegate_;
177
[email protected]a9527c202009-10-28 14:09:31178 // The time that delayed_work_timer_ is scheduled to fire. This is tracked
179 // independently of CFRunLoopTimerGetNextFireDate(delayed_work_timer_)
180 // to be able to reset the timer properly after waking from system sleep.
181 // See PowerStateNotification.
182 CFAbsoluteTime delayed_work_fire_time_;
183
[email protected]8670fe5e2009-10-22 01:47:49184 // The recursion depth of the currently-executing CFRunLoopRun loop on the
185 // run loop's thread. 0 if no run loops are running inside of whatever scope
186 // the object was created in.
187 int nesting_level_;
188
189 // The recursion depth (calculated in the same way as nesting_level_) of the
190 // innermost executing CFRunLoopRun loop started by a call to Run.
191 int run_nesting_level_;
192
193 // The deepest (numerically highest) recursion depth encountered since the
194 // most recent attempt to run nesting-deferred work.
195 int deepest_nesting_level_;
196
[email protected]c83275b2009-07-15 19:57:38197 // "Delegateless" work flags are set when work is ready to be performed but
198 // must wait until a delegate is available to process it. This can happen
199 // when a MessagePumpCFRunLoopBase is instantiated and work arrives without
200 // any call to Run on the stack. The Run method will check for delegateless
201 // work on entry and redispatch it as needed once a delegate is available.
202 bool delegateless_work_;
[email protected]c83275b2009-07-15 19:57:38203 bool delegateless_idle_work_;
204
[email protected]96c9ea12008-09-23 21:08:28205 DISALLOW_COPY_AND_ASSIGN(MessagePumpCFRunLoopBase);
206};
207
208class MessagePumpCFRunLoop : public MessagePumpCFRunLoopBase {
209 public:
210 MessagePumpCFRunLoop();
[email protected]54aa4f12013-07-22 22:24:13211 virtual ~MessagePumpCFRunLoop();
[email protected]96c9ea12008-09-23 21:08:28212
[email protected]b1719462011-11-16 00:08:08213 virtual void DoRun(Delegate* delegate) OVERRIDE;
214 virtual void Quit() OVERRIDE;
[email protected]96c9ea12008-09-23 21:08:28215
216 private:
[email protected]b1719462011-11-16 00:08:08217 virtual void EnterExitRunLoop(CFRunLoopActivity activity) OVERRIDE;
[email protected]96c9ea12008-09-23 21:08:28218
[email protected]96c9ea12008-09-23 21:08:28219 // True if Quit is called to stop the innermost MessagePump
220 // (innermost_quittable_) but some other CFRunLoopRun loop (nesting_level_)
221 // is running inside the MessagePump's innermost Run call.
222 bool quit_pending_;
223
224 DISALLOW_COPY_AND_ASSIGN(MessagePumpCFRunLoop);
225};
226
227class MessagePumpNSRunLoop : public MessagePumpCFRunLoopBase {
228 public:
[email protected]2e471be42012-03-15 23:34:57229 BASE_EXPORT MessagePumpNSRunLoop();
[email protected]54aa4f12013-07-22 22:24:13230 virtual ~MessagePumpNSRunLoop();
[email protected]96c9ea12008-09-23 21:08:28231
[email protected]b1719462011-11-16 00:08:08232 virtual void DoRun(Delegate* delegate) OVERRIDE;
233 virtual void Quit() OVERRIDE;
[email protected]96c9ea12008-09-23 21:08:28234
235 private:
236 // A source that doesn't do anything but provide something signalable
237 // attached to the run loop. This source will be signalled when Quit
238 // is called, to cause the loop to wake up so that it can stop.
239 CFRunLoopSourceRef quit_source_;
240
241 // False after Quit is called.
242 bool keep_running_;
243
244 DISALLOW_COPY_AND_ASSIGN(MessagePumpNSRunLoop);
245};
246
[email protected]feb727e2012-07-13 11:02:57247#if defined(OS_IOS)
248// This is a fake message pump. It attaches sources to the main thread's
249// CFRunLoop, so PostTask() will work, but it is unable to drive the loop
250// directly, so calling Run() or Quit() are errors.
251class MessagePumpUIApplication : public MessagePumpCFRunLoopBase {
252 public:
253 MessagePumpUIApplication();
[email protected]54aa4f12013-07-22 22:24:13254 virtual ~MessagePumpUIApplication();
[email protected]feb727e2012-07-13 11:02:57255 virtual void DoRun(Delegate* delegate) OVERRIDE;
256 virtual void Quit() OVERRIDE;
257
258 // This message pump can not spin the main message loop directly. Instead,
259 // call |Attach()| to set up a delegate. It is an error to call |Run()|.
260 virtual void Attach(Delegate* delegate);
261
[email protected]feb727e2012-07-13 11:02:57262 private:
[email protected]59e69e742013-06-18 20:27:52263 RunLoop* run_loop_;
[email protected]feb727e2012-07-13 11:02:57264
265 DISALLOW_COPY_AND_ASSIGN(MessagePumpUIApplication);
266};
267
268#else
269
[email protected]96c9ea12008-09-23 21:08:28270class MessagePumpNSApplication : public MessagePumpCFRunLoopBase {
271 public:
272 MessagePumpNSApplication();
[email protected]54aa4f12013-07-22 22:24:13273 virtual ~MessagePumpNSApplication();
[email protected]96c9ea12008-09-23 21:08:28274
[email protected]b1719462011-11-16 00:08:08275 virtual void DoRun(Delegate* delegate) OVERRIDE;
276 virtual void Quit() OVERRIDE;
[email protected]96c9ea12008-09-23 21:08:28277
278 private:
279 // False after Quit is called.
280 bool keep_running_;
281
282 // True if DoRun is managing its own run loop as opposed to letting
283 // -[NSApplication run] handle it. The outermost run loop in the application
284 // is managed by -[NSApplication run], inner run loops are handled by a loop
285 // in DoRun.
286 bool running_own_loop_;
287
[email protected]96c9ea12008-09-23 21:08:28288 DISALLOW_COPY_AND_ASSIGN(MessagePumpNSApplication);
289};
290
[email protected]d7de57872011-12-06 23:32:43291class MessagePumpCrApplication : public MessagePumpNSApplication {
292 public:
293 MessagePumpCrApplication();
[email protected]54aa4f12013-07-22 22:24:13294 virtual ~MessagePumpCrApplication();
[email protected]d7de57872011-12-06 23:32:43295
296 protected:
297 // Returns nil if NSApp is currently in the middle of calling
298 // -sendEvent. Requires NSApp implementing CrAppProtocol.
299 virtual NSAutoreleasePool* CreateAutoreleasePool() OVERRIDE;
300
301 private:
302 DISALLOW_COPY_AND_ASSIGN(MessagePumpCrApplication);
303};
[email protected]feb727e2012-07-13 11:02:57304#endif // !defined(OS_IOS)
[email protected]d7de57872011-12-06 23:32:43305
[email protected]96c9ea12008-09-23 21:08:28306class MessagePumpMac {
307 public:
[email protected]d7de57872011-12-06 23:32:43308 // If not on the main thread, returns a new instance of
309 // MessagePumpNSRunLoop.
310 //
311 // On the main thread, if NSApp exists and conforms to
312 // CrAppProtocol, creates an instances of MessagePumpCrApplication.
313 //
314 // Otherwise creates an instance of MessagePumpNSApplication using a
315 // default NSApplication.
[email protected]96c9ea12008-09-23 21:08:28316 static MessagePump* Create();
317
[email protected]feb727e2012-07-13 11:02:57318#if !defined(OS_IOS)
[email protected]d7de57872011-12-06 23:32:43319 // If a pump is created before the required CrAppProtocol is
320 // created, the wrong MessagePump subclass could be used.
321 // UsingCrApp() returns false if the message pump was created before
322 // NSApp was initialized, or if NSApp does not implement
323 // CrAppProtocol. NSApp must be initialized before calling.
[email protected]c3bc1ff2012-02-09 18:51:35324 BASE_EXPORT static bool UsingCrApp();
[email protected]d7de57872011-12-06 23:32:43325
326 // Wrapper to query -[NSApp isHandlingSendEvent] from C++ code.
327 // Requires NSApp to implement CrAppProtocol.
[email protected]c3bc1ff2012-02-09 18:51:35328 BASE_EXPORT static bool IsHandlingSendEvent();
[email protected]feb727e2012-07-13 11:02:57329#endif // !defined(OS_IOS)
[email protected]d7de57872011-12-06 23:32:43330
[email protected]96c9ea12008-09-23 21:08:28331 private:
332 DISALLOW_IMPLICIT_CONSTRUCTORS(MessagePumpMac);
333};
334
335} // namespace base
336
[email protected]59e69e742013-06-18 20:27:52337#endif // BASE_MESSAGE_LOOP_MESSAGE_PUMP_MAC_H_