我正在使用 node.js 并通过打开 /dev/tty 文件从串行端口读取输入,我发送命令并读取命令的结果,并且我想在读取并解析所有数据后关闭流. 我知道我已经完成了数据标记的读取数据。我发现一旦我关闭了流,我的程序就不会终止。
下面是我所看到的示例,但使用 /dev/random 缓慢生成数据(假设您的系统没有做太多)。我发现一旦设备在流关闭后生成数据,该过程将终止。
var util = require('util'),
PassThrough = require('stream').PassThrough,
fs = require('fs');
// If the system is not doing enough to fill the entropy pool
// /dev/random will not return much data. Feed the entropy pool with :
// ssh <host> 'cat /dev/urandom' > /dev/urandom
var readStream = fs.createReadStream('/dev/random');
var pt = new PassThrough();
pt.on('data', function (data) {
console.log(data)
console.log('closing');
readStream.close(); //expect the process to terminate immediately
});
readStream.pipe(pt);
更新:1
我又回到了这个问题上,并且有另一个示例,这个示例只使用了一个 pty,并且很容易在节点 repl 中复制。在 2 个终端上登录并使用您未在以下调用中运行节点的终端的 pty 来调用 createReadStream。
var fs = require('fs');
var rs = fs.createReadStream('/dev/pts/1'); // a pty that is allocated in another terminal by my user
//wait just a second, don't copy and paste everything at once
process.exit(0);
此时节点只会挂起而不退出。这是10.28。