blob: d5cf771a22bc11063e3465fcea21a4f555e00d81 [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;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 volatile boolean mRun;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080063
Jeff Brown0f85ce32012-02-16 14:41:10 -080064 private Printer mLogging;
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080065
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 /** Initialize the current thread as a looper.
67 * This gives you a chance to create handlers that then reference
68 * this looper, before actually starting the loop. Be sure to call
69 * {@link #loop()} after calling this method, and end it by calling
70 * {@link #quit()}.
71 */
Romain Guyf9284692011-07-13 18:46:21 -070072 public static void prepare() {
Jeff Brown0f85ce32012-02-16 14:41:10 -080073 prepare(true);
74 }
75
76 private static void prepare(boolean quitAllowed) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 if (sThreadLocal.get() != null) {
78 throw new RuntimeException("Only one Looper may be created per thread");
79 }
Jeff Brown0f85ce32012-02-16 14:41:10 -080080 sThreadLocal.set(new Looper(quitAllowed));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080082
83 /**
84 * Initialize the current thread as a looper, marking it as an
85 * application's main looper. The main looper for your application
86 * is created by the Android environment, so you should never need
87 * to call this function yourself. See also: {@link #prepare()}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 */
Romain Guyf9284692011-07-13 18:46:21 -070089 public static void prepareMainLooper() {
Jeff Brown0f85ce32012-02-16 14:41:10 -080090 prepare(false);
91 synchronized (Looper.class) {
92 if (sMainLooper != null) {
93 throw new IllegalStateException("The main Looper has already been prepared.");
94 }
95 sMainLooper = myLooper();
96 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -080098
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 /** Returns the application's main looper, which lives in the main thread of the application.
100 */
Jeff Brown0f85ce32012-02-16 14:41:10 -0800101 public static Looper getMainLooper() {
102 synchronized (Looper.class) {
103 return sMainLooper;
104 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 }
106
107 /**
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800108 * Run the message queue in this thread. Be sure to call
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 * {@link #quit()} to end the loop.
110 */
Romain Guyf9284692011-07-13 18:46:21 -0700111 public static void loop() {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800112 final Looper me = myLooper();
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800113 if (me == null) {
114 throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
115 }
Jeff Brown0f85ce32012-02-16 14:41:10 -0800116 final MessageQueue queue = me.mQueue;
117
Dianne Hackborne5dea752011-02-09 14:19:23 -0800118 // Make sure the identity of this thread is that of the local process,
119 // and keep track of what that identity token actually is.
120 Binder.clearCallingIdentity();
121 final long ident = Binder.clearCallingIdentity();
Jeff Brown0f85ce32012-02-16 14:41:10 -0800122
123 for (;;) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 Message msg = queue.next(); // might block
Jeff Brown0f85ce32012-02-16 14:41:10 -0800125 if (msg == null) {
126 // No message indicates that the message queue is quitting.
127 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128 }
Jeff Brown0f85ce32012-02-16 14:41:10 -0800129
Jeff Brown0f85ce32012-02-16 14:41:10 -0800130 // This must be in a local variable, in case a UI event sets the logger
131 Printer logging = me.mLogging;
132 if (logging != null) {
133 logging.println(">>>>> Dispatching to " + msg.target + " " +
134 msg.callback + ": " + msg.what);
Jeff Brown0f85ce32012-02-16 14:41:10 -0800135 }
136
137 msg.target.dispatchMessage(msg);
138
139 if (logging != null) {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800140 logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
Jeff Brown0f85ce32012-02-16 14:41:10 -0800141 }
142
143 // Make sure that during the course of dispatching the
144 // identity of the thread wasn't corrupted.
145 final long newIdent = Binder.clearCallingIdentity();
146 if (ident != newIdent) {
147 Log.wtf(TAG, "Thread identity changed from 0x"
148 + Long.toHexString(ident) + " to 0x"
149 + Long.toHexString(newIdent) + " while dispatching to "
150 + msg.target.getClass().getName() + " "
151 + msg.callback + " what=" + msg.what);
152 }
153
154 msg.recycle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 }
156 }
157
158 /**
159 * Return the Looper object associated with the current thread. Returns
160 * null if the calling thread is not associated with a Looper.
161 */
Romain Guyf9284692011-07-13 18:46:21 -0700162 public static Looper myLooper() {
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800163 return sThreadLocal.get();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 }
165
166 /**
167 * Control logging of messages as they are processed by this Looper. If
168 * enabled, a log message will be written to <var>printer</var>
169 * at the beginning and ending of each message dispatch, identifying the
170 * target Handler and message contents.
171 *
172 * @param printer A Printer object that will receive log messages, or
173 * null to disable message logging.
174 */
175 public void setMessageLogging(Printer printer) {
176 mLogging = printer;
177 }
178
179 /**
180 * Return the {@link MessageQueue} object associated with the current
181 * thread. This must be called from a thread running a Looper, or a
182 * NullPointerException will be thrown.
183 */
Romain Guyf9284692011-07-13 18:46:21 -0700184 public static MessageQueue myQueue() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 return myLooper().mQueue;
186 }
187
Jeff Brown0f85ce32012-02-16 14:41:10 -0800188 private Looper(boolean quitAllowed) {
189 mQueue = new MessageQueue(quitAllowed);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 mRun = true;
191 mThread = Thread.currentThread();
192 }
193
Jeff Brown0f85ce32012-02-16 14:41:10 -0800194 /**
Jeff Brownf9e989d2013-04-04 23:04:03 -0700195 * Returns true if the current thread is this looper's thread.
196 * @hide
197 */
198 public boolean isCurrentThread() {
199 return Thread.currentThread() == mThread;
200 }
201
202 /**
Jeff Brown0f85ce32012-02-16 14:41:10 -0800203 * Quits the looper.
Jeff Brown024136f2013-04-11 19:21:32 -0700204 * <p>
Jeff Brown8b60e452013-04-18 15:17:48 -0700205 * Causes the {@link #loop} method to terminate without processing any
206 * more messages in the message queue.
Jeff Brown024136f2013-04-11 19:21:32 -0700207 * </p><p>
Jeff Brown8b60e452013-04-18 15:17:48 -0700208 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
209 * For example, the {@link Handler#sendMessage(Message)} method will return false.
210 * </p><p class="note">
211 * Using this method may be unsafe because some messages may not be delivered
212 * before the looper terminates. Consider using {@link #quitSafely} instead to ensure
213 * that all pending work is completed in an orderly manner.
Jeff Brown024136f2013-04-11 19:21:32 -0700214 * </p>
Jeff Brown8b60e452013-04-18 15:17:48 -0700215 *
216 * @see #quitSafely
Jeff Brown0f85ce32012-02-16 14:41:10 -0800217 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 public void quit() {
Jeff Brown8b60e452013-04-18 15:17:48 -0700219 mQueue.quit(false);
220 }
221
222 /**
223 * Quits the looper safely.
224 * <p>
225 * Causes the {@link #loop} method to terminate as soon as all remaining messages
226 * in the message queue that are already due to be delivered have been handled.
227 * However pending delayed messages with due times in the future will not be
228 * delivered before the loop terminates.
229 * </p><p>
230 * Any attempt to post messages to the queue after the looper is asked to quit will fail.
231 * For example, the {@link Handler#sendMessage(Message)} method will return false.
232 * </p>
233 */
234 public void quitSafely() {
235 mQueue.quit(true);
Jeff Brown0f85ce32012-02-16 14:41:10 -0800236 }
237
238 /**
239 * Posts a synchronization barrier to the Looper's message queue.
240 *
241 * Message processing occurs as usual until the message queue encounters the
242 * synchronization barrier that has been posted. When the barrier is encountered,
243 * later synchronous messages in the queue are stalled (prevented from being executed)
244 * until the barrier is released by calling {@link #removeSyncBarrier} and specifying
245 * the token that identifies the synchronization barrier.
246 *
247 * This method is used to immediately postpone execution of all subsequently posted
248 * synchronous messages until a condition is met that releases the barrier.
249 * Asynchronous messages (see {@link Message#isAsynchronous} are exempt from the barrier
250 * and continue to be processed as usual.
251 *
252 * This call must be always matched by a call to {@link #removeSyncBarrier} with
253 * the same token to ensure that the message queue resumes normal operation.
254 * Otherwise the application will probably hang!
255 *
256 * @return A token that uniquely identifies the barrier. This token must be
257 * passed to {@link #removeSyncBarrier} to release the barrier.
258 *
259 * @hide
260 */
Jeff Brown67fc67c2013-04-01 13:00:33 -0700261 public int postSyncBarrier() {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800262 return mQueue.enqueueSyncBarrier(SystemClock.uptimeMillis());
263 }
264
265
266 /**
267 * Removes a synchronization barrier.
268 *
269 * @param token The synchronization barrier token that was returned by
270 * {@link #postSyncBarrier}.
271 *
272 * @throws IllegalStateException if the barrier was not found.
273 *
274 * @hide
275 */
Jeff Brown67fc67c2013-04-01 13:00:33 -0700276 public void removeSyncBarrier(int token) {
Jeff Brown0f85ce32012-02-16 14:41:10 -0800277 mQueue.removeSyncBarrier(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800278 }
279
280 /**
281 * Return the Thread associated with this Looper.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 */
283 public Thread getThread() {
284 return mThread;
285 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800286
Jeff Browna41ca772010-08-11 14:46:32 -0700287 /** @hide */
288 public MessageQueue getQueue() {
289 return mQueue;
290 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800291
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 public void dump(Printer pw, String prefix) {
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800293 pw = PrefixPrinter.create(pw, prefix);
294 pw.println(this.toString());
295 pw.println("mRun=" + mRun);
296 pw.println("mThread=" + mThread);
297 pw.println("mQueue=" + ((mQueue != null) ? mQueue : "(null"));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 if (mQueue != null) {
299 synchronized (mQueue) {
Dianne Hackborn1ebccf52010-08-15 13:04:34 -0700300 long now = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 Message msg = mQueue.mMessages;
302 int n = 0;
303 while (msg != null) {
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800304 pw.println(" Message " + n + ": " + msg.toString(now));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305 n++;
306 msg = msg.next;
307 }
Brad Fitzpatrick1b298252010-11-23 17:16:47 -0800308 pw.println("(Total messages: " + n + ")");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 }
310 }
311 }
312
313 public String toString() {
Romain Guyf9284692011-07-13 18:46:21 -0700314 return "Looper{" + Integer.toHexString(System.identityHashCode(this)) + "}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316}