Module: Statesman::Machine::ClassMethods
- Defined in:
- lib/statesman/machine.rb
Instance Attribute Summary collapse
-
#initial_state ⇒ Object
readonly
Returns the value of attribute initial_state.
Instance Method Summary collapse
- #after_transition(options = { from: nil, to: nil, after_commit: false }, &block) ⇒ Object
- #before_transition(options = { from: nil, to: nil }, &block) ⇒ Object
- #callbacks ⇒ Object
- #event(name, &block) ⇒ Object
- #events ⇒ Object
- #guard_transition(options = { from: nil, to: nil }, &block) ⇒ Object
- #state(name, options = { initial: false }) ⇒ Object
- #states ⇒ Object
- #successors ⇒ Object
- #transition(options = { from: nil, to: nil }, event = nil) ⇒ Object
- #validate_callback_condition(options = { from: nil, to: nil }) ⇒ Object
-
#validate_from_and_to_state(from, to) ⇒ Object
Check that the transition is valid when ‘from’ and ‘to’ are given.
-
#validate_not_from_terminal_state(from) ⇒ Object
Check that the ‘from’ state is not terminal.
-
#validate_not_to_initial_state(to) ⇒ Object
Check that the ‘to’ state is not initial.
Instance Attribute Details
#initial_state ⇒ Object (readonly)
Returns the value of attribute initial_state.
29 30 31 |
# File 'lib/statesman/machine.rb', line 29 def initial_state @initial_state end |
Instance Method Details
#after_transition(options = { from: nil, to: nil, after_commit: false }, &block) ⇒ Object
92 93 94 95 96 97 98 99 100 |
# File 'lib/statesman/machine.rb', line 92 def after_transition( = { from: nil, to: nil, after_commit: false }, &block) from = to_s_or_nil([:from]) to = to_s_or_nil([:to]) validate_callback_condition(from: from, to: to) phase = [:after_commit] ? :after_commit : :after callbacks[phase] << Callback.new(from: from, to: to, callback: block) end |
#before_transition(options = { from: nil, to: nil }, &block) ⇒ Object
84 85 86 87 88 89 90 |
# File 'lib/statesman/machine.rb', line 84 def before_transition( = { from: nil, to: nil }, &block) from = to_s_or_nil([:from]) to = to_s_or_nil([:to]) validate_callback_condition(from: from, to: to) callbacks[:before] << Callback.new(from: from, to: to, callback: block) end |
#callbacks ⇒ Object
56 57 58 59 60 61 62 63 |
# File 'lib/statesman/machine.rb', line 56 def callbacks @callbacks ||= { before: [], after: [], after_commit: [], guards: [] } end |
#event(name, &block) ⇒ Object
48 49 50 |
# File 'lib/statesman/machine.rb', line 48 def event(name, &block) EventTransitions.new(self, name, &block) end |
#events ⇒ Object
35 36 37 |
# File 'lib/statesman/machine.rb', line 35 def events @events ||= {} end |
#guard_transition(options = { from: nil, to: nil }, &block) ⇒ Object
102 103 104 105 106 107 108 |
# File 'lib/statesman/machine.rb', line 102 def guard_transition( = { from: nil, to: nil }, &block) from = to_s_or_nil([:from]) to = to_s_or_nil([:to]) validate_callback_condition(from: from, to: to) callbacks[:guards] << Guard.new(from: from, to: to, callback: block) end |
#state(name, options = { initial: false }) ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'lib/statesman/machine.rb', line 39 def state(name, = { initial: false }) name = name.to_s if [:initial] validate_initial_state(name) @initial_state = name end states << name end |
#states ⇒ Object
31 32 33 |
# File 'lib/statesman/machine.rb', line 31 def states @states ||= [] end |
#successors ⇒ Object
52 53 54 |
# File 'lib/statesman/machine.rb', line 52 def successors @successors ||= {} end |
#transition(options = { from: nil, to: nil }, event = nil) ⇒ Object
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/statesman/machine.rb', line 65 def transition( = { from: nil, to: nil }, event = nil) from = to_s_or_nil([:from]) to = Array([:to]).map { |item| to_s_or_nil(item) } raise InvalidStateError, "No to states provided." if to.empty? successors[from] ||= [] ([from] + to).each { |state| validate_state(state) } successors[from] += to if event events[event] ||= {} events[event][from] ||= [] events[event][from] += to end end |
#validate_callback_condition(options = { from: nil, to: nil }) ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/statesman/machine.rb', line 110 def validate_callback_condition( = { from: nil, to: nil }) from = to_s_or_nil([:from]) to = to_s_or_nil([:to]) [from, to].compact.each { |state| validate_state(state) } return if from.nil? && to.nil? validate_not_from_terminal_state(from) validate_not_to_initial_state(to) return if from.nil? || to.nil? validate_from_and_to_state(from, to) end |
#validate_from_and_to_state(from, to) ⇒ Object
Check that the transition is valid when ‘from’ and ‘to’ are given
142 143 144 145 146 147 |
# File 'lib/statesman/machine.rb', line 142 def validate_from_and_to_state(from, to) unless successors.fetch(from, []).include?(to) raise InvalidTransitionError, "Cannot transition from '#{from}' to '#{to}'" end end |
#validate_not_from_terminal_state(from) ⇒ Object
Check that the ‘from’ state is not terminal
126 127 128 129 130 131 |
# File 'lib/statesman/machine.rb', line 126 def validate_not_from_terminal_state(from) unless from.nil? || successors.keys.include?(from) raise InvalidTransitionError, "Cannot transition away from terminal state '#{from}'" end end |
#validate_not_to_initial_state(to) ⇒ Object
Check that the ‘to’ state is not initial
134 135 136 137 138 139 |
# File 'lib/statesman/machine.rb', line 134 def validate_not_to_initial_state(to) unless to.nil? || successors.values.flatten.include?(to) raise InvalidTransitionError, "Cannot transition to initial state '#{to}'" end end |