Class: RbbtProcessQueue::RbbtProcessQueueWorker

Inherits:
Object
  • Object
show all
Defined in:
lib/rbbt/util/concurrency/processes/worker.rb

Defined Under Namespace

Classes: Respawn

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(queue, callback_queue = nil, cleanup = nil, respawn = false, offset = false, &block) ⇒ RbbtProcessQueueWorker

Returns a new instance of RbbtProcessQueueWorker.



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 135

def initialize(queue, callback_queue = nil, cleanup = nil, respawn = false, offset = false, &block)
  @queue, @callback_queue, @cleanup, @block, @offset = queue, callback_queue, cleanup, block, offset

  @pid = Process.fork do
    Misc.pre_fork
    Log::ProgressBar.add_offset if @offset

    @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
    Log::ProgressBar.remove_offset if @offset
  end
end

Instance Attribute Details

#blockObject (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_queueObject (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

#cleanupObject (readonly)

Returns the value of attribute cleanup.



4
5
6
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4

def cleanup
  @cleanup
end

#pidObject (readonly)

Returns the value of attribute pid.



4
5
6
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 4

def pid
  @pid
end

#queueObject (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

#abortObject



166
167
168
169
170
171
172
173
174
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 166

def abort
  begin
    Process.kill :USR2, @pid
    Process.kill :INT, @pid
  rescue Errno::ESRCH 
  rescue Exception
    Log.exception $!
  end
end

#done?Boolean

Returns:

  • (Boolean)


176
177
178
179
180
181
182
183
184
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 176

def done?
  begin
    Process.waitpid @pid, Process::WNOHANG
  rescue Errno::ECHILD
    true
  rescue
    false
  end
end

#joinObject

Raises:



161
162
163
164
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 161

def join
  Process.waitpid @pid
  raise ProcessFailed if not $?.success?
end

#runObject



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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 13

def run
  begin
    Signal.trap(:INT){ 
      Kernel.exit! -1
    }

    @stop = false
    Signal.trap(:USR1){ 
      @stop = true
    }

    @abort = false
    Signal.trap(:USR2){ 
      @abort = true
    }


    loop do
      p = @queue.pop
      next if p.nil?
      raise p if Exception === p
      raise p.first if Array === p and Exception === p.first
      begin
        res = @block.call *p
        @callback_queue.push res if @callback_queue
      rescue Respawn
        @callback_queue.push $!.payload 
        raise $!
      end
      raise Respawn if @stop
      raise Aborted if @abort
    end
    Kernel.exit! 0
  rescue Respawn
    Kernel.exit! 28
  rescue ClosedStream
  rescue Aborted, Interrupt
    Log.info "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



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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/rbbt/util/concurrency/processes/worker.rb', line 61

def run_with_respawn(multiplier = nil)
  multiplier = case multiplier
               when String
                 multiplier.to_s
               when Numeric
                 multiplier.to_i
               else
                 3
               end

  status = nil
  begin

    initial = Misc.memory_use(Process.pid)
    memory_cap = multiplier * initial
    Log.debug "Worker for #{Process.pid} started with pid #{@current} -- initial: #{initial} - multiplier: #{multiplier} - cap: #{memory_cap}"

    @asked = false
    @monitored = false
    @monitor_thread = Thread.new do
      begin
        while true
          @monitored = true
          current = @current ? 0 : Misc.memory_use(@current) 
          if current > memory_cap and not @asked
            Log.medium "Worker #{@current} for #{Process.pid} asked to respawn -- initial: #{initial} - multiplier: #{multiplier} - cap: #{memory_cap} - current: #{current}"
            RbbtSemaphore.synchronize(@callback_queue.write_sem) do
              Process.kill "USR1", @current
            end
            @asked = true
          end
          sleep 3 + rand(5)
        end
      rescue
        Log.exception $!
      end
    end

    while ! @monitored
      sleep 0.1
    end
    @current = Process.fork do
      run
    end

    while true
      pid, status = Process.waitpid2 @current
      code = status.to_i >> 8 
      break unless code == 28
      @current = Process.fork do
        run
      end
      @asked = false
      Log.high "Worker #{Process.pid} respawning to #{@current}"
    end
  rescue Aborted, Interrupt
    Log.warn "Worker #{Process.pid} aborted"
    Kernel.exit! 0
  rescue Exception
    Log.exception $!
    raise $!
  ensure
    @monitor_thread.kill if @monitor_thread
    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