C++ YASMIN (Yet Another State MachINe)
|
Runs a series of states in parallel. More...
#include <concurrence.hpp>
Public Types | |
typedef std::map< std::shared_ptr< State >, std::string > | StateMap |
typedef std::map< std::string, StateMap > | OutcomeMap |
Public Member Functions | |
Concurrence (std::set< std::shared_ptr< State > > states, std::string default_outcome, OutcomeMap outcome_map) | |
Constructs a State with a set of possible outcomes. | |
std::string | execute (std::shared_ptr< blackboard::Blackboard > blackboard) override |
Executes the state's specific logic. | |
void | cancel_state () override |
Cancels the current state execution. | |
std::string | to_string () override |
Converts the state to a string representation. | |
![]() | |
State (std::set< std::string > outcomes) | |
Constructs a State with a set of possible outcomes. | |
std::string | operator() (std::shared_ptr< blackboard::Blackboard > blackboard) |
Executes the state and returns the outcome. | |
bool | is_canceled () const |
Checks if the state has been canceled. | |
bool | is_running () const |
Checks if the state is currently running. | |
std::set< std::string > const & | get_outcomes () |
Gets the set of possible outcomes for this state. | |
Protected Attributes | |
const std::set< std::shared_ptr< State > > | states |
The states to run concurrently. | |
const std::string | default_outcome |
Default outcome. | |
OutcomeMap | outcome_map |
std::map< std::shared_ptr< State >, std::shared_ptr< std::string > > | intermediate_outcome_map |
Stores the intermedaite outcomes of the concurrent states. | |
std::set< std::string > | possible_outcomes |
The set of possible outcomes. | |
![]() | |
std::set< std::string > | outcomes |
The possible outcomes of this state. | |
Static Private Member Functions | |
static std::set< std::string > | generate_possible_outcomes (const OutcomeMap &outcome_map, const std::string &default_outcome) |
Helper function to generate a set of possible outcomes from an outcome map. | |
Private Attributes | |
std::atomic_bool | canceled {false} |
Indicates if the state has been canceled. | |
std::atomic_bool | running {false} |
Indicates if the state is currently running. | |
std::mutex | intermediate_outcome_mutex |
Mutex for intermediate outcome map. | |
Runs a series of states in parallel.
The Concurrence class runs a set of states concurrently, waiting for the termination of each, and then returns a single output according to a provided rule map, or a default outcome if no rule is satisfied.
typedef std::map<std::string, StateMap> yasmin::Concurrence::OutcomeMap |
typedef std::map<std::shared_ptr<State>, std::string> yasmin::Concurrence::StateMap |
Concurrence::Concurrence | ( | std::set< std::shared_ptr< State > > | states, |
std::string | default_outcome, | ||
OutcomeMap | outcome_map ) |
Constructs a State with a set of possible outcomes.
outcomes | A set of possible outcomes for this state. |
|
overridevirtual |
Cancels the current state execution.
This method sets the canceled flag to true and logs the action.
Reimplemented from yasmin::State.
|
overridevirtual |
Executes the state's specific logic.
blackboard | A shared pointer to the Blackboard to use during execution. |
This method is intended to be overridden by derived classes to provide specific execution logic.
Reimplemented from yasmin::State.
|
staticprivate |
Helper function to generate a set of possible outcomes from an outcome map.
outcome_map | |
default_outcome |
|
inlineoverridevirtual |
Converts the state to a string representation.
This method retrieves the demangled name of the class for a readable string representation.
Reimplemented from yasmin::State.
|
private |
Indicates if the state has been canceled.
|
protected |
Default outcome.
|
protected |
Stores the intermedaite outcomes of the concurrent states.
|
private |
Mutex for intermediate outcome map.
|
protected |
Specifies which combination of state outputs should produce a given overall output
|
protected |
The set of possible outcomes.
|
private |
Indicates if the state is currently running.
|
protected |
The states to run concurrently.