123456789_123456789_123456789_123456789_123456789_

Class: Selenium::WebDriver::ChildProcess Private

Do not use. This class is for internal use only.
Relationships & Source Files
Inherits: Object
Defined in: rb/lib/selenium/webdriver/common/child_process.rb

Constant Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(*command) ⇒ ChildProcess

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 41

def initialize(*command)
  @command = command
  @detach = false
  @pid = nil
  @status = nil
end

Class Method Details

.build(*command)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 37

def self.build(*command)
  new(*command)
end

Instance Attribute Details

#alive?Boolean (readonly)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 79

def alive?
  @pid && !exited?
end

#detach (rw)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 34

attr_accessor :detach

#exited?Boolean (readonly)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 83

def exited?
  return false unless @pid

  WebDriver.logger.debug("Checking if #{@pid} is exited:", id: :process)
  _, @status = Process.waitpid2(@pid, Process::WNOHANG | Process::WUNTRACED) if @status.nil?
  return false if @status.nil?

  exit_code = @status.exitstatus || @status.termsig
  WebDriver.logger.debug("  -> exit code is #{exit_code.inspect}", id: :process)

  !!exit_code
end

#io (rw)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 48

def io
  @io ||= Platform.null_device
end

#io=(value) (rw)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 35

attr_writer :io

Instance Method Details

#kill(pid) (private)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 117

def kill(pid)
  Process.kill(SIGKILL, pid)
rescue Errno::ECHILD, Errno::ESRCH
  # already dead
end

#poll_for_exit(timeout)

Raises:

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 96

def poll_for_exit(timeout)
  WebDriver.logger.debug("Polling #{timeout} seconds for exit of #{@pid}", id: :process)

  end_time = Time.now + timeout
  sleep POLL_INTERVAL until exited? || Time.now > end_time

  raise TimeoutError, "  ->  #{@pid} still alive after #{timeout} seconds" unless exited?
end

#start

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 52

def start
  options = {%i[out err] => io}
  options[:pgroup] = true unless Platform.windows? # NOTE: this is a bug only in Windows 7

  WebDriver.logger.debug("Starting process: #{@command} with #{options}", id: :process)
  @pid = Process.spawn(*@command, options)
  WebDriver.logger.debug("  -> pid: #{@pid}", id: :process)

  Process.detach(@pid) if detach
end

#stop(timeout = 3)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 63

def stop(timeout = 3)
  return unless @pid
  return if exited?

  WebDriver.logger.debug("Sending TERM to process: #{@pid}", id: :process)
  terminate(@pid)
  poll_for_exit(timeout)

  WebDriver.logger.debug("  -> stopped #{@pid}", id: :process)
rescue TimeoutError, Errno::EINVAL
  WebDriver.logger.debug("    -> sending KILL to process: #{@pid}", id: :process)
  kill(@pid)
  wait
  WebDriver.logger.debug("      -> killed #{@pid}", id: :process)
end

#terminate(pid) (private)

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 113

def terminate(pid)
  Process.kill(SIGTERM, pid)
end

#wait

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/common/child_process.rb', line 105

def wait
  return if exited?

  _, @status = Process.waitpid2(@pid)
end