走進(jìn)Java Android 的線程世界(三)Hander消息機(jī)制

ActivityThread-->Android的主線程。

main方法.png
H.png
HcodeToString.png
HhandleMessage.png

main方法通過Looper獲取主線程既棺、結(jié)束主線程璃吧。
H就是ActivityThread的Handler饮怯,主要包含了四大組件的啟動(dòng)和停止等過程。
通過ApplicationThread和AMS進(jìn)行進(jìn)程間通信榛泛,AMS以進(jìn)程間通信的方式完成ActivityThread的請(qǐng)求后會(huì)回到ApplicationThread中的Binder方法蝌蹂,然后ApplicationThread會(huì)向H發(fā)送消息,H收到消息后會(huì)將ApplicationThread中的邏輯切換到ActivityThread中執(zhí)行曹锨,即切換到主線程中去執(zhí)行孤个,這個(gè)過程就是主線程的消息循環(huán)模式。

Looper

子線程中用Handler的方法.png
prepare.png
loop.png
quit.png

MessageQueue

next

    Message next() {
        // Return here if the message loop has already quit and been disposed.
        // This can happen if the application tries to restart a looper after quit
        // which is not supported.
        final long ptr = mPtr;
        if (ptr == 0) {
            return null;
        }

        int pendingIdleHandlerCount = -1; // -1 only during first iteration
        int nextPollTimeoutMillis = 0;
        for (;;) {
            if (nextPollTimeoutMillis != 0) {
                Binder.flushPendingCommands();
            }

            nativePollOnce(ptr, nextPollTimeoutMillis);

            synchronized (this) {
                // Try to retrieve the next message.  Return if found.
                final long now = SystemClock.uptimeMillis();
                Message prevMsg = null;
                Message msg = mMessages;
                if (msg != null && msg.target == null) {
                    // Stalled by a barrier.  Find the next asynchronous message in the queue.
                    do {
                        prevMsg = msg;
                        msg = msg.next;
                    } while (msg != null && !msg.isAsynchronous());
                }
                if (msg != null) {
                    if (now < msg.when) {
                        // Next message is not ready.  Set a timeout to wake up when it is ready.
                        nextPollTimeoutMillis = (int) Math.min(msg.when - now, Integer.MAX_VALUE);
                    } else {
                        // Got a message.
                        mBlocked = false;
                        if (prevMsg != null) {
                            prevMsg.next = msg.next;
                        } else {
                            mMessages = msg.next;
                        }
                        msg.next = null;
                        if (DEBUG) Log.v(TAG, "Returning message: " + msg);
                        msg.markInUse();
                        return msg;
                    }
                } else {
                    // No more messages.
                    nextPollTimeoutMillis = -1;
                }

                // Process the quit message now that all pending messages have been handled.
                if (mQuitting) {
                    dispose();
                    return null;
                }

                // If first time idle, then get the number of idlers to run.
                // Idle handles only run if the queue is empty or if the first message
                // in the queue (possibly a barrier) is due to be handled in the future.
                if (pendingIdleHandlerCount < 0
                        && (mMessages == null || now < mMessages.when)) {
                    pendingIdleHandlerCount = mIdleHandlers.size();
                }
                if (pendingIdleHandlerCount <= 0) {
                    // No idle handlers to run.  Loop and wait some more.
                    mBlocked = true;
                    continue;
                }

                if (mPendingIdleHandlers == null) {
                    mPendingIdleHandlers = new IdleHandler[Math.max(pendingIdleHandlerCount, 4)];
                }
                mPendingIdleHandlers = mIdleHandlers.toArray(mPendingIdleHandlers);
            }

            // Run the idle handlers.
            // We only ever reach this code block during the first iteration.
            for (int i = 0; i < pendingIdleHandlerCount; i++) {
                final IdleHandler idler = mPendingIdleHandlers[i];
                mPendingIdleHandlers[i] = null; // release the reference to the handler

                boolean keep = false;
                try {
                    keep = idler.queueIdle();
                } catch (Throwable t) {
                    Log.wtf(TAG, "IdleHandler threw exception", t);
                }

                if (!keep) {
                    synchronized (this) {
                        mIdleHandlers.remove(idler);
                    }
                }
            }

            // Reset the idle handler count to 0 so we do not run them again.
            pendingIdleHandlerCount = 0;

            // While calling an idle handler, a new message could have been delivered
            // so go back and look again for a pending message without waiting.
            nextPollTimeoutMillis = 0;
        }
    }
enqueueMessage.png
quit.png
removeAllFutureMessagesLocked.png

Message

callback.png
obtain.png
recycle.png
recycleUnchecked.png

Handler

Handler構(gòu)造方法.png
Callback.png
dispatchMessage.png
post.png
循環(huán).png
handleMessage.png
send.png
sendMessageAtTime.png
enqueueMessage.png

ThreadLocal

hash.png
set.png
initializeValues.png
values.png
values.put.png

Hander機(jī)制

總.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末拂檩,一起剝皮案震驚了整個(gè)濱河市踱侣,隨后出現(xiàn)的幾起案子堵泽,更是在濱河造成了極大的恐慌,老刑警劉巖给郊,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異捧灰,居然都是意外死亡淆九,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門毛俏,熙熙樓的掌柜王于貴愁眉苦臉地迎上來吩屹,“玉大人,你說我怎么就攤上這事拧抖∶核眩” “怎么了?”我有些...
    開封第一講書人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵唧席,是天一觀的道長(zhǎng)擦盾。 經(jīng)常有香客問我嘲驾,道長(zhǎng),這世上最難降的妖魔是什么迹卢? 我笑而不...
    開封第一講書人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任辽故,我火速辦了婚禮,結(jié)果婚禮上腐碱,老公的妹妹穿的比我還像新娘誊垢。我一直安慰自己,他們只是感情好症见,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開白布喂走。 她就那樣靜靜地躺著,像睡著了一般谋作。 火紅的嫁衣襯著肌膚如雪芋肠。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評(píng)論 1 285
  • 那天遵蚜,我揣著相機(jī)與錄音帖池,去河邊找鬼。 笑死吭净,一個(gè)胖子當(dāng)著我的面吹牛睡汹,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播寂殉,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼帮孔,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了不撑?” 一聲冷哼從身側(cè)響起文兢,我...
    開封第一講書人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎焕檬,沒想到半個(gè)月后姆坚,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡实愚,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年兼呵,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片腊敲。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡击喂,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出碰辅,到底是詐尸還是另有隱情懂昂,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布没宾,位于F島的核電站凌彬,受9級(jí)特大地震影響沸柔,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜铲敛,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一褐澎、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧伐蒋,春花似錦工三、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至型型,卻和暖如春段审,著一層夾襖步出監(jiān)牢的瞬間全蝶,已是汗流浹背闹蒜。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留抑淫,地道東北人绷落。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像始苇,于是被迫代替她去往敵國(guó)和親砌烁。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容