Class: RbbtProcessQueue::RbbtProcessQueueWorker
- Inherits:
-
Object
- Object
- RbbtProcessQueue::RbbtProcessQueueWorker
- Defined in:
- lib/rbbt/util/concurrency/processes/worker.rb
Defined Under Namespace
Classes: Respawn
Instance Attribute Summary collapse
-
#block ⇒ Object
readonly
Returns the value of attribute block.
-
#callback_queue ⇒ Object
readonly
Returns the value of attribute callback_queue.
-
#cleanup ⇒ Object
readonly
Returns the value of attribute cleanup.
-
#pid ⇒ Object
readonly
Returns the value of attribute pid.
-
#queue ⇒ Object
readonly
Returns the value of attribute queue.
Instance Method Summary collapse
- #abort ⇒ Object
- #done? ⇒ Boolean
-
#initialize(queue, callback_queue = nil, cleanup = nil, respawn = false, &block) ⇒ RbbtProcessQueueWorker
constructor
A new instance of RbbtProcessQueueWorker.
- #join ⇒ Object
- #run ⇒ Object
- #run_with_respawn(multiplier = nil) ⇒ Object
Constructor Details
#initialize(queue, callback_queue = nil, cleanup = nil, respawn = false, &block) ⇒ RbbtProcessQueueWorker
Returns a new instance of RbbtProcessQueueWorker.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 105 def initialize(queue, callback_queue = nil, cleanup = nil, respawn = false, &block) @queue, @callback_queue, @cleanup, @block = queue, callback_queue, cleanup, block @pid = Process.fork do Misc.pre_fork @cleanup.call if @cleanup @queue.close_write if @callback_queue Misc.purge_pipes(@callback_queue.swrite) @callback_queue.close_read else Misc.purge_pipes end if respawn run_with_respawn respawn else run end end end |
Instance Attribute Details
#block ⇒ Object (readonly)
Returns the value of attribute block.
4 5 6 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4 def block @block end |
#callback_queue ⇒ Object (readonly)
Returns the value of attribute callback_queue.
4 5 6 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4 def callback_queue @callback_queue end |
#cleanup ⇒ Object (readonly)
Returns the value of attribute cleanup.
4 5 6 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4 def cleanup @cleanup end |
#pid ⇒ Object (readonly)
Returns the value of attribute pid.
4 5 6 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4 def pid @pid end |
#queue ⇒ Object (readonly)
Returns the value of attribute queue.
4 5 6 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4 def queue @queue end |
Instance Method Details
#abort ⇒ Object
134 135 136 137 138 139 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 134 def abort begin Process.kill :INT, @pid rescue end end |
#done? ⇒ Boolean
141 142 143 144 145 146 147 148 149 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 141 def done? begin Process.waitpid @pid, Process::WNOHANG rescue Errno::ECHILD true rescue false end end |
#join ⇒ Object
129 130 131 132 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 129 def join Process.waitpid @pid raise ProcessFailed unless $?.success? end |
#run ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 8 def run begin Signal.trap(:INT){ Kernel.exit! -1 } @stop = false Signal.trap(:USR1){ @stop = true } loop do p = @queue.pop next if p.nil? raise p if Exception === p raise p.first if Exception === p.first res = @block.call *p @callback_queue.push res if @callback_queue raise Respawn if @stop end Kernel.exit! 0 rescue Respawn Kernel.exit! 28 rescue ClosedStream rescue Aborted, Interrupt Log.warn "Worker #{Process.pid} aborted" rescue Exception Log.exception $! @callback_queue.push($!) if @callback_queue Kernel.exit! -1 ensure @callback_queue.close_write if @callback_queue end Kernel.exit! 0 end |
#run_with_respawn(multiplier = nil) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 44 def run_with_respawn(multiplier = nil) multiplier = case multiplier when String multiplier.to_s when Fixnum multiplier.to_i else 3 end status = nil begin @current = Process.fork do run end Log.warn "Worker #{Process.pid} started with #{@current}" @monitor_thread = Thread.new do begin while true current = Misc.memory_use(@current) initial = Misc.memory_use(Process.pid) if current > multiplier * initial Process.kill "USR1", @current end sleep 1 end rescue Log.exception $! end end while true pid, status = Process.waitpid2 @current code = status.to_i >> 8 break unless code == 28 @current = Process.fork do run end Log.warn "Worker #{Process.pid} respawning to #{@current}" end rescue Aborted, Interrupt Log.warn "Worker #{Process.pid} aborted" Kernel.exit! 0 Process.kill "INT", @current rescue Exception Log.exception $! raise $! ensure @monitor_thread.kill Process.kill "INT", @current if Misc.pid_exists? @current @callback_queue.close_write if @callback_queue end if status Kernel.exit! status.to_i >> 8 else Kernel.exit! -1 end end |