forked from kangax/html-minifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backtest.js
210 lines (195 loc) · 5.24 KB
/
backtest.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
#!/usr/bin/env node
'use strict';
var child_process = require('child_process'),
fs = require('fs'),
os = require('os'),
path = require('path'),
Progress = require('progress');
var urls = require('./benchmarks');
var fileNames = Object.keys(urls);
function git() {
var args = [].concat.apply([], [].slice.call(arguments, 0, -1));
var callback = arguments[arguments.length - 1];
var task = child_process.spawn('git', args, { stdio: ['ignore', 'pipe', 'ignore'] });
var output = '';
task.stdout.setEncoding('utf8');
task.stdout.on('data', function(data) {
output += data;
});
task.on('exit', function(code) {
callback(code, output);
});
}
function readText(filePath, callback) {
fs.readFile(filePath, { encoding: 'utf8' }, callback);
}
function writeText(filePath, data) {
fs.writeFile(filePath, data, { encoding: 'utf8' }, function(err) {
if (err) {
throw err;
}
});
}
function loadModule() {
require('./src/htmlparser');
return require('./src/htmlminifier').minify || global.minify;
}
function getOptions(fileName, options) {
var result = {
minifyURLs: {
site: urls[fileName]
}
};
for (var key in options) {
result[key] = options[key];
}
return result;
}
function minify(hash, options) {
var minify = loadModule();
process.send('ready');
var count = fileNames.length;
fileNames.forEach(function(fileName) {
readText(path.join('benchmarks/', fileName + '.html'), function(err, data) {
if (err) {
throw err;
}
else {
try {
var minified = minify(data, getOptions(fileName, options));
if (minified) {
process.send({ name: fileName, size: minified.length });
}
else {
throw new Error('unexpected result: ' + minified);
}
}
catch (e) {
console.error('[' + fileName + ']', e.stack || e);
}
finally {
if (!--count) {
process.disconnect();
}
}
}
});
});
}
function print(table) {
var output = [];
var errors = [];
var row = fileNames.slice(0);
row.unshift('hash', 'date');
output.push(row.join(','));
for (var hash in table) {
var data = table[hash];
row = [hash, '"' + data.date + '"'];
fileNames.forEach(function(fileName) {
row.push(data[fileName]);
});
output.push(row.join(','));
if (data.error) {
errors.push(hash + ' - ' + data.error);
}
}
writeText('backtest.csv', output.join('\n'));
writeText('backtest.log', errors.join('\n'));
}
if (process.argv.length > 2) {
var count = +process.argv[2];
if (count) {
git('log', '--date=iso', '--pretty=format:%h %cd', '-' + count, function(code, data) {
var table = {};
var commits = data.split(/\s*?\n/).map(function(line) {
var index = line.indexOf(' ');
var hash = line.substr(0, index);
table[hash] = {
date: line.substr(index + 1).replace('+', '').replace(/ 0000$/, '')
};
return hash;
});
var nThreads = os.cpus().length;
var running = 0;
var progress = new Progress('[:bar] :etas', {
width: 50,
total: commits.length * 2
});
function fork() {
if (commits.length && running < nThreads) {
var hash = commits.shift();
var task = child_process.fork('./backtest', { silent: true });
var error = '';
var id = setTimeout(function() {
if (task.connected) {
error += 'task timed out\n';
task.kill();
}
}, 60000);
task.on('message', function(data) {
if (data === 'ready') {
progress.tick(1);
fork();
}
else {
table[hash][data.name] = data.size;
}
}).on('exit', function() {
progress.tick(1);
clearTimeout(id);
if (error) {
table[hash].error = error;
}
if (!--running && !commits.length) {
print(table);
}
else {
fork();
}
});
task.stderr.setEncoding('utf8');
task.stderr.on('data', function(data) {
error += data;
});
task.stdout.resume();
task.send(hash);
running++;
}
}
fork();
});
}
else {
console.error('Invalid input:', process.argv[2]);
}
}
else {
process.on('message', function(hash) {
var paths = ['src', 'benchmark.conf', 'sample-cli-config-file.conf'];
git('reset', 'HEAD', '--', paths, function() {
var conf = 'sample-cli-config-file.conf';
function checkout() {
var path = paths.shift();
git('checkout', hash, '--', path, function(code) {
if (code === 0 && path === 'benchmark.conf') {
conf = path;
}
if (paths.length) {
checkout();
}
else {
readText(conf, function(err, data) {
if (err) {
throw err;
}
else {
minify(hash, JSON.parse(data));
}
});
}
});
}
checkout();
});
});
}