-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwritable-off-stream.js
331 lines (313 loc) · 10.6 KB
/
writable-off-stream.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
'use strict'
const blocker = require('block-stream2')
const {Writable} = require('stream')
const Recycler = require('./recycler')
const BlockCache = require('./block-cache')
const Descriptor = require('./descriptor')
const config = require('./config')
const Block = require('./block')
const util = require('./utility')
const bs58 = require('bs58')
const through = require('through2')
const isStream = require('isstream')
const streamifier = require('streamifier')
const OffUrl = require('./off-url')
const _blockSize = new WeakMap()
let _blockCache = new WeakMap()
let _hasher = new WeakMap()
let _descriptor = new WeakMap()
let _accumulator = new WeakMap()
let _url = new WeakMap()
let _size = new WeakMap()
let _count = new WeakMap()
let _randomList = new WeakMap()
let _writer = new WeakMap()
let _recycler = new WeakMap()
let _temp = new WeakMap()
module.exports = class WritableOffStream extends Writable {
constructor (blockSize, opts) {
if (!Number.isInteger(blockSize)) {
throw new TypeError('Block size must be an integer')
}
if (!opts) {
throw new TypeError('Invalid Options')
}
if (opts instanceof BlockCache) {
opts = { bc: opts }
}
if (!opts.bc) {
throw new TypeError('Invalid Block Cache')
} else if (!(opts.bc instanceof BlockCache)) {
throw new TypeError('Invalid Block Cache')
}
opts.highWaterMark = blockSize
super(opts)
if(!opts.url || !(opts.url instanceof OffUrl)) {
throw new TypeError('Invalid OffUrl')
}
_url.set(this, opts.url)
if (opts.recycler) {
if (!(opts.recycler instanceof Recycler)) {
throw new Error('Invalid recycler')
}
_recycler.set(this, opts.recycler)
}
if (opts.temporary) {
_temp.set(this, ops.bc.newTemporary())
}
_blockSize.set(this, blockSize)
_blockCache.set(this, opts.bc)
_descriptor.set(this, new Descriptor(blockSize, opts.url.streamLength))
_accumulator.set(this, Buffer.alloc(0))
_hasher.set(this, util.hasher())
_size.set(this, 0)
_count.set(this, 0)
let globalDesc = ''
// this is the rivate function that does all the work of writing a block
let writer = (buf, enc, nxt) => {
//hash the original data
let hasher = _hasher.get(this)
hasher.update(buf)
_hasher.set(this, hasher)
let bc = _blockCache.get(this)
let url = _url.get(this)
let randoms = []
//gather the randoms from the cache
let gather = () => {
let i = -1
let randomList = _randomList.get(this)
let recycler = _recycler.get(this)
let temp = _temp.get(this)
let next = (err, block) => {
if (err) { // Recycler is empty just continue the loop from another source keep the counter the same
if (err.message === 'Recycler is Empty') {
i--
} else {
return this.emit('error', err)
}
}
if (block) {
randoms.push(block)
}
i++
if (i < (config.tupleSize - 1)) {
if (recycler && !recycler.empty) {
return recycler.next(next)
}
// if we don't have a random list get one and start processing
if (!randomList) {
return bc.randomBlockList((Math.ceil(url.streamLength / blockSize) * (config.tupleSize - 1)), (err, randoms) => {
if (err) {
return this.emit('error', err)
}
randomList = randoms
_randomList.set(this, randomList)
let random = randomList.shift()
if (random) {
return bc.get(random, next)
} else {
return bc.randomBlock(next)
}
})
} else { //or just process existing list
let random = randomList.shift()
if (random) {
return bc.get(random, next)
} else { //or generate new random blocks
if (temp) {
return bc.randomBlock((err, block) => {
if (err) {
return next(err)
}
temp.push(block.key)
return next(err, block)
})
} else {
return bc.randomBlock(next)
}
}
}
} else {
return process()
}
}
next()
}
//process the randoms into a tuple
let process = () => {
let temp = _temp.get(this)
//create off block from accumulated buffer
let count = _count.get(this)
let recycler = _recycler.get(this)
let makeTuple = () => {
let offBlock = new Block(buf, blockSize)
if (count === 0) {
url.hash = offBlock.key
_url.set(this, url)
}
let descriptor = _descriptor.get(this)
let tuple = []
for (let i = 0; i < randoms.length; i++) {
offBlock = offBlock.parity(randoms[ i ])
tuple.push(randoms[ i ])
}
tuple.unshift(offBlock)
globalDesc = tuple.reduce(((acc, block) => `${acc}${block.key}\n`), globalDesc)
// Save the first three off blocks as part of the url
if (count < 3) {
let url = _url.get(this)
url[ 'tupleBlock' + (count + 1) ] = offBlock.key
_url.set(this, url)
}
// TODO: Count may not be neccessary
count++
_count.set(this, count)
descriptor.tuple(tuple)
_descriptor.set(this, descriptor)
//save resultant off block
let put = () => {
bc.put(offBlock, (err)=> {
if (err) {
this.emit('error', err)
return
}
return nxt()
})
//Save block to network
bc.emit('block', offBlock)
}
// If this is supposed to be temporary save any new blocks as such
// we need this check for temproraries because recyclers produce
// duplicate blocks that should not be considered temporary
if (temp) {
bc.get(offBlock.key, (err) => {
if (!err) {
return nxt()
} else {
temp.push(block.key)
return put()
}
})
} else {
return put()
}
}
//Because in situations where the last bit of data needs to be padded to meet the block size
// it pads with randomness. We want it to try to create the same block if we are using a recyler
if ((recycler) && (buf.length < blockSize)) {
recycler.endcap((err, block) => {
if (err) {
return makeTuple()
} else {
for (let i = 0; i < randoms.length; i++) {
block = block.parity(randoms[ i ])
}
buf = Buffer.concat([buf, block.data.slice(buf.length, block.data.length)])
return makeTuple()
}
})
} else {
return makeTuple()
}
}
//Start finding blocks
gather()
}
_writer.set(this, writer)
// This is the finish event that closes out the stream and produces the final url
this.on('finish', () => {
let accumulator = _accumulator.get(this)
let bc = _blockCache.get(this)
//callback to help close out the stream with a url
// Store each descriptor block
let genURL = () => {
let descriptor = _descriptor.get(this)
let dBlocks = descriptor.blocks()
let temp = _temp.get(this)
let i = -1
let next = (err) => {
if (err) {
this.emit('error', err)
return
}
i++
if (i < dBlocks.length) {
let block = dBlocks[ i ]
let put = () => {
bc.put(block, (err) => {
if (err) {
return next(err)
}
return next(err)
})
//Save block to network
bc.emit('block', block)
}
if (temp) {
bc.get(block.key, (err) => {
if(!err) {
return next()
} else {
temp.push(block.key)
return put()
}
})
} else {
return put()
}
} else {
let hasher = _hasher.get(this)
let url = _url.get(this)
let size = _size.get(this)
url.fileHash = bs58.encode(hasher.digest())
url.descriptorHash = dBlocks[ 0 ].key
url.streamLength = size
url.streamOffsetLength = size
url.streamOffset = 0
if (temp) {
bc.assignTemporary(url.fileHash + url.descriptorHash, temp)
}
_url.set(this, url)
this.emit('url', url)
return
}
}
next()
}
if (accumulator.length > 0) {
let bufStream
bufStream = streamifier.createReadStream(accumulator)
if (!isStream.isReadable(bufStream)) {
this.emit('error', new Error('Invalid Input'))
return
}
//Start Chunking and processing chunks into blocks
bufStream.pipe(blocker({ size: blockSize, zeroPadding: false }))
.pipe(through(writer))
.on('finish', genURL)
} else {
genURL()
}
})
}
_write (buf, enc, nxt) {
// we need to accumulate when the bufs are tiny
let blockSize = _blockSize.get(this)
let accumulator = _accumulator.get(this)
let size = _size.get(this)
size += buf.length
_size.set(this, size)
accumulator = Buffer.concat([ accumulator, buf ])
_accumulator.set(this, accumulator)
if (accumulator.length < blockSize) {
return nxt()
} else {
let writer = _writer.get(this)
//Break off a chunk from the accumulated data
let buf = accumulator.slice(0, blockSize)
accumulator = accumulator.slice(blockSize)
_accumulator.set(this, accumulator)
writer(buf, enc, nxt)
}
}
}