stateful_enum is a state machine gem built on top of ActiveRecord's built-in ActiveRecord::Enum.
Add this line to your Rails app's Gemfile:
gem 'stateful_enum'
And bundle.
stateful_enum depends on ActiveRecord. If you prefer a "well-abstracted" state machine library that supports multiple datastores, or Plain Old Ruby Objects (who needs that feature?), I'm sorry but this gem is not for you.
From a database design point of view, I prefer to save state data in an INTEGER column rather than saving the state name directly in a VARCHAR column.
ActiveRecord 4.1+ has a very simple and useful built-in Enum DSL that provides human-friendly API over integer values in DB.
AR::Enum automatically defines Ruby methods per each label. However, Enum labels are in most cases adjectives or past participle, which often creates weird method names. What we really want to define as methods are the transition events between states, and not the states themselves.
The stateful_enum gem extends AR::Enum definition to take a block with a similar DSL to the state_machine gem.
Example:
class Bug < ApplicationRecord
enum status: {unassigned: 0, assigned: 1, resolved: 2, closed: 3} do
event :assign do
transition :unassigned => :assigned
end
event :resolve do
before do
self.resolved_at = Time.zone.now
end
transition [:unassigned, :assigned] => :resolved
end
event :close do
after do
Notifier.notify "Bug##{id} has been closed."
end
transition all - [:closed] => :closed
end
end
end
Just call the AR::Enum's enum
method. The only difference from the original enum
method is that our enum
call takes a block.
Please see the full API documentation of AR::Enum for more information.
You can declare events through event
method inside of an enum
block. Then stateful_enum defines the following methods per each event:
An instance method to fire the event
@bug.assign # does nothing and returns false if a valid transition for the current state is not defined
An instance method with !
to fire the event
@bug.assign! # raises if a valid transition for the current state is not defined
A predicate method that returns if the event is fireable
@bug.can_assign? # returns if the `assign` event can be called on this bug or not
An instance method that returns the state name after an event
@bug.assign_transition #=> :assigned
You can define state transitions through transition
method inside of an event
block.
There are a few important details to note regarding this feature:
- The
transition
method takes a Hash each key of which is state "from" transitions to the Hash value. - The "from" states and the "to" states should both be given in Symbols.
- The "from" state can be multiple states, in which case the key can be given as an Array of states, as shown in the usage example.
- The "from" state can be
all
that means all defined states.
The transition
method takes an :if
or :unless
option as a Proc.
Example:
event :assign do
transition :unassigned => :assigned, if: -> { !!assigned_to }
end
You can define before
and after
event hooks inside of an event
block.
stateful_enum includes a Rails generator that generates a state machine diagram. Note that you need to bundle the ruby-graphviz gem (and its dependencies) for the development env in order to run the generator.
% rails g stateful_enum:graph bug
You can specify relative or absolute output path via environment variable DEST_DIR
.
% DEST_DIR=doc rails g stateful_enum:graph bug
- Better Error handling
- Rails 4.1.x, 4.2.x, 5.0, 5.1, and 5.2 (edge)
Pull requests are welcome on GitHub at https://github.com/amatsuda/stateful_enum.
The gem is available as open source under the terms of the MIT License.