Nodejs流学习系列之三: Duplex Stream & Transform Stream
前言
前两篇介绍了可读/可写流,那么这两篇文章掌握的话,第三篇文章便不在话下.毕竟这篇介绍的duplex流和transform流都是在继承自可读/可写流的.所以它们具备了二者的所有属性以及方法.因此我们这篇文章只会简单介绍一些之前没有提到的东西,也就是属于它们自己独有的一些东西.
1. Duplex流
duplex流是将可读流和可写流结合一起,看下面代码就知道继承了二者的所有属性和方法:
1util.inherits(Duplex, Readable); 2 3var keys = Object.keys(Writable.prototype); 4for (var v = 0; v < keys.length; v++) { 5 var method = keys[v]; 6 if (!Duplex.prototype[method]) 7 Duplex.prototype[method] = Writable.prototype[method]; 8}
NOTE
因为JS不支持继承多个父类,所以上面的代码是原型式继承stream.Readable
以及寄生式继承stream.Writable
,但是我们如果使用instanceof
来验证两个基类也是没问题的,因为我们在stream.Writable
上重写了Symbol.hasInstance
.
相关代码是在_stream
中的这么一段:
1// Test _writableState for inheritance to account for Duplex streams, 2// whose prototype chain only points to Readable. 3var realHasInstance; 4if (typeof Symbol === 'function' && Symbol.hasInstance) { 5 realHasInstance = Function.prototype[Symbol.hasInstance]; 6 Object.defineProperty(Writable, Symbol.hasInstance, { 7 value: function(object) { 8 if (realHasInstance.call(this, object)) 9 return true; 10 11 return object && object._writableState instanceof WritableState; 12 } 13 }); 14} else { 15 realHasInstance = function(object) { 16 return object instanceof this; 17 }; 18}
具体验证可以看下面的demo
1.1 新建duplex流
使用最最基本的语法来新建duplex流:
1const { Duplex } = require('stream'); 2 3class MyDuplex extends Duplex { 4 constructor(options) { 5 super(options); 6 // ... 7 } 8}
1.2 操作双工流
关于duplex流需要知道一个最重要的点是可读流和可写流是完全独立,我们可以通过下面的实例来验证:
1class MyDuplex extends Duplex { 2 constructor(options) { 3 super(options); 4 // ... 5 } 6 _write(chunk, encoding, callback) { 7 console.log('we write: ', chunk) 8 callback(); 9 } 10 11 _read(size) { 12 this.push('read method') 13 this.push(null) 14 } 15} 16 17const dp = new MyDuplex({ 18 readableObjectMode: true 19}) 20 21console.log(dp instanceof Writable) 22console.log(dp instanceof Readable) 23 24dp.on('data', (chunk) => { 25 console.log('we read: ', chunk) 26}) 27 28dp.write('write method', 'utf-8')
因为独立,所以在new一个duplex流的时候需要传递的option有:
- readableObjectMode/writableObjectMode
- readableHighWaterMark/writableHighWaterMark
在option中还有另外一个配置--allowHalfOpen
,用来标识是否允许半双工状态,如果置为false的话,当可读流关掉的时候可写流也会自动关掉。
因为是继承了可写流和可读流,所以它要实现的方法就是之前可读流和可写流实现的方法,即:_read
, _write
, _writev
, _final
。
具体的用法就不再赘述了。
双工流的的大致原理如下:
2. Transform流
Transform流之所以叫做Transform,就是因为它可以对流数据进行“变形”,也就是说输出的数据与输入的数据是有一个映射关系,是将输入数据进行一定地加工再输出去的。比如zlib
/crypto
流。比如下面类似的模型:
stream.Transform
类原型式地继承自stream.Duplex
并且实现了自己的writable._write()
和readable._read()
我们实现自定义Transform流必须实现transform._transform()
方法,另外可能也需要实现transform._flush()
方法。
Transform流实现的图示大致如下:
2.1. 新建Transform流
使用ES6的语法新建一个Transform流,如下:
1const { Transform } = require('stream') 2 3class myTransform extends Transform { 4 constructor(options) { 5 super(options); 6 } 7 _transform(data, encoding, done) {} 8 _flush(cb){} 9} 10 11const tss = new myTransform()
在myTransform
中有_transform
方法以及_flush
方法。我们来说说这两种方法的用途。
2.1.1 _transform(chunk, encoding, callback)
方法
首先我们需要明确地一点就是加_
的方法都是不允许外部直接调用的,有点类似于Typescript的private
。
其次该方法是用于接受输入并产生输出的一个中转站,该方法内部实现对写入的字节进行操作,然后计算出一个输出,最后将输出使用readable.push()
方法传递给可读流。
callback
函数必须在当前块完全消耗完毕之后调用,如果在处理输入的时候发生错误的时候回调的第一个参数必须是一个Error
对象,否则是一个null。如果回调有第二个参数的话,它将会转发给readable.push()
。
在源码中我们可以看到Transform
流重写的_read
方法回去调用_transform
:
1// Doesn't matter what the args are here. 2// _transform does all the work. 3// That we got here means that the readable side wants more data. 4Transform.prototype._read = function(n) { 5 var ts = this._transformState; 6 7 if (ts.writechunk !== null && ts.writecb && !ts.transforming) { 8 ts.transforming = true; 9 this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform); 10 } else { 11 // mark that we need a transform, so that any data that comes in 12 // will get processed, now that we've asked for it. 13 ts.needTransform = true; 14 } 15};
并且在源码我们也看到了_transform
的回调afterTransform
,该函数直接做些状态更新,判断是否还有数据,如果有的话调用push
方法。接着判断可读流是否还需要读取,如果需要的话直接读取可读流的最高水位的数据。如下:
1 var rs = this._readableState; 2 rs.reading = false; 3 if (rs.needReadable || rs.length < rs.highWaterMark) { 4 this._read(rs.highWaterMark); 5 }
2.2.2 _flush(callback)
方法
在一些情况下,当流关闭的时候一个Transform操作也许需要发射一些额外的数据,这个时候就需要调用_flush
方法。比如zlib
压缩流将会存储大量的内部状态用于更好地压缩输出。当流结束的时候,那些额外的数据需要flushed出去,这样的压缩数据才会是完整的。
该方法在当前没有被写数据需要消费的时候被调用,但是应该在end
事件触发告知结束可读流之前。在该方法实现的内部,push
方法根据实际情况可能会被调用多次,callback
则必须在刷新操作完成之后调用的。
在源码中调用flush
方法的地方是:
1... 2 // When the writable side finishes, then flush out anything remaining. 3 this.on('prefinish', prefinish); 4... 5 6function prefinish() { 7 if (typeof this._flush === 'function') { 8 this._flush((er, data) => { 9 done(this, er, data); 10 }); 11 } else { 12 done(this, null, null); 13 } 14} 15
可见当接收到可写流发射的prefinish
事件的时候,去执行刷新操作,刷新完毕后调用done
函数,done
函数会检查当前流是否处于正常的结束状态下,另外如果还有数据会在调用push
,最后才执行push(null)
。整个流程才正式结束。
2.2.3 例子
综合上面的介绍,我们有这么一个demo,用来转换所有输入的字符变为大写的:
1const { Transform } = require('stream') 2 3class myTransform extends Transform { 4 constructor(options) { 5 super(options); 6 } 7 _transform(chunk, encoding, done) { 8 const upperChunk = chunk.toString().toUpperCase() 9 this.push(upperChunk) 10 done() 11 } 12 _flush(cb){ 13 /* at the end, output the our additional info */ 14 this.push('this is flush data\n') 15 cb(null, 'appending more data\n') 16 } 17} 18 19const tss = new myTransform() 20 21tss.pipe(process.stdout) 22tss.write('hello transform stream\n') 23tss.write('another line\n') 24tss.end()
输出应该是如你所料的了:
1HELLO TRANSFORM STREAM 2ANOTHER LINE 3this is flush data 4appending more data
下一篇文章我们将整合当前学习的内容来解决平时应用中的一些问题。
参考
公众号关注一波~
网站源码:linxiaowu66 · 豆米的博客
Follow:linxiaowu66 · Github
关于评论和留言
如果对本文 Nodejs流学习系列之三: Duplex Stream & Transform Stream 的内容有疑问,请在下面的评论系统中留言,谢谢。