metabor/statemachine

Statemachine in PHP 5.6 / PHP 7

Support

Gitter

Continuous Integration/Deployment

TravisCI

Open Issues

Package Information

Packagist

Compatibility

Dependency Status

VersionEye

Test Coverage

Scrutinizer

Code Quality

Codeship

Codacy

Code Climate

Scrutinizer

SensioLabsInsight

Other

Quickstart examples

Once installed, let's use a sample statemachine:

<?php require_once 'vendor/autoload.php'; use MetaborStatemachineProcess; use MetaborStatemachineState; use MetaborStatemachineStatemachine; use MetaborStatemachineTransition; $closed = new State('closed'); $opened = new State('opened'); $eventOpen = 'open'; $eventClose = 'close'; $closed->addTransition(new Transition($opened, $eventOpen)); $closed->addTransition(new Transition($closed, $eventClose)); $opened->addTransition(new Transition($opened, $eventOpen)); $opened->addTransition(new Transition($closed, $eventClose)); // adding some action to events // the parts of observing the event and executing the command are separated in this example // normaly it could be put all together into your own command (base)class $openCommand = new MetaborCallbackCallback( function () { echo 'motor is opening door' . PHP_EOL; }); $observerForOpenEvent = new MetaborObserverCallback($openCommand); $closed->getEvent($eventOpen)->attach($observerForOpenEvent); $closeCommand = new MetaborCallbackCallback( function () { echo 'motor is closing door' . PHP_EOL; }); $observerForCloseEvent = new MetaborObserverCallback($closeCommand); $opened->getEvent($eventClose)->attach($observerForCloseEvent); // stateful subject that belongs to this statemachine $subject = new stdClass(); // start process with closed status; $initialState = $closed; $process = new Process('process name', $initialState); $statemachine = new Statemachine($subject, $process); echo 'Status:' . $statemachine->getCurrentState()->getName() . PHP_EOL; echo 'Event:' . $eventOpen . PHP_EOL; $statemachine->triggerEvent($eventOpen); echo 'Status:' . $statemachine->getCurrentState()->getName() . PHP_EOL; // opening an open door would not activate the motor echo 'Event:' . $eventOpen . PHP_EOL; $statemachine->triggerEvent($eventOpen); echo 'Status:' . $statemachine->getCurrentState()->getName() . PHP_EOL; echo 'Event:' . $eventClose . PHP_EOL; $statemachine->triggerEvent($eventClose); echo 'Status:' . $statemachine->getCurrentState()->getName() . PHP_EOL;

Features

This library implements a finite-state machine in PHP 5.3.

It was first developed for a talk at a conference. The example from my talk is available on Github and Packagist as metabor/statemachine-example.

In the namespace MetaborStd are abstract types defined that are exemplified implemented in this project. If you have to implement or use a statemachine in your project, feel free to either use this libary at all or replace the parts that didn't fit your needs by using the MetaborStd Interfaces.

Process Graph Drawing

The library supports visualizing of the process graph by using clue/graph and GraphViz "Graph Visualization Software".

Install

The recommended way to install this library is through composer. New to composer?

{ "require": { "metabor/statemachine": "~1.2" } }

Optional recommendation: In order to be able to use the process graph drawing feature you'll have to install GraphViz (dot executable). Users of Debian/Ubuntu-based distributions may simply invoke sudo apt-get install graphviz, Windows users have to download GraphViZ for Windows and remaining users should install from GraphViz homepage. To use this feature you also have to add this to your composer.json:

{ "require": { "graphp/graphviz": "*", "clue/graph": "*", "metabor/statemachine": "~1.2" } }

An example how to draw and display the graph, can be found in metabor/statemachine-example.

Tests

This library uses phpunit for its extensive testsuite. You can either use a global installation or rely on the one composer installs when you first run $ composer install. This sets up the developer environment, so that you can now run it from the project root directory:

$ php vendor/bin/phpunit

Contributing

If you encounter any issues, please don't hesitate to drop us a line, file a bug report or even best provide us with a patch / pull request and/or unit test to reproduce your problem.

Besides directly working with the code, any additional documentation, additions to our readme or even fixing simple typos are appreciated just as well.

Any feedback and/or contribution is welcome!

License

Released under the terms of the permissive MIT license.

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。
3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考学习用!
4、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。