-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
152 lines (122 loc) · 3.01 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
const { Readable } = require('streamx')
module.exports = class SortedUnionStream extends Readable {
constructor (left, right, opts) {
super()
if (typeof opts === 'function') opts = { compare: opts }
if (!left.destroy || !right.destroy) throw new Error('Only modern stream supported')
this.left = new Peaker(left)
this.right = new Peaker(right)
this.compare = (opts && opts.compare) || defaultCompare
this._missing = 2
this._onclose = null
this._both = !!(opts && opts.both)
this._map = (opts && opts.map) || defaultMap
this._track(left)
this._track(right)
}
_read (cb) {
const self = this
this.left.read(function (err, l) {
if (err) return cb(err)
self.right.read(function (err, r) {
if (err) return cb(err)
self._readBoth(l, r, cb)
})
})
}
_readBoth (l, r, cb) {
if (l === null && r === null) {
this.push(null)
return cb(null)
}
if (l === null) {
this._push(null, r, cb)
return
}
if (r === null) {
this._push(l, null, cb)
return
}
const cmp = this.compare(l, r)
if (cmp === 0) {
this._push(l, r, cb)
return
}
if (cmp < 0) this._push(l, null, cb)
else this._push(null, r, cb)
}
_push (l, r, cb) {
const data = this._map(l, r)
const pushed = this.push(data)
if (this._both && l && r) this.push(data)
if (l !== null) this.left.consume()
if (r !== null) this.right.consume()
if (pushed) cb(null)
else this._read(cb)
}
_predestroy () {
this.left.destroy()
this.right.destroy()
}
_destroy (cb) {
if (!this.missing) return cb(null)
this._onclose = cb
}
_track (stream) {
const self = this
let closed = false
stream.on('error', onclose)
stream.on('close', onclose)
function onclose (err) {
if (err && typeof err === 'object') self.destroy(err)
if (closed) return
closed = true
if (!--self._missing && self._onclose) self._onclose()
}
}
}
class Peaker {
constructor (stream) {
this.stream = stream
this.stream.on('readable', this._onreadable.bind(this))
this.stream.on('end', this._onend.bind(this))
this.value = null
this._reading = null
this._ended = false
}
read (cb) {
if (this.value) return cb(null, this.value)
this._reading = cb
this._onreadable()
}
consume () {
this.value = null
}
destroy () {
this._continue(new Error('Destroyed'), null)
this.stream.destroy()
}
_onend () {
this._ended = true
this._onreadable()
}
_continue (err, value) {
if (this._reading === null) return
const cb = this._reading
this._reading = null
cb(err, value)
}
_onreadable () {
if (this.value) return
this.value = this.stream.read()
if ((this.value !== null || this._ended)) {
this._continue(null, this.value)
}
}
}
function defaultCompare (a, b) {
return a < b ? -1 : a > b ? 1 : 0
}
function defaultMap (a, b) {
return a === null ? b : a
}