-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
65 lines (56 loc) · 1.47 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
'use strict'
var each = require('stream-each')
var rafify = require('rafify')
var noop = function () {}
module.exports = function (storage, opts, onentry, ondone) {
storage = rafify(storage)
var feed = opts.feed
var pending = []
var offset = 0
ondone = ondone || noop
if (typeof opts.start !== 'undefined') {
onstart(opts.start)
} else {
storage.open(function (err) {
if (err) return ondone(err)
storage.read(0, storage.length, function (err, buf) {
if (err) return ondone(err)
onstart(Number(buf.toString()))
})
})
}
return append
function append (data, cb) {
if (!cb) cb = noop
feed.append(data, function (err) {
if (err) return cb(err)
if (offset >= feed.blocks) return cb(null)
offset = feed.blocks || feed.length // hypercore V4/V5
pending.push({ offset: offset, callback: cb })
})
}
function onstart (start) {
offset = start
var rs = feed.createReadStream({
start: start,
end: opts.end,
live: typeof opts.live !== 'undefined'
? opts.live
: typeof end === 'undefined'
})
each(
rs,
function (buf, done) {
onentry(buf, function (err) {
if (err) return done(err)
++offset
while (pending.length && offset >= pending[0].offset) {
pending.shift().callback(null)
}
storage.write(0, Buffer(String(offset)), done)
})
},
ondone
)
}
}