Sha256: d3a7929a3841aaed44c271a11b57b5c6a59872b1bdf3b27d1d07042a57f6d978
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 KB
Contents
module ChildProcess module Unix class Process < AbstractProcess def io @io ||= Unix::IO.new end def stop(timeout = 3) assert_started send_term begin return poll_for_exit(timeout) rescue TimeoutError # try next end send_kill wait rescue Errno::ECHILD, Errno::ESRCH # handle rase condition where process dies between timeout # and send_kill true end # # Did the process exit? # # @return [Boolean] # def exited? return true if @exit_code assert_started pid, status = ::Process.waitpid2(@pid, ::Process::WNOHANG) log(:pid => pid, :status => status) if pid @exit_code = status.exitstatus || status.termsig end !!pid end private def wait @exit_code = ::Process.waitpid @pid end def send_term send_signal 'TERM' end def send_kill send_signal 'KILL' end def send_signal(sig) assert_started log "sending #{sig}" ::Process.kill sig, @pid end def launch_process if @io stdout = @io.stdout stderr = @io.stderr end @pid = fork { STDOUT.reopen(stdout || "/dev/null") STDERR.reopen(stderr || "/dev/null") exec(*@args) } ::Process.detach(@pid) if detach? end end # Process end # Unix end # ChildProcess
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
childprocess-0.1.5 | lib/childprocess/unix/process.rb |
childprocess-0.1.4 | lib/childprocess/unix/process.rb |