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
15 p.components.each do |k, v|
18 uuid = j[:uuid].intern
20 pips[uuid] = 0 unless pips[uuid] != nil
23 collections << j[:output]
24 ProvenanceHelper::find_collections(j[:script_parameters]).each do |k|
28 uuid = j[:script_version].intern
29 provenance[uuid] = {:uuid => uuid}
30 pips[uuid] = 0 unless pips[uuid] != nil
34 Collection.where(uuid: collections.compact).each do |c|
37 pips[uuid] = 0 unless pips[uuid] != nil
44 return provenance, pips
48 @pipelines = [@object]
51 PipelineInstance.where(uuid: params[:compare]).each do |p|
56 provenance, pips = graph(@pipelines)
58 @prov_svg = ProvenanceHelper::create_provenance_graph provenance, "provenance_svg", {
59 :all_script_parameters => true,
60 :combine_jobs => :script_and_version,
61 :script_version_nodes => true,
67 @breadcrumb_page_name = 'compare'
69 @rows = [] # each is {name: S, components: [...]}
71 # Build a table: x=pipeline y=component
72 @objects.each_with_index do |pi, pi_index|
73 pipeline_jobs(pi).each do |component|
74 # Find a cell with the same name as this component but no
75 # entry for this pipeline
77 @rows.each_with_index do |row, row_index|
78 if row[:name] == component[:name] and !row[:components][pi_index]
83 target_row = {name: component[:name], components: []}
86 target_row[:components][pi_index] = component
91 # Build a "normal" pseudo-component for this row by picking the
92 # most common value for each attribute. If all values are
93 # equally common, there is no "normal".
94 normal = {} # attr => most common value
95 highscore = {} # attr => how common "normal" is
96 score = {} # attr => { value => how common }
97 row[:components].each do |pj|
100 vstr = for_comparison v
102 score[k][vstr] = (score[k][vstr] || 0) + 1
104 if score[k][vstr] == highscore[k]
105 # tie for first place = no "normal"
107 elsif score[k][vstr] == highscore[k] + 1
108 # more pipelines have v than anything else
109 highscore[k] = score[k][vstr]
115 # Add a hash in component[:is_normal]: { attr => is_the_value_normal? }
116 row[:components].each do |pj|
120 pj[:is_normal][k] = (normal.has_key?(k) && normal[k] == for_comparison(v))
125 provenance, pips = graph(@objects)
127 @pipelines = @objects
129 @prov_svg = ProvenanceHelper::create_provenance_graph provenance, "provenance_svg", {
130 :all_script_parameters => true,
131 :combine_jobs => :script_and_version,
132 :script_version_nodes => true,
137 %w(Components Graph Attributes Metadata JSON API)
140 def compare_pane_list
146 if v.is_a? Hash or v.is_a? Array
153 def find_objects_by_uuid
154 @objects = model_class.where(uuid: params[:uuids])