1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
// Copyright 2025 Christian Granzin
// Copyright 2010 Christophe Henry
// henry UNDERSCORE christophe AT hotmail DOT com
// This is an extended version of the state machine available in the boost::mpl library
// Distributed under the same license as the original.
// Copyright for the original version:
// Copyright 2005 David Abrahams and Aleksey Gurtovoy. Distributed
// under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// back-end
#include <boost/msm/backmp11/state_machine.hpp>
//front-end
#include <boost/msm/front/state_machine_def.hpp>
#include <boost/msm/front/functor_row.hpp>
#include <boost/msm/back/queue_container_circular.hpp>
#include <boost/msm/back/history_policies.hpp>
#ifndef BOOST_MSM_NONSTANDALONE_TEST
#define BOOST_TEST_MODULE backmp11_root_sm_test
#endif
#include <boost/test/unit_test.hpp>
namespace msm = boost::msm;
namespace mp11 = boost::mp11;
using namespace msm::front;
using namespace msm::backmp11;
namespace
{
// Events.
struct EnterSubFsm{};
struct ExitSubFsm{};
struct TriggerAction{};
struct TriggerActionWithGuard{};
// States.
struct Default : public state<>{};
template <bool TestRootFsmParameter>
struct hierarchical_machine
{
// Actions
struct Action
{
template<typename Event, typename Fsm, typename Source, typename Target>
void operator()(const Event&, Fsm&, Source&, Target&)
{
if constexpr (TestRootFsmParameter)
{
static_assert(std::is_same_v<Fsm,RootSm>);
}
}
};
// Guards
struct Guard
{
template<typename Event, typename Fsm, typename Source, typename Target>
bool operator()(const Event&, Fsm&, Source&, Target&)
{
if constexpr (TestRootFsmParameter)
{
static_assert(std::is_same_v<Fsm,RootSm>);
}
return true;
}
};
// Forward-declare the upper machine,
// so we can set a root_sm.
struct UpperMachine_;
struct SmConfig;
using RootSm = state_machine<UpperMachine_, SmConfig>;
struct SmConfig : state_machine_config
{
using root_sm = RootSm;
using fsm_parameter = mp11::mp_if_c<TestRootFsmParameter,
root_sm,
transition_owner
>;
};
template<typename T>
struct MachineBase_ : public state_machine_def<MachineBase_<T>>
{
template <typename Event, typename Fsm>
void on_entry(const Event& /*event*/, Fsm& fsm)
{
if constexpr (TestRootFsmParameter)
{
static_assert(std::is_same_v<Fsm,RootSm>);
}
fsm.get_root_sm().machine_entries++;
};
template <typename Event, typename Fsm>
void on_exit(const Event& /*event*/, Fsm& fsm)
{
if constexpr (TestRootFsmParameter)
{
static_assert(std::is_same_v<Fsm,RootSm>);
}
fsm.get_root_sm().machine_exits++;
};
using initial_state = Default;
};
struct LowerMachine_ : public MachineBase_<LowerMachine_>
{
template <typename Event, typename Fsm>
void on_entry(const Event& /*event*/, Fsm& fsm)
{
if constexpr (TestRootFsmParameter)
{
static_assert(std::is_same_v<Fsm,RootSm>);
}
else
{
// TODO:
// Requires improved filtering of possible entry
// states.
// static_assert(std::is_same_v<Fsm,MiddleMachine>);
}
fsm.get_root_sm().machine_entries++;
};
template <typename Event, typename Fsm>
void on_exit(const Event& /*event*/, Fsm& fsm)
{
if constexpr (TestRootFsmParameter)
{
static_assert(std::is_same_v<Fsm,RootSm>);
}
else
{
// static_assert(std::is_same_v<Fsm,MiddleMachine>);
}
fsm.get_root_sm().machine_exits++;
};
};
using LowerMachine = state_machine<LowerMachine_, SmConfig>;
struct MiddleMachine_ : public MachineBase_<MiddleMachine_>
{
using transition_table = mp11::mp_list<
Row< Default , TriggerAction , none , Action , none >,
Row< Default , TriggerActionWithGuard , none , Action , Guard >,
Row< Default , EnterSubFsm , LowerMachine >,
Row< LowerMachine , ExitSubFsm , Default >
>;
};
using MiddleMachine = state_machine<MiddleMachine_, SmConfig>;
struct UpperMachine_ : public MachineBase_<UpperMachine_>
{
using transition_table = mp11::mp_list<
Row< Default , EnterSubFsm , MiddleMachine>,
Row< MiddleMachine , ExitSubFsm , Default>
>;
uint32_t machine_entries = 0;
uint32_t machine_exits = 0;
};
using UpperMachine = state_machine<UpperMachine_, SmConfig>;
};
using TestMachines = boost::mpl::vector<
hierarchical_machine<false>,
hierarchical_machine<true>
>;
BOOST_AUTO_TEST_CASE_TEMPLATE( backmp11_root_sm_test, TestMachine, TestMachines )
{
using UpperMachine = typename TestMachine::UpperMachine;
UpperMachine upper_machine{};
upper_machine.start();
BOOST_REQUIRE(upper_machine.machine_entries == 1);
upper_machine.process_event(EnterSubFsm());
BOOST_REQUIRE(upper_machine.machine_entries == 2);
upper_machine.process_event(TriggerAction());
upper_machine.process_event(TriggerActionWithGuard());
upper_machine.process_event(EnterSubFsm());
BOOST_REQUIRE(upper_machine.machine_entries == 3);
upper_machine.process_event(ExitSubFsm());
BOOST_REQUIRE(upper_machine.machine_exits == 1);
upper_machine.process_event(ExitSubFsm());
BOOST_REQUIRE(upper_machine.machine_exits == 2);
upper_machine.stop();
BOOST_REQUIRE(upper_machine.machine_exits == 3);
}
} // namespace
|