Merge branch 'master' into 4232-slow-pipes-n-jobs
[arvados.git] / apps / workbench / app / views / pipeline_instances / _running_component.html.erb
1 <% current_job = pj[:job] if pj[:job] != {} and pj[:job][:uuid] %>
2 <div class="panel panel-default">
3   <div class="panel-heading">
4     <div class="container-fluid">
5       <div class="row-fluid">
6         <%# column offset 0 %>
7         <div class="col-md-3" style="word-break:break-all;">
8           <h4 class="panel-title">
9             <a data-toggle="collapse" href="#collapse<%= i %>">
10               <%= pj[:name] %> <span class="caret"></span>
11             </a>
12           </h4>
13         </div>
14
15         <%# column offset 3 %>
16         <div class="col-md-2 pipeline-instance-spacing">
17           <%= pj[:progress_bar] %>
18         </div>
19
20         <% if current_job %>
21           <%# column offset 5 %>
22           <% if current_job[:state] != "Queued" %>
23           <div class="col-md-3">
24             <% if current_job[:started_at] %>
25               <% walltime = ((if current_job[:finished_at] then current_job[:finished_at] else Time.now() end) - current_job[:started_at]) %>
26               <% cputime = tasks.map { |task|
27                    if task.started_at and task.job_uuid == current_job[:uuid]
28                      (if task.finished_at then task.finished_at else Time.now() end) - task.started_at
29                    else
30                      0
31                    end
32                  }.reduce(:+) || 0 %>
33               <%= render_runtime(walltime, false, false) %>
34               <% if cputime > 0 %> / <%= render_runtime(cputime, false, false) %> (<%= (cputime/walltime).round(1) %>&Cross;)<% end %>
35             <% end %>
36           </div>
37           <% end %>
38
39           <% if current_job[:state] == "Queued" %>
40             <%# column offset 5 %>
41             <div class="col-md-6">
42               <% queuetime = Time.now - Time.iso8601(current_job[:created_at]) %>
43               Queued for <%= render_runtime(queuetime, true) %>.
44               <% begin %>
45                 <% if current_job[:queue_position] == 0 %>
46                   This job is next in the queue to run.
47                 <% elsif current_job[:queue_position] == 1 %>
48                   There is 1 job in the queue ahead of this one.
49                 <% elsif current_job[:queue_position] %>
50                   There are <%= current_job[:queue_position] %> jobs in the queue ahead of this one.
51                 <% end %>
52               <% rescue %>
53               <% end %>
54             </div>
55           <% elsif current_job[:state] == "Running" %>
56             <%# column offset 8 %>
57             <div class="col-md-3">
58               <span class="task-summary-status">
59                 <%= current_job[:tasks_summary][:done] %>&nbsp;<%= "task".pluralize(current_job[:tasks_summary][:done]) %> done,
60                 <%= current_job[:tasks_summary][:failed] %>&nbsp;failed,
61                 <%= current_job[:tasks_summary][:running] %>&nbsp;running,
62                 <%= current_job[:tasks_summary][:todo] %>&nbsp;pending
63               </span>
64             </div>
65           <% elsif current_job[:state].in? ["Complete", "Failed", "Cancelled"] %>
66             <%# column offset 8 %>
67             <div class="col-md-4 text-overflow-ellipsis">
68               <% if pj[:output_uuid] %>
69                 <%= link_to_if_arvados_object pj[:output_uuid], friendly_name: true %>
70               <% elsif current_job[:output] %>
71                 <%= link_to_if_arvados_object current_job[:output], link_text: "Output of #{pj[:name]}" %>
72               <% else %>
73                 No output.
74               <% end %>
75             </div>
76           <% end %>
77
78           <% if current_job[:state].in? ["Queued", "Running"] and @object.editable? %>
79             <%# column offset 11 %>
80             <div class="col-md-1 pipeline-instance-spacing">
81               <%= form_tag "/jobs/#{current_job[:uuid]}/cancel", remote: true, style: "display:inline; padding-left: 1em" do |f| %>
82                 <%= hidden_field_tag :return_to, url_for(@object) %>
83                 <%= button_tag "Cancel", {class: 'btn btn-xs btn-danger', id: "cancel-job-button"} %>
84               <% end %>
85             </div>
86           <% end %>
87         <% end %>
88       </div>
89     </div>
90   </div>
91
92   <div id="collapse<%= i %>" class="panel-collapse collapse <%= if expanded then 'in' end %>">
93     <div class="panel-body">
94       <div class="container">
95         <% current_component = (if current_job then current_job else pj end) %>
96         <div class="row">
97           <div class="col-md-6">
98             <table>
99               <% [:script, :repository, :script_version, :supplied_script_version, :nondeterministic].each do |k| %>
100                 <tr>
101                   <td style="padding-right: 1em">
102                     <%= k.to_s %>:
103                   </td>
104                   <td>
105                     <% if current_component[k].nil? %>
106                       (none)
107                     <% else %>
108                       <%= current_component[k] %>
109                     <% end %>
110                   </td>
111                 </tr>
112               <% end %>
113               <% if current_component[:runtime_constraints].andand[:docker_image] and current_component[:docker_image_locator] %>
114                 <tr>
115                   <td style="padding-right: 1em">
116                     docker_image:
117                   </td>
118                   <td>
119                     <%= current_component[:runtime_constraints][:docker_image] %>
120                   </td>
121                 </tr>
122                 <tr>
123                   <td style="padding-right: 1em">
124                     docker_image_locator:
125                   </td>
126                   <td>
127                     <%= link_to_if_arvados_object current_component[:docker_image_locator], friendly_name: true %>
128                   </td>
129                 </tr>
130               <% else %>
131                 <tr>
132                   <td style="padding-right: 1em">
133                     docker_image:
134                   </td>
135                   <td>
136                     Not run in Docker
137                   </td>
138                 </tr>
139               <% end %>
140             </table>
141           </div>
142           <div class="col-md-5">
143             <table>
144               <% [:uuid, :modified_by_user_uuid, :priority, :created_at, :started_at, :finished_at].each do |k| %>
145                 <tr>
146                   <td style="padding-right: 1em">
147                     <%= k.to_s %>:
148                   </td>
149                   <td>
150                     <% if k == :uuid %>
151                       <%= link_to_if_arvados_object current_component[k], link_text: current_component[k] %>
152                     <% elsif k.to_s.end_with? 'uuid' %>
153                       <%= link_to_if_arvados_object current_component[k], friendly_name: true %>
154                     <% elsif k.to_s.end_with? '_at' %>
155                       <%= render_localized_date(current_component[k]) %>
156                     <% else %>
157                       <%= current_component[k] %>
158                     <% end %>
159                   </td>
160                 </tr>
161               <% end %>
162             </table>
163           </div>
164         </div>
165         <div class="row">
166           <div class="col-md-6">
167             <p>script_parameters:</p>
168             <pre><%= JSON.pretty_generate(current_component[:script_parameters]) rescue nil %></pre>
169           </div>
170         </div>
171       </div>
172     </div>
173   </div>
174 </div>