dart_machine 0.1.9 copy "dart_machine: ^0.1.9" to clipboard
dart_machine: ^0.1.9 copied to clipboard

discontinued

DartMachine is State Machine for Dart. You can define states of your application and reaction on transition between states

State Machine for Dart v0.1.0 #

A library for Dart developers.

IDartMachine {
	
	/**
	 * What is the current state?
	 * @return The current state.
	 */
	String currentState();
	
	/**
	 * Does an action exist in the state machine?
	 * @param action The action in question.
	 * @return True if the action exists, false if it does not.
	 */
	bool actionExists( String checkAction );
	
	/**
	 * Add a valid link between two states.
	 * The state machine can then move between
	 * @param fromState State you want to move from.
	 * @param toState State you want to move to.
	 * @param action Action that when performed will move from the from state to the to state.
	 * @param handler Optional method that gets called when moving between these two states.
	 * @return true if link was added, false if it was not.
	 */
	bool addAction( String fromState, String toState, String action, [ Function handler = null ]);
	
	/**
	 * Adds a new state to the state machine.
	 * @param newState The new state to add.
	 * @return True is teh state was added, false if it was not.
	 */
	bool addState( String newState );
	
	/**
	 * Move from the current state to another state.
	 * @param toState New state to try and move to.
	 * @return True if the state machine has moved to this new state, false if it was unable to do so.
	 */
	bool changeState( String toState );
	
	/**
	 * Does a state exist?
	 * @param state The state in question.
	 * @return True if the state exists, false if it does not.
	 */
	bool stateExists( String checkState );
	
	/**
	 * Change the current state by performing an action.
	 * @param action The action to perform.
	 * @return True if the action was able to be performed and the state machine moved to a new state, false if the action was unable to be performed.
	 */
	bool performAction( String actionName );
	
	/**
	 * What are the valid actions you can perform from the current state?
	 * @return An array of actions.
	 */
	List<Action> validActions();
	
	/**
	 * What are the valid states you can get to from the current state?
	 * @return An array of states.
	 */
	List<State> validStates();
	
	/**
	 * Go back to the initial starting state
	 */
	void reset();
}

Usage #

A simple usage example:

import 'package:dart_machine/dart_machine.dart';

main() {

  DartMachine dartMachine = new DartMachine();
  
	dartMachine.addState( STATE_BEGINS );
	
	dartMachine.addState( STATE_LOADING );
	dartMachine.addState( STATE_LOADING_COMPLETE );
	dartMachine.addState( STATE_LOADING_FAILED );

	dartMachine.addState( STATE_PREPARE_MODEL );
	dartMachine.addState( STATE_PREPARE_CONTROLLER );
	dartMachine.addState( STATE_PREPARE_VIEW );
	dartMachine.addState( STATE_PREPARE_COMPLETE );
	dartMachine.addState( STATE_READY );

	dartMachine.addAction(
		STATE_BEGINS,
		STATE_LOADING,
		ACTION_LOADING_START,
		() {
			print("> CURRENT state: " + dartMachine.currentState());
			scheduleMicrotask(() {
				print("> \t END OF microtask queue -> state: " + dartMachine.currentState());
				dartMachine.performAction(
					Random.secure().nextBool()
					? ACTION_LOADING_COMPLETE
					: ACTION_LOADING_FAILED
				);
			});
		}
	);

	dartMachine.addAction(
		STATE_LOADING,
		STATE_LOADING_COMPLETE,
		ACTION_LOADING_COMPLETE,
		() {
			print("> CURRENT state: " + dartMachine.currentState());
			scheduleMicrotask(() => print("> \t END OF microtask queue -> state: " + dartMachine.currentState()));
		}
	);

	dartMachine.addAction(
		STATE_LOADING,
		STATE_LOADING_FAILED,
		ACTION_LOADING_FAILED,
		() {
			print("> CURRENT state: " + dartMachine.currentState());
			scheduleMicrotask(() => print("> \t END OF microtask queue -> state: " + dartMachine.currentState()));
		}
	);

	dartMachine.performAction( ACTION_LOADING_START );
}

Features and bugs #

0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

DartMachine is State Machine for Dart. You can define states of your application and reaction on transition between states

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on dart_machine