-
Notifications
You must be signed in to change notification settings - Fork 209
/
workflow.rb
452 lines (371 loc) · 12.9 KB
/
workflow.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
require 'rubygems'
# See also README.markdown for documentation
module Workflow
class Specification
attr_accessor :states, :initial_state, :meta,
:on_transition_proc, :before_transition_proc, :after_transition_proc, :on_error_proc
def initialize(meta = {}, &specification)
@states = Hash.new
@meta = meta
instance_eval(&specification)
end
def state_names
states.keys
end
private
def state(name, meta = {:meta => {}}, &events_and_etc)
# meta[:meta] to keep the API consistent..., gah
new_state = Workflow::State.new(name, self, meta[:meta])
@initial_state = new_state if @states.empty?
@states[name.to_sym] = new_state
@scoped_state = new_state
instance_eval(&events_and_etc) if events_and_etc
end
def event(name, args = {}, &action)
target = args[:transitions_to] || args[:transition_to]
raise WorkflowDefinitionError.new(
"missing ':transitions_to' in workflow event definition for '#{name}'") \
if target.nil?
@scoped_state.events[name.to_sym] =
Workflow::Event.new(name, target, (args[:meta] or {}), &action)
end
def on_entry(&proc)
@scoped_state.on_entry = proc
end
def on_exit(&proc)
@scoped_state.on_exit = proc
end
def after_transition(&proc)
@after_transition_proc = proc
end
def before_transition(&proc)
@before_transition_proc = proc
end
def on_transition(&proc)
@on_transition_proc = proc
end
def on_error(&proc)
@on_error_proc = proc
end
end
class TransitionHalted < Exception
attr_reader :halted_because
def initialize(msg = nil)
@halted_because = msg
super msg
end
end
class NoTransitionAllowed < Exception; end
class WorkflowError < Exception; end
class WorkflowDefinitionError < Exception; end
class State
attr_accessor :name, :events, :meta, :on_entry, :on_exit
attr_reader :spec
def initialize(name, spec, meta = {})
@name, @spec, @events, @meta = name, spec, Hash.new, meta
end
unless RUBY_VERSION < '1.9'
include Comparable
def <=>(other_state)
states = spec.states.keys
raise ArgumentError, "state `#{other_state}' does not exist" unless other_state.in? states
if states.index(self.to_sym) < states.index(other_state.to_sym)
-1
elsif states.index(self.to_sym) > states.index(other_state.to_sym)
1
else
0
end
end
end
def to_s
"#{name}"
end
def to_sym
name.to_sym
end
end
class Event
attr_accessor :name, :transitions_to, :meta, :action
def initialize(name, transitions_to, meta = {}, &action)
@name, @transitions_to, @meta, @action = name, transitions_to.to_sym, meta, action
end
end
module WorkflowClassMethods
attr_reader :workflow_spec
def workflow_column(column_name=nil)
if column_name
@workflow_state_column_name = column_name.to_sym
end
if !@workflow_state_column_name && superclass.respond_to?(:workflow_column)
@workflow_state_column_name = superclass.workflow_column
end
@workflow_state_column_name ||= :workflow_state
end
def workflow(&specification)
@workflow_spec = Specification.new(Hash.new, &specification)
@workflow_spec.states.values.each do |state|
state_name = state.name
module_eval do
define_method "#{state_name}?" do
state_name == current_state.name
end
end
state.events.values.each do |event|
event_name = event.name
module_eval do
define_method "#{event_name}!".to_sym do |*args|
process_event!(event_name, *args)
end
define_method "can_#{event_name}?" do
return self.current_state.events.include?(event_name)
end
end
end
end
end
end
module WorkflowInstanceMethods
def current_state
loaded_state = load_workflow_state
res = spec.states[loaded_state.to_sym] if loaded_state
res || spec.initial_state
end
# See the 'Guards' section in the README
# @return true if the last transition was halted by one of the transition callbacks.
def halted?
@halted
end
# @return the reason of the last transition abort as set by the previous
# call of `halt` or `halt!` method.
def halted_because
@halted_because
end
def process_event!(name, *args)
event = current_state.events[name.to_sym]
raise NoTransitionAllowed.new(
"There is no event #{name.to_sym} defined for the #{current_state} state") \
if event.nil?
@halted_because = nil
@halted = false
check_transition(event)
from = current_state
to = spec.states[event.transitions_to]
run_before_transition(from, to, name, *args)
return false if @halted
begin
return_value = run_action(event.action, *args) || run_action_callback(event.name, *args)
rescue Exception => e
run_on_error(e, from, to, name, *args)
end
return false if @halted
run_on_transition(from, to, name, *args)
run_on_exit(from, to, name, *args)
transition_value = persist_workflow_state to.to_s
run_on_entry(to, from, name, *args)
run_after_transition(from, to, name, *args)
return_value.nil? ? transition_value : return_value
end
def halt(reason = nil)
@halted_because = reason
@halted = true
end
def halt!(reason = nil)
@halted_because = reason
@halted = true
raise TransitionHalted.new(reason)
end
def spec
# check the singleton class first
class << self
return workflow_spec if workflow_spec
end
c = self.class
# using a simple loop instead of class_inheritable_accessor to avoid
# dependency on Rails' ActiveSupport
until c.workflow_spec || !(c.include? Workflow)
c = c.superclass
end
c.workflow_spec
end
private
def check_transition(event)
# Create a meaningful error message instead of
# "undefined method `on_entry' for nil:NilClass"
# Reported by Kyle Burton
if !spec.states[event.transitions_to]
raise WorkflowError.new("Event[#{event.name}]'s " +
"transitions_to[#{event.transitions_to}] is not a declared state.")
end
end
def run_before_transition(from, to, event, *args)
instance_exec(from.name, to.name, event, *args, &spec.before_transition_proc) if
spec.before_transition_proc
end
def run_on_error(error, from, to, event, *args)
if spec.on_error_proc
instance_exec(error, from.name, to.name, event, *args, &spec.on_error_proc)
halt(error.message)
else
raise error
end
end
def run_on_transition(from, to, event, *args)
instance_exec(from.name, to.name, event, *args, &spec.on_transition_proc) if spec.on_transition_proc
end
def run_after_transition(from, to, event, *args)
instance_exec(from.name, to.name, event, *args, &spec.after_transition_proc) if
spec.after_transition_proc
end
def run_action(action, *args)
instance_exec(*args, &action) if action
end
def has_callback?(action)
# 1. public callback method or
# 2. protected method somewhere in the class hierarchy or
# 3. private in the immediate class (parent classes ignored)
self.respond_to?(action) or
self.class.protected_method_defined?(action) or
self.private_methods(false).map(&:to_sym).include?(action)
end
def run_action_callback(action_name, *args)
action = action_name.to_sym
self.send(action, *args) if has_callback?(action)
end
def run_on_entry(state, prior_state, triggering_event, *args)
if state.on_entry
instance_exec(prior_state.name, triggering_event, *args, &state.on_entry)
else
hook_name = "on_#{state}_entry"
self.send hook_name, prior_state, triggering_event, *args if self.respond_to? hook_name
end
end
def run_on_exit(state, new_state, triggering_event, *args)
if state
if state.on_exit
instance_exec(new_state.name, triggering_event, *args, &state.on_exit)
else
hook_name = "on_#{state}_exit"
self.send hook_name, new_state, triggering_event, *args if self.respond_to? hook_name
end
end
end
# load_workflow_state and persist_workflow_state
# can be overriden to handle the persistence of the workflow state.
#
# Default (non ActiveRecord) implementation stores the current state
# in a variable.
#
# Default ActiveRecord implementation uses a 'workflow_state' database column.
def load_workflow_state
@workflow_state if instance_variable_defined? :@workflow_state
end
def persist_workflow_state(new_value)
@workflow_state = new_value
end
end
module ActiveRecordInstanceMethods
def load_workflow_state
read_attribute(self.class.workflow_column)
end
# On transition the new workflow state is immediately saved in the
# database.
def persist_workflow_state(new_value)
if self.respond_to? :update_column
# Rails 3.1 or newer
update_column self.class.workflow_column, new_value
else
# older Rails; beware of side effect: other (pending) attribute changes will be persisted too
update_attribute self.class.workflow_column, new_value
end
end
private
# Motivation: even if NULL is stored in the workflow_state database column,
# the current_state is correctly recognized in the Ruby code. The problem
# arises when you want to SELECT records filtering by the value of initial
# state. That's why it is important to save the string with the name of the
# initial state in all the new records.
def write_initial_state
write_attribute self.class.workflow_column, current_state.to_s
end
end
module RemodelInstanceMethods
def load_workflow_state
send(self.class.workflow_column)
end
def persist_workflow_state(new_value)
update(self.class.workflow_column => new_value)
end
end
def self.included(klass)
klass.send :include, WorkflowInstanceMethods
klass.extend WorkflowClassMethods
if Object.const_defined?(:ActiveRecord)
if klass < ActiveRecord::Base
klass.send :include, ActiveRecordInstanceMethods
klass.before_validation :write_initial_state
end
elsif Object.const_defined?(:Remodel)
if klass < Remodel::Entity
klass.send :include, RemodelInstanceMethods
end
end
end
# Generates a `dot` graph of the workflow.
# Prerequisite: the `dot` binary. (Download from http://www.graphviz.org/)
# You can use this method in your own Rakefile like this:
#
# namespace :doc do
# desc "Generate a graph of the workflow."
# task :workflow => :environment do # needs access to the Rails environment
# Workflow::create_workflow_diagram(Order)
# end
# end
#
# You can influence the placement of nodes by specifying
# additional meta information in your states and transition descriptions.
# You can assign higher `doc_weight` value to the typical transitions
# in your workflow. All other states and transitions will be arranged
# around that main line. See also `weight` in the graphviz documentation.
# Example:
#
# state :new do
# event :approve, :transitions_to => :approved, :meta => {:doc_weight => 8}
# end
#
#
# @param klass A class with the Workflow mixin, for which you wish the graphical workflow representation
# @param [String] target_dir Directory, where to save the dot and the pdf files
# @param [String] graph_options You can change graph orientation, size etc. See graphviz documentation
def self.create_workflow_diagram(klass, target_dir='.', graph_options='rankdir="LR", size="7,11.6", ratio="fill"')
workflow_name = "#{klass.name.tableize}_workflow".gsub('/', '_')
fname = File.join(target_dir, "generated_#{workflow_name}")
File.open("#{fname}.dot", 'w') do |file|
file.puts %Q|
digraph #{workflow_name} {
graph [#{graph_options}];
node [shape=box];
edge [len=1];
|
klass.workflow_spec.states.each do |state_name, state|
file.puts %Q{ #{state.name} [label="#{state.name}"];}
state.events.each do |event_name, event|
meta_info = event.meta
if meta_info[:doc_weight]
weight_prop = ", weight=#{meta_info[:doc_weight]}"
else
weight_prop = ''
end
file.puts %Q{ #{state.name} -> #{event.transitions_to} [label="#{event_name.to_s.humanize}" #{weight_prop}];}
end
end
file.puts "}"
file.puts
end
`dot -Tpdf -o'#{fname}.pdf' '#{fname}.dot'`
puts "
Please run the following to open the generated file:
open '#{fname}.pdf'
"
end
end