Android知识点 消息机制

Android消息机制

作用

Handler、Looper、MessageQueue 、Message这个类组成了一个异步消息处理机制。目的是用于不同线程间的通信。需要注意消息机制与线程池ThreadPoolExecutor作用的区别,消息机制让一个线程通知另外一个线程执行代码,而线程池是复用不同的Thread,提高性能,不需要线程间有联系。

原理

结构图

QQ20190424-174919.png
  1. 在一个Thread中创建Looper(通过Looper.prepare()),
    prepare()中会调用Looper的构造函数,new MessageQueue,并使用ThreadLocal让Looper对象和Thread绑定,保持一对一关系。
  2. 在Thread中new Handler,Handler会获取到Looper和MessageQueue,sendMessage通过MessageQueue入队Message。按照需求,复写Handler其中handleMessage的方法。
  3. Looper.loop()会从MessageQueue取出Message,Message的target是Handler,dispatchMessage方法里会去执行handleMessage()。

源码

HandlerThread是一个已经初始化好Looper的Handy class,我们可以从HandlerThread中看看Looper的初始化流程,和上面说的过程是对应的。

//HandlerThread.java
public class HandlerThread extends Thread {
    Looper mLooper;
    private @Nullable Handler mHandler;
  
    public void run() {
        Looper.prepare();
        synchronized (this) {
            mLooper = Looper.myLooper();
            notifyAll();
        }
        onLooperPrepared();
      
        Looper.loop();
    }
  
    public Handler getThreadHandler() {
        if (mHandler == null) {
            mHandler = new Handler(getLooper());
        }
        return mHandler;
    }
}

主线程中也有类似的过程。

//ActivityThread.java
public static void main(String[] args) {
       Looper.prepareMainLooper();

        ActivityThread thread = new ActivityThread();
        thread.attach(false, startSeq);

        if (sMainThreadHandler == null) {
            sMainThreadHandler = thread.getHandler();
        }
        
        Looper.loop();
    }

接下来详细看一下代码是怎么走的,你最好也跟着在IDE中走走。

//使用者调用,如在HandlerThread.java中调用
Looper.prepare();

//Looper.java
    private static void prepare(boolean quitAllowed) {
        if (sThreadLocal.get() != null) {
            throw new RuntimeException("Only one Looper may be created per thread");
        }
        sThreadLocal.set(new Looper(quitAllowed));//使用静态变量sThreadLocal为当前线程保存Looper对象,形成一对一的关系
    }
    //构造函数是私有的,说明prepare是唯一new Looper()的方法
    private Looper(boolean quitAllowed) {
            mQueue = new MessageQueue(quitAllowed);//在这里new MessageQueue
            mThread = Thread.currentThread();
    }
//去ThreadLocal.java看看
    public void set(T value) { //T是Looper
        Thread t = Thread.currentThread();//当前线程
        ThreadLocalMap map = getMap(t);//每个Thread都有一个ThreadLocalMap成员变量
        if (map != null)
            map.set(this, value);//保存Looper对象。key是当前ThreadLocal对象,是Looper的静态成员变量,对于Looper类是唯一的。也就是为当前线程绑定了一个Looper对象。
        else
            createMap(t, value);
    }

//回到Looper.java
public static void loop() {
        final Looper me = myLooper();

        for (;;) {
            Message msg = queue.next(); // might block
            msg.target.dispatchMessage(msg); //msg的target属性是Handler。
            }
}
//使用者new Handler
//Handler.java
public Handler(Callback callback, boolean async) {
        mLooper = Looper.myLooper();//会自动获取Looper
       
        mQueue = mLooper.mQueue;
        mCallback = callback;
}
//使用者调post(Runnable r) sendMessage(Message msg) 等方法最后都会来到这。
private boolean enqueueMessage(MessageQueue queue, Message msg, long uptimeMillis) {
        msg.target = this;
        if (mAsynchronous) {
            msg.setAsynchronous(true);
        }
        return queue.enqueueMessage(msg, uptimeMillis);//入队消息
 }

//被Looper.loop()调用
public void dispatchMessage(Message msg) {
        if (msg.callback != null) {
            handleCallback(msg);
        } else {
            if (mCallback != null) {
                if (mCallback.handleMessage(msg)) {
                    return;
                }
            }
            handleMessage(msg);//使用者会复写次方法,处理Message
        }
    }

ThreadLocal

为某个类和Thread进行一对一绑定,使该类可以成为类似成员变量的关系。
如Looper,使用ThreadLocal为了保证了每个线程有唯一的Looper。

通常在一个类中以private static成员变量来使用。

作用和继承Thread,增加一个新的成员变量差不多。但是不需要对Thread进行继承,在需要绑定的类中新增一个成员变量即可完成。

原理:Thread中有成员ThreadLocalMap,key为ThreadLocal对象,value为“成员变量的对象”

QQ20190424-174935.png
public final class Looper {
    static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();
}

public class ThreadLocal<T> {
      public void set(T value) {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null)
            map.set(this, value);
        else
            createMap(t, value);
    }
  
    public T get() {
        Thread t = Thread.currentThread();
        ThreadLocalMap map = getMap(t);
        if (map != null) {
            ThreadLocalMap.Entry e = map.getEntry(this); //key是ThreadLocal对象
            if (e != null) {
                @SuppressWarnings("unchecked")
                T result = (T)e.value;
                return result;
            }
        }
        return setInitialValue();// t.threadLocals = new ThreadLocalMap(this, firstValue);帮线程初始化一个ThreadLocalMap
    }
 }

为什么主线程loop不会产生ANR?

主线程没有消息时阻塞(block)在管道的读端,有消息时,binder线程会往主线程消息队列里添加消息,然后往管道写端写一个字节。

参考

Android中为什么主线程不会因为Looper.loop()里的死循环卡死? https://www.zhihu.com/question/34652589

IdleHandler 什么时候调用

/**
 * Callback interface for discovering when a thread is going to block
 * waiting for more messages.
 */
 public static interface IdleHandler {
 /**
 * Called when the message queue has run out of messages and will now
 * wait for more. Return true to keep your idle handler active, false
 * to have it removed. This may be called if there are still messages
 * pending in the queue, but they are all scheduled to be dispatched
 * after the current time.
 */
 boolean queueIdle();
 }

IdleHandler即在looper里面的message处理完了的时候去调用

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343