Android异步消息处理机制

关于Android中的异步消息处理机制,平时在项目中应该算是用的很多了。最近看了一些这方面的源码,记录一下。

首先,来看一下平时是怎么用的吧。最常见的使用场景,可能就是在子线程中处理一些耗时操作,然后更新UI了。那么,这是怎么做的呢?

在子线程中处理耗时操作,然后新建了一个Message(这个Message里面会包含很多内容,一会儿再细说),通过一个Handler将Message发送出去。

        new Thread(new Runnable() {
            @Override
            public void run() {
                // 执行耗时操作

                // 发送消息
                Message message = Message.obtain();
                message.what = 1;
                message.arg1 = 2;
                handler.sendMessage(message);
            }
        }).start();

在主线程中,我们有一个Handler,并且重写了handleMessage方法,用来接收并处理消息。

    private Handler handler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            if (msg.what == 1) {
                // 更新UI

            }
        }
    };

其实我们常见的就是Handler和Message这两个东西,那么就先来看一下他们到底是什么吧。

Handler

A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated with a single thread and that thread's message queue. When you create a new Handler, it is bound to the thread / message queue of the thread that is creating it -- from that point on, it will deliver messages and runnables to that message queue and execute them as they come out of the message queue.

There are two main uses for a Handler: (1) to schedule messages and runnables to be executed as some point in the future; and (2) to enqueue an action to be performed on a different thread than your own.

这个就是官方对Handler的定义,简单来说,Handler就是用来发送和处理Message的,而且很重要的一点,每个Handler的实例都关联了一个线程和这个线程的MessageQueue

Message

Defines a message containing a description and arbitrary data object that can be sent to a Handler. This object contains two extra int fields and an extra object field that allow you to not do allocations in many cases.

什么是Message?Message就是一个包含了描述和任意数据的对象,可以被发送给Handler进行处理。

While the constructor of Message is public, the best way to get one of these is to call Message.obtain() or one of the Handler.obtainMessage() methods, which will pull them from a pool of recycled objects.

官方在这里明确表示,虽然Message的构造函数是公有的,但是最好的方式是通过Message.obtain()或者Handler.obtainMessage()之类的方法来创建Message,因为这样会从一个全局的池中来复用Message,而不是每次都新建一个。

    /**
     * Return a new Message instance from the global pool. Allows us to
     * avoid allocating new objects in many cases.
     */
    public static Message obtain() {
        synchronized (sPoolSync) {
            if (sPool != null) {
                Message m = sPool;
                sPool = m.next;
                m.next = null;
                m.flags = 0; // clear in-use flag
                sPoolSize--;
                return m;
            }
        }
        return new Message();
    }

MessageQueue

Low-level class holding the list of messages to be dispatched by a Looper. Messages are not added directly to a MessageQueue, but rather through Handler objects associated with the Looper.

前面说了每个Handler的实例都关联了一个MessageQueue,那么MessageQueue是什么?其实从名字就能很容易的看出,MessageQueue就是存储Message的一个队列,先进先出。那么MessageQueue是在哪呢?接下来看另一个很重要的东西Looper。

Looper

Class used to run a message loop for a thread. Threads by default do not have a message loop associated with them; to create one, call prepare() in the thread that is to run the loop, and then loop() to have it process messages until the loop is stopped.

其实Looper就是一个无限循环的任务,他不断的从MessageQueue中尝试取出Message,如果没有取到就继续尝试,如果取到了就交给Hander去处理,直到这个循环被停止。

好了,说了这么多概念,让我们来看看源码。还是从Handler开始,毕竟是直接和我们打交道的。

无论使用哪种方式创建Handler,最后其实都离不开这两个构造函数。

1 使用当前线程默认的Looper

    public Handler(Callback callback, boolean async) {
        if (FIND_POTENTIAL_LEAKS) {
            final Class<? extends Handler> klass = getClass();
            if ((klass.isAnonymousClass() || klass.isMemberClass() || klass.isLocalClass()) &&
                    (klass.getModifiers() & Modifier.STATIC) == 0) {
                Log.w(TAG, "The following Handler class should be static or leaks might occur: " +
                    klass.getCanonicalName());
            }
        }

        mLooper = Looper.myLooper();
        if (mLooper == null) {
            throw new RuntimeException(
                "Can't create handler inside thread that has not called Looper.prepare()");
        }
        mQueue = mLooper.mQueue;
        mCallback = callback;
        mAsynchronous = async;
    }

2 使用指定的Looper而不是默认的

    public Handler(Looper looper, Callback callback, boolean async) {
        mLooper = looper;
        mQueue = looper.mQueue;
        mCallback = callback;
        mAsynchronous = async;
    }

区别就在于是使用当前线程的默认Looper还是使用指定的Looper了。这里我们可以看到,如果使用的是默认Looper,会调用Looper.myLooper()方法。
让我们来看看Handler中有哪些常用的方法,基本可以分为两大类post(Runnable r)sendMessage(Message msg),而他们的区别在于post类的方法会调用下面这个方法,指定Message的callback。

    private static Message getPostMessage(Runnable r) {
        Message m = Message.obtain();
        m.callback = r;
        return m;
    }

然后返回一个Message,最终基本上都会调用到这个方法

    public boolean sendMessageAtTime(Message msg, long uptimeMillis) {
        MessageQueue queue = mQueue;
        if (queue == null) {
            RuntimeException e = new RuntimeException(
                    this + " sendMessageAtTime() called with no mQueue");
            Log.w("Looper", e.getMessage(), e);
            return false;
        }
        return enqueueMessage(queue, msg, uptimeMillis);
    }

其中MessageQueue queue = mQueue;指定了Handler对应的MessageQueue,然后调用入队列的方法

    private boolean enqueueMessage(MessageQueue queue, Message msg, long uptimeMillis) {
        msg.target = this;
        if (mAsynchronous) {
            msg.setAsynchronous(true);
        }
        return queue.enqueueMessage(msg, uptimeMillis);
    }

其中msg.target = this是将Message和Handler绑定在了一起,而queue.enqueueMessage(msg, uptimeMillis)就是将Message入到队列MessageQueue中去。

Message就是我们需要发送和处理的消息,其中大概包含了这么几个我们需要用到的东西。

  • public int what
    我们自定义的一个类似编号的东西,可以用来与其他Message进行区分
  • public int arg1,arg2
    可以存一些轻量级的数据
  • public Object obj
    可以存对象
  • Bundle data
    用来存储复杂的数据
  • Handler target
    与Message关联的Handler,也就是负责处理消息的Handler
  • Runnable callback
    可以指定运行在某个Runnable上

再来看一下Looper。

  • 构造方法
    private Looper(boolean quitAllowed) {
        mQueue = new MessageQueue(quitAllowed);
        mThread = Thread.currentThread();
    }

Looper的构造方法中只做了两件事:
1、生成了一个MessageQueue,这里也就明白了前面说的保存Message的这个队列MessageQueue在哪里了,没错,就是在Looper里。
2、得到当前所在的线程。
构造方法做的这两件事很重要,说明了每一个Looper中都包含了一个MessageQueue,并且关联了一个特定的线程,这也是异步消息处理的关键。

  • prepare()方法
     /** Initialize the current thread as a looper.
      * This gives you a chance to create handlers that then reference
      * this looper, before actually starting the loop. Be sure to call
      * {@link #loop()} after calling this method, and end it by calling
      * {@link #quit()}.
      */
    public static void prepare() {
        prepare(true);
    }

    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));
    }

prepare方法会检查是否已经有Looper存在,如果存在会抛出异常,因为一个线程中只能有一个Looper存在,如果不存在则创建一个新的Looper,存在一个ThreadLocal里。

    static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();

我看到网上很多文章在讲Handler机制时并没有过多的提到ThreadLocal,但是其实我觉得这也是很重要的一部分。到底什么是ThreadLocal?简单来说就是将对象在不同线程中分别保存了不同的副本,在某一个线程中改变了对象的值时,并不会影响其他线程中的副本。所以这里用来保存Looper,不同线程中的MessageQueue将会互不影响。
如果我们在子线程中创建Handler之前不调用prepare方法,将会抛出异常,但是为什么我们在主线程中不需要调用prepare方法呢?那是因为系统会自动调用prepareMainLooper方法为我们创建主线程的Looper。

    /**
     * Initialize the current thread as a looper, marking it as an
     * application's main looper. The main looper for your application
     * is created by the Android environment, so you should never need
     * to call this function yourself.  See also: {@link #prepare()}
     */
    public static void prepareMainLooper() {
        prepare(false);
        synchronized (Looper.class) {
            if (sMainLooper != null) {
                throw new IllegalStateException("The main Looper has already been prepared.");
            }
            sMainLooper = myLooper();
        }
    }

而前面在Handler的构造函数中的myLooper方法,只是从ThreadLocal中取出Looper而已。

    /**
     * Return the Looper object associated with the current thread.  Returns
     * null if the calling thread is not associated with a Looper.
     */
    public static @Nullable Looper myLooper() {
        return sThreadLocal.get();
    }
  • loop方法
    public static void loop() {
        final Looper me = myLooper();
        if (me == null) {
            throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
        }
        final MessageQueue queue = me.mQueue;

        // Make sure the identity of this thread is that of the local process,
        // and keep track of what that identity token actually is.
        Binder.clearCallingIdentity();
        final long ident = Binder.clearCallingIdentity();

        for (;;) {
            Message msg = queue.next(); // might block
            if (msg == null) {
                // No message indicates that the message queue is quitting.
                return;
            }

            // This must be in a local variable, in case a UI event sets the logger
            final Printer logging = me.mLogging;
            if (logging != null) {
                logging.println(">>>>> Dispatching to " + msg.target + " " +
                        msg.callback + ": " + msg.what);
            }

            final long traceTag = me.mTraceTag;
            if (traceTag != 0 && Trace.isTagEnabled(traceTag)) {
                Trace.traceBegin(traceTag, msg.target.getTraceName(msg));
            }
            try {
                msg.target.dispatchMessage(msg);
            } finally {
                if (traceTag != 0) {
                    Trace.traceEnd(traceTag);
                }
            }

            if (logging != null) {
                logging.println("<<<<< Finished to " + msg.target + " " + msg.callback);
            }

            // Make sure that during the course of dispatching the
            // identity of the thread wasn't corrupted.
            final long newIdent = Binder.clearCallingIdentity();
            if (ident != newIdent) {
                Log.wtf(TAG, "Thread identity changed from 0x"
                        + Long.toHexString(ident) + " to 0x"
                        + Long.toHexString(newIdent) + " while dispatching to "
                        + msg.target.getClass().getName() + " "
                        + msg.callback + " what=" + msg.what);
            }

            msg.recycleUnchecked();
        }
    }

looper方法就是一个无限循环的任务,不断的从MessageQueue中取出Message进行处理。其中final MessageQueue queue = me.mQueue;就是从当前Looper中取出了MessageQueue,而msg.target.dispatchMessage(msg);就是真正处理消息的地方,其中msg.target就是与Message绑定在一起的那个Handler。

    public void dispatchMessage(Message msg) {
        if (msg.callback != null) {
            handleCallback(msg);
        } else {
            if (mCallback != null) {
                if (mCallback.handleMessage(msg)) {
                    return;
                }
            }
            handleMessage(msg);
        }
    }

callback是什么?callback就是通过post类的方法指定的Runnable,如果callback不为空就执行

    private static void handleCallback(Message message) {
        message.callback.run();
    }

否则就执行handleMessage(msg);

看到这里不难发现,就像官方的定义那样(废话,当然一样。。。),每个Handler都对应了一个Looper和一个MessageQueue,关联了一个Thread,所以才能实现异步消息处理。比如我们在主线程上创建了一个Handler,就创建了一个Looper和MessageQueue,关联的就是主线程,然后在子线程中发出消息,这个消息就会存储在主线程上的MessageQueue里,并且由Handler进行处理。这样就完成了在子线程中发送消息,在主线程中处理的过程,当然这只是其中的一种应用场景。

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

推荐阅读更多精彩内容