Rust-FSM

A statically checked finite state machine written in rust.

Motivation

Because I can. And I wanted to practice creating proc macros in rust. They can be fun...

Usage

To create a state machine, use the fsm macro.

```rust fsm!{

initial = initstate state1 state2 ... end = endstate1, endstate_2,...

staten -> statem: transition_k ... }

// --snip--

// Initialize the finite state machine let mut fsm = FSM::new();

// run transition and save new struct fsm = fsm.transition_k(); let f = |from: &str, to: &str, event: &str| { println!("from: {from}, to: {to}, event: {event}"); // other actions to be performed }

// You can pass a callback function to be called with the transition fsm = fsm.transitionlfn(f);

// Call the end function. Confirm that the FSM reached a final state. fsm.end();

// or pass a closure f_end = |state: %str| { println!("done!"); // maybe do something else as well... }

fsm.endfn(fend); ```

How does it work

The macro creates types for all the states and an FSM struct. The FSM struct is what the users should use. The state types allow it to define and restrict what transitions/functions can be called.

Sample generated code

```rust type struct state_1; ...

type struct FSM { ... pub history: Vec, }

type struct Transition{ pub from: String, pub to: String, pub event: string, }

impl FSM {

pub fn new() -> FSM { return FSM{ // initialization here } }

}

impl FSM { pub fn transition_k(self) -> FSM { return FSM { // initialization here as well } }

pub fn transitionkfn(self, f: Fn(&str, &str, &str)) -> FSM { f("state1", "state2", "transitionk"); return self.transitionk(); } }

...

impl FSM {

... // note that it destroys the object. // Do what you want with it before calling this function pub fn end() {}

pub fn endfn(f: Fn(&str)) { f("endstate"); } } ```

Issues

  1. Sanitization
  2. Macros and LSP

Features to add