1 module ProvenanceHelper
4 def initialize(pdata, opts)
12 def self.collection_uuid(uuid)
13 Keep::Locator.parse(uuid).andand.strip_hints.andand.to_s
17 p = { :host => @opts[:request].host,
18 :port => @opts[:request].port,
19 :protocol => @opts[:request].protocol }
21 Rails.application.routes.url_helpers.url_for (p)
24 def determine_fillcolor(n)
25 fillcolor = %w(666666 669966 666699 666666 996666)[n || 0] || '666666'
26 "style=\"filled\",color=\"#ffffff\",fillcolor=\"##{fillcolor}\",fontcolor=\"#ffffff\""
29 def describe_node(uuid, describe_opts={})
30 bgcolor = determine_fillcolor (describe_opts[:pip] || @opts[:pips].andand[uuid])
32 rsc = ArvadosBase::resource_class_for_uuid uuid
34 if GenerateGraph::collection_uuid(uuid) || rsc == Collection
35 if Collection.is_empty_blob_locator? uuid.to_s
37 return "\"#{uuid}\" [label=\"(empty collection)\"];\n"
40 href = url_for ({:controller => Collection.to_s.tableize,
44 return "\"#{uuid}\" [label=\"#{encode_quotes(describe_opts[:label] || (@pdata[uuid] and @pdata[uuid][:name]) || uuid)}\",shape=box,href=\"#{href}\",#{bgcolor}];\n"
47 if describe_opts[:href]
48 href = ",href=\"#{url_for ({:controller => describe_opts[:href][:controller],
50 :id => describe_opts[:href][:id] })}\""
52 return "\"#{uuid}\" [label=\"#{encode_quotes(describe_opts[:label] || uuid)}\",#{bgcolor},shape=#{describe_opts[:shape] || 'box'}#{href}];\n"
57 d = Digest::MD5.hexdigest(job[:script_parameters].to_json)
58 if @opts[:combine_jobs] == :script_only
59 uuid = "#{job[:script]}_#{d}"
60 elsif @opts[:combine_jobs] == :script_and_version
61 uuid = "#{job[:script]}_#{job[:script_version]}_#{d}"
63 uuid = "#{job[:uuid]}"
66 @jobs[uuid] = [] unless @jobs[uuid]
67 @jobs[uuid] << job unless @jobs[uuid].include? job
72 def edge(tail, head, extra)
73 if @opts[:direction] == :bottom_up
74 gr = "\"#{encode_quotes head}\" -> \"#{encode_quotes tail}\""
76 gr = "\"#{encode_quotes tail}\" -> \"#{encode_quotes head}\""
82 gr += "#{k}=\"#{encode_quotes v}\","
90 def script_param_edges(uuid, sp)
94 if @opts[:all_script_parameters]
95 if v.is_a? Array or v.is_a? Hash
96 encv = JSON.pretty_generate(v).gsub("\n", "\\l") + "\\l"
100 gr += "\"#{encode_quotes encv}\" [shape=box];\n"
101 gr += edge(encv, uuid, {:label => k})
107 def job_edges job, edge_opts={}
111 ProvenanceHelper::find_collections job[:script_parameters] do |collection_hash, collection_uuid, key|
113 gr += describe_node(collection_uuid)
114 gr += edge(collection_uuid, uuid, {:label => key})
116 gr += describe_node(collection_hash)
117 gr += edge(collection_hash, uuid, {:label => key})
121 if job[:docker_image_locator] and !@opts[:no_docker]
122 gr += describe_node(job[:docker_image_locator], {label: (job[:runtime_constraints].andand[:docker_image] || job[:docker_image_locator])})
123 gr += edge(job[:docker_image_locator], uuid, {label: "docker_image"})
126 if @opts[:script_version_nodes]
127 gr += describe_node(job[:script_version], {:label => "git:#{job[:script_version]}"})
128 gr += edge(job[:script_version], uuid, {:label => "script_version"})
131 if job[:output] and !edge_opts[:no_output]
132 gr += describe_node(job[:output])
133 gr += edge(uuid, job[:output], {label: "output" })
136 if job[:log] and !edge_opts[:no_log]
137 gr += describe_node(job[:log])
138 gr += edge(uuid, job[:log], {label: "log"})
144 def generate_provenance_edges(uuid)
146 m = GenerateGraph::collection_uuid(uuid)
149 if uuid.nil? or uuid.empty? or @visited[uuid]
156 @visited[uuid] = true
159 if uuid.start_with? "component_"
160 # Pipeline component inputs
161 job = @pdata[@pdata[uuid][:job].andand[:uuid]]
164 gr += describe_node(job_uuid(job), {label: uuid[38..-1], pip: @opts[:pips].andand[job[:uuid]], shape: "oval",
165 href: {controller: 'jobs', id: job[:uuid]}})
166 gr += job_edges job, {no_output: true, no_log: true}
169 # Pipeline component output
170 outuuid = @pdata[uuid][:output_uuid]
172 outcollection = @pdata[outuuid]
174 gr += edge(job_uuid(job), outcollection[:portable_data_hash], {label: "output"})
175 gr += describe_node(outcollection[:portable_data_hash], {label: outcollection[:name]})
177 elsif job and job[:output]
178 gr += describe_node(job[:output])
179 gr += edge(job_uuid(job), job[:output], {label: "output" })
182 rsc = ArvadosBase::resource_class_for_uuid uuid
186 gr += job_edges job if job
190 @pdata.each do |k, link|
191 if link[:head_uuid] == uuid.to_s and link[:link_class] == "provenance"
192 href = url_for ({:controller => Link.to_s.tableize,
194 :id => link[:uuid] })
196 gr += describe_node(link[:tail_uuid])
197 gr += edge(link[:head_uuid], link[:tail_uuid], {:label => link[:name], :href => href})
198 gr += generate_provenance_edges(link[:tail_uuid])
208 href = url_for ({:controller => Job.to_s.tableize,
211 gr += "\"#{k}\" [href=\"#{href}?"
215 gr += ";" unless gr.end_with? "?"
216 gr += "uuid%5b%5d=#{u[:uuid]}"
217 n |= @opts[:pips][u[:uuid]] if @opts[:pips] and @opts[:pips][u[:uuid]]
222 label = "#{v[0][:script]}"
224 if label == "run-command" and v[0][:script_parameters][:command].is_a? Array
225 label = v[0][:script_parameters][:command].join(' ')
228 if not @opts[:combine_jobs]
229 label += "\\n#{v[0][:finished_at]}"
232 gr += encode_quotes label
234 gr += "\",#{determine_fillcolor n}];\n"
239 def encode_quotes value
240 value.to_s.gsub("\"", "\\\"").gsub("\n", "\\n")
244 def self.create_provenance_graph(pdata, svgId, opts={})
245 if pdata.is_a? Array or pdata.is_a? ArvadosResourceList
248 p2[k[:uuid]] = k if k[:uuid]
253 unless pdata.is_a? Hash
254 raise "create_provenance_graph accepts Array or Hash for pdata only, pdata is #{pdata.class}"
257 gr = """strict digraph {
258 node [fontsize=10,fontname=\"Helvetica,Arial,sans-serif\"];
259 edge [fontsize=10,fontname=\"Helvetica,Arial,sans-serif\"];
262 if opts[:direction] == :bottom_up
263 gr += "edge [dir=back];"
267 pdata = pdata.stringify_keys
269 g = GenerateGraph.new(pdata, opts)
272 if !opts[:only_components] or k.start_with? "component_"
273 gr += g.generate_provenance_edges(k)
275 #gr += describe_node(k)
279 if !opts[:only_components]
280 gr += g.describe_jobs
284 Rails.logger.warn "#{e.inspect}"
285 Rails.logger.warn "#{e.backtrace.join("\n\t")}"
294 Open3.popen2("dot", "-Tsvg") do |stdin, stdout, wait_thr|
302 svg = svg.sub(/<\?xml.*?\?>/m, "")
303 svg = svg.sub(/<!DOCTYPE.*?>/m, "")
304 svg = svg.sub(/<svg /, "<svg id=\"#{svgId}\" ")
308 # Position indicates whether it is a content hash or arvados uuid.
309 # One will hold a value, the other will always be nil.
310 def self.find_collections(sp, key=nil, &b)
313 sp.class.columns.each do |c|
314 find_collections(sp[c.name.to_sym], nil, &b)
318 find_collections(v, key || k, &b)
322 find_collections(v, key, &b)
325 if m = /[a-f0-9]{32}\+\d+/.match(sp)
327 elsif m = /[0-9a-z]{5}-4zz18-[0-9a-z]{15}/.match(sp)