Skip to content

Commit 9523234

Browse files
committedJun 10, 2022
benchmarks for async mode
1 parent 6d80111 commit 9523234

File tree

76 files changed

+915
-407
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+915
-407
lines changed
 

‎bench/impls/minipass-current-async.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const Minipass = require('../..')
2+
module.exports = class extends Minipass {
3+
constructor (options = {}) {
4+
options.async = true
5+
super(options)
6+
}
7+
}

‎bench/impls/push-through.js

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
// This is a minimal non-EE stream class inspired by push-stream
2+
// It can support multiple outputs, but only one input.
3+
class PushThrough {
4+
constructor (opt) {
5+
this.dests = []
6+
this.paused = false
7+
this.buffer = []
8+
this.ended = false
9+
this.ondrain = []
10+
this.onfinish = []
11+
}
12+
13+
on (ev, fn) {
14+
switch (ev) {
15+
case 'error': break
16+
case 'finish':
17+
this.onfinish.push(fn)
18+
break
19+
case 'drain':
20+
this.ondrain.push(fn)
21+
break
22+
default:
23+
throw new Error(`event ${ev} not supported`)
24+
}
25+
}
26+
27+
once (ev, fn) {
28+
const f = () => {
29+
fn()
30+
this[`on${ev}`] = this[`on${ev}`].filter(fn => fn !== f)
31+
}
32+
this.on(ev, f)
33+
}
34+
35+
emit (ev) {
36+
switch (ev) {
37+
case 'finish':
38+
this.onfinish.forEach(f => f())
39+
break
40+
case 'drain':
41+
this.ondrain.forEach(f => f())
42+
break
43+
default:
44+
throw new Error(`event ${ev} not supported`)
45+
}
46+
}
47+
48+
pipe (dest) {
49+
this.dests.push(dest)
50+
dest.on('drain', () => this.resume())
51+
this.resume()
52+
}
53+
54+
resume () {
55+
this.paused = false
56+
if (this.buffer.length) {
57+
const b = this.buffer.slice(0)
58+
this.buffer.length = 0
59+
for (const c of b) {
60+
for (const dest of this.dests) {
61+
const ret = dest.write(c)
62+
this.paused = this.paused || ret === false
63+
}
64+
}
65+
}
66+
if (this.buffer.length === 0) this.emit('drain')
67+
if (this.ended && this.buffer.length === 0) {
68+
for (const d of this.dests) {
69+
d.end()
70+
}
71+
this.emit('finish')
72+
}
73+
}
74+
75+
pause () {
76+
this.paused = true
77+
}
78+
79+
write (chunk) {
80+
if (this.ended) {
81+
throw new Error('write after end')
82+
}
83+
if (!this.dests.length || this.paused) {
84+
this.buffer.push(chunk)
85+
return false
86+
}
87+
for (const dest of this.dests) {
88+
const ret = dest.write(chunk)
89+
this.paused = this.paused || ret === false
90+
}
91+
return !this.paused
92+
}
93+
94+
end () {
95+
this.ended = true
96+
this.resume()
97+
}
98+
99+
}
100+
101+
module.exports = PushThrough

0 commit comments

Comments
 (0)
Please sign in to comment.