Class: BackgroundQueue::ServerLib::Job
Instance Attribute Summary collapse
Instance Method Summary
collapse
#each_item, #empty?, #number_if_items_at_priority, #number_of_priorities, #peek, #pop, #priority, #push, #remove, #stalled=, #stalled?
Constructor Details
#initialize(id, owner) ⇒ Job
attr_reader :current_running_excluded_status
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
|
# File 'lib/background_queue/server_lib/job.rb', line 24
def initialize(id, owner)
@id = id
@owner = owner
@stalled = false
@total_tasks = 0
@total_counted_tasks = 0
@completed_tasks = 0
@completed_counted_tasks = 0
@running_status = {}
@running_ordered_status = []
@running_percent = 0
@current_running_status = nil
@current_progress = {:percent=>0.0, :caption=>""}
@current_caption = ""
@synchronous_count = 0
@total_weighted_tasks = 0
@total_weighted_percent = 0.0
@completed_weighted_percent = 0.0
@completed_weighted_tasks = 0
@running_percent_weighted = 0.0
@status_meta = {}
@mutex = Mutex.new
super()
end
|
Instance Attribute Details
#completed_counted_tasks ⇒ Object
Returns the value of attribute completed_counted_tasks.
11
12
13
|
# File 'lib/background_queue/server_lib/job.rb', line 11
def completed_counted_tasks
@completed_counted_tasks
end
|
#completed_tasks ⇒ Object
Returns the value of attribute completed_tasks.
10
11
12
|
# File 'lib/background_queue/server_lib/job.rb', line 10
def completed_tasks
@completed_tasks
end
|
#completed_weighted_percent ⇒ Object
Returns the value of attribute completed_weighted_percent.
18
19
20
|
# File 'lib/background_queue/server_lib/job.rb', line 18
def completed_weighted_percent
@completed_weighted_percent
end
|
#completed_weighted_tasks ⇒ Object
Returns the value of attribute completed_weighted_tasks.
19
20
21
|
# File 'lib/background_queue/server_lib/job.rb', line 19
def completed_weighted_tasks
@completed_weighted_tasks
end
|
#current_running_status ⇒ Object
Returns the value of attribute current_running_status.
14
15
16
|
# File 'lib/background_queue/server_lib/job.rb', line 14
def current_running_status
@current_running_status
end
|
#id ⇒ Object
Returns the value of attribute id.
5
6
7
|
# File 'lib/background_queue/server_lib/job.rb', line 5
def id
@id
end
|
#running_ordered_status ⇒ Object
Returns the value of attribute running_ordered_status.
7
8
9
|
# File 'lib/background_queue/server_lib/job.rb', line 7
def running_ordered_status
@running_ordered_status
end
|
#running_percent ⇒ Object
Returns the value of attribute running_percent.
12
13
14
|
# File 'lib/background_queue/server_lib/job.rb', line 12
def running_percent
@running_percent
end
|
#running_percent_counted ⇒ Object
Returns the value of attribute running_percent_counted.
13
14
15
|
# File 'lib/background_queue/server_lib/job.rb', line 13
def running_percent_counted
@running_percent_counted
end
|
#running_percent_weighted ⇒ Object
Returns the value of attribute running_percent_weighted.
20
21
22
|
# File 'lib/background_queue/server_lib/job.rb', line 20
def running_percent_weighted
@running_percent_weighted
end
|
#running_status ⇒ Object
Returns the value of attribute running_status.
6
7
8
|
# File 'lib/background_queue/server_lib/job.rb', line 6
def running_status
@running_status
end
|
#total_counted_tasks ⇒ Object
Returns the value of attribute total_counted_tasks.
9
10
11
|
# File 'lib/background_queue/server_lib/job.rb', line 9
def total_counted_tasks
@total_counted_tasks
end
|
#total_tasks ⇒ Object
Returns the value of attribute total_tasks.
8
9
10
|
# File 'lib/background_queue/server_lib/job.rb', line 8
def total_tasks
@total_tasks
end
|
#total_weighted_percent ⇒ Object
Returns the value of attribute total_weighted_percent.
17
18
19
|
# File 'lib/background_queue/server_lib/job.rb', line 17
def total_weighted_percent
@total_weighted_percent
end
|
#total_weighted_tasks ⇒ Object
Returns the value of attribute total_weighted_tasks.
16
17
18
|
# File 'lib/background_queue/server_lib/job.rb', line 16
def total_weighted_tasks
@total_weighted_tasks
end
|
Instance Method Details
#==(other) ⇒ Object
50
51
52
|
# File 'lib/background_queue/server_lib/job.rb', line 50
def ==(other)
@id == other.id
end
|
#add_item(task) ⇒ Object
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# File 'lib/background_queue/server_lib/job.rb', line 62
def add_item(task)
task.set_job(self)
@total_tasks += 1
unless task.is_excluded_from_count?
@total_counted_tasks += 1
end
if task.weighted?
@total_weighted_tasks += 1
@total_weighted_percent += task.weighted_percent
end
@synchronous_count+=1 if task.synchronous?
unless task.initial_progress_caption.nil? || task.initial_progress_caption.length == 0 || @current_progress[:percent] > 0
@current_progress[:caption] = task.initial_progress_caption
end
push(task)
end
|
#deregister_running_status(task_id) ⇒ Object
125
126
127
128
129
130
131
|
# File 'lib/background_queue/server_lib/job.rb', line 125
def deregister_running_status(task_id)
rstatus = @running_status.delete(task_id)
unless rstatus.nil?
@running_ordered_status.delete(rstatus)
end
rstatus
end
|
#finish_item(item) ⇒ Object
87
88
89
|
# File 'lib/background_queue/server_lib/job.rb', line 87
def finish_item(item)
@synchronous_count-=1 if item.synchronous?
end
|
#get_current_counted_tasks ⇒ Object
235
236
237
238
239
240
241
|
# File 'lib/background_queue/server_lib/job.rb', line 235
def get_current_counted_tasks
cnt = self.completed_counted_tasks + self.running_percent_counted.to_i
if cnt < self.total_counted_tasks
cnt += 1
end
cnt
end
|
#get_current_progress ⇒ Object
251
252
253
|
# File 'lib/background_queue/server_lib/job.rb', line 251
def get_current_progress
@current_progress
end
|
#get_current_progress_caption ⇒ Object
219
220
221
222
223
224
|
# File 'lib/background_queue/server_lib/job.rb', line 219
def get_current_progress_caption
if self.current_running_status
update_current_caption(self.current_running_status)
end
@current_caption
end
|
#get_current_progress_percent ⇒ Object
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
# File 'lib/background_queue/server_lib/job.rb', line 201
def get_current_progress_percent
unweighted_percent = (100.0 - self.total_weighted_percent) / 100.0
total_unweighted_tasks = self.total_tasks - self.total_weighted_tasks
completed_unweighted_tasks = self.completed_tasks - self.completed_weighted_tasks
total_finished_percent = total_unweighted_tasks == 0 ? 0 : (completed_unweighted_tasks.to_f / total_unweighted_tasks.to_f) * 100.0
running_fraction = total_unweighted_tasks == 0 ? 1.0 : (1.0 / total_unweighted_tasks.to_f)
total_running_percent = self.running_percent.to_f * running_fraction * 100.0
total_unweighted_percent = (total_finished_percent + total_running_percent) * unweighted_percent
total_percent = total_unweighted_percent.to_f + (running_percent_weighted * 100.0) + completed_weighted_percent
total_percent
end
|
#get_running_status(status) ⇒ Object
108
109
110
111
112
|
# File 'lib/background_queue/server_lib/job.rb', line 108
def get_running_status(status)
rstatus = @running_status[status[:task_id]]
rstatus = register_running_status(status) if rstatus.nil?
rstatus
end
|
#inspect ⇒ Object
54
55
56
|
# File 'lib/background_queue/server_lib/job.rb', line 54
def inspect
"#{self.id}:#{@queues.inspect}"
end
|
#next_item ⇒ Object
79
80
81
|
# File 'lib/background_queue/server_lib/job.rb', line 79
def next_item
pop
end
|
#register_running_status(status) ⇒ Object
114
115
116
117
118
119
120
121
122
123
|
# File 'lib/background_queue/server_lib/job.rb', line 114
def register_running_status(status)
rstatus = {:task_id=>status[:task_id], :caption=>status[:caption], :percent=>0, :exclude=>status[:exclude], :weight=>status[:weight] }
@running_status[status[:task_id]] = rstatus
@running_ordered_status << rstatus
rstatus
end
|
#remove_item(item) ⇒ Object
83
84
85
|
# File 'lib/background_queue/server_lib/job.rb', line 83
def remove_item(item)
remove(item)
end
|
#server ⇒ Object
58
59
60
|
# File 'lib/background_queue/server_lib/job.rb', line 58
def server
@owner.server
end
|
#set_running_percent(pcent_counted, pcent, running_task_pcent, weighted_percent) ⇒ Object
189
190
191
192
193
194
195
196
197
198
199
|
# File 'lib/background_queue/server_lib/job.rb', line 189
def set_running_percent(pcent_counted, pcent, running_task_pcent, weighted_percent)
@running_percent_counted = pcent_counted
@running_percent = pcent
@running_percent_weighted = weighted_percent
idx = running_task_pcent.to_i
if @running_ordered_status.length <= idx
@current_running_status = @running_ordered_status.last
else
@current_running_status = @running_ordered_status[idx]
end
end
|
#set_worker_status(status) ⇒ Object
95
96
97
98
99
100
101
102
103
104
105
106
|
# File 'lib/background_queue/server_lib/job.rb', line 95
def set_worker_status(status)
if status[:meta]
update_status_meta(status[:meta])
else
running_status = get_running_status(status)
if status[:percent] >= 100
update_finished_status(status)
else
update_running_status(running_status, status)
end
end
end
|
#synchronous? ⇒ Boolean
91
92
93
|
# File 'lib/background_queue/server_lib/job.rb', line 91
def synchronous?
@synchronous_count > 0
end
|
#update_current_caption(status) ⇒ Object
226
227
228
229
230
231
232
233
|
# File 'lib/background_queue/server_lib/job.rb', line 226
def update_current_caption(status)
caption = status[:caption]
caption = "" if caption.nil?
if total_counted_tasks > 1 && status[:exclude] != true
caption = "#{caption} (#{self.get_current_counted_tasks}/#{self.total_counted_tasks})"
end
@current_caption = caption
end
|
#update_current_progress ⇒ Object
243
244
245
246
247
248
249
|
# File 'lib/background_queue/server_lib/job.rb', line 243
def update_current_progress
@current_progress = {
:percent=>get_current_progress_percent,
:caption=>get_current_progress_caption
}.update(@status_meta)
end
|
#update_finished_status(status) ⇒ Object
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# File 'lib/background_queue/server_lib/job.rb', line 154
def update_finished_status(status)
rstatus = deregister_running_status(status[:task_id])
unless rstatus.nil?
@completed_tasks += 1
@completed_counted_tasks += 1 unless rstatus[:exclude]
unless rstatus[:weight].nil?
@completed_weighted_percent += rstatus[:weight]
@completed_weighted_tasks += 1
end
if self.current_running_status.nil? || @current_running_status == rstatus
update_current_caption(status)
end
update_running_percent()
end
end
|
#update_running_percent ⇒ Object
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
# File 'lib/background_queue/server_lib/job.rb', line 171
def update_running_percent
total_percent = 0.0
total_task_percent = 0.0
total_percent_counted = 0.0
total_weighted_percent = 0.0
for status in @running_ordered_status
if status[:weight] && status[:weight] > 0
total_weighted_percent += (status[:percent] * status[:weight] / 100.0)
else
total_percent_counted += status[:percent] unless status[:exclude]
total_percent += status[:percent]
end
total_task_percent += status[:percent]
end
set_running_percent(total_percent_counted.to_f / 100.0, total_percent.to_f / 100.0, total_task_percent / 100.0, total_weighted_percent.to_f / 100.0)
self.update_current_progress
end
|
#update_running_status(running_status, status) ⇒ Object
133
134
135
136
137
|
# File 'lib/background_queue/server_lib/job.rb', line 133
def update_running_status(running_status, status)
running_status[:percent] = status[:percent]
running_status[:caption] = status[:caption]
update_running_percent
end
|
140
141
142
143
144
145
146
147
148
149
150
151
152
|
# File 'lib/background_queue/server_lib/job.rb', line 140
def update_status_meta(meta)
[:notice, :warning, :error].each { |key|
if meta[key]
@status_meta[key] = [] if @status_meta[key].nil?
@status_meta[key] << meta[key]
end
}
if meta[:meta]
@status_meta[:meta] = {} if @status_meta[:meta].nil?
@status_meta[:meta] = @status_meta[:meta].update(meta[:meta])
end
update_current_progress
end
|