-
Notifications
You must be signed in to change notification settings - Fork 1
/
pool.rb
309 lines (229 loc) · 4.81 KB
/
pool.rb
1
2
3
4
5
6
7
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
43
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
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
134
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#--
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
# Version 2, December 2004
#
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
#
# 0. You just DO WHAT THE FUCK YOU WANT TO.
#++
require 'thread'
class Thread::Pool
class Task
Timeout = Class.new(Exception)
Asked = Class.new(Exception)
attr_reader :pool, :timeout, :exception, :thread, :started_at
def initialize (pool, *args, &block)
@pool = pool
@arguments = args
@block = block
end
def running?; @running; end
def finished?; @finished; end
def timeout?; @timedout; end
def terminated?; @terminated; end
def execute (thread)
return if terminated? || running? || finished?
@thread = thread
@running = true
@started_at = Time.now
pool.wake_up_timeout
begin
@block.call(*@arguments)
rescue Exception => e
if e.is_a? Timeout
@timedout = true
elsif e.is_a? Asked
return
else
@exception = reason
end
end
@running = false
@finished = true
@thread = nil
end
def terminate! (exception = Asked)
return if terminated? || finished? || timeout?
@terminated = true
return unless running?
@thread.raise exception
end
def timeout!
terminate! Timeout
end
def timeout_after (time)
@timeout = time
pool.timeout_for self, time
self
end
end
attr_reader :min, :max, :spawned
def initialize (min, max = nil, &block)
@min = min
@max = max || min
@block = block
@cond = ConditionVariable.new
@mutex = Mutex.new
@todo = []
@workers = []
@timeouts = {}
@spawned = 0
@waiting = 0
@shutdown = false
@trim_requests = 0
@auto_trim = false
@mutex.synchronize {
min.times {
spawn_thread
}
}
end
def shutdown?; !!@shutdown; end
def auto_trim?; @auto_trim; end
def auto_trim!; @auto_trim = true; end
def no_auto_trim!; @auto_trim = false; end
def resize (min, max = nil)
@min = min
@max = max || min
trim!
end
def backlog
@mutex.synchronize {
@todo.length
}
end
def process (*args, &block)
unless block || @block
raise ArgumentError, 'you must pass a block'
end
task = Task.new(self, *args, &(block || @block))
@mutex.synchronize {
raise 'unable to add work while shutting down' if shutdown?
@todo << task
if @waiting == 0 && @spawned < @max
spawn_thread
end
@cond.signal
}
task
end
alias << process
def trim (force = false)
@mutex.synchronize {
if (force || @waiting > 0) && @spawned - @trim_requests > @min
@trim_requests -= 1
@cond.signal
end
}
self
end
def trim!
trim true
end
def shutdown!
@mutex.synchronize {
@shutdown = :now
@cond.broadcast
}
wake_up_timeout
self
end
def shutdown
@mutex.synchronize {
@shutdown = :nicely
@cond.broadcast
}
join
if @timeout
@shutdown = :now
wake_up_timeout
@timeout.join
end
self
end
def join
@workers.first.join until @workers.empty?
self
end
def timeout_for (task, timeout)
unless @timeout
spawn_timeout_thread
end
@mutex.synchronize {
@timeouts[task] = timeout
wake_up_timeout
}
end
def shutdown_after (timeout)
Thread.new {
sleep timeout
shutdown
}
self
end
def wake_up_timeout
if @pipes
@pipes.last.write_nonblock 'x' rescue nil
end
end
private
def spawn_thread
@spawned += 1
thread = Thread.new {
loop do
task = @mutex.synchronize {
if @todo.empty?
while @todo.empty?
if @trim_requests > 0
@trim_requests -= 1
break
end
break if shutdown?
@waiting += 1
@cond.wait @mutex
@waiting -= 1
break !shutdown?
end or break
end
@todo.shift
} or break
task.execute(thread)
break if @shutdown == :now
trim if auto_trim? && @spawned > @min
end
@mutex.synchronize {
@spawned -= 1
@workers.delete thread
}
}
@workers << thread
thread
end
def spawn_timeout_thread
@pipes = IO.pipe
@timeout = Thread.new {
loop do
now = Time.now
timeout = @timeouts.map {|task, timeout|
next unless task.started_at
now - task.started_at + task.timeout
}.compact.min unless @timeouts.empty?
readable, = IO.select([@pipes.first], nil, nil, timeout)
break if @shutdown == :now
if readable && !readable.empty?
readable.first.read_nonblock 1024
end
now = Time.now
@timeouts.each {|task, time|
next if !task.started_at || task.terminated? || task.finished?
if now > task.started_at + task.timeout
task.timeout!
end
}
@timeouts.reject! { |task, _| task.terminated? || task.finished? }
break if @shutdown == :now
end
}
end
end