| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * libjingle | |
| 3 * Copyright 2015 Google Inc. | |
| 4 * | |
| 5 * Redistribution and use in source and binary forms, with or without | |
| 6 * modification, are permitted provided that the following conditions are met: | |
| 7 * | |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | |
| 9 * this list of conditions and the following disclaimer. | |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | |
| 11 * this list of conditions and the following disclaimer in the documentation | |
| 12 * and/or other materials provided with the distribution. | |
| 13 * 3. The name of the author may not be used to endorse or promote products | |
| 14 * derived from this software without specific prior written permission. | |
| 15 * | |
| 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
| 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
| 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | |
| 19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
| 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
| 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | |
| 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 26 */ | |
| 27 | |
| 28 package org.appspot.apprtc.util; | |
| 29 | |
| 30 import android.os.Handler; | |
| 31 import android.os.Looper; | |
| 32 import android.util.Log; | |
| 33 | |
| 34 import java.util.concurrent.Executor; | |
| 35 | |
| 36 /** | |
| 37 * Looper based executor class. | |
| 38 */ | |
| 39 public class LooperExecutor extends Thread implements Executor { | |
| 40 private static final String TAG = "LooperExecutor"; | |
| 41 // Object used to signal that looper thread has started and Handler instance | |
| 42 // associated with looper thread has been allocated. | |
| 43 private final Object looperStartedEvent = new Object(); | |
| 44 private Handler handler = null; | |
| 45 private boolean running = false; | |
| 46 private long threadId; | |
| 47 | |
| 48 @Override | |
| 49 public void run() { | |
| 50 Looper.prepare(); | |
| 51 synchronized (looperStartedEvent) { | |
| 52 Log.d(TAG, "Looper thread started."); | |
| 53 handler = new Handler(); | |
| 54 threadId = Thread.currentThread().getId(); | |
| 55 looperStartedEvent.notify(); | |
| 56 } | |
| 57 Looper.loop(); | |
| 58 } | |
| 59 | |
| 60 public synchronized void requestStart() { | |
| 61 if (running) { | |
| 62 return; | |
| 63 } | |
| 64 running = true; | |
| 65 handler = null; | |
| 66 start(); | |
| 67 // Wait for Hander allocation. | |
| 68 synchronized (looperStartedEvent) { | |
| 69 while (handler == null) { | |
| 70 try { | |
| 71 looperStartedEvent.wait(); | |
| 72 } catch (InterruptedException e) { | |
| 73 Log.e(TAG, "Can not start looper thread"); | |
| 74 running = false; | |
| 75 } | |
| 76 } | |
| 77 } | |
| 78 } | |
| 79 | |
| 80 public synchronized void requestStop() { | |
| 81 if (!running) { | |
| 82 return; | |
| 83 } | |
| 84 running = false; | |
| 85 handler.post(new Runnable() { | |
| 86 @Override | |
| 87 public void run() { | |
| 88 Looper.myLooper().quit(); | |
| 89 Log.d(TAG, "Looper thread finished."); | |
| 90 } | |
| 91 }); | |
| 92 } | |
| 93 | |
| 94 // Checks if current thread is a looper thread. | |
| 95 public boolean checkOnLooperThread() { | |
| 96 return (Thread.currentThread().getId() == threadId); | |
| 97 } | |
| 98 | |
| 99 @Override | |
| 100 public synchronized void execute(final Runnable runnable) { | |
| 101 if (!running) { | |
| 102 Log.w(TAG, "Running looper executor without calling requestStart()"); | |
| 103 return; | |
| 104 } | |
| 105 if (Thread.currentThread().getId() == threadId) { | |
| 106 runnable.run(); | |
| 107 } else { | |
| 108 handler.post(runnable); | |
| 109 } | |
| 110 } | |
| 111 | |
| 112 } | |
| OLD | NEW |