blob: 21e9f6b0ef93f45be01df6152b9687124d16fd19 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080019import android.util.Log;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.util.Printer;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080021import android.util.PrefixPrinter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022
23/**
24 * Class used to run a message loop for a thread. Threads by default do
25 * not have a message loop associated with them; to create one, call
26 * {@link #prepare} in the thread that is to run the loop, and then
27 * {@link #loop} to have it process messages until the loop is stopped.
28 *
29 * <p>Most interaction with a message loop is through the
30 * {@link Handler} class.
31 *
32 * <p>This is a typical example of the implementation of a Looper thread,
33 * using the separation of {@link #prepare} and {@link #loop} to create an
34 * initial Handler to communicate with the Looper.
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080035 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 * <pre>
37 * class LooperThread extends Thread {
38 * public Handler mHandler;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080039 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040 * public void run() {
41 * Looper.prepare();
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080042 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043 * mHandler = new Handler() {
44 * public void handleMessage(Message msg) {
45 * // process incoming messages here
46 * }
47 * };
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080048 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 * Looper.loop();
50 * }
51 * }</pre>
52 */
Jeff Brown67fc67c2013-04-01 13:00:33 -070053public final class Looper {
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080054 private static final String TAG = "Looper";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055
56 // sThreadLocal.get() will return null unless you've called prepare().
Xavier Ducrohet7f9f99ea2011-08-11 10:16:17 -070057 static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();
Jeff Brown0f85ce32012-02-16 14:41:10 -080058 private static Looper sMainLooper; // guarded by Looper.class
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059
60 final MessageQueue mQueue;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080061 final Thread mThread;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080062
Jeff Brown0f85ce32012-02-16 14:41:10 -080063 private Printer mLogging;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080064
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065 /** Initialize the current thread as a looper.
66 * This gives you a chance to create handlers that then reference
67 * this looper, before actually starting the loop. Be sure to call
68 * {@link #loop()} after calling this method, and end it by calling
69 * {@link #quit()}.
70 */
Romain Guyf9284692011-07-13 18:46:21 -070071 public static void prepare() {
Jeff Brown0f85ce32012-02-16 14:41:10 -080072 prepare(true);
73 }
74
75 private static void prepare(boolean quitAllowed) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 if (sThreadLocal.get() != null) {
77 throw new RuntimeException("Only one Looper may be created per thread");
78 }
Jeff Brown0f85ce32012-02-16 14:41:10 -080079 sThreadLocal.set(new Looper(quitAllowed));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080081
82 /**
83 * Initialize the current thread as a looper, marking it as an
84 * application's main looper. The main looper for your application
85 * is created by the Android environment, so you should never need
86 * to call this function yourself. See also: {@link #prepare()}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 */
Romain Guyf9284692011-07-13 18:46:21 -070088 public static void prepareMainLooper() {
Jeff Brown0f85ce32012-02-16 14:41:10 -080089 prepare(false);
90 synchronized (Looper.class) {
91 if (sMainLooper != null) {
92 throw new IllegalStateException("The main Looper has already been prepared.");
93 }
94 sMainLooper = myLooper();
95 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080097
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 /** Returns the application's main looper, which lives in the main thread of the application.
99 */
Jeff Brown0f85ce32012-02-16 14:41:10 -0800100 public static Looper getMainLooper() {
101 synchronized (Looper.class) {
102 return sMainLooper;
103 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 }
105
106 /**
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800107 * Run the message queue in this thread. Be sure to call
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 * {@link #quit()} to end the loop.
109 */
Romain Guyf9284692011-07-13 18:46:21 -0700110 public static void loop() {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800111 final Looper me = myLooper();
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800112 if (me == null) {
113 throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
114 }
Jeff Brown0f85ce32012-02-16 14:41:10 -0800115 final MessageQueue queue = me.mQueue;
116
Dianne Hackborne5dea752011-02-09 14:19:23 -0800117 // Make sure the identity of this thread is that of the local process,
118 // and keep track of what that identity token actually is.
119 Binder.clearCallingIdentity();
120 final long ident = Binder.clearCallingIdentity();
Jeff Brown0f85ce32012-02-16 14:41:10 -0800121
122 for (;;) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 Message msg = queue.next(); // might block
Jeff Brown0f85ce32012-02-16 14:41:10 -0800124 if (msg == null) {
125 // No message indicates that the message queue is quitting.
126 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 }
Jeff Brown0f85ce32012-02-16 14:41:10 -0800128
Jeff Brown0f85ce32012-02-16 14:41:10 -0800129 // This must be in a local variable, in case a UI event sets the logger
130 Printer logging = me.mLogging;
131 if (logging != null) {
132 logging.println(">>>>> Dispatching to " + msg.target + " " +
133 msg.callback + ": " + msg.what);
Jeff Brown0f85ce32012-02-16 14:41:10 -0800134 }
135
136 msg.target.dispatchMessage(msg);
137
138 if (logging != null) {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800139 logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
Jeff Brown0f85ce32012-02-16 14:41:10 -0800140 }
141
142 // Make sure that during the course of dispatching the
143 // identity of the thread wasn't corrupted.
144 final long newIdent = Binder.clearCallingIdentity();
145 if (ident != newIdent) {
146 Log.wtf(TAG, "Thread identity changed from 0x"
147 + Long.toHexString(ident) + " to 0x"
148 + Long.toHexString(newIdent) + " while dispatching to "
149 + msg.target.getClass().getName() + " "
150 + msg.callback + " what=" + msg.what);
151 }
152
153 msg.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 }
155 }
156
157 /**
158 * Return the Looper object associated with the current thread. Returns
159 * null if the calling thread is not associated with a Looper.
160 */
Romain Guyf9284692011-07-13 18:46:21 -0700161 public static Looper myLooper() {
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800162 return sThreadLocal.get();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 }
164
165 /**
166 * Control logging of messages as they are processed by this Looper. If
167 * enabled, a log message will be written to <var>printer</var>
168 * at the beginning and ending of each message dispatch, identifying the
169 * target Handler and message contents.
170 *
171 * @param printer A Printer object that will receive log messages, or
172 * null to disable message logging.
173 */
174 public void setMessageLogging(Printer printer) {
175 mLogging = printer;
176 }
177
178 /**
179 * Return the {@link MessageQueue} object associated with the current
180 * thread. This must be called from a thread running a Looper, or a
181 * NullPointerException will be thrown.
182 */
Romain Guyf9284692011-07-13 18:46:21 -0700183 public static MessageQueue myQueue() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 return myLooper().mQueue;
185 }
186
Jeff Brown0f85ce32012-02-16 14:41:10 -0800187 private Looper(boolean quitAllowed) {
188 mQueue = new MessageQueue(quitAllowed);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 mThread = Thread.currentThread();
190 }
191
Jeff Brown0f85ce32012-02-16 14:41:10 -0800192 /**
Jeff Brownf9e989d2013-04-04 23:04:03 -0700193 * Returns true if the current thread is this looper's thread.
194 * @hide
195 */
196 public boolean isCurrentThread() {
197 return Thread.currentThread() == mThread;
198 }
199
200 /**
Jeff Brown0f85ce32012-02-16 14:41:10 -0800201 * Quits the looper.
Jeff Brown024136f2013-04-11 19:21:32 -0700202 * <p>
Jeff Brown8b60e452013-04-18 15:17:48 -0700203 * Causes the {@link #loop} method to terminate without processing any
204 * more messages in the message queue.
Jeff Brown024136f2013-04-11 19:21:32 -0700205 * </p><p>
Jeff Brown8b60e452013-04-18 15:17:48 -0700206 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
207 * For example, the {@link Handler#sendMessage(Message)} method will return false.
208 * </p><p class="note">
209 * Using this method may be unsafe because some messages may not be delivered
210 * before the looper terminates. Consider using {@link #quitSafely} instead to ensure
211 * that all pending work is completed in an orderly manner.
Jeff Brown024136f2013-04-11 19:21:32 -0700212 * </p>
Jeff Brown8b60e452013-04-18 15:17:48 -0700213 *
214 * @see #quitSafely
Jeff Brown0f85ce32012-02-16 14:41:10 -0800215 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 public void quit() {
Jeff Brown8b60e452013-04-18 15:17:48 -0700217 mQueue.quit(false);
218 }
219
220 /**
221 * Quits the looper safely.
222 * <p>
223 * Causes the {@link #loop} method to terminate as soon as all remaining messages
224 * in the message queue that are already due to be delivered have been handled.
225 * However pending delayed messages with due times in the future will not be
226 * delivered before the loop terminates.
227 * </p><p>
228 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
229 * For example, the {@link Handler#sendMessage(Message)} method will return false.
230 * </p>
231 */
232 public void quitSafely() {
233 mQueue.quit(true);
Jeff Brown0f85ce32012-02-16 14:41:10 -0800234 }
235
236 /**
237 * Posts a synchronization barrier to the Looper's message queue.
238 *
239 * Message processing occurs as usual until the message queue encounters the
240 * synchronization barrier that has been posted. When the barrier is encountered,
241 * later synchronous messages in the queue are stalled (prevented from being executed)
242 * until the barrier is released by calling {@link #removeSyncBarrier} and specifying
243 * the token that identifies the synchronization barrier.
244 *
245 * This method is used to immediately postpone execution of all subsequently posted
246 * synchronous messages until a condition is met that releases the barrier.
247 * Asynchronous messages (see {@link Message#isAsynchronous} are exempt from the barrier
248 * and continue to be processed as usual.
249 *
250 * This call must be always matched by a call to {@link #removeSyncBarrier} with
251 * the same token to ensure that the message queue resumes normal operation.
252 * Otherwise the application will probably hang!
253 *
254 * @return A token that uniquely identifies the barrier. This token must be
255 * passed to {@link #removeSyncBarrier} to release the barrier.
256 *
257 * @hide
258 */
Jeff Brown67fc67c2013-04-01 13:00:33 -0700259 public int postSyncBarrier() {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800260 return mQueue.enqueueSyncBarrier(SystemClock.uptimeMillis());
261 }
262
263
264 /**
265 * Removes a synchronization barrier.
266 *
267 * @param token The synchronization barrier token that was returned by
268 * {@link #postSyncBarrier}.
269 *
270 * @throws IllegalStateException if the barrier was not found.
271 *
272 * @hide
273 */
Jeff Brown67fc67c2013-04-01 13:00:33 -0700274 public void removeSyncBarrier(int token) {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800275 mQueue.removeSyncBarrier(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 }
277
278 /**
279 * Return the Thread associated with this Looper.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 */
281 public Thread getThread() {
282 return mThread;
283 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800284
Jeff Browna41ca772010-08-11 14:46:32 -0700285 /** @hide */
286 public MessageQueue getQueue() {
287 return mQueue;
288 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800289
Dianne Hackbornefa92b22013-05-03 14:11:43 -0700290 /**
291 * Return whether this looper's thread is currently idle, waiting for new work
292 * to do. This is intrinsically racy, since its state can change before you get
293 * the result back.
294 * @hide
295 */
296 public boolean isIdling() {
297 return mQueue.isIdling();
298 }
299
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 public void dump(Printer pw, String prefix) {
Jeff Brown5182c782013-10-15 20:31:52 -0700301 pw.println(prefix + toString());
302 mQueue.dump(pw, prefix + " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 }
304
305 public String toString() {
Jeff Brown5182c782013-10-15 20:31:52 -0700306 return "Looper (" + mThread.getName() + ", tid " + mThread.getId()
307 + ") {" + Integer.toHexString(System.identityHashCode(this)) + "}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309}