-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
239 lines (216 loc) · 7.11 KB
/
index.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
const fs = require('fs');
const cluster = require('cluster');
const csvParse = require('csv-parse/lib/sync');
const csvStringify = require('csv-stringify/lib/sync');
const {
workersNum: defaultWorkersNum,
auditsNameTitleMap: defaultAudits,
lighthouseConfig: defaultLighthouseConfig,
throttlingOptions,
supportedInputFileTypes,
supportedOutputStreamTypes,
} = require('./assets/defaultConfig.js');
const mobileSlow4G = require('./node_modules/lighthouse/lighthouse-core/config/constants.js').throttling.mobileSlow4G;
const EventEmitter = require('events');
class lighthouseBatchParallelEventEmitter extends EventEmitter {}
const lighthouseBatchParallelEvent = new lighthouseBatchParallelEventEmitter();
/**
lighthouse result return both "title"(for display) and "name", we use name as key for mapping data later
*/
const categoriesNameTitleMap = {
'performance': 'Performance',
'accessibility': 'Accessibility',
'best-practices': 'Best-practices',
'seo': 'SEO',
'pwa': 'PWA',
};
const inputColumnsHeader = ['Device', 'URL'];
module.exports.inputColumnsHeader = inputColumnsHeader;
/**
use orderMap to record the index of each "name", lighthouse result
from target urls could use this index to find correct column.
*/
const orderMap = {};
module.exports.lighthouseBatchParallel = ({
customAudits,
input = {},
workersNum = defaultWorkersNum,
throttling = throttlingOptions[0],
outputFormat = supportedOutputStreamTypes[0],
} = {}) => {
const auditsConfig = customAudits ? inputNormalizer(customAudits, 'auditsConfig') : defaultAudits;
let lighthouseConfig = handeLighthouseConfig(defaultLighthouseConfig, throttling);
Object.keys({ ...categoriesNameTitleMap, ...auditsConfig }).forEach((element, i) => {
orderMap[element] = i + inputColumnsHeader.length;
});
cluster.setupMaster({
exec: __dirname + '/worker.js',
});
if (cluster.isMaster) {
masterTask({ input, outputFormat, workersNum, auditsConfig, lighthouseConfig })
}
return lighthouseBatchParallelEvent;
}
const handeLighthouseConfig = (defaultLighthouseConfig, throttling) => {
let lighthouseConfig = { ...defaultLighthouseConfig };
switch (throttling) {
case 'simulated3G':
break;
case 'applied3G':
lighthouseConfig['settings'] = {
throttlingMethod: 'devtools',
throttling: mobileSlow4G,
};
break;
case 'no':
lighthouseConfig['passes'] = [{
useThrottling: false,
}]
break;
default:
console.log('Unrecognized throttling method');
}
return lighthouseConfig;
}
const masterTask = ({ input, outputFormat, workersNum, auditsConfig, lighthouseConfig }) => {
try {
const auditTargets = inputNormalizer(input);
if (auditTargets.length === 0) {
console.log('Please make sure the input is correct');
return;
}
const totalTasksNum = auditTargets.length;
let leftTasksNum = totalTasksNum;
const reportHeader = Object.values(auditsConfig);
reportHeader.unshift(...Object.values(categoriesNameTitleMap));
reportHeader.unshift(...inputColumnsHeader);
cluster.on('online', (worker) => {
if (outputFormat === supportedOutputStreamTypes[0] && auditTargets.length === totalTasksNum) {
const headerRow = csvStringify([reportHeader], { delimiter: ',' });
lighthouseBatchParallelEvent.emit('data', {
data: headerRow,
progress: {
leftTasksNum,
totalTasksNum,
},
header: true,
});
}
deliverTask({ worker, outputFormat, auditTargets, reportHeader, lighthouseConfig });
});
cluster.on('message', (worker, { data, error, target }) => {
leftTasksNum = leftTasksNum - 1;
if (error) {
lighthouseBatchParallelEvent.emit('error', { error });
}
lighthouseBatchParallelEvent.emit('data', {
data,
progress: {
device: target[`${inputColumnsHeader[0]}`],
url: target[`${inputColumnsHeader[1]}`],
leftTasksNum,
totalTasksNum,
},
header: false,
});
/**
reuse worker if there are still tasks.
*/
if (auditTargets.length !== 0) {
deliverTask({ worker, outputFormat, auditTargets, reportHeader, lighthouseConfig });
} else {
worker.kill();
}
});
cluster.on('exit', () => {
/**
1.re-create worker if worker dies because of unexpected error instead of
being killed by worker.kill().
2.'online' listener will handle the new worker then.
*/
if (auditTargets.length !== 0) {
cluster.fork();
}
if (Object.keys(cluster.workers).length === 0) {
lighthouseBatchParallelEvent.emit('end');
}
});
for (let i = 0; i < Math.min(workersNum, auditTargets.length); i++) {
cluster.fork();
}
} catch (e) {
console.log(e);
}
}
const deliverTask = ({ worker, outputFormat, auditTargets, reportHeader, lighthouseConfig }) => {
const newTask = auditTargets.shift();
worker.send({
target: newTask,
outputFormat,
reportHeader,
lighthouseConfig,
orderMap,
});
};
const inputNormalizer = (input, usage) => {
if (typeof input === 'object') {
const { stream } = input;
if (typeof stream === 'string') {
if (usage === 'auditsConfig') {
return auditsConfigCsvDeserializator(stream, false);
} else {
return inputCsvDeserializator(stream, false);
}
} else if (typeof stream === 'object') {
return stream;
} else if (stream === undefined) {
return [];
}
} else if (typeof input === 'string') {
const fileType = (input.match(/[^\\/]+\.[^\\/]+$/) || []).pop().split('.')[1];
if (supportedInputFileTypes.includes(fileType)) {
switch(fileType) {
case 'csv':
if (usage === 'auditsConfig') {
return auditsConfigCsvDeserializator(input, true);
} else {
return inputCsvDeserializator(input, true);
}
case 'json':
return jsonDeserializator(input);
default:
console.log('Unsupported file type');
}
}
} else {
console.log('Input should be a string of file path or an array of objects');
}
}
const auditsConfigCsvDeserializator = (customAudits, isFile) => {
try {
const customAuditsStream = isFile ? fs.readFileSync(customAudits, { encoding: 'utf8' }) : customAudits;
const audits = csvParse(customAuditsStream, {
skip_empty_lines: true,
trim: true,
});
const customAuditsObject = {};
audits.forEach(pairs => {
customAuditsObject[pairs[0]] = pairs[1];
});
return customAuditsObject;
} catch (e) {
console.log(e);
}
}
const inputCsvDeserializator = (input, isFile) => {
const inputStream = isFile ? fs.readFileSync(input, { encoding: 'utf8' }) : input;
return csvParse(inputStream, {
columns: true,
skip_empty_lines: true,
trim: true,
});
}
const jsonDeserializator = (input) => {
const inputStream = fs.readFileSync(input, { encoding: 'utf8' });
return JSON.parse(inputStream);
}