C++ YASMIN (Yet Another State MachINe)
Loading...
Searching...
No Matches
concurrence.hpp
Go to the documentation of this file.
1// Copyright (C) 2025 Georgia Tech Research Institute
2// Supported by USDA-NIFA CSIAPP Grant. No. 2023-70442-39232
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17#ifndef YASMIN__CONCURRENCE_HPP
18#define YASMIN__CONCURRENCE_HPP
19
20#include <atomic>
21#include <iostream>
22#include <map>
23#include <memory>
24#include <mutex>
25#include <set>
26#include <string>
27#include <thread>
28#include <vector>
29
30#ifdef __GNUG__ // If using GCC/G++
31#include <cxxabi.h> // For abi::__cxa_demangle
32#endif
33
35#include "yasmin/state.hpp"
36
37namespace yasmin {
38
48class Concurrence : public State {
49
50public:
51 typedef std::map<std::shared_ptr<State>, std::string> StateMap;
52 typedef std::map<std::string, StateMap> OutcomeMap;
53
54protected:
56 const std::set<std::shared_ptr<State>> states;
57
59 const std::string default_outcome;
60
64
66 std::map<std::shared_ptr<State>, std::shared_ptr<std::string>>
68
70 std::set<std::string> possible_outcomes;
71
72private:
74 std::atomic_bool canceled{false};
76 std::atomic_bool running{false};
77
80
86 static std::set<std::string>
88 const std::string &default_outcome);
89
90public:
95 Concurrence(std::set<std::shared_ptr<State>> states,
97
107 std::string
108 execute(std::shared_ptr<blackboard::Blackboard> blackboard) override;
109
115 void cancel_state() override;
116
124 std::string to_string() override {
125 std::string name = typeid(*this).name();
126
127#ifdef __GNUG__ // If using GCC/G++
128 int status;
129 // Demangle the name using GCC's demangling function
130 char *demangled =
131 abi::__cxa_demangle(name.c_str(), nullptr, nullptr, &status);
132 if (status == 0) {
133 name = demangled;
134 }
135 free(demangled);
136#endif
137
138 name += "[";
139
140 for (auto it = states.begin(); it != states.end(); ++it) {
141 name += (*it)->to_string();
142
143 // Add a comma if this is not the last element
144 if (std::next(it) != states.end()) {
145 name += ", ";
146 }
147 }
148
149 name += "]";
150
151 return name; // Return the demangled class name
152 }
153};
154
155} // namespace yasmin
156
157#endif // YASMIN__CONCURRENCE_HPP
std::string execute(std::shared_ptr< blackboard::Blackboard > blackboard) override
Executes the state's specific logic.
Definition concurrence.cpp:67
std::set< std::string > possible_outcomes
The set of possible outcomes.
Definition concurrence.hpp:70
void cancel_state() override
Cancels the current state execution.
Definition concurrence.cpp:135
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.
Definition concurrence.cpp:143
Concurrence(std::set< std::shared_ptr< State > > states, std::string default_outcome, OutcomeMap outcome_map)
Constructs a State with a set of possible outcomes.
Definition concurrence.cpp:28
std::atomic_bool canceled
Indicates if the state has been canceled.
Definition concurrence.hpp:74
std::string to_string() override
Converts the state to a string representation.
Definition concurrence.hpp:124
std::mutex intermediate_outcome_mutex
Mutex for intermediate outcome map.
Definition concurrence.hpp:79
std::atomic_bool running
Indicates if the state is currently running.
Definition concurrence.hpp:76
std::map< std::string, StateMap > OutcomeMap
Definition concurrence.hpp:52
std::map< std::shared_ptr< State >, std::string > StateMap
Definition concurrence.hpp:51
const std::set< std::shared_ptr< State > > states
The states to run concurrently.
Definition concurrence.hpp:56
const std::string default_outcome
Default outcome.
Definition concurrence.hpp:59
OutcomeMap outcome_map
Definition concurrence.hpp:63
std::map< std::shared_ptr< State >, std::shared_ptr< std::string > > intermediate_outcome_map
Stores the intermedaite outcomes of the concurrent states.
Definition concurrence.hpp:67
State(std::set< std::string > outcomes)
Constructs a State with a set of possible outcomes.
Definition state.cpp:27
Definition blackboard.hpp:30
Definition blackboard.hpp:29