.21-淺析webpack源碼之compile流程-事件流this-compilation

来源:https://www.cnblogs.com/QH-Jimmy/archive/2017/12/28/8125655.html
-Advertisement-
Play Games

上一節生成Compilation實例後,添加了一些屬性,隨後觸發this-compilation事件流,如下: 事件流的名字this-compilation我想了半天也不懂啥意思,從其內容來看其實也只算是一個預編譯,叫pre-compilation似乎更好。 總之先不管那麼多,繼續跑流程,流程圖如下 ...


  上一節生成Compilation實例後,添加了一些屬性,隨後觸發this-compilation事件流,如下:

Compiler.prototype.newCompilation = (params) => {
    // new Compilation()
    const compilation = this.createCompilation();
    compilation.fileTimestamps = this.fileTimestamps;
    compilation.contextTimestamps = this.contextTimestamps;
    compilation.name = this.name;
    compilation.records = this.records;
    compilation.compilationDependencies = params.compilationDependencies;
    // Go!
    this.applyPlugins("this-compilation", compilation, params);
    this.applyPlugins("compilation", compilation, params);
    return compilation;
}

  事件流的名字this-compilation我想了半天也不懂啥意思,從其內容來看其實也只算是一個預編譯,叫pre-compilation似乎更好。

  總之先不管那麼多,繼續跑流程,流程圖如下:

  this-compilation事件流的plugin來源有兩個地方,分別是:

// JsonpTemplatePlugin
class JsonpTemplatePlugin {
    apply(compiler) {
        compiler.plugin("this-compilation", (compilation) => {
            compilation.mainTemplate.apply(new JsonpMainTemplatePlugin());
            compilation.chunkTemplate.apply(new JsonpChunkTemplatePlugin());
            compilation.hotUpdateChunkTemplate.apply(new JsonpHotUpdateChunkTemplatePlugin());
        });
    }
}
// CachePlugin
compiler.plugin("this-compilation", compilation => {
    // TODO remove notCacheable for webpack 4
    if (!compilation.notCacheable) {
        compilation.cache = cache;
        compilation.plugin("child-compiler", (childCompiler, compilerName, compilerIndex) => { /**/ });
    } else if (this.watching) {
        compilation.warnings.push(
            new Error(`CachePlugin - Cache cannot be used because of: ${compilation.notCacheable}`)
        );
    }
});

  兩者都出現在WebpackOptionsApply模塊中,依次看具體內容。

 

JsonpTemplatePlugin

  這裡依次在上節中提到的Compilation幾個屬性上載入插件(Tapable),首先是:

compilation.mainTemplate.apply(new JsonpMainTemplatePlugin());

  該插件源碼整理如下:

"use strict";
const Template = require("./Template");
class JsonpMainTemplatePlugin {
    apply(mainTemplate) {
        // this.plugin("startup", (source, chunk, hash) => { /**/ });
        // this.plugin("render", (bootstrapSource, chunk, hash, moduleTemplate, dependencyTemplates) => { /**/ });
        // this.plugin("local-vars", (source, chunk, hash) => { /**/ });
        // this.plugin("require", (source, chunk, hash) => { /**/ });
        // this.plugin("module-obj", (source, chunk, hash, varModuleId) => { /**/ });
        // this.plugin("require-extensions", (source, chunk, hash) => { /**/ });
        mainTemplate.plugin("local-vars", function(source, chunk) { /**/ });
        mainTemplate.plugin("jsonp-script", function(_, chunk, hash) { /**/ });
        mainTemplate.plugin("require-ensure", function(_, chunk, hash) { /**/ });
        mainTemplate.plugin("require-extensions", function(source, chunk) { /**/ });
        mainTemplate.plugin("bootstrap", function(source, chunk, hash) { /**/ });
        mainTemplate.plugin("hot-bootstrap", function(source, chunk, hash) { /**/ });
        mainTemplate.plugin("hash", function(hash) { /**/ });
    }
}
module.exports = JsonpMainTemplatePlugin;

  可見,這裡只是註入對應的事件流,這裡我在註釋同時給出了該屬性初始化時的plugin,可以對比一下,只有local-vars是重覆的。

  既然沒有任何的apply操作,就暫時先跳過。

  然後是第二個:

compilation.chunkTemplate.apply(new JsonpChunkTemplatePlugin());

  源碼如下:

"use strict";
const ConcatSource = require("webpack-sources").ConcatSource;
class JsonpChunkTemplatePlugin {
    apply(chunkTemplate) {
        chunkTemplate.plugin("render", function(modules, chunk) { /**/ });
        chunkTemplate.plugin("hash", function(hash) { /**/ });
    }
}
module.exports = JsonpChunkTemplatePlugin;

  同樣只是註入事件流,該屬性在初始化沒有做操作,所有事件流只有這兩。

  第三個:

compilation.hotUpdateChunkTemplate.apply(new JsonpHotUpdateChunkTemplatePlugin());
"use strict";
const ConcatSource = require("webpack-sources").ConcatSource;
class JsonpHotUpdateChunkTemplatePlugin {
    apply(hotUpdateChunkTemplate) {
        hotUpdateChunkTemplate.plugin("render", function(modulesSource, modules, removedModules, hash, id) { /**/ });
        hotUpdateChunkTemplate.plugin("hash", function(hash) { /**/ });
    }
}
module.exports = JsonpHotUpdateChunkTemplatePlugin;

  與上面那個類似。

  該模塊註入完結。

 

CachePlugin

  該插件註入了多個事件流,直接上與this-compilation事件流相關的代碼:

compiler.plugin("this-compilation", compilation => {
    // TODO remove notCacheable for webpack 4
    // 這個屬性我從頭到尾找不到哪出現的
    // 反正註釋說webpack4會將其移除
    if (!compilation.notCacheable) {
        // cache => {}
        compilation.cache = cache;
        // 註入事件流
        compilation.plugin("child-compiler", (childCompiler, compilerName, compilerIndex) => { /**/ });
    }
    // 不可能到達的else
    else if (this.watching) {
        compilation.warnings.push(
            new Error(`CachePlugin - Cache cannot be used because of: ${compilation.notCacheable}`)
        );
    }
});

  果然是只是註入事件流,這裡的notCacheable不知道在哪定義的,也不知道如何修改。

  

  總之this-compilation也並不是編譯,只是為一些輔助模塊註入事件流。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 正則表達式是用於匹配字元串中字元組合的模式。在javascript中,正則表達式也是對象。這些模式被用於`RegExp`的`exec`、`test`方法,以及`String`的`match`、`replace`、`search`和`split`方法。 ...
  • //單行文本溢出部分隱藏顯示省略號...overflow: hidden; text-overflow:ellipsis; white-space: nowrap;/** n 行文本溢出部分隱藏顯示省略號.. 使用了WebKit的CSS擴展屬性,該方法適用於WebKit瀏覽器及移動端; (WebKi ...
  • JS控制按鈕禁止被選擇 ...
  • ::-webkit-scrollbar 滾動條整體部分 ::-webkit-scrollbar-thumb 滾動條裡面的小方塊,能向上向下移動(或往左往右移動,取決於是垂直滾動條還是水平滾動條) ::-webkit-scrollbar-track 滾動條的軌道(裡面裝有Thumb) ::-webki ...
  • 項目中有個圖標類的需求,環形圖高亮第一條數據.要求第一條數據圖塊預設展示: 分析:想要獲得上圖效果需要一下條件 1,進入頁面可以觸發第1條數據的選中action 2,滑鼠指向別的圖塊時,展示選中數據的圖塊信息 3,滑鼠離開環形圖時,展示預設第一條數據 在echarts上找尋文檔得知: action ...
  • html5 已經出現好一段時間,網上也有很多相關介紹,我也不是想寫的多全多細,只是想總結點東西留著自己慢慢看,啊哈!!! 1. 新的Doctype 儘管使用<!DOCTYPE html>,即使瀏覽器不懂這句話也會按照標準模式去渲染. 2. Figure元素 用<figure>和<figcaption ...
  • 最近在學習並使用webpack+react+antd寫了一個小項目,也可以說是demo,待全部開發完成後發現webpack的打包文件足足有將近13.3MB,快嚇死寶寶了,經過連續幾天的學習和調試最後將打包文件縮小到665kb,效果十分顯著,網上有許多解決辦法,大多對新手都不是很友好,涉及到的知識點十 ...
  • 1、代碼地址 github:https://github.com/MengFangui/VueComponentDemo- 2、關鍵代碼 (1)main.js (2)app.vue (3)button.vue (4)title.vue 3、效果 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...