1 module PipelineInstancesHelper
3 def pipeline_jobs object=nil
5 if object.components[:steps].is_a? Array
6 pipeline_jobs_oldschool object
7 elsif object.components.is_a? Hash
8 pipeline_jobs_newschool object
12 def render_pipeline_jobs
13 pipeline_jobs.collect do |pj|
14 render_pipeline_job pj
18 def render_pipeline_job pj
19 pj[:progress_bar] = render partial: 'job_progress', locals: {:j => pj[:job]}
20 pj[:output_link] = link_to_if_arvados_object pj[:output]
21 pj[:job_link] = link_to_if_arvados_object pj[:job][:uuid] if pj[:job]
25 # Merge (started_at, finished_at) time range into the list of time ranges in
26 # timestamps (timestamps must be sorted and non-overlapping).
27 # return the updated timestamps list.
28 def merge_range timestamps, started_at, finished_at
29 # in the comments below, 'i' is the entry in the timestamps array and 'j'
30 # is the started_at, finished_at range which is passed in.
31 timestamps.each_index do |i|
33 if started_at >= timestamps[i][0] and finished_at <= timestamps[i][1]
34 # 'j' started and ended during 'i'
38 if started_at < timestamps[i][0] and finished_at >= timestamps[i][0] and finished_at <= timestamps[i][1]
39 # 'j' started before 'i' and finished during 'i'
40 # re-merge range between when 'j' started and 'i' finished
41 finished_at = timestamps[i][1]
42 timestamps.delete_at i
43 return merge_range timestamps, started_at, finished_at
46 if started_at >= timestamps[i][0] and started_at <= timestamps[i][1]
47 # 'j' started during 'i' and finished sometime after
48 # move end time of 'i' back
49 # re-merge range between when 'i' started and 'j' finished
50 started_at = timestamps[i][0]
51 timestamps.delete_at i
52 return merge_range timestamps, started_at, finished_at
55 if finished_at < timestamps[i][0]
56 # 'j' finished before 'i' started, so insert before 'i'
57 timestamps.insert i, [started_at, finished_at]
63 timestamps << [started_at, finished_at]
66 # Accept a list of objects with [:started_at] and [:finshed_at] keys and
67 # merge overlapping ranges to compute the time spent running after periods of
68 # overlapping execution are factored out.
69 def determine_wallclock_runtime jobs
73 started_at = j[:started_at]
74 finished_at = (if j[:finished_at] then j[:finished_at] else Time.now end)
76 timestamps = merge_range timestamps, started_at, finished_at
79 timestamps.map { |t| t[1] - t[0] }.reduce(:+) || 0
84 def pipeline_jobs_newschool object
88 jobuuids = object.components.values.map { |c|
89 c[:job][:uuid] if c.is_a?(Hash) and c[:job].is_a?(Hash)
92 Job.where(uuid: jobuuids).each do |j|
96 object.components.each do |cname, c|
98 pj = {index: i, name: cname}
103 if c[:job] and c[:job][:uuid] and job[c[:job][:uuid]]
104 pj[:job] = job[c[:job][:uuid]]
105 elsif c[:job].is_a?(Hash)
107 if pj[:job][:started_at].is_a? String
108 pj[:job][:started_at] = Time.parse(pj[:job][:started_at])
110 if pj[:job][:finished_at].is_a? String
111 pj[:job][:finished_at] = Time.parse(pj[:job][:finished_at])
113 # If necessary, figure out the state based on the other fields.
114 pj[:job][:state] ||= if pj[:job][:cancelled_at]
116 elsif pj[:job][:success] == false
118 elsif pj[:job][:success] == true
120 elsif pj[:job][:running] == true
128 pj[:percent_done] = 0
129 pj[:percent_running] = 0
130 if pj[:job][:success]
133 pj[:percent_done] = 100
138 if pj[:job][:tasks_summary]
140 ts = pj[:job][:tasks_summary]
141 denom = ts[:done].to_f + ts[:running].to_f + ts[:todo].to_f
142 pj[:progress] = (ts[:done].to_f + ts[:running].to_f/2) / denom
143 pj[:percent_done] = 100.0 * ts[:done].to_f / denom
144 pj[:percent_running] = 100.0 * ts[:running].to_f / denom
145 pj[:progress_detail] = "#{ts[:done]} done #{ts[:running]} run #{ts[:todo]} todo"
148 pj[:percent_done] = 0.0
149 pj[:percent_running] = 100.0
156 case pj[:job][:state]
158 pj[:result] = 'complete'
159 pj[:labeltype] = 'success'
163 pj[:result] = 'failed'
164 pj[:labeltype] = 'danger'
167 pj[:result] = 'cancelled'
168 pj[:labeltype] = 'danger'
171 pj[:result] = 'running'
172 pj[:labeltype] = 'primary'
174 pj[:result] = 'queued'
175 pj[:labeltype] = 'default'
178 pj[:labeltype] = 'default'
181 pj[:job_id] = pj[:job][:uuid]
182 pj[:script] = pj[:job][:script] || c[:script]
183 pj[:repository] = pj[:job][:script] || c[:repository]
184 pj[:script_parameters] = pj[:job][:script_parameters] || c[:script_parameters]
185 pj[:script_version] = pj[:job][:script_version] || c[:script_version]
186 pj[:nondeterministic] = pj[:job][:nondeterministic] || c[:nondeterministic]
187 pj[:output] = pj[:job][:output]
188 pj[:output_uuid] = c[:output_uuid]
189 pj[:finished_at] = pj[:job][:finished_at]
195 def pipeline_jobs_oldschool object
197 object.components[:steps].each_with_index do |step, i|
198 pj = {index: i, name: step[:name]}
199 if step[:complete] and step[:complete] != 0
200 if step[:output_data_locator]
206 if step[:progress] and
207 (re = step[:progress].match /^(\d+)\+(\d+)\/(\d+)$/)
208 pj[:progress] = (((re[1].to_f + re[2].to_f/2) / re[3].to_f) rescue 0.5)
213 pj[:result] = 'failed'
217 if step[:warehousejob]
219 pj[:result] = 'complete'
222 elsif step[:warehousejob][:finishtime]
223 pj[:result] = 'failed'
225 elsif step[:warehousejob][:starttime]
226 pj[:result] = 'running'
228 pj[:result] = 'queued'
231 pj[:progress_detail] = (step[:progress] rescue nil)
232 pj[:job_id] = (step[:warehousejob][:id] rescue nil)
233 pj[:job_link] = pj[:job_id]
234 pj[:script] = step[:function]
235 pj[:script_version] = (step[:warehousejob][:revision] rescue nil)
236 pj[:output] = step[:output_data_locator]
237 pj[:finished_at] = (Time.parse(step[:warehousejob][:finishtime]) rescue nil)
247 def render_runtime duration, use_words, round_to_min=true
254 days = (duration / DAY).floor
255 duration -= days * DAY
259 hours = (duration / HOUR).floor
260 duration -= hours * HOUR
263 if duration >= MINUTE
264 minutes = (duration / MINUTE).floor
265 duration -= minutes * MINUTE
268 seconds = duration.floor
270 if round_to_min and seconds >= 30
277 s << "#{days} day#{'s' if days != 1}"
280 s << "#{hours} hour#{'s' if hours != 1}"
283 s << "#{minutes} minute#{'s' if minutes != 1}"
285 if not round_to_min or s.size == 0
286 s << "#{seconds} second#{'s' if seconds != 1}"
292 s += "#{days}<span class='time-label-divider'>d</span>"
296 s += "#{hours}<span class='time-label-divider'>h</span>"
299 s += "#{minutes}<span class='time-label-divider'>m</span>"
301 if not round_to_min or (days == 0 and hours == 0 and minutes == 0)
302 s += "#{seconds}<span class='time-label-divider'>s</span>"
309 def render_unreadable_inputs_present
310 if current_user and controller.class.name.eql?('PipelineInstancesController') and unreadable_inputs_present?
311 raw('<div class="alert alert-danger unreadable-inputs-present">' +
312 '<p>One or more inputs provided are not readable by you. ' +
313 'Please correct these before you can run the pipeline.</p></div>')