Class: Cuboid::Processes::Manager
- Includes:
- Singleton
- Defined in:
- lib/cuboid/processes/manager.rb
Overview
Helper for managing processes.
Constant Summary collapse
- RUNNER =
"#{File.dirname( __FILE__ )}/executables/base.rb"
Instance Attribute Summary collapse
-
#pids ⇒ Array<Integer>
readonly
PIDs of all running processes.
Class Method Summary collapse
Instance Method Summary collapse
-
#<<(pid) ⇒ Integer
‘pid`.
-
#alive?(pid) ⇒ Boolean
‘true` if the process is alive, `false` otherwise.
- #discard_output ⇒ Object
- #discard_output? ⇒ Boolean
- #find(bin) ⇒ Object
- #find_in_applications(bin) ⇒ Object
- #find_in_path(bin) ⇒ Object
- #find_in_program_files(bin) ⇒ Object
-
#initialize ⇒ Manager
constructor
A new instance of Manager.
- #kill(pid) ⇒ Object
- #kill_many(pids) ⇒ Object
-
#kill_reactor ⇒ Object
Stops the Reactor.
-
#killall ⇒ Object
Kills all processes.
-
#preserve_output ⇒ Object
Overrides the default setting of discarding process outputs.
- #preserve_output? ⇒ Boolean
- #reset ⇒ Object
-
#spawn(executable, options = {}) ⇒ Integer
PID of the process.
Constructor Details
#initialize ⇒ Manager
Returns a new instance of Manager.
18 19 20 |
# File 'lib/cuboid/processes/manager.rb', line 18 def initialize reset end |
Instance Attribute Details
#pids ⇒ Array<Integer> (readonly)
Returns PIDs of all running processes.
16 17 18 |
# File 'lib/cuboid/processes/manager.rb', line 16 def pids @pids end |
Class Method Details
.method_missing(sym, *args, &block) ⇒ Object
245 246 247 248 249 250 251 |
# File 'lib/cuboid/processes/manager.rb', line 245 def self.method_missing( sym, *args, &block ) if instance.respond_to?( sym ) instance.send( sym, *args, &block ) else super( sym, *args, &block ) end end |
.respond_to?(m) ⇒ Boolean
253 254 255 |
# File 'lib/cuboid/processes/manager.rb', line 253 def self.respond_to?( m ) super( m ) || instance.respond_to?( m ) end |
Instance Method Details
#<<(pid) ⇒ Integer
Returns ‘pid`.
31 32 33 34 35 |
# File 'lib/cuboid/processes/manager.rb', line 31 def <<( pid ) @pids << pid Process.detach pid pid end |
#alive?(pid) ⇒ Boolean
Returns ‘true` if the process is alive, `false` otherwise.
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/cuboid/processes/manager.rb', line 128 def alive?( pid ) # Windows is not big on POSIX so try it its own way if possible. if Cuboid.windows? begin alive = false processes = wmi.ExecQuery( "select ProcessId from win32_process where ProcessID='#{pid}'" ) processes.each do |proc| proc.ole_free alive = true end processes.ole_free return alive rescue WIN32OLERuntimeError end end !!(Process.kill( 0, pid ) rescue false) end |
#discard_output ⇒ Object
176 177 178 |
# File 'lib/cuboid/processes/manager.rb', line 176 def discard_output @discard_output = true end |
#discard_output? ⇒ Boolean
180 181 182 |
# File 'lib/cuboid/processes/manager.rb', line 180 def discard_output? @discard_output end |
#find(bin) ⇒ Object
62 63 64 65 |
# File 'lib/cuboid/processes/manager.rb', line 62 def find( bin ) find_in_path( bin ) || find_in_applications( bin ) || find_in_program_files( bin ) end |
#find_in_applications(bin) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/cuboid/processes/manager.rb', line 83 def find_in_applications( bin ) return if !Cuboid.mac? @find_in_applications ||= {} return @find_in_applications[bin] if @find_in_applications.include?( bin ) ( ENV['PATH'].split( File::PATH_SEPARATOR ) | [ '/Applications' ] ).each do |root| glob = File.join( "#{root}/*/Contents/MacOS", '**', bin ) exe = Dir.glob( glob ).find { |f| File.executable?( f ) } return @find_in_applications[bin] = exe if exe end @find_in_applications[bin] = nil end |
#find_in_path(bin) ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/cuboid/processes/manager.rb', line 67 def find_in_path( bin ) @find_in_path ||= {} return @find_in_path[bin] if @find_in_path.include?( bin ) if Cuboid.windows? bin = "#{bin}.exe" end ENV['PATH'].split( File::PATH_SEPARATOR ).each do |path| f = File.join( path, bin ) return @find_in_path[bin] = f if File.exist?( f ) end @find_in_path[bin] = nil end |
#find_in_program_files(bin) ⇒ Object
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/cuboid/processes/manager.rb', line 104 def find_in_program_files( bin ) return if !Cuboid.windows? @find_in_program_files ||= {} return @find_in_program_files[bin] if @find_in_program_files.include?( bin ) [ ENV['PROGRAMFILES'] || '\\Program Files', ENV['ProgramFiles(x86)'] || '\\Program Files (x86)', ENV['ProgramW6432'] || '\\Program Files' ].each do |root| glob = File.join( root, '**', "#{bin}.exe" ) glob.tr!( '\\', '/' ) exe = Dir.glob( glob ).find { |f| File.executable?( f ) } return @find_in_program_files[bin] = exe if exe end @find_in_program_files[bin] = nil end |
#kill(pid) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/cuboid/processes/manager.rb', line 39 def kill( pid ) fail 'Cannot kill self.' if pid == Process.pid Timeout.timeout 10 do while sleep 0.1 do begin Process.kill( Cuboid.windows? ? 'KILL' : 'TERM', pid ) # Either kill was successful or we don't have enough perms or # we hit a reused PID for someone else's process, either way, # consider the process gone. rescue Errno::ESRCH, Errno::EPERM, # Don't kill ourselves. SignalException @pids.delete pid return end end end rescue Timeout::Error end |
#kill_many(pids) ⇒ Object
150 151 152 |
# File 'lib/cuboid/processes/manager.rb', line 150 def kill_many( pids ) pids.each { |pid| kill pid } end |
#kill_reactor ⇒ Object
Stops the Reactor.
161 162 163 164 165 |
# File 'lib/cuboid/processes/manager.rb', line 161 def kill_reactor Raktr.stop rescue nil end |
#killall ⇒ Object
Kills all processes.
155 156 157 158 |
# File 'lib/cuboid/processes/manager.rb', line 155 def killall kill_many @pids.dup @pids.clear end |
#preserve_output ⇒ Object
Overrides the default setting of discarding process outputs.
168 169 170 |
# File 'lib/cuboid/processes/manager.rb', line 168 def preserve_output @discard_output = false end |
#preserve_output? ⇒ Boolean
172 173 174 |
# File 'lib/cuboid/processes/manager.rb', line 172 def preserve_output? !discard_output? end |
#reset ⇒ Object
22 23 24 25 |
# File 'lib/cuboid/processes/manager.rb', line 22 def reset @pids = [] @discard_output = true end |
#spawn(executable, options = {}) ⇒ Integer
Returns PID of the process.
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/cuboid/processes/manager.rb', line 192 def spawn( executable, = {} ) fail ArgumentError, 'Fork not supported.' if .delete(:fork) stdin = .delete(:stdin) stdout = .delete(:stdout) stderr = .delete(:stderr) new_pgroup = .delete(:new_pgroup) = {} if new_pgroup if Cuboid.windows? [:new_pgroup] = new_pgroup else [:pgroup] = new_pgroup end end [:in] = stdin if stdin [:out] = stdout if stdout [:err] = stderr if stderr [:ppid] = Process.pid [:tmpdir] = Options.paths.tmpdir = Options.dup.update( .delete(:options) || {} ).to_h = Base64.strict_encode64( Marshal.dump( ) ) if executable.is_a? Symbol executable = "#{Options.paths.executables}/#{executable}.rb" elsif !File.exist?( executable ) raise ArgumentError, "Executable does not exist: #{executable}" end = Base64.strict_encode64( Marshal.dump( ) ) argv = [executable, ] # It's very, **VERY** important that we use this argument format as # it bypasses the OS shell and we can thus count on a 1-to-1 process # creation and that the PID we get will be for the actual process. pid = Process.spawn( { 'CUBOID_SPAWN_OPTIONS' => }, RbConfig.ruby, RUNNER, *(argv + []) ) self << pid pid end |