A statically checked finite state machine written in rust.
Because I can. And I wanted to practice creating proc macros in rust. They can be fun...
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); ```
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.
```rust type struct state_1; ...
type struct FSM
type struct Transition{ pub from: String, pub to: String, pub event: string, }
impl FSM {
pub fn new() -> FSM
}
impl FSM
pub fn transitionkfn(self, f: Fn(&str, &str, &str)) -> FSM
...
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"); } } ```
A -> B: a,b,c,...