Sha256: 3cc4faef1f32234daf3e23059cb6d2418d158f734a205524280150ee592b5549

Contents?: true

Size: 1.64 KB

Versions: 5

Compression:

Stored size: 1.64 KB

Contents

# A helper class that allows you to run a block inside of a fork, and then get the result from that block.
#
# == Example:
#
#   forker = Spork::Forker.new do
#     sleep 3
#     "success"
#   end
#   
#   forker.result # => "success"
class Spork::Forker
  
  # Raised if the fork died (was killed) before it sent it's response back.
  class ForkDiedException < Exception; end
  def initialize(&block)
    return unless block_given?
    @child_io, @server_io = UNIXSocket.socketpair
    @child_pid = Kernel.fork do
      @server_io.close
      Marshal.dump(yield, @child_io)
      # wait for the parent to acknowledge receipt of the result.
      master_response = 
        begin
          Marshal.load(@child_io)
        rescue EOFError
          nil
        end
      
      # terminate, skipping any at_exit blocks.
      exit!(0)
    end
    @child_io.close
  end
  
  # Wait for the fork to finish running, and then return its return value.
  #
  # If the fork was aborted, then result returns nil.
  def result
    return unless running?
    result_thread = Thread.new do
      begin
        @result = Marshal.load(@server_io)
        Marshal.dump('ACK', @server_io)
      rescue ForkDiedException, EOFError
        @result = nil
      end
    end
    Process.wait(@child_pid)
    result_thread.raise(ForkDiedException) if @result.nil?
    @child_pid = nil
    @result
  end
  
  # abort the current running fork
  def abort
    if running?
      Process.kill(Signal.list['TERM'], @child_pid)
      @child_pid = nil
      true
    end
  end
  
  def running?
    return false unless @child_pid
    Process.getpgid(@child_pid)
    true
  rescue Errno::ESRCH
    false
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
spork-0.7.6 lib/spork/forker.rb
milhouse-spork-0.7.5.2 lib/spork/forker.rb
pietervisser-spork-0.7.5.1 lib/spork/forker.rb
milhouse-spork-0.7.5 lib/spork/forker.rb
pietervisser-spork-0.7.5 lib/spork/forker.rb