如何解决带有超时的分叉子进程并捕获输出
您可以使用IO.pipe
并告诉Process.spawn
使用重定向的输出,而无需外部gem。
当然,仅从Ruby 1.9.2开始(我个人建议1.9.3)
以下是Spinach BDD在内部用于捕获输出和err输出的简单实现:
# stdout, stderr pipes
rout, wout = IO.pipe
rerr, werr = IO.pipe
pid = Process.spawn(command, :out => wout, :err => werr)
_, status = Process.wait2(pid)
# close write ends so we Could read them
wout.close
werr.close
@stdout = rout.readlines.join("\n")
@stderr = rerr.readlines.join("\n")
# dispose the read ends of the pipes
rout.close
rerr.close
@last_exit_status = status.exitstatus
原始来源位于features / support / filesystem.rb中
强烈建议您阅读Ruby自己的Process.spawn文档。
希望这可以帮助。
PS:我将超时实现留给您做功课;-)
解决方法
说我有一个下面的函数,如何捕获Process.spawn调用的输出?如果花费的时间超过指定的超时时间,我也应该能够终止该过程。
请注意,该功能还必须是跨平台的(Windows / Linux)。
def execute_with_timeout!(command)
begin
pid = Process.spawn(command) # How do I capture output of this process?
status = Timeout::timeout(5) {
Process.wait(pid)
}
rescue Timeout::Error
Process.kill('KILL',pid)
end
end
谢谢。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。