iOS-GCD源碼解析(二)dispatch_async的實現(xiàn)

上一篇我們了解了dispatch_queue_t的數(shù)據(jù)結(jié)構(gòu)和main queue、global queue缤削、user queue之間的參數(shù)差別,這一章我們來分析下GCD的方法

這里的fastpath(x)和slowpath(x)就相當(dāng)于x,只是加了cpu指令優(yōu)化蛛枚,所以if(slowpath(x))相當(dāng)于if(x)

dispatch_async()

https://opensource.apple.com/tarballs/libdispatch/
void
dispatch_async(dispatch_queue_t dq, void (^work)(void))
{
    dispatch_async_f(dq, _dispatch_Block_copy(work),
            _dispatch_call_block_and_release);
}
//調(diào)用了下面的方法
void
dispatch_async_f(dispatch_queue_t dq, void *ctxt, dispatch_function_t func)
{
    //1、定義一個封裝的block操作
    dispatch_continuation_t dc;

    // No fastpath/slowpath hint because we simply don't know
    //2脸哀、dq_width == 1表示串行蹦浦,就是main queue和用戶創(chuàng)建的串行queue
    if (dq->dq_width == 1) {
        return dispatch_barrier_async_f(dq, ctxt, func);
    }

    //如果是global queue和用戶創(chuàng)建的并行queue則繼續(xù)向下走
    //3、線程中有個dispatch_continuation_t緩存鏈表撞蜂,如果獲取到就把鏈表的下一個設(shè)為緩存盲镶,相當(dāng)于把第一個取出來了
    dc = fastpath(_dispatch_continuation_alloc_cacheonly());
    if (!dc) {
        //4、如果沒有dispatch_continuation_t緩存在堆上創(chuàng)建一個蝌诡,并且初始化后調(diào)用_dispatch_queue_push
        return _dispatch_async_f_slow(dq, ctxt, func);
    }
    //5溉贿、初始化dispatch_continuation_t,把block封裝成dispatch_continuation_t
    dc->do_vtable = (void *)DISPATCH_OBJ_ASYNC_BIT;
    dc->dc_func = func;
    dc->dc_ctxt = ctxt;

    // No fastpath/slowpath hint because we simply don't know
    //6浦旱、如果do_targetq存在宇色,則任務(wù)有do_targetq來執(zhí)行
    if (dq->do_targetq) {
        return _dispatch_async_f2(dq, dc);
    }

    //7、把dispatch_continuation_t放到queue的執(zhí)行列表中
    _dispatch_queue_push(dq, dc);
}
//dispatch_continuation_t的結(jié)構(gòu),封裝的一個block操作
struct dispatch_continuation_s {
    const void *do_vtable;
    struct dispatch_continuation_s *volatile do_next;
    dispatch_function_t dc_func;
    void *dc_ctxt
    dispatch_group_t dc_group;
    void *dc_data[3];
};

通過上面的方法我們可以看出宣蠕,dispatch_async_f最終將block封裝成dispatch_continuation_s并調(diào)用_dispatch_queue_push放到對應(yīng)的queue的執(zhí)行鏈表結(jié)尾例隆,global queue是放到自己的執(zhí)行鏈表執(zhí)行,main queue和user queue放到do_targetq的執(zhí)行鏈表執(zhí)行

下面我們再來分析_dispatch_queue_push()方法
#define _dispatch_queue_push(x, y) _dispatch_queue_push_list((x), (y), (y))
#define _dispatch_queue_push_list _dispatch_trace_queue_push_list
//最終是調(diào)用了下面的方法
static inline void
_dispatch_trace_queue_push_list(dispatch_queue_t dq, dispatch_object_t _head,
        dispatch_object_t _tail)
{
    if (slowpath(DISPATCH_QUEUE_PUSH_ENABLED())) {
        struct dispatch_object_s *dou = _head._do;
        do {
            //如果_head和_tail不相同時進行處理
            _dispatch_trace_continuation(dq, dou, DISPATCH_QUEUE_PUSH);
        } while (dou != _tail._do && (dou = dou->do_next));
    }
    //最后調(diào)用這個方法把封裝的操作放到queue的執(zhí)行鏈表
    _dispatch_queue_push_list(dq, _head, _tail);
}
//真正放入鏈表的方法
static inline void
_dispatch_queue_push_list(dispatch_queue_t dq, dispatch_object_t _head,
        dispatch_object_t _tail)
{
    struct dispatch_object_s *prev, *head = _head._do, *tail = _tail._do;

    tail->do_next = NULL;
    dispatch_atomic_store_barrier();
    //把dq->dq_items_tail與tail交換并把之前的值返回
    prev = fastpath(dispatch_atomic_xchg2o(dq, dq_items_tail, tail));
    //如果queue中存在還未執(zhí)行的鏈表植影,則把push的鏈表頭接到原來的尾部
    if (prev) {
        // if we crash here with a value less than 0x1000, then we are at a
        // known bug in client code for example, see _dispatch_queue_dispose
        // or _dispatch_atfork_child
        prev->do_next = head;
    } else {
        _dispatch_queue_push_list_slow(dq, head);
    }
}
//如果queue中沒有未完成的任務(wù)裳擎,則push進來的鏈表頭直接設(shè)置成queue的待執(zhí)行鏈表頭,并且喚醒queue的線程
void
_dispatch_queue_push_list_slow(dispatch_queue_t dq,
        struct dispatch_object_s *obj)
{
    // The queue must be retained before dq_items_head is written in order
    // to ensure that the reference is still valid when _dispatch_wakeup is
    // called. Otherwise, if preempted between the assignment to
    // dq_items_head and _dispatch_wakeup, the blocks submitted to the
    // queue may release the last reference to the queue when invoked by
    // _dispatch_queue_drain. <rdar://problem/6932776>
    _dispatch_retain(dq);
    dq->dq_items_head = obj;
    _dispatch_wakeup(dq);
    _dispatch_release(dq);
}

dispatch_async()總結(jié):

1思币、先將block封裝成dispatch_continuation_s結(jié)構(gòu)體
2鹿响、如果目標(biāo)queue的do_targetq不存在,則把封裝的dispatch_continuation_s插入到目標(biāo)待執(zhí)行鏈表尾部
3谷饿、如果目標(biāo)queue的do_targetq存在惶我,則把封裝的dispatch_continuation_s出入到do_targetq的待執(zhí)行鏈表尾部
4、如果queue的待執(zhí)行鏈表存在博投,一般情況下說明queue正在運行绸贡,直接插入新的dispatch_continuation_s就可以
5、如果queue的待執(zhí)行鏈表不存在毅哗,說明queue是沒有任務(wù)暫停狀態(tài)的听怕,把dispatch_continuation_s插入鏈表后喚醒queue的線程

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市虑绵,隨后出現(xiàn)的幾起案子尿瞭,更是在濱河造成了極大的恐慌,老刑警劉巖翅睛,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件声搁,死亡現(xiàn)場離奇詭異,居然都是意外死亡捕发,警方通過查閱死者的電腦和手機疏旨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來扎酷,“玉大人檐涝,你說我怎么就攤上這事》òぃ” “怎么了骤铃?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長坷剧。 經(jīng)常有香客問我惰爬,道長,這世上最難降的妖魔是什么惫企? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任撕瞧,我火速辦了婚禮陵叽,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘丛版。我一直安慰自己巩掺,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布页畦。 她就那樣靜靜地躺著胖替,像睡著了一般。 火紅的嫁衣襯著肌膚如雪豫缨。 梳的紋絲不亂的頭發(fā)上独令,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天,我揣著相機與錄音好芭,去河邊找鬼燃箭。 笑死,一個胖子當(dāng)著我的面吹牛舍败,可吹牛的內(nèi)容都是我干的招狸。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼邻薯,長吁一口氣:“原來是場噩夢啊……” “哼裙戏!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起厕诡,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤累榜,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后木人,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡冀偶,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年醒第,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片进鸠。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡稠曼,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出客年,到底是詐尸還是另有隱情霞幅,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布量瓜,位于F島的核電站司恳,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏绍傲。R本人自食惡果不足惜扔傅,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一耍共、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧猎塞,春花似錦试读、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至铝量,卻和暖如春倘屹,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背款违。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工唐瀑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人插爹。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓哄辣,卻偏偏與公主長得像,于是被迫代替她去往敵國和親赠尾。 傳聞我的和親對象是個殘疾皇子力穗,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,916評論 2 344