Giter VIP home page Giter VIP logo

statecharts's Introduction

PlantUML Statecharts (State Machine) Translator

A Python3 tool parsing PlantUML statecharts scripts and generating C++11 code with its unit tests.

This repository contains:

  • A single C++11 header file containing the base code for defining a state machine. You can use it to define manually your own state machines. The code is here.
  • A Python3 script reading PlantUML statecharts and generating Statecharts (aka finite state machines or FSM) in C++11 code as a child class of the base state machine defined in the header file. The code is here.
  • Several examples of PlantUML statecharts are given.

The Python script offers you:

  • To generate code in a compromise between simplicity to read, no virtual methods, memory footprint, and no usage of external lib (such boost lib).
  • To do some basic verification to check if your state machine is well formed.
  • To generate C++ unit tests (using Google tests) to verify if your state machine is functional.
  • The goal of this tool is to separate things: one part is to manage the logic of how a state machine shall work (the base class), and the second part is to write code in a descriptive way (the child class).

Here is an example of PlantUML code source, generating this kind of diagram, this tool is able to parse (Click on the figure to see the PlantUML code source):

Gumball

This repository also contains several more evolved examples of statecharts the tool can parse. For people not sure how state machines work, there are several links explaining them given in the last section of this document.

Limitation: what the tools cannot offer to you

  • Generate only C++ code. You can help contributing to generate other languages.
  • Parsing Hierarchic State Machine (HSM). Currently, the tool only parses simple Finite State Machine (FSM). I'm thinking about how to upgrade this tool.
  • For FSM, the tool does not parse fork, concurrent states, composite states, pseudo-states, history.
  • For FSM, the do / activity and after(X ms) are not yet managed.
  • Does not manage multi-edges (several transitions from the same origin and destination state). As consequence, you cannot add several on event in the same state.
  • I am not a UML expert, so probably this tool does not follow strictly UML standards. This tool has not yet been used in real production code.
  • Does not offer formal proof to check if your output transitions from a state are mutually exclusive or if some branches are not reachable. This is currently too complex for me to develop (any help is welcome): we need to parse and understand C++ code. For example, in the previous diagram, if the initial count of quarters starts with a negative value, you will be stuck in the state CountQuarter. In the same idea: events on output transitions shall be mutually exclusive but the tool cannot parse C++ logic. And finally for unit tests, to help generate good values
  • Does not give 100% of compilable C++ code source. It depends on the code of your guards and actions. It should be simple valid C++ code. The main code of the generated state machine is functional you do not have to modify it but you may have to clean a little the code for your guards, actions, add member variables to complete the compilation.

Prerequisite

  • Python3 and the following packages:
    • Lark a parsing toolkit for Python. It is used for reading PlantUML files.
    • Networkx before the PlantUML is translated into C++ file, a directed graph structure is created as an intermediate structure before generating the C++ code (shall be ideally a MultiDiGraph).
  • PlantUML called by the Makefile to generate PNG pictures of examples but it is not used by our Python3 script.
python3 -m pip install networkx lark

Command line

./statecharts.py <plantuml statechart file> <langage> [name]

Where:

  • plantuml statechart file is the path of the PlantUML statecharts file as input. This repo contains examples.
  • langage is either "cpp" to force create a C++ source file or "hpp" to force create a C++ header file.
  • name is optional and allows giving prefix to the C++ class name and file.

Example:

./statecharts.py foo.plantuml cpp controller

Will create a FooController.cpp file with a class name FooController.

Compile Examples

cd examples
make -j8

Examples are compiled into the build folder as well as their PNG file. You can run binaries. For example:

./build/Gumball

PlantUML Statecharts syntax

This tool does not pretend to parse the whole PlantUML syntax or implement the whols UML statecharts standard. Here is the basic PlantUML statecharts syntax it can understand:

  • FromState --> ToState : event [ guard ] / action

  • FromState -> ToState : event [ guard ] / action

  • ToState <-- FromState : event [ guard ] / action

  • ToState <- FromState : event [ guard ] / action

  • State : entry / action

  • State : exit / action

  • State : on event [ guard ] / action Where [ guard ] is optional.

  • ' for single-line comment.

  • The statecharts shall have one [*] as a source.

  • Optionally [*] as a sink.

  • Note: [ guard ] and / action are optional. You can add C++ code (the less the better, you can complete with '[code] as depicted in this section). The tool shall manage spaces between tokens -->, :, [], and /. The event is optional it can be spaced but shall refer to a valid C++ syntax of a function (so do not add logic operations).

Note: I added some sugar syntax:

  • State : entering / action alias for State : entry / action.
  • State : leaving / action alias for State : exit / action.
  • State : comment / description to add a C++ comment for the state in the generated code.
  • \n--\n action alias for / action to follow State-Transition Diagrams used in Structured Analysis for Real Time (but also to force carriage return on PlantUML diagrams).

I added some syntax to help generate extra C++ code. They start with the ' keyword which is a PlantUML single-line comment so they will not produce syntax error when PlantUML is parsing the file but, on our side, we exploit them.

  • '[brief] for adding a comment for the generated state machine class.
  • '[header] for adding code in the header of the file, before the class of the state machine. You can include other C++ files, and create or define functions.
  • '[footer] for adding code in the footer of the file, after the class of the state machine.
  • '[param] are arguments to pass to the state machine C++ constructor. Commas are added. One argument by line.
  • '[cons] to allow init the argument before the code of the constructor. One argument by line.
  • '[init] is C++ code called by the constructor or bu the reset() function.
  • '[code] to allow you to add member variables or member functions.
  • '[test] to allow you to add C++ code for unit tests.

Things that I did not understand about state machines before this project

In the beginning, I did not understand the differences between the State/Transition diagram (STD) from the Structured Analysis for Real-Time methodology with the UML statechart. In STD actions are made by transitions, while in UML actions are made by transitions or by states. I was confused.

What I understood after: in 1956 there were two kinds of state machines: Moore in where actions were called from states and Mealy where actions were called from transitions. They describe exactly the same system and you can translate a Moore machine into a Mealy machine and vice versa, without losing any expressiveness cite. In 1984, Harel mixed the two syntaxes plus added some features (composite ...) and named it statecharts. Finally UML integrated statecharts in their standard.

Some tools like the one explained in this document simplify the statecharts graph to get a Mealy graph before generating the code. In the case of our translator, to keep the code simple to read, the state machine is not simplified and actions are made by states and by transitions.

Another point of confusion hat is the difference between action and activity. The action is instantaneous: it does not consume time (contrary to the activity). The activity can be seen as a thread that is preempted by any external events the state reacts to. The thread is halted when the activity is done or when the system switches state. Therefore, an activity shall not be seen by a periodic external update event since its code does not necessarily be repeated.

My last point of confusion concerned the order of execution of actions in transitions and in states. I explain it in the next section.

Rule of execution in Statecharts

Let's suppose the C++ code of the following state machine has been generated with the C++ name class Simple.

alt statemachine

  • The system Simple is entering to State1 (made active): the action7 is called (private method of the class Simple or any local function).
  • The external event3 (public method of the class Simple or any local function) may occur and when this will happen, and if and only if the guard3 returns true (boolean expression of a function returning a boolean), then the action3 is called (method of the class Simple or any local function).
  • If event1 is triggered and if the guard1 returns true then the system is leaving the State1 and the exit action8 is called followed by the transition action1.
  • The system is entering State2 (made active): the action9 is called.
  • event5 may be triggered and once happening the action5 is called.
  • If event2 is triggered then the State2 exit action10 is called. Else if event6 is triggered then the State2 exit action10 is called.
  • Note: when event3 or event5 are triggered, the entry and exit actions of the corresponding state is not called.
  • An activity is started after the entry action and halted before the exit action.

If an output transition has no explicit event and no guard is given (or if the guard is returning true) and the activity has finished then the transition is immediately made in an atomic way. In our example, if event1, event2, and guard1 were not present this would create an infinite loop.

Events shall be mutually exclusive since we are dealing in discrete time events, several events can occur during the delta time but since in this API you have to call the event and the state machine reacts immediately, the order is defined by the caller.

Details Design

The translation pipeline of the Python script is the following:

  • The Lark parser loads the grammar file for parsing the PlantUML statechart file. Note: this grammar does not come from an official source (PlantUML does not offer their grammar. I manages a subset of their syntax).
  • The PlantUML statecharts file is then parsed by Lark and an Abstract Syntax Tree (AST) is generated.
  • This AST is then visited and a digraph Networkx structure is created (nodes are states and arcs are transitions). Events and actions are stored to them.
  • This graph is visited to make some verification (if the state machine is well formed ...), then to generate the C++ code source. Unit tests are generating from graph cycles or paths from source to sinks (what inputs make me reach the desired state) ...

How is the generated code? The state machine, like any graph structure (nodes are states and edges are transitions) can be depicted by a matrix.

For example concerning the motor controller:

alt motor

can be depicted in the following table (guards and actions are not shown). In practice the table is usually sparse:

Set Speed Halt --
IDLE STARTING
STOPPING IDLE
STARTING SPINNING STOPPING
SPINNING SPINNING STOPPING
  • The first column holds source states (origin).
  • The first row holds events.
  • For each event (therefore for each column) each matrix cell holds the destination state. The third column has no event, and the consequence is that the state is immediately transited.

Our implementation is the following:

  • A private fixed-size array holds states and their entry/exit actions (pointers to private methods).
  • Events are public methods. In each of them a static lookup table (a std::map for the sparse side) maps transitions (source states to destination states) shall be defined. This table also holds pointers to private methods for the guards and for actions. This table is used by a general private method doing all statecharts logic to follow the UML norm.
  • The norm says that events shall be mutually exclusive (since we are dealing with discrete time events, several events can occur during the delta time). But since the API of C++ state machine only offers public methods to trigger the event, the exclusion shall be made uphill (by the caller function).
  • The code is based on this project but with several differences described:
    • The code uses the curiously recurring template pattern to use the child state machine class and use external enums for defining states (internal enums were not possible).
    • Actions and guards are placed on transitions.
    • Transition are parameters to the main function doing the logic of the state machine (transitions, calling guards, and actions).
    • I also merge internal and external transitions into a single function. I also use an internal queue.

References

statecharts's People

Contributors

lecrapouille avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

statecharts's Issues

Param to constructor

Make it works (missing : m_arg1(arg1) + generate value for unit tests

  • update Simple example
'[header] struct Arg1 { int foo; };
'[header] struct Arg2 { int bar; };
'[param] Arg1 arg1
'[param] Arg2 arg2
'[init] m_arg1 = arg1;
'[init] m_arg2 = arg2;

Generating

    SimpleController(Arg1 arg1, Arg2 arg2)
        : StateMachine(SimpleControllerStates::CONSTRUCTOR)
    {
        m_arg1 = arg1;
        m_arg2 = arg2;

but desired:

    SimpleController(Arg1 arg1, Arg2 arg2)
        : StateMachine(SimpleControllerStates::CONSTRUCTOR),
          m_arg1(arg1), m_arg2(arg2)
    {

Example Gumball

passer param gumballs au constructeur puis a sa variable membre puis passer les bonnes valeurs pour les TU

Grammar update

  • Allow comment before @startuml
  • Multiline comments
  • Parse notes

Blocking FSM ?

Mieux gerer le multithread en mettant les evenements dans la FIFO. Actuellement on ne peut pas appeller un 2ieme evenement tant que le premier n'est pas fini (mais est ce grave car les actions sont instananées)

MultiDiGraph

Implement multi edges:

First case:

  • A -> B: event1
  • A -> B: event2

Second case:

  • A : event evt1 / action1
  • A : event evt2 / action2

Examples:

  • Motor:
Stop <- Spinning : setSpeed(x) [ x == 0 ]
Stop <- Spinning : halt
  • Simple

Ordre guard/event

Exemple Triggers.plantuml
Ordre entre guard et event: event devrait etre plus prioritaires sur guards.

Exemple:

D <==event== A
A =[guard]=> B:

Quand on rentre dans A si event alors transiter dans D mais actuellement on va d'abord tester la garde et passer en B.

Implement [type]

Motor:

'[type] refSpeed int

Instead of:

'[header] #define REFSPEED int

Change in class Event(object): the code

params += p.upper() + ' const& ' + p

Implement [never]

By default event are ignored IGNORING_EVENT. But we may want to halt the system CANNOT_HAPPEN.

Data event

Motor.ploantuml:

  • Implement data event
  • setSpeed(x) generated as setSpeed(x)()
  • add LOGD("event with data {}", x)
  • How to pass x in the guard
  • unit tests: generated values
std::map<string, value> x = { {"TEST_IDLE_START_....", 42 } ... };
setSpeed(x["TEST_IDLE_START_...."])

onEnteringStateCONSTRUCTOR

Shall onEnteringStateCONSTRUCTOR be called inside the constructor (like done previously) or from a start() method ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.