forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule-duplication.js
104 lines (86 loc) · 3.45 KB
/
module-duplication.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/**
* @license Copyright 2020 The Lighthouse Authors. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
'use strict';
const makeComputedArtifact = require('./computed-artifact.js');
const JsBundles = require('./js-bundles.js');
class ModuleDuplication {
/**
* @param {string} source
*/
static _normalizeSource(source) {
// Trim trailing question mark - b/c webpack.
source = source.replace(/\?$/, '');
// Normalize paths for dependencies by only keeping everything after the last `node_modules`.
const lastNodeModulesIndex = source.lastIndexOf('node_modules');
if (lastNodeModulesIndex !== -1) {
source = source.substring(lastNodeModulesIndex);
}
return source;
}
/**
* @param {string} source
*/
static _shouldIgnoreSource(source) {
// Ignore bundle overhead.
if (source.includes('webpack/bootstrap')) return true;
if (source.includes('(webpack)/buildin')) return true;
// Ignore webpack module shims, i.e. aliases of the form `module.exports = window.jQuery`
if (source.includes('external ')) return true;
return false;
}
/**
* @param {LH.Artifacts} artifacts
* @param {LH.Audit.Context} context
*/
static async compute_(artifacts, context) {
const bundles = await JsBundles.request(artifacts, context);
/**
* @typedef SourceData
* @property {string} source
* @property {number} size
*/
/** @type {Map<LH.Artifacts.RawSourceMap, SourceData[]>} */
const sourceDatasMap = new Map();
// Determine size of each `sources` entry.
for (const {rawMap, sizes} of bundles) {
/** @type {SourceData[]} */
const sourceDataArray = [];
sourceDatasMap.set(rawMap, sourceDataArray);
for (let i = 0; i < rawMap.sources.length; i++) {
if (this._shouldIgnoreSource(rawMap.sources[i])) continue;
const sourceKey = (rawMap.sourceRoot || '') + rawMap.sources[i];
const sourceSize = sizes.files[sourceKey];
sourceDataArray.push({
source: ModuleDuplication._normalizeSource(rawMap.sources[i]),
size: sourceSize,
});
}
}
/** @type {Map<string, Array<{scriptUrl: string, size: number}>>} */
const sourceDataAggregated = new Map();
for (const {rawMap, script} of bundles) {
const sourceDataArray = sourceDatasMap.get(rawMap);
if (!sourceDataArray) continue;
for (const sourceData of sourceDataArray) {
let data = sourceDataAggregated.get(sourceData.source);
if (!data) {
data = [];
sourceDataAggregated.set(sourceData.source, data);
}
data.push({
scriptUrl: script.src || '',
size: sourceData.size,
});
}
}
for (const [key, value] of sourceDataAggregated.entries()) {
if (value.length === 1) sourceDataAggregated.delete(key);
else value.sort((a, b) => b.size - a.size);
}
return sourceDataAggregated;
}
}
module.exports = makeComputedArtifact(ModuleDuplication);