nifty-wallet/app/scripts/lib/stream-utils.js

51 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-04-08 14:24:10 -07:00
const Through = require('through2')
const ObjectMultiplex = require('obj-multiplex')
const pump = require('pump')
2016-04-08 14:24:10 -07:00
module.exports = {
jsonParseStream: jsonParseStream,
jsonStringifyStream: jsonStringifyStream,
setupMultiplex: setupMultiplex,
2016-04-08 14:24:10 -07:00
}
/**
* Returns a stream transform that parses JSON strings passing through
* @return {stream.Transform}
*/
2016-06-21 13:18:32 -07:00
function jsonParseStream () {
return Through.obj(function (serialized, _, cb) {
2016-04-08 14:24:10 -07:00
this.push(JSON.parse(serialized))
cb()
})
}
/**
* Returns a stream transform that calls {@code JSON.stringify}
* on objects passing through
* @return {stream.Transform} the stream transform
*/
2016-06-21 13:18:32 -07:00
function jsonStringifyStream () {
return Through.obj(function (obj, _, cb) {
2016-04-08 14:24:10 -07:00
this.push(JSON.stringify(obj))
cb()
})
}
/**
* Sets up stream multiplexing for the given stream
* @param {any} connectionStream - the stream to mux
* @return {stream.Stream} the multiplexed stream
*/
2016-06-21 13:18:32 -07:00
function setupMultiplex (connectionStream) {
const mux = new ObjectMultiplex()
pump(
connectionStream,
mux,
connectionStream,
(err) => {
if (err) console.error(err)
}
)
return mux
2016-06-21 13:18:32 -07:00
}