Skip to content

Python package for writing asyncio state machines using the state pattern

License

Notifications You must be signed in to change notification settings

graham-mills/asyncio-state-pattern

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

asyncio-state-pattern

Python package for writing async state machines following the [state pattern] (https://en.wikipedia.org/wiki/State_pattern). Compatible with Python 3.8 and later.

Features

  • Supports state nesting for hierarchical state machines

Quick Start

Install via pip:

pip install asyncio-state-pattern

Create a Python script with the following code:

import asyncio
from asyncio_state_pattern import State, StateMachine

class InitialState(State):
    def greet(self):
        print(f"Hello from {self.name}!")

class Greeter(StateMachine):
    def __init__(self):
        super().__init__(states=[InitialState])

    def greet(self):
        self.state.greet()

async def main():
    greeter = Greeter() # State is initially `None`
    await greeter.start() # State set to `InitialState`
    greeter.greet() # Prints "Hello from InitialState!"

asyncio.run(main())

Running this script will output Hello from InitialState! to the terminal.

Overview

States

States are modelled as classes that sub-class the State class:

stateDiagram-v2
    PoweredOn
    PoweredOff
Loading
class PoweredOn(State):
    ...
class PoweredOff(State):
    ...

State classes can be further sub-classed to model nested states for hierarchical state machines:

stateDiagram-v2
    state PoweredOn {
        Idle
    }
Loading
# `Idle` is a sub-state of `PoweredOn`
class Idle(PoweredOn):
    ...

State Machines

The state pattern's Context class is implemented as a sub-class of StateMachine. This class is used to define the set of internal states that the class can enter.

class CoffeeMaker(StateMachine):
    def __init__(self):
        super().__init__(states=[PoweredOff, PoweredOn, Idle])
    ...

In this example, PoweredOn is a composite state with the sub-state Idle. Composite states may be omitted during initialization as they are inferred from their sub-states, so PoweredOn may be removed:

class CoffeeMaker(StateMachine):
    def __init__(self):
        super().__init__(states=[PoweredOff, Idle]) # `PoweredOn` inferred from `Idle`
    ...

When the StateMachine is initialized it creates instances of each state sub-class that was given. These instances are retained for the lifetime of the StateMachine instance and are not re-created when exiting and re-entering a state.

State instances may also be initialized manually with their own args:

class PoweredOff(State):
    ...

class PoweredOn(State):
    def __init__(self, temperature):
        self.temperature = temperature
    ...

class CoffeeMaker(StateMachine):
    def __init__(self):
        super().__init__(states=[
            PoweredOff, # `PoweredOff` will be initialized without arguments
            Idle(temperature=32.0) # `Idle` initialized with arguments
        ])
    ...

Initial States

By default, the initial state that will be entered when the state machine is started is the first state given during initialization:

class CoffeeMaker(StateMachine):
    def __init__(self):
        super().__init__(states=[
            PoweredOff, # <-- Initial state
            PoweredOn
        ])
    ...

This behavior may be changed by manually declaring the state class with the initial argument set to True.

class PoweredOff(State): ...
class PoweredOn(State, initial=True): ...

class CoffeeMaker(StateMachine):
    def __init__(self):
        super().__init__(states=[
            PoweredOff,
            PoweredOn # <-- Initial state
        ])
    ...

The initial argument is also re-used to identify the initial sub-state of any composite states:

class PoweredOn(State): ...
class Idle(PoweredOn): ...
class Heating(PoweredOn, initial=True): ...

class CoffeeMaker(StateMachine):
    def __init__(self):
        super().__init__(states=[
            Idle,
            Heating # <-- Initial state
        ])
    ...

Transitions

Entry and Exit Actions

Events

About

Python package for writing asyncio state machines using the state pattern

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages