rbbt-util 5.32.16 → 5.32.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rbbt/resource/path.rb +6 -6
- data/lib/rbbt/tsv/parallel/traverse.rb +1 -1
- data/lib/rbbt/util/log.rb +15 -4
- data/lib/rbbt/util/misc/inspect.rb +1 -1
- data/lib/rbbt/util/open.rb +1 -0
- data/lib/rbbt/workflow.rb +43 -1
- data/lib/rbbt/workflow/accessor.rb +15 -242
- data/lib/rbbt/workflow/definition.rb +1 -0
- data/lib/rbbt/workflow/dependencies.rb +195 -0
- data/lib/rbbt/workflow/step.rb +10 -158
- data/lib/rbbt/workflow/step/accessor.rb +1 -311
- data/lib/rbbt/workflow/step/dependencies.rb +43 -3
- data/lib/rbbt/workflow/step/info.rb +294 -0
- data/lib/rbbt/workflow/step/status.rb +146 -0
- data/lib/rbbt/workflow/usage.rb +4 -2
- data/lib/rbbt/workflow/util/orchestrator.rb +1 -1
- data/lib/rbbt/workflow/util/provenance.rb +16 -4
- data/share/rbbt_commands/system/clean +1 -0
- data/share/rbbt_commands/workflow/prov +1 -1
- metadata +5 -2
data/lib/rbbt/workflow/usage.rb
CHANGED
@@ -67,11 +67,13 @@ end
|
|
67
67
|
|
68
68
|
module Workflow
|
69
69
|
|
70
|
-
def dep_tree(name)
|
70
|
+
def dep_tree(name, seen = [])
|
71
71
|
@dep_tree ||= {}
|
72
72
|
@dep_tree[name] ||= begin
|
73
73
|
dep_tree = {}
|
74
74
|
self.task_dependencies[name.to_sym].reverse.each do |dep|
|
75
|
+
next if seen.include? dep
|
76
|
+
seen << dep
|
75
77
|
dep = dep.first if Array === dep && dep.length == 1
|
76
78
|
dep = dep.dependency if DependencyBlock === dep
|
77
79
|
|
@@ -87,7 +89,7 @@ module Workflow
|
|
87
89
|
|
88
90
|
key = [workflow, task]
|
89
91
|
|
90
|
-
dep_tree[key] = workflow.dep_tree(task)
|
92
|
+
dep_tree[key] = workflow.dep_tree(task, seen)
|
91
93
|
end if name && self.task_dependencies[name.to_sym]
|
92
94
|
dep_tree
|
93
95
|
end
|
@@ -81,7 +81,7 @@ module Workflow
|
|
81
81
|
def self.candidates(workload, rules)
|
82
82
|
if rules.empty?
|
83
83
|
candidates = workload.select{|k,v| v.empty? }.
|
84
|
-
collect{|k,v| k}.
|
84
|
+
collect{|k,v| k }.
|
85
85
|
reject{|k| k.done? }
|
86
86
|
else
|
87
87
|
candidates = workload. #select{|k,v| Orchestrator.job_rules(rules, k) }.
|
@@ -47,6 +47,8 @@ class Step
|
|
47
47
|
if input.nil? || input.empty?
|
48
48
|
input_str = nil
|
49
49
|
else
|
50
|
+
input = input.reject{|dep,name| (input & dep.dependencies.collect{|d| [d,name]}).any? }
|
51
|
+
input = input.reject{|dep,name| (input & dep.input_dependencies.collect{|d| [d,name]}).any? }
|
50
52
|
input_str = Log.color(:magenta, "-> ") + input.collect{|dep,name| Log.color(:yellow, dep.task_name.to_s) + ":" + Log.color(:yellow, name) }.uniq * " "
|
51
53
|
end
|
52
54
|
|
@@ -91,21 +93,28 @@ class Step
|
|
91
93
|
status = :unsync if status == :done and not Open.exist?(path)
|
92
94
|
status = :notfound if status == :noinfo and not Open.exist?(path)
|
93
95
|
|
94
|
-
|
95
|
-
|
96
|
+
|
97
|
+
this_step_msg = prov_report_msg(status, name, path, info, input)
|
96
98
|
|
97
99
|
input_dependencies = {}
|
98
100
|
step.dependencies.each do |dep|
|
99
101
|
if dep.input_dependencies.any?
|
100
102
|
dep.input_dependencies.each do |id|
|
101
|
-
input_name = dep.
|
103
|
+
input_name = dep.recursive_inputs.fields.zip(dep.recursive_inputs).select{|f,d|
|
104
|
+
d == id || (String === d && d.start_with?(id.files_dir)) || (Array === d && d.include?(id))
|
105
|
+
}.first.first
|
102
106
|
input_dependencies[id] ||= []
|
103
107
|
input_dependencies[id] << [dep, input_name]
|
104
108
|
end
|
105
109
|
end
|
106
110
|
end
|
107
111
|
|
108
|
-
|
112
|
+
str = ""
|
113
|
+
str = " " * offset + this_step_msg if ENV["RBBT_ORIGINAL_STACK"] == 'true'
|
114
|
+
|
115
|
+
step.dependencies.dup.tap{|l|
|
116
|
+
l.reverse! if ENV["RBBT_ORIGINAL_STACK"] == 'true'
|
117
|
+
}.each do |dep|
|
109
118
|
path = dep.path
|
110
119
|
new = ! seen.include?(path)
|
111
120
|
if new
|
@@ -126,6 +135,9 @@ class Step
|
|
126
135
|
end
|
127
136
|
end
|
128
137
|
end if step.dependencies
|
138
|
+
|
139
|
+
str += (" " * offset) + this_step_msg unless ENV["RBBT_ORIGINAL_STACK"] == 'true'
|
140
|
+
|
129
141
|
str
|
130
142
|
end
|
131
143
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbbt-util
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.32.
|
4
|
+
version: 5.32.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Vazquez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -322,6 +322,7 @@ files:
|
|
322
322
|
- lib/rbbt/workflow/accessor.rb
|
323
323
|
- lib/rbbt/workflow/annotate.rb
|
324
324
|
- lib/rbbt/workflow/definition.rb
|
325
|
+
- lib/rbbt/workflow/dependencies.rb
|
325
326
|
- lib/rbbt/workflow/doc.rb
|
326
327
|
- lib/rbbt/workflow/examples.rb
|
327
328
|
- lib/rbbt/workflow/integration/ansible.rb
|
@@ -339,8 +340,10 @@ files:
|
|
339
340
|
- lib/rbbt/workflow/step.rb
|
340
341
|
- lib/rbbt/workflow/step/accessor.rb
|
341
342
|
- lib/rbbt/workflow/step/dependencies.rb
|
343
|
+
- lib/rbbt/workflow/step/info.rb
|
342
344
|
- lib/rbbt/workflow/step/prepare.rb
|
343
345
|
- lib/rbbt/workflow/step/run.rb
|
346
|
+
- lib/rbbt/workflow/step/status.rb
|
344
347
|
- lib/rbbt/workflow/task.rb
|
345
348
|
- lib/rbbt/workflow/usage.rb
|
346
349
|
- lib/rbbt/workflow/util/archive.rb
|