Class: ChildProcess::AbstractProcess

Inherits:
Object
  • Object
show all
Defined in:
lib/childprocess/abstract_process.rb

Direct Known Subclasses

JRuby::Process, Unix::Process, Windows::Process

Constant Summary collapse

POLL_INTERVAL =
0.1

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ AbstractProcess

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Create a new process with the given args.

See Also:



34
35
36
37
38
39
40
41
42
# File 'lib/childprocess/abstract_process.rb', line 34

def initialize(args)
  @args        = args
  @started     = false
  @exit_code   = nil
  @io          = nil
  @detach      = false
  @duplex      = false
  @environment = {}
end

Instance Attribute Details

#cwdObject

Set the child’s current working directory.



25
26
27
# File 'lib/childprocess/abstract_process.rb', line 25

def cwd
  @cwd
end

#detachObject

Set this to true if you do not care about when or if the process quits.



10
11
12
# File 'lib/childprocess/abstract_process.rb', line 10

def detach
  @detach
end

#duplexObject

Set this to true if you want to write to the process’ stdin (process.io.stdin)



15
16
17
# File 'lib/childprocess/abstract_process.rb', line 15

def duplex
  @duplex
end

#environmentObject (readonly)

Modify the child’s environment variables



20
21
22
# File 'lib/childprocess/abstract_process.rb', line 20

def environment
  @environment
end

#exit_codeObject (readonly)

Returns the value of attribute exit_code.



5
6
7
# File 'lib/childprocess/abstract_process.rb', line 5

def exit_code
  @exit_code
end

Instance Method Details

#alive?Boolean

Is this process running?

Returns:

  • (Boolean)


109
110
111
# File 'lib/childprocess/abstract_process.rb', line 109

def alive?
  started? && !exited?
end

#crashed?Boolean

Returns true if the process has exited and the exit code was not 0.

Returns:

  • (Boolean)


119
120
121
# File 'lib/childprocess/abstract_process.rb', line 119

def crashed?
  exited? && @exit_code != 0
end

#exited?Boolean

Did the process exit?

Returns:

  • (Boolean)

Raises:



99
100
101
# File 'lib/childprocess/abstract_process.rb', line 99

def exited?
  raise SubclassResponsibility, "exited?"
end

#ioObject

Returns a ChildProcess::AbstractIO subclass to configure the child’s IO streams.



48
49
50
# File 'lib/childprocess/abstract_process.rb', line 48

def io
  raise SubclassResponsibility, "io"
end

#pidFixnum

Returns the pid of the process after it has started.

Returns:

  • (Fixnum)

    the pid of the process after it has started

Raises:



56
57
58
# File 'lib/childprocess/abstract_process.rb', line 56

def pid
  raise SubclassResponsibility, "pid"
end

#poll_for_exit(timeout) ⇒ Object

Wait for the process to exit, raising a ChildProcess::TimeoutError if the timeout expires.



128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/childprocess/abstract_process.rb', line 128

def poll_for_exit(timeout)
  log "polling #{timeout} seconds for exit"

  end_time = Time.now + timeout
  until (ok = exited?) || Time.now > end_time
    sleep POLL_INTERVAL
  end

  unless ok
    raise TimeoutError, "process still alive after #{timeout} seconds"
  end
end

#startAbstractProcess

Launch the child process

Returns:



66
67
68
69
70
71
# File 'lib/childprocess/abstract_process.rb', line 66

def start
  launch_process
  @started = true

  self
end

#stop(timeout = 3) ⇒ Object

Forcibly terminate the process, using increasingly harsher methods if possible.

Parameters:

  • timeout (Fixnum) (defaults to: 3)

    (3) Seconds to wait before trying the next method.

Raises:



79
80
81
# File 'lib/childprocess/abstract_process.rb', line 79

def stop(timeout = 3)
  raise SubclassResponsibility, "stop"
end

#waitFixnum

Block until the process has been terminated.

Returns:

  • (Fixnum)

    The exit status of the process

Raises:



89
90
91
# File 'lib/childprocess/abstract_process.rb', line 89

def wait
  raise SubclassResponsibility, "wait"
end