1

我正在从 Python 线程中生成一个 Node 进程,并通过 stdio 在它们之间传递数据。在 Python 向 Node 发送某些内容后,Node 会启动一个子进程,然后将该子进程的输出发送回 Python。

这有效,持续了几秒钟,然后没有更多数据出现。但是,如果我终止 Node 进程,那么突然所有数据都会立即出现。

我认为这与缓冲有关,但我尝试了很多东西,但无法使其正常工作。

值得一提的是,如果我在 Python 之外运行监视器,它可以正常工作,所以这可能是 Python 方面的问题。

相关Python代码:

class MonitorThread(Thread):
    # *snip*

    def run(self):
        self.process = Popen(['node',
            path.join(PACKAGE_PATH 'monitor.js')],
            stdout=PIPE, stdin=PIPE, stderr=PIPE)

        while self.process.poll() is None:
            stdout = self.process.stdout.readline().rstrip('\n')

            if stdout:
                main_thread(debug, stdout)

            stderr = self.process.stderr.readline().rstrip('\n')

            if stderr:
                main_thread(debug, stderr)

            #time.sleep(0.1)

相关的 Node.js 代码(在 CoffeeScript 中,但即使你不知道,你也会明白):

# *snip*

child = spawn cmd, options

child.stdout.on 'data', (data) ->
    process.stdout.write "stdout: #{data.toString().trim()}\n"

child.stderr.on 'data', (data) ->
    process.stdout.write "stderr: #{data.toString().trim()}\n"

还有很多其他代码,但它们并不真正相关,正在发送数据,然后接收数据,只是片刻。它仍在运行,因为当我手动杀死它时,其余数据突然出现。

Monitor [send] - {"wrap": false, "directories": {"src": "lib"}, "id": 0, "base_dir": "C:\\Users\\Joe\\Documents\\GitHub\\CoffeeScript-Sublime-Plugin"}
Monitor [recv] - 13:55:30 - compiled src\a.coffee
Monitor [recv] - path.exists is now called `fs.exists`.
Monitor [recv] - 13:55:30 - compiled src\b.coffee
  • 我试过 util.pump()
  • 我已经尝试使用 spawn() 调用 stdio: 'inherit'
  • 在发送更多数据之前,我尝试等待“drain”事件。
4

1 回答 1

0

您还应该传递end事件以关闭流并让节点刷新它们:

child = spawn cmd, options

child.stdout.pipe(process.stdout)
child.stderr.pipe(process.stdout)

child.stdout.on 'data', (data) ->
    process.stdout.write "stdout: #{data.toString().trim()}\n"

child.stdout.on 'end', () ->
    process.stdout.end()

child.stderr.on 'end', () ->
    process.stdout.end()

一个更好的选择是使用Stream.pipe()

于 2012-08-07T14:12:55.960 回答