Class: Gush::Workflow
- Inherits:
-
Object
- Object
- Gush::Workflow
- Defined in:
- lib/gush/workflow.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#id ⇒ Object
Returns the value of attribute id.
-
#jobs ⇒ Object
Returns the value of attribute jobs.
-
#persisted ⇒ Object
Returns the value of attribute persisted.
-
#stopped ⇒ Object
Returns the value of attribute stopped.
Class Method Summary collapse
Instance Method Summary collapse
- #configure(*args) ⇒ Object
- #continue ⇒ Object
- #failed? ⇒ Boolean
- #find_job(name) ⇒ Object
- #finished? ⇒ Boolean
- #finished_at ⇒ Object
- #initial_jobs ⇒ Object
-
#initialize(*args) ⇒ Workflow
constructor
A new instance of Workflow.
- #mark_as_persisted ⇒ Object
- #mark_as_started ⇒ Object
- #mark_as_stopped ⇒ Object
- #persist! ⇒ Object
- #reload ⇒ Object
- #resolve_dependencies ⇒ Object
- #run(klass, opts = {}) ⇒ Object
- #running? ⇒ Boolean
- #save ⇒ Object
- #start! ⇒ Object
- #started? ⇒ Boolean
- #started_at ⇒ Object
- #status ⇒ Object
- #stopped? ⇒ Boolean
- #to_hash ⇒ Object
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(*args) ⇒ Workflow
Returns a new instance of Workflow.
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/gush/workflow.rb', line 7 def initialize(*args) @id = id @jobs = [] @dependencies = [] @persisted = false @stopped = false @arguments = args setup end |
Instance Attribute Details
#arguments ⇒ Object
Returns the value of attribute arguments.
5 6 7 |
# File 'lib/gush/workflow.rb', line 5 def arguments @arguments end |
#id ⇒ Object
Returns the value of attribute id.
5 6 7 |
# File 'lib/gush/workflow.rb', line 5 def id @id end |
#jobs ⇒ Object
Returns the value of attribute jobs.
5 6 7 |
# File 'lib/gush/workflow.rb', line 5 def jobs @jobs end |
#persisted ⇒ Object
Returns the value of attribute persisted.
5 6 7 |
# File 'lib/gush/workflow.rb', line 5 def persisted @persisted end |
#stopped ⇒ Object
Returns the value of attribute stopped.
5 6 7 |
# File 'lib/gush/workflow.rb', line 5 def stopped @stopped end |
Class Method Details
.create(*args) ⇒ Object
22 23 24 25 26 |
# File 'lib/gush/workflow.rb', line 22 def self.create(*args) flow = new(*args) flow.save flow end |
.descendants ⇒ Object
179 180 181 |
# File 'lib/gush/workflow.rb', line 179 def self.descendants ObjectSpace.each_object(Class).select { |klass| klass < self } end |
.find(id) ⇒ Object
18 19 20 |
# File 'lib/gush/workflow.rb', line 18 def self.find(id) Gush::Client.new.find_workflow(id) end |
Instance Method Details
#configure(*args) ⇒ Object
41 42 |
# File 'lib/gush/workflow.rb', line 41 def configure(*args) end |
#continue ⇒ Object
28 29 30 31 32 33 34 35 |
# File 'lib/gush/workflow.rb', line 28 def continue client = Gush::Client.new failed_jobs = jobs.select(&:failed?) failed_jobs.each do |job| client.enqueue_job(id, job) end end |
#failed? ⇒ Boolean
96 97 98 |
# File 'lib/gush/workflow.rb', line 96 def failed? jobs.any?(&:failed?) end |
#find_job(name) ⇒ Object
74 75 76 77 78 79 80 81 82 |
# File 'lib/gush/workflow.rb', line 74 def find_job(name) match_data = /(?<klass>\w*[^-])-(?<identifier>.*)/.match(name.to_s) if match_data.nil? job = jobs.find { |node| node.class.to_s == name.to_s } else job = jobs.find { |node| node.name.to_s == name.to_s } end job end |
#finished? ⇒ Boolean
84 85 86 |
# File 'lib/gush/workflow.rb', line 84 def finished? jobs.all?(&:finished?) end |
#finished_at ⇒ Object
154 155 156 |
# File 'lib/gush/workflow.rb', line 154 def finished_at last_job ? last_job.finished_at : nil end |
#initial_jobs ⇒ Object
131 132 133 |
# File 'lib/gush/workflow.rb', line 131 def initial_jobs jobs.select(&:has_no_dependencies?) end |
#mark_as_persisted ⇒ Object
56 57 58 |
# File 'lib/gush/workflow.rb', line 56 def mark_as_persisted @persisted = true end |
#mark_as_started ⇒ Object
60 61 62 |
# File 'lib/gush/workflow.rb', line 60 def mark_as_started @stopped = false end |
#mark_as_stopped ⇒ Object
44 45 46 |
# File 'lib/gush/workflow.rb', line 44 def mark_as_stopped @stopped = true end |
#persist! ⇒ Object
52 53 54 |
# File 'lib/gush/workflow.rb', line 52 def persist! client.persist_workflow(self) end |
#reload ⇒ Object
127 128 129 |
# File 'lib/gush/workflow.rb', line 127 def reload self.class.find(id) end |
#resolve_dependencies ⇒ Object
64 65 66 67 68 69 70 71 72 |
# File 'lib/gush/workflow.rb', line 64 def resolve_dependencies @dependencies.each do |dependency| from = find_job(dependency[:from]) to = find_job(dependency[:to]) to.incoming << dependency[:from] from.outgoing << dependency[:to] end end |
#run(klass, opts = {}) ⇒ Object
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/gush/workflow.rb', line 104 def run(klass, opts = {}) = node = klass.new(self, { name: client.next_free_job_id(id,klass.to_s), params: opts.fetch(:params, {}) }) jobs << node deps_after = [*opts[:after]] deps_after.each do |dep| @dependencies << {from: dep.to_s, to: node.name.to_s } end deps_before = [*opts[:before]] deps_before.each do |dep| @dependencies << {from: node.name.to_s, to: dep.to_s } end node.name end |
#running? ⇒ Boolean
92 93 94 |
# File 'lib/gush/workflow.rb', line 92 def running? started? && !finished? end |
#save ⇒ Object
37 38 39 |
# File 'lib/gush/workflow.rb', line 37 def save persist! end |
#start! ⇒ Object
48 49 50 |
# File 'lib/gush/workflow.rb', line 48 def start! client.start_workflow(self) end |
#started? ⇒ Boolean
88 89 90 |
# File 'lib/gush/workflow.rb', line 88 def started? !!started_at end |
#started_at ⇒ Object
150 151 152 |
# File 'lib/gush/workflow.rb', line 150 def started_at first_job ? first_job.started_at : nil end |
#status ⇒ Object
135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/gush/workflow.rb', line 135 def status case when failed? :failed when running? :running when finished? :finished when stopped? :stopped else :running end end |
#stopped? ⇒ Boolean
100 101 102 |
# File 'lib/gush/workflow.rb', line 100 def stopped? stopped end |
#to_hash ⇒ Object
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/gush/workflow.rb', line 158 def to_hash name = self.class.to_s { name: name, id: id, arguments: @arguments, total: jobs.count, finished: jobs.count(&:finished?), klass: name, jobs: jobs.map(&:as_json), status: status, stopped: stopped, started_at: started_at, finished_at: finished_at } end |