Handler 源碼從零學習筆記 (二)

/*
 * Set this flag to true to detect anonymous, local or member classes
 * that extend this Handler class and that are not static. These kind
 * of classes can potentially create leaks.

 * 將此標志設置為true以檢測此 Handler 類不是靜態(tài)的匿名,本地或成員類匪凉。這些類
 * 可能會產(chǎn)生泄漏。
 */
private static final boolean FIND_POTENTIAL_LEAKS = false;

  /**
     * Callback interface you can use when instantiating a Handler to avoid
     * having to implement your own subclass of Handler.

     * 你可以在你實例化一個 Handler 的時候使用 Callback 接口(就是我們說的回調(diào)接口)
     * 避免必須實現(xiàn)一個 Handler 的子類捺檬。
     *
     * @param msg A {@link android.os.Message Message} object
     * @return True if no further handling is desired
     */
    public interface Callback {
        public boolean handleMessage(Message msg);
    }

  /**
     * Subclasses must implement this to receive messages.
     * 子類必須實現(xiàn)這個方法來接受 Message 對象
     */
    public void handleMessage(Message msg) {
    }

  /**
     * Handle system messages here.
     * 該方法用于處理系統(tǒng)的 Message
     */
    public void dispatchMessage(Message msg) {
        // 如果傳入的 Message 的回調(diào)函數(shù)不為空
        if (msg.callback != null) {
        // 調(diào)用 handleCallback 方法
            handleCallback(msg);
        } else { // 不為空
            if (mCallback != null) { // 如果 Handler 的 Callback 不為空
                if (mCallback.handleMessage(msg)) { // 返回值為 true 調(diào)用 return
                    return;
                }
            }
            handleMessage(msg);// 調(diào)用 handleMessage() 上面有介紹
        }
    }

   /**
     * Default constructor associates this handler with the {@link Looper} for the
     * current thread.
     *
     * If this thread does not have a looper, this handler won't be able to receive messages
     * so an exception is thrown.

     * 默認的構(gòu)造函數(shù)再层,通過當前線程的 Lopper 對象關(guān)聯(lián)當前 Handler。
     * 如果這個線程沒有 Lopper堡纬,那么該 Handler 將無法接受 Message聂受,因此會拋出一個異常。
     */
    public Handler() {
        this(null, false);
    }

  /**
     * Constructor associates this handler with the {@link Looper} for the
     * current thread and takes a callback interface in which you can handle
     * messages.
     *
     * If this thread does not have a looper, this handler won't be able to receive messages
     * so an exception is thrown.
     *
     * @param callback The callback interface in which to handle messages, or null.
     *                              處理 Message 的回調(diào)接口烤镐,或者傳 null

     * 相對于默認構(gòu)造函數(shù)蛋济,添加了一個 Callback 參數(shù),表示會通過該 Callback 對象處理 Message
     */
    public Handler(Callback callback) {
        this(callback, false);
    }

/**
     * Use the provided {@link Looper} instead of the default one.
     *
     * @param looper The looper, must not be null.
     *                           Looper 對象炮叶,不能傳入 null
     * 使用傳入的 Looper 代替默認的 Looper
     */
    public Handler(Looper looper) {
        this(looper, null, false);
    }

  /**
     * Use the provided {@link Looper} instead of the default one and take a callback
     * interface in which to handle messages.
     *
     * @param looper The looper, must not be null.
     * @param callback The callback interface in which to handle messages, or null.

     * 使用傳入的 Looper 代替默認的碗旅,并且傳入 Callback 用于處理 Message
     */
    public Handler(Looper looper, Callback callback) {
        this(looper, callback, false);
    }

/**
     * Use the {@link Looper} for the current thread
     * and set whether the handler should be asynchronous.
     *
     * Handlers are synchronous by default unless this constructor is used to make
     * one that is strictly asynchronous.
     *
     * Asynchronous messages represent interrupts or events that do not require global ordering
     * with respect to synchronous messages.  Asynchronous messages are not subject to
     * the synchronization barriers introduced by {@link MessageQueue#enqueueSyncBarrier(long)}.
     *
     * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
     * each {@link Message} that is sent to it or {@link Runnable} that is posted to it.
     *
     * @hide

     * 使用當前線程默認的 Looper 并且設置該 Handler 是否需要是異步的。
     * Handler 是默認同步的镜悉,除非你調(diào)用該構(gòu)造函數(shù)設置表示使用異步扛芽。
     * 異步消息相對于同步消息,不需要對消息進行同步排序积瞒,并且不受 MessageQueue 的 enqueueSyncBarrier(long) 所帶來的同步障礙影響川尖。
     */
    public Handler(boolean async) {
        this(null, async);
    }

前面所有的構(gòu)造函數(shù)本質(zhì)上都是調(diào)用了下面兩個構(gòu)造函數(shù),我們來看看構(gòu)造函數(shù)到底做了什么茫孔?

/**
     * Use the {@link Looper} for the current thread with the specified callback interface
     * and set whether the handler should be asynchronous.
     *
     * Handlers are synchronous by default unless this constructor is used to make
     * one that is strictly asynchronous.
     *
     * Asynchronous messages represent interrupts or events that do not require global ordering
     * with respect to synchronous messages.  Asynchronous messages are not subject to
     * the synchronization barriers introduced by {@link MessageQueue#enqueueSyncBarrier(long)}.
     *
     * @param callback The callback interface in which to handle messages, or null.
     * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
     * each {@link Message} that is sent to it or {@link Runnable} that is posted to it.

     * 使用當前默認 Looper 和傳入的 Callback 叮喳,傳入 boolean 來設置該 Handler 是否需要是異步的。
     * @hide
     */
    public Handler(Callback callback, boolean async) {
        // 如果有內(nèi)存泄漏危險
        if (FIND_POTENTIAL_LEAKS) {
            final Class<? extends Handler> klass = getClass();
            if ((klass.isAnonymousClass() || klass.isMemberClass() || klass.isLocalClass()) &&
                    (klass.getModifiers() & Modifier.STATIC) == 0) {
                // 打印警告 log"該 Handler 應該為 static 缰贝,否則可能會導致內(nèi)存泄漏"
                Log.w(TAG, "The following Handler class should be static or leaks might occur: " +
                    klass.getCanonicalName());
            }
        }
        // 獲取 Looper
        mLooper = Looper.myLooper();
        if (mLooper == null) { // 獲取到為 null 拋出異常 “無法在線程內(nèi)部創(chuàng)建沒有調(diào)用 
                                          // Looper.prepare() 方法的 handler”
            throw new RuntimeException(
                "Can't create handler inside thread that has not called Looper.prepare()");
        }
        // 從 Looper 獲取 MessageQueue
        mQueue = mLooper.mQueue;
        // mCallback賦值
        mCallback = callback;
        // mAsynchronous 賦值
        mAsynchronous = async;
    }

/**
     * Use the provided {@link Looper} instead of the default one and take a callback
     * interface in which to handle messages.  Also set whether the handler
     * should be asynchronous.
     *
     * Handlers are synchronous by default unless this constructor is used to make
     * one that is strictly asynchronous.
     *
     * Asynchronous messages represent interrupts or events that do not require global ordering
     * with respect to synchronous messages.  Asynchronous messages are not subject to
     * the synchronization barriers introduced by {@link MessageQueue#enqueueSyncBarrier(long)}.
     *
     * @param looper The looper, must not be null.
     * @param callback The callback interface in which to handle messages, or null.
     * @param async If true, the handler calls {@link Message#setAsynchronous(boolean)} for
     * each {@link Message} that is sent to it or {@link Runnable} that is posted to it.
     *
     * @hide

     * 添加了 Looper 參數(shù)指定 Looper馍悟,其余跟上一個一樣。
     */
    public Handler(Looper looper, Callback callback, boolean async) {
        mLooper = looper;
        mQueue = looper.mQueue;
        mCallback = callback;
        mAsynchronous = async;
    }

下面是各個方法的解讀

  • getMessageName(Message message):
    該方法返回一個 Message 的指定名稱(大概就是說返回一個唯一標識)剩晴。默認返回Message 的 Callback 的類名锣咒,如果 message.callback 為空,返回 Message.what 的十六進制數(shù)赞弥。

  • obtainMessage():
    該方法從全局的 Message Pool(消息池)返回一個 Message 對象毅整。這樣的效率比重新創(chuàng)建一個實例要高。并設置 Message.target == this绽左。如果你不想用這種方法悼嫉,可以直接調(diào)用 Message.obtain()。

  • obtainMessage(int what):
    和 obtainMessage() 一樣拼窥,但是給返回的 Message 對象設置了 what 戏蔑。

  • obtainMessage(int what, Object obj):
    obtainMessage(int what, int arg1, int arg2):
    obtainMessage(int what, int arg1, int arg2, Object obj):
    與 obtainMessage() 相同蹋凝,但是設置了 whta 和 obj 兩個屬性。

  • public final boolean post(Runnable r):
    添加 Runnable 對象到 MessageQueue 中总棵。該 Runnable 對象將會在該 Handler bain綁定到的 Thread 上運行鳍寂。

  • public final boolean postAtTime(Runnable r, long uptimeMillis):
    添加 Runnable 對象到 MessageQueue 中。該 Runnable 對象將會在給定的時間點運行情龄。返回:true 表示該 Runnable 成功添加到 MessageQueue 中伐割,否則返回 false,通常是因為 Looper 處理 MessageQueue 正在退出刃唤。注意隔心,返回 true 并不意味著該 Runnable 一定會被執(zhí)行 -- 如果 Looper 在 Message 送達時間之前 quit,那么 Message 將會丟失尚胞。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末硬霍,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子笼裳,更是在濱河造成了極大的恐慌唯卖,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件躬柬,死亡現(xiàn)場離奇詭異拜轨,居然都是意外死亡,警方通過查閱死者的電腦和手機允青,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門橄碾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人颠锉,你說我怎么就攤上這事法牲。” “怎么了琼掠?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵拒垃,是天一觀的道長。 經(jīng)常有香客問我瓷蛙,道長悼瓮,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任艰猬,我火速辦了婚禮横堡,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘姥宝。我一直安慰自己翅萤,他們只是感情好,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布腊满。 她就那樣靜靜地躺著套么,像睡著了一般。 火紅的嫁衣襯著肌膚如雪碳蛋。 梳的紋絲不亂的頭發(fā)上胚泌,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天,我揣著相機與錄音肃弟,去河邊找鬼玷室。 笑死,一個胖子當著我的面吹牛笤受,可吹牛的內(nèi)容都是我干的穷缤。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼箩兽,長吁一口氣:“原來是場噩夢啊……” “哼津肛!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起汗贫,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤身坐,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后落包,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體部蛇,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年涯鲁,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片有序。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡撮竿,死狀恐怖幢踏,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情逞盆,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站水醋,受9級特大地震影響耀盗,放射性物質(zhì)發(fā)生泄漏岂却。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一捣域、第九天 我趴在偏房一處隱蔽的房頂上張望逐样。 院中可真熱鬧,春花似錦脂新、人聲如沸挪捕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽级零。三九已至,卻和暖如春滞乙,著一層夾襖步出監(jiān)牢的瞬間奏纪,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工斩启, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留序调,地道東北人。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓兔簇,卻偏偏與公主長得像发绢,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子垄琐,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

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