- Notifications
You must be signed in to change notification settings - Fork38
A very simple state machine plugin built on top of ActiveRecord::Enum
License
amatsuda/stateful_enum
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
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 thestate_machine gem.
Example:
classBug <ApplicationRecordenum:status,{unassigned:0,assigned:1,resolved:2,closed:3}doevent:assigndotransition:unassigned=>:assignedendevent:resolvedobeforedoself.resolved_at=Time.zone.nowendtransition[:unassigned,:assigned]=>:resolvedendevent:closedoafterdoNotifier.notify"Bug##{id} has been closed."endtransitionall -[:closed]=>:closedendendend
Just call the AR::Enum'senum method. The only difference from the originalenum method is that ourenum call takes a block.Please see the full API documentation ofAR::Enum for more information.
You can declare events throughevent method inside of anenum 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 throughtransition method inside of anevent block.
There are a few important details to note regarding this feature:
- The
transitionmethod 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
allthat means all defined states. - The "from" state can be an exception of Array of states, in this case the key can be a subtraction of
allwith the state to be excluded, as shown in the usage example.
Thetransition method takes an:if or:unless option as a Proc.
Example:
event:assigndotransition:unassigned=>:assigned,if:->{ !!assigned_to}end
You can definebefore andafter event hooks inside of anevent block.
You can get the list of defined events from the model class:
Bug.stateful_enum.events#=> an Array of all defined StatefulEnum::Machine::Event objects
And you can get the list of possible event definitions from the model instance:
Bug.new(status::assigned).stateful_enum.possible_events#=> an Array of StatefulEnum::Machine::Event objects that are callable from the receiver object
Maybe what you really need for your app is the list of possible event "names":
Bug.new(status::assigned).stateful_enum.possible_event_names#=> [:resolve, :close]
You can get the list of next possible state names as well:
Bug.new(status::assigned).stateful_enum.possible_states#=> [:resolved, :closed]
These features would help some kind of metaprogramming over state transitions.
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 variableDEST_DIR.
% DEST_DIR=doc rails g stateful_enum:graph bug
- Better Error handling
- Rails 4.1.x, 4.2.x, 5.0, 5.1, 5.2, 6.0, 6.1, 7.0, 7.1, 7.2, 8.0, and 8.1 (edge)
Pull requests are welcome on GitHub athttps://github.com/amatsuda/stateful_enum.
The gem is available as open source under the terms of theMIT License.
About
A very simple state machine plugin built on top of ActiveRecord::Enum
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors13
Uh oh!
There was an error while loading.Please reload this page.