-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
105 lines (91 loc) · 2.49 KB
/
index.ts
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
// 1) Take file as input
// 2) compress file using various algorithms (Brotli, Defalte, Gzip)
// 3) create summary table that compares algorithm compression times
import {createReadStream, createWriteStream} from "fs";
import {createBrotliCompress, createDeflate, createGzip} from 'zlib'
import {pipeline} from "stream";
import {hrtime} from "process";
type Record = {
name: string,
startDate: number,
finalTime: number,
startSize: number,
endSize: number
}
const fileName = process.argv[2];
const inputStream = createReadStream(fileName);
const data = new Set<Record>(
[
{
name: 'gzip',
startDate: 0,
finalTime: 0,
startSize: 0,
endSize: 0
},
{
name: 'brotli',
startDate: 0,
finalTime: 0,
startSize: 0,
endSize: 0
},
{
name: 'deflate',
startDate: 0,
finalTime: 0,
startSize: 0,
endSize: 0
}
]
);
const actions = {
gzip: createGzip,
brotli: createBrotliCompress,
deflate: createDeflate
}
data.forEach((item) => {
const writeStream = createWriteStream(`./${fileName}.${item.name}`);
const actionStream = actions[item.name]();
inputStream.on('open', (chunk) => {
console.log('opened', item.name, inputStream.bytesRead);
item.startDate = Number(hrtime.bigint());
});
inputStream.on('data', (chunk) => {
item.startSize = inputStream.bytesRead;
});
writeStream.on('finish', () => {
item.endSize = writeStream.bytesWritten;
});
actionStream.on('finish', () => {
const diff = Number(process.hrtime.bigint()) - item.startDate;
const finalTime = convertHrtime(diff);
item.finalTime = finalTime.milliseconds;
console.log('finished gzip', item.name);
});
inputStream
.pipe(actionStream)
.pipe(writeStream);
// NOTE: can also be written like this with error handling
pipeline(
inputStream,
actionStream,
writeStream,
(err) => {
if (err) {
console.error('Pipeline failed', err);
} else {
console.log('Pipeline succeeded');
}
}
)
});
function convertHrtime(hrtime) {
const milliseconds = hrtime / 1000000;
const seconds = hrtime / 1000000000;
return {
seconds,
milliseconds,
nanoSeconds: hrtime
};
}