Coder Social home page Coder Social logo

fsmemek's Introduction

fsmemek

Utility to generate state machine chart from my my c++17 task fsm

fsmemek runs on any fsm written by my library with the following restrictions:

  • states are called STATE_*
  • events are called EVENT_*
  • Normal c/cpp conventions are used
  • functions declaration open brackets same line like: void func() {

#dependencies

  • python3
  • Any program / extension that can present plantUML files
    • in VS code use PlantUML extension

Usage

For fsm in file some_fsm.cpp: python fsmemek.py some_fsm.cpp Will create a file named some_fsm.uml

Example

return_state class::on_event(STATE_A s_a, EVENT_B& e_a) {

   if(is_oneliner)
      return std::nullopt;

   return SOMETHING_TRENARY
                           ? STATE_A{}
                           : STATE_B{};
}

return_state class::on_event(STATE_B& s_a, EVENT_A& e_a)
{
   if (some_condition) {
      return STATE_A{};
   }

   if (some_more_ifs) {
      return STATE_A{};
   } else if (some_other_condition_number) {
      return std::nullopt;
   } else {
      return STATE_C{};
   }
}

return_state class::on_event(STATE_A s_a, EVENT_A& e_a) {
   return STATE_B{};
}

some SOME::on_event(STATE_A &, const EVENT_D &state) {
    switch (var) {
    case big:
        return STATE_C{};
    case medium:
        [[fallthrough]]
    case small:
        [[fallthrough]]
    case tiny:
        return STATE_D{};

    default:
      return std::nullopt;
    }
}

will generate the following uml file:

example_graph

fsmemek's People

Contributors

moran296 avatar

Stargazers

 avatar

Watchers

 avatar

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.