Glide源碼閱讀筆記

原文可以看我的博客

基于v4最新版本的Glide解析, 從最開始的簡單加載開始看源碼, 僅作個人記錄.

一個Glide加載圖片的核心用法如下:

GlideApp.with(this)
                .load(uri)
                .into(imageViewLookup);

我們通過一步步鏈式調(diào)用進去查看

Glide.with : 同步生命周期

private RequestManager supportFragmentGet(@NonNull Context context, @NonNull FragmentManager fm,
      @Nullable Fragment parentHint) {
    SupportRequestManagerFragment current = getSupportRequestManagerFragment(fm, parentHint);
    RequestManager requestManager = current.getRequestManager();
    if (requestManager == null) {
      Glide glide = Glide.get(context);
      requestManager =
          factory.build(
              glide, current.getGlideLifecycle(), current.getRequestManagerTreeNode(), context);
      current.setRequestManager(requestManager);
    }
    return requestManager;
  }

通過getSupportRequestManagerFragment(final FragmentManager fm, Fragment parentHint)方法調(diào)用, 在Glide.with(context)中傳入的組件中,
新增一個子Fragment, 這個Fragment類根據(jù)傳入的是support.fragment或者是fragment來決定是RequestManagerFragment還是SupportRequestManagerFragment,然后通過current.SupportRequestManagerFragment() 將Glide的生命周期與這個子fragment的聲明周期綁定, 實現(xiàn)了組件與Glide加載同步的功能

圖片的加載

我們通過暴露的into的API跳進去, 最終到了RequestBuilder.into(@NonNull Y target, @Nullable RequestListener<TranscodeType> targetListener, @NonNull RequestOptions options), 詳細代碼如下:

private <Y extends Target<TranscodeType>> Y into(
      @NonNull Y target,
      @Nullable RequestListener<TranscodeType> targetListener,
      @NonNull RequestOptions options) {
    // 判斷是否在主線程
    Util.assertMainThread();
    // target是否為空判斷
    Preconditions.checkNotNull(target);
    // load()方法是否已經(jīng)被調(diào)用, 如果沒被調(diào)用, 則將拋出異常
    if (!isModelSet) {
      throw new IllegalArgumentException("You must call #load() before calling #into()");
    }
    options = options.autoClone();
    // 創(chuàng)建請求
    Request request = buildRequest(target, targetListener, options);
    // 獲取target當前的請求
    Request previous = target.getRequest();
    // 如果請求相同, 而且當前請求設(shè)置可以使用內(nèi)存緩存
    // 則請求回收
    if (request.isEquivalentTo(previous)
        && !isSkipMemoryCacheWithCompletePreviousRequest(options, previous)) {
      request.recycle();
      // If the request is completed, beginning again will ensure the result is re-delivered,
      // triggering RequestListeners and Targets. If the request is failed, beginning again will
      // restart the request, giving it another chance to complete. If the request is already
      // running, we can let it continue running without interruption.
      // 如果當前請求不在執(zhí)行, 則會重新開始請求
      if (!Preconditions.checkNotNull(previous).isRunning()) {
        // Use the previous request rather than the new one to allow for optimizations like skipping
        // setting placeholders, tracking and un-tracking Targets, and obtaining View dimensions
        // that are done in the individual Request.
        previous.begin();
      }
      return target;
    }
    requestManager.clear(target);
    target.setRequest(request);
    // 請求追蹤
    requestManager.track(target, request);

    return target;
  }

然后通過requestManager.track()發(fā)起Request執(zhí)行, 如果當前狀態(tài)(status)既不是RUNNING也不是COMPLETE, 則會執(zhí)行onSizeReady, 到這里直到Engine.load()才開始資源的加載, 相關(guān)的代碼及注釋如下:

public <R> LoadStatus load(
      GlideContext glideContext,
      Object model,
      Key signature,
      int width,
      int height,
      Class<?> resourceClass,
      Class<R> transcodeClass,
      Priority priority,
      DiskCacheStrategy diskCacheStrategy,
      Map<Class<?>, Transformation<?>> transformations,
      boolean isTransformationRequired,
      boolean isScaleOnlyOrNoTransform,
      Options options,
      boolean isMemoryCacheable,
      boolean useUnlimitedSourceExecutorPool,
      boolean useAnimationPool,
      boolean onlyRetrieveFromCache,
      ResourceCallback cb) {
    Util.assertMainThread();
    long startTime = LogTime.getLogTime();
    // 創(chuàng)建緩存key
    EngineKey key = keyFactory.buildKey(model, signature, width, height, transformations,
        resourceClass, transcodeClass, options);

    // 從存活資源內(nèi)讀取數(shù)據(jù), 內(nèi)部緩存由value為弱引用對象的map做管理, 做手動的計數(shù)管理
    // 當資源計數(shù)為0時, 則回收
    EngineResource<?> active = loadFromActiveResources(key, isMemoryCacheable);
    if (active != null) {
      // 如果命中, 則回調(diào)加載
      cb.onResourceReady(active, DataSource.MEMORY_CACHE);
      if (Log.isLoggable(TAG, Log.VERBOSE)) {
        logWithTimeAndKey("Loaded resource from active resources", startTime, key);
      }
      return null;
    }

    // 獲取內(nèi)存緩存數(shù)據(jù)
    // 當內(nèi)存緩存中有命中, 則刪除Cache, 并將目標資源加到activeResources中
    EngineResource<?> cached = loadFromCache(key, isMemoryCacheable);
    if (cached != null) {
      // 如果命中, 則回調(diào)加載
      cb.onResourceReady(cached, DataSource.MEMORY_CACHE);
      if (Log.isLoggable(TAG, Log.VERBOSE)) {
        logWithTimeAndKey("Loaded resource from cache", startTime, key);
      }
      return null;
    }
    //  EngineJob : 調(diào)度DecodeJob,添加,移除資源回調(diào),并notify回調(diào)
    EngineJob<?> current = jobs.get(key, onlyRetrieveFromCache);
    // 當前存活的資源和內(nèi)存緩存都沒有的情況下
    // 1. 先判斷是否有資源(resouce什么時候回調(diào)true 不明), 如果有, 則回調(diào)加載
    // 2. 如果加載失敗, 則加載拋出異常
    // 3. 否則, 在資源回調(diào)中添加
    if (current != null) {
      current.addCallback(cb);
      if (Log.isLoggable(TAG, Log.VERBOSE)) {
        logWithTimeAndKey("Added to existing load", startTime, key);
      }
      // 返回當前的LoadStatus
      return new LoadStatus(cb, current);
    }
    // 當資源回調(diào)中都沒有的情況
    EngineJob<R> engineJob =
        engineJobFactory.build(
            key,
            isMemoryCacheable,
            useUnlimitedSourceExecutorPool,
            useAnimationPool,
            onlyRetrieveFromCache);

    // 實現(xiàn)了Runnable接口胚泌,調(diào)度任務(wù)的核心類立帖,整個請求的繁重工作都在這里完成:處理來自緩存或者原始的資源绣夺,應(yīng)用轉(zhuǎn)換動畫以及transcode榨馁。
    // 負責(zé)根據(jù)緩存類型獲取不同的Generator加載數(shù)據(jù),數(shù)據(jù)加載成功后回調(diào)DecodeJob的onDataFetcherReady方法對資源進行處理
    DecodeJob<R> decodeJob =
        decodeJobFactory.build(
            glideContext,
            model,
            key,
            signature,
            width,
            height,
            resourceClass,
            transcodeClass,
            priority,
            diskCacheStrategy,
            transformations,
            isTransformationRequired,
            isScaleOnlyOrNoTransform,
            onlyRetrieveFromCache,
            options,
            engineJob);

    jobs.put(key, engineJob);

    engineJob.addCallback(cb);
    engineJob.start(decodeJob);

    if (Log.isLoggable(TAG, Log.VERBOSE)) {
      logWithTimeAndKey("Started new load", startTime, key);
    }
    return new LoadStatus(cb, engineJob);
  }

這里的流程圖可以看下圖:


Engine.load()流程圖

資源圖片的緩存

當無法再當前存活的資源以及緩存內(nèi)找到對應(yīng)key的資源時, 會通過engineJob開始執(zhí)行decodeJob, 所以我們可以直接看decodeJobrun().

/**
   * 根據(jù)不同的runReason執(zhí)行不同任務(wù)
   */
  private void runWrapped() {
     switch (runReason) {
       // 首次請求時
      case INITIALIZE:
        stage = getNextStage(Stage.INITIALIZE);
        currentGenerator = getNextGenerator();
        // load數(shù)據(jù)
        runGenerators();
        break;
      case SWITCH_TO_SOURCE_SERVICE:
        // load數(shù)據(jù)
        runGenerators();
        break;
      case DECODE_DATA:
        // 數(shù)據(jù)處理
        decodeFromRetrievedData();
        break;
      default:
        throw new IllegalStateException("Unrecognized run reason: " + runReason);
    }
  }

核心的執(zhí)行流程如下代碼:

/**
   * 執(zhí)行Generators
   */
  private void runGenerators() {
    // 獲取當前線程
    currentThread = Thread.currentThread();
    startFetchTime = LogTime.getLogTime();
    boolean isStarted = false;
    // currentGenerator.startNext() : 從當前策略對應(yīng)的Generator獲取數(shù)據(jù)输钩,數(shù)據(jù)獲取成功則回調(diào)DecodeJob的onDataFetcherReady對資源進行處理。否則嘗試從下一個策略的Generator獲取數(shù)據(jù)
    while (!isCancelled && currentGenerator != null
        && !(isStarted = currentGenerator.startNext())) {
      stage = getNextStage(stage);
      // 根據(jù)Stage獲取到相應(yīng)的Generator后會執(zhí)行currentGenerator.startNext()仲智,如果中途startNext返回true买乃,則直接回調(diào),否則最終會得到SOURCE的stage坎藐,重新調(diào)度任務(wù)
      currentGenerator = getNextGenerator();

      if (stage == Stage.SOURCE) {
        // 重新調(diào)度當前任務(wù)
        reschedule();
        return;
      }
    }
    // We've run out of stages and generators, give up.
    if ((stage == Stage.FINISHED || isCancelled) && !isStarted) {
      notifyFailed();
    }

    // Otherwise a generator started a new load and we expect to be called back in
    // onDataFetcherReady.
  }

我們看下DecodeJob的執(zhí)行流程


decodeJob執(zhí)行流程

總結(jié)

到這里, 整體的流程大致是搞清楚了, 至于說是緩存的原理機制, 在之前Engine.load()的方法內(nèi), 刪除緩存的方法進去可以看到一個LruCache的類文件, 從名字可以推斷是Glide自己實現(xiàn)的Lru算法作為緩存的處理, 關(guān)于Lru的算法原理, 在本篇內(nèi)就不再做贅述了, 而ActiveCache用到了引用計數(shù)算法.
Glide用到了大量的抽象工廠類, 另外方法內(nèi)經(jīng)常是包括了十來個參數(shù), 在閱讀的經(jīng)過上還是有點困難(對我而言).
相應(yīng)的代碼注釋可看Github上我補充的注釋

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末为牍,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子岩馍,更是在濱河造成了極大的恐慌碉咆,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蛀恩,死亡現(xiàn)場離奇詭異疫铜,居然都是意外死亡,警方通過查閱死者的電腦和手機双谆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門壳咕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人顽馋,你說我怎么就攤上這事谓厘。” “怎么了寸谜?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵竟稳,是天一觀的道長。 經(jīng)常有香客問我熊痴,道長他爸,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任果善,我火速辦了婚禮诊笤,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘巾陕。我一直安慰自己讨跟,他們只是感情好纪他,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著许赃,像睡著了一般止喷。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上混聊,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天弹谁,我揣著相機與錄音,去河邊找鬼句喜。 笑死预愤,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的咳胃。 我是一名探鬼主播植康,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼展懈!你這毒婦竟也來了销睁?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤存崖,失蹤者是張志新(化名)和其女友劉穎冻记,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體来惧,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡冗栗,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了供搀。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片隅居。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖葛虐,靈堂內(nèi)的尸體忽然破棺而出胎源,到底是詐尸還是另有隱情,我是刑警寧澤屿脐,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布乒融,位于F島的核電站,受9級特大地震影響摄悯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜愧捕,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一奢驯、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧次绘,春花似錦瘪阁、人聲如沸撒遣。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽义黎。三九已至,卻和暖如春豁跑,著一層夾襖步出監(jiān)牢的瞬間廉涕,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工艇拍, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留狐蜕,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓卸夕,卻偏偏與公主長得像层释,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子快集,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

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