Fix script_parameters comparison on pipeline_instances.compare.
[arvados.git] / apps / workbench / app / controllers / pipeline_instances_controller.rb
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
6   def graph(pipelines)
7     count = {}    
8     provenance = {}
9     pips = {}
10     n = 1
11
12     pipelines.each do |p|
13       collections = []
14
15       p.components.each do |k, v|
16         j = v[:job]
17
18         uuid = j[:uuid].intern
19         provenance[uuid] = j
20         pips[uuid] = 0 unless pips[uuid] != nil
21         pips[uuid] |= n
22
23         collections << j[:output]
24         ProvenanceHelper::find_collections(j[:script_parameters]).each do |k|
25           collections << k
26         end
27
28         uuid = j[:script_version].intern
29         provenance[uuid] = {:uuid => uuid}
30         pips[uuid] = 0 unless pips[uuid] != nil
31         pips[uuid] |= n
32       end
33
34       Collection.where(uuid: collections).each do |c|
35         uuid = c.uuid.intern
36         provenance[uuid] = c
37         pips[uuid] = 0 unless pips[uuid] != nil
38         pips[uuid] |= n
39       end
40       
41       n = n << 1
42     end
43
44     return provenance, pips
45   end
46
47   def show
48     @pipelines = [@object]
49
50     if params[:compare]
51       PipelineInstance.where(uuid: params[:compare]).each do |p|
52         @pipelines << p
53       end
54     end
55
56     provenance, pips = graph(@pipelines)
57
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,
62       :pips => pips }
63   end
64
65   def compare
66     @breadcrumb_page_name = 'compare'
67
68     @rows = []          # each is {name: S, components: [...]}
69
70     # Build a table: x=pipeline y=component
71     @objects.each_with_index do |pi, pi_index|
72       pipeline_jobs(pi).each do |component|
73         # Find a cell with the same name as this component but no
74         # entry for this pipeline
75         target_row = nil
76         @rows.each_with_index do |row, row_index|
77           if row[:name] == component[:name] and !row[:components][pi_index]
78             target_row = row
79           end
80         end
81         if !target_row
82           target_row = {name: component[:name], components: []}
83           @rows << target_row
84         end
85         target_row[:components][pi_index] = component
86       end
87     end
88
89     @rows.each do |row|
90       # Build a "normal" pseudo-component for this row by picking the
91       # most common value for each attribute. If all values are
92       # equally common, there is no "normal".
93       normal = {}              # attr => most common value
94       highscore = {}           # attr => how common "normal" is
95       score = {}               # attr => { value => how common }
96       row[:components].each do |pj|
97         pj.each do |k,v|
98           vstr = for_comparison v
99           score[k] ||= {}
100           score[k][vstr] = (score[k][vstr] || 0) + 1
101           highscore[k] ||= 0
102           if score[k][vstr] == highscore[k]
103             # tie for first place = no "normal"
104             normal.delete k
105           elsif score[k][vstr] == highscore[k] + 1
106             # more pipelines have v than anything else
107             highscore[k] = score[k][vstr]
108             normal[k] = vstr
109           end
110         end
111       end
112
113       # Add a hash in component[:is_normal]: { attr => is_the_value_normal? }
114       row[:components].each do |pj|
115         pj[:is_normal] = {}
116         pj.each do |k,v|
117           pj[:is_normal][k] = (normal.has_key?(k) && normal[k] == for_comparison(v))
118         end
119       end
120     end
121
122     provenance, pips = graph(@objects)
123
124     @prov_svg = ProvenanceHelper::create_provenance_graph provenance, "provenance_svg", {
125       :all_script_parameters => true, 
126       :combine_jobs => :script_and_version,
127       :script_version_nodes => true,
128       :pips => pips }
129   end
130
131   protected
132   def for_comparison v
133     if v.is_a? Hash or v.is_a? Array
134       v.to_json
135     else
136       v.to_s
137     end
138   end
139
140   def find_objects_by_uuid
141     @objects = model_class.where(uuid: params[:uuids])
142   end
143
144 end