QP/C++ 6.9.3
qf_qmact.cpp
Go to the documentation of this file.
1 
38 #define QP_IMPL // this is QP implementation
39 #include "qf_port.hpp" // QF port
40 #include "qassert.h" // QP embedded systems-friendly assertions
41 
49 #define QF_QMACTIVE_TO_QMSM_CAST_(qact_) \
50  reinterpret_cast<QMsm *>((qact_))
51 
53 #define QF_QMACTIVE_TO_QMSM_CONST_CAST_(qact_) \
54  reinterpret_cast<QMsm const *>((qact_))
55 
56 namespace QP {
57 
58 //Q_DEFINE_THIS_MODULE("qf_qmact")
59 
60 //............................................................................
61 QMActive::QMActive(QStateHandler const initial) noexcept
62  : QActive(initial)
63 {
64  m_temp.fun = initial;
65 }
66 
67 //............................................................................
68 void QMActive::init(void const * const e, std::uint_fast8_t const qs_id) {
70  QF_QMACTIVE_TO_QMSM_CAST_(this)->QMsm::init(e, qs_id);
71 }
72 //............................................................................
73 void QMActive::init(std::uint_fast8_t const qs_id) {
74  QF_QMACTIVE_TO_QMSM_CAST_(this)->QMsm::init(qs_id);
75 }
76 //............................................................................
77 void QMActive::dispatch(QEvt const * const e, std::uint_fast8_t const qs_id) {
78  QF_QMACTIVE_TO_QMSM_CAST_(this)->QMsm::dispatch(e, qs_id);
79 }
80 
81 //............................................................................
82 bool QMActive::isInState(QMState const * const st) const noexcept {
83  return QF_QMACTIVE_TO_QMSM_CONST_CAST_(this)->QMsm::isInState(st);
84 }
85 //............................................................................
86 QMState const *QMActive::childStateObj(QMState const * const parent)
87  const noexcept
88 {
89  return QF_QMACTIVE_TO_QMSM_CONST_CAST_(this)->QMsm::childStateObj(parent);
90 }
91 
92 //............................................................................
93 #ifdef Q_SPY
95  return QF_QMACTIVE_TO_QMSM_CAST_(this)->QMsm::getStateHandler();
96  }
97 #endif
98 
99 } // namespace QP
100 
unsigned int uint_fast8_t
fast at-least 8-bit unsigned int
Definition: 16bit/stdint.h:36
QActive active object (based on QP::QHsm implementation)
Definition: qf.hpp:144
QHsmAttr m_state
current active state (state-variable)
Definition: qep.hpp:270
friend class QMActive
Definition: qep.hpp:471
QStateHandler getStateHandler() noexcept override
Get the current state handler of the QMsm.
Definition: qf_qmact.cpp:94
void dispatch(QEvt const *const e, std::uint_fast8_t const qs_id) override
Dispatches an event to QHsm.
Definition: qf_qmact.cpp:77
QMState const * childStateObj(QMState const *const parent) const noexcept
Obtain the current active child state of a given parent (read only)
Definition: qf_qmact.cpp:86
void init(void const *const e, std::uint_fast8_t const qs_id) override
executes the top-most initial transition in QP::QHsm
Definition: qf_qmact.cpp:68
bool isInState(QMState const *const st) const noexcept
Tests if a given state is part of the active state configuration.
Definition: qf_qmact.cpp:82
static QMState const msm_top_s
the top state object for the QMsm
Definition: qep.hpp:569
namespace associated with the QP/C++ framework
Definition: struct.dox:1
QMState const * obj
pointer to QMState object
Definition: qep.hpp:242
QState(*)(void *const me, QEvt const *const e) QStateHandler
Pointer to state-handler function.
Definition: qep.hpp:226
State object for the QP::QMsm class (QM State Machine).
Definition: qep.hpp:584
Customizable and memory-efficient assertions for embedded systems.
#define QF_QMACTIVE_TO_QMSM_CONST_CAST_(qact_)
Internal macro to cast a QP::QMActive pointer qact_ to QP::QMsm const *.
Definition: qf_qmact.cpp:53
#define QF_QMACTIVE_TO_QMSM_CAST_(qact_)
Internal macro to cast a QP::QMActive pointer qact_ to QP::QMsm*.
Definition: qf_qmact.cpp:49
QEvt base class.
Definition: qep.hpp:209