8

我正在尝试分叉一个子进程,等待它完成,如果它在一定时间内没有完成,就杀死它。

这是我到目前为止所拥有的:

servers.each do |server|
    pid = fork do
        puts "Forking #{server}."
        output = "doing stuff here"
        puts output
    end

    Process.wait
    puts "#{server} child exited, pid = #{pid}"
end

在 Process.wait 之后/周围的某个地方,我希望某种实用程序等待 20 秒,如果该进程仍然存在,我想杀死它并将输出标记为“错误”。

我是 fork/exec 的新手。我的代码实际上分叉有效,但我只是不知道如何处理它的等待/杀死方面。

4

2 回答 2

11

使用Timeout模块:(来自http://www.whatastruggle.com/timeout-a-subprocess-in-ruby的代码)

require 'timeout'

servers.each do |server|
    pid = fork do
        puts "Forking #{server}."
        output = "doing stuff here"
        puts output
    end

    begin
        Timeout.timeout(20) do
            Process.wait
        end
    rescue Timeout::Error
        Process.kill 9, pid
        # collect status so it doesn't stick around as zombie process
        Process.wait pid
    end
    puts "#{server} child exited, pid = #{pid}"
end
于 2012-09-24T20:37:20.320 回答
0

subexec一个机会。从自述文件:

Subexec 是一个简单的库,它生成带有可选超时参数的外部命令。它依赖于 Ruby 1.9 的 Process.spawn 方法。此外,它适用于同步和异步代码。

对于作为 CLI 的 Ruby 包装器的库很有用。例如,使用 ImageMagick 的 mogrify 命令调整图像大小有时会停止并且永远不会将控制权返回给原始进程。输入子执行程序。

于 2012-09-24T20:40:02.083 回答