简体   繁体   English

Node.js:如何在Write Stream'finish'事件上写()

[英]Node.js: How to write() on Write Stream 'finish' event

I'm using Node.js streams to go through a text file line by line, make some transforms and output to a SVG file. 我正在使用Node.js流逐行浏览文本文件,进行一些转换并输出到SVG文件。

I am trying to write one last piece of data ( </svg> ) after the processing is done, however by the time the write stream emits the finish event, attempting to write() will throw Error: write after end . 我正在尝试在处理完成后编写最后一段数据( </svg> ),但是当写入流发出finish事件时,尝试write()将抛出Error: write after end

Is there an elegant way I can solve this? 有一种优雅的方式可以解决这个问题吗?

Note: The input file is large (around 1GB) so there's no going around the pipe() method due to its I/O and memory management. 注意:输入文件很大(大约1GB),因此由于其I / O和内存管理,没有绕过pipe()方法。

var fs = require('fs');
var split2 = require('split2');
var through2 = require('through2');

var read_stream = fs.createReadStream('input.txt');
var write_stream = fs.createWriteStream('output.svg');

write_stream.write('<svg>');
write_stream.on('finish', function() {
  this.write('</svg>'); // doesn't work
});

read_stream
  .pipe(split2())
  .pipe(through2.obj(function(line, encoding, next) {
     this.push(line);
     next();
  }))
  .pipe(write_stream);

Solutions 解决方案

Thank you Jordan & pNre for helping me figuring this out. 感谢JordanpNre帮助我解决这个问题。

Solution 1 (generic) 解决方案1(通用)

pipe() the write stream with the end:false option and manually end() the stream. pipe()使用end:false选项写入流并手动end()流。

var fs = require('fs');
var split2 = require('split2');
var through2 = require('through2');

var read_stream = fs.createReadStream('input.txt');
var write_stream = fs.createWriteStream('output.svg');

write_stream.write('<svg>');

read_stream
  .pipe(split2())
  .pipe(through2.obj(function(line, encoding, next) {
     this.push(line);
     next();
  }))
  .pipe(write_stream, { end: false });

read_stream.on('end', function() {
  write_stream.end('</svg>');
});

Solution 2 (specific to through / through2 transform streams) 解决方案2(特定于through / through2转换流)

through2 has a flush function that can be used to write the final data. through2有一个flush函数,可用于写入最终数据。

var fs = require('fs');
var split2 = require('split2');
var through2 = require('through2');

var read_stream = fs.createReadStream('input.txt');
var write_stream = fs.createWriteStream('output.svg');

write_stream.write('<svg>');

read_stream
  .pipe(split2())
  .pipe(through2.obj(function(line, encoding, next) {
    this.push(line);
    next();
  }, function(flush) {
    this.push('</svg>');
    flush();
  }))
  .pipe(write_stream);

It would seem that pipe closes the stream when it is finished. 看起来管道在完成时会关闭流。

The documentation at http://nodejs.org/api/stream.html states: http://nodejs.org/api/stream.html上的文档说明:

By default end() is called on the destination when the source stream emits end, so that destination is no longer writable. 默认情况下,当源流发出结束时,在目标上调用end(),以便该目标不再可写。 Pass { end: false } as options to keep the destination stream open. 传递{end:false}作为保持目标流打开的选项。

This keeps writer open so that "Goodbye" can be written at the end. 这使作者保持开放状态,以便最后可以写出“再见”。

reader.pipe(writer, { end: false });
reader.on('end', function() {
  writer.end('Goodbye\n');
});

Have you considered creating a new stream to append the </svg> tag? 您是否考虑过创建新流以附加</svg>标记? through can help you with that: through可以帮助你:

var fs = require('fs');
var split2 = require('split2');
var through = require('through');

var read_stream = fs.createReadStream('input.txt');
var write_stream = fs.createWriteStream('output.svg');

write_stream.write('<svg>');
var tag = through(function write(data) {
    this.queue(data);
}, function end() {
    this.queue('</svg>');
});

read_stream.pipe(split2()).pipe(some_transform).pipe(tag).pipe(write_stream);

It seems that there is an un-documented event called 'prefinish' . 似乎有一个未记录的事件称为'prefinish' I have not used it though. 我没有用它。

Recently ran in to this issue and found a more elegant solution. 最近遇到了这个问题,发现了一个更优雅的解决方案。 There's a (well) documented _flush method on the native Transform stream. 在本机Transform流上有一个(井)记录的_flush方法。

https://nodejs.org/api/stream.html#stream_transform_flush_callback https://nodejs.org/api/stream.html#stream_transform_flush_callback

The solution looks something like this: 解决方案看起来像这样:

const fs = require('fs')
const split2 = require('split2')
const { Transform } = require('stream')

const input = fs.createReadStream('input.txt')
const output = fs.createWriteStream('output.svg')

class SVGWrapper extends Transform {
    constructor(){ this.push('<svg>') }

    _flush(done){ this.push('</svg>') }

    _transform(line, enc, next){
        this.push(line)
        next()
    }
}

input
    .pipe(split2())
    .pipe(new SVGWrapper)
    .pipe(output)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM