1 class PipelineInstancesController < ApplicationController
2 skip_before_filter :find_object_by_uuid, only: :compare
3 before_filter :find_objects_by_uuid, only: :compare
4 include PipelineInstancesHelper
5 include PipelineComponentsHelper
8 template = PipelineTemplate.find?(@object.pipeline_template_uuid)
11 @object = PipelineInstance.new
12 @object.pipeline_template_uuid = source.pipeline_template_uuid
14 if params['components'] == 'use_latest' and template
15 @object.components = template.components.deep_dup
16 @object.components.each do |cname, component|
17 # Go through the script parameters of each component
18 # that are marked as user input and copy them over.
19 # Skip any components that are not present in the
20 # source instance (there's nothing to copy)
21 if source.components.include? cname
22 component[:script_parameters].each do |pname, val|
23 if val.is_a? Hash and val[:dataclass]
24 # this is user-inputtable, so check the value from the source pipeline
25 srcvalue = source.components[cname][:script_parameters][pname]
27 component[:script_parameters][pname] = srcvalue
34 @object.components = source.components.deep_dup
37 if params['script'] == 'use_same'
38 # Go through each component and copy the script_version from each job.
39 @object.components.each do |cname, component|
40 if source.components.include? cname and source.components[cname][:job]
41 component[:script_version] = source.components[cname][:job][:script_version]
46 @object.components.each do |cname, component|
51 # set owner_uuid to that of source, provided it is a project and wriable by current user
52 current_project = Group.find(source.owner_uuid) rescue nil
53 if (current_project && current_project.writable_by.andand.include?(current_user.uuid))
54 @object.owner_uuid = source.owner_uuid
61 @updates ||= params[@object.class.to_s.underscore.singularize.to_sym]
62 if (components = @updates[:components])
63 components.each do |cname, component|
64 if component[:script_parameters]
65 component[:script_parameters].each do |param, value_info|
66 if value_info.is_a? Hash
67 value_info_class = resource_class_for_uuid(value_info[:value])
68 if value_info_class == Link
69 # Use the link target, not the link itself, as script
70 # parameter; but keep the link info around as well.
71 link = Link.find value_info[:value]
72 value_info[:value] = link.head_uuid
73 value_info[:link_uuid] = link.uuid
74 value_info[:link_name] = link.name
76 # Delete stale link_uuid and link_name data.
77 value_info[:link_uuid] = nil
78 value_info[:link_name] = nil
80 if value_info_class == Collection
81 # to ensure reproducibility, the script_parameter for a
82 # collection should be the portable_data_hash
83 # keep the collection name and uuid for human-readability
84 obj = Collection.find value_info[:value]
85 value_info[:value] = obj.portable_data_hash
86 value_info[:selection_uuid] = obj.uuid
87 value_info[:selection_name] = obj.name
98 return nil, nil if params['tab_pane'] != "Graph"
105 pipelines.each do |p|
108 p.components.each do |k, v|
111 uuid = j[:uuid].intern
113 pips[uuid] = 0 unless pips[uuid] != nil
116 collections << j[:output]
117 ProvenanceHelper::find_collections(j[:script_parameters]).each do |k|
121 uuid = j[:script_version].intern
122 provenance[uuid] = {:uuid => uuid}
123 pips[uuid] = 0 unless pips[uuid] != nil
127 Collection.where(uuid: collections.compact).each do |c|
130 pips[uuid] = 0 unless pips[uuid] != nil
137 return provenance, pips
141 @pipelines = [@object]
144 PipelineInstance.where(uuid: params[:compare]).each do |p|
149 provenance, pips = graph(@pipelines)
151 @prov_svg = ProvenanceHelper::create_provenance_graph provenance, "provenance_svg", {
153 :all_script_parameters => true,
154 :combine_jobs => :script_and_version,
155 :script_version_nodes => true,
163 @breadcrumb_page_name = 'compare'
165 @rows = [] # each is {name: S, components: [...]}
167 if params['tab_pane'] == "Compare" or params['tab_pane'].nil?
168 # Build a table: x=pipeline y=component
169 @objects.each_with_index do |pi, pi_index|
170 pipeline_jobs(pi).each do |component|
171 # Find a cell with the same name as this component but no
172 # entry for this pipeline
174 @rows.each_with_index do |row, row_index|
175 if row[:name] == component[:name] and !row[:components][pi_index]
180 target_row = {name: component[:name], components: []}
183 target_row[:components][pi_index] = component
188 # Build a "normal" pseudo-component for this row by picking the
189 # most common value for each attribute. If all values are
190 # equally common, there is no "normal".
191 normal = {} # attr => most common value
192 highscore = {} # attr => how common "normal" is
193 score = {} # attr => { value => how common }
194 row[:components].each do |pj|
197 vstr = for_comparison v
199 score[k][vstr] = (score[k][vstr] || 0) + 1
201 if score[k][vstr] == highscore[k]
202 # tie for first place = no "normal"
204 elsif score[k][vstr] == highscore[k] + 1
205 # more pipelines have v than anything else
206 highscore[k] = score[k][vstr]
212 # Add a hash in component[:is_normal]: { attr => is_the_value_normal? }
213 row[:components].each do |pj|
217 pj[:is_normal][k] = (normal.has_key?(k) && normal[k] == for_comparison(v))
223 if params['tab_pane'] == "Graph"
224 provenance, pips = graph(@objects)
226 @pipelines = @objects
229 @prov_svg = ProvenanceHelper::create_provenance_graph provenance, "provenance_svg", {
231 :all_script_parameters => true,
232 :combine_jobs => :script_and_version,
233 :script_version_nodes => true,
238 @object = @objects.first
244 panes = %w(Components Log Graph Advanced)
245 if @object and @object.state.in? ['New', 'Ready']
246 panes = %w(Inputs) + panes - %w(Log)
248 if not @object.components.values.any? { |x| x[:job] rescue false }
254 def compare_pane_list
265 if v.is_a? Hash or v.is_a? Array
272 def find_objects_by_uuid
273 @objects = model_class.where(uuid: params[:uuids])