40 #include "qf_port.hpp"
52 #error "Source file included in a project NOT based on the QXK kernel"
57 #define QXTHREAD_CAST_(ptr_) (static_cast<QP::QXThread *>(ptr_))
79 m_state.act =
nullptr;
88 static_cast<void>(qs_id);
97 static_cast<void>(qs_id);
125 void const *
const par)
127 static_cast<void>(par);
136 && (stkSto !=
nullptr)
141 if (qSto !=
nullptr) {
142 m_eQueue.init(qSto, qLen);
202 void const *
const sender) noexcept
213 if (e == &m_timeEvt) {
226 else if (m_eQueue.m_end != 0U) {
248 else if (nFree >
static_cast<QEQueueCtr>(margin)) {
256 if (e->poolId_ != 0U) {
263 m_eQueue.m_nFree = nFree;
264 if (m_eQueue.m_nMin > nFree) {
265 m_eQueue.m_nMin = nFree;
279 if (m_eQueue.m_frontEvt ==
nullptr) {
280 m_eQueue.m_frontEvt = e;
284 static_cast<void>(teDisarm_());
295 QF_PTR_AT_(m_eQueue.m_ring, m_eQueue.m_head) = e;
298 if (m_eQueue.m_head == 0U) {
299 m_eQueue.m_head = m_eQueue.m_end;
342 static_cast<void>(e);
385 if (thr->m_eQueue.m_frontEvt ==
nullptr) {
405 if (thr->m_eQueue.m_frontEvt !=
nullptr) {
406 e = thr->m_eQueue.m_frontEvt;
408 nFree= thr->m_eQueue.m_nFree + 1U;
409 thr->m_eQueue.m_nFree = nFree;
412 if (nFree <= thr->m_eQueue.m_end) {
415 thr->m_eQueue.m_frontEvt =
416 QF_PTR_AT_(thr->m_eQueue.m_ring, thr->m_eQueue.m_tail);
417 if (thr->m_eQueue.m_tail == 0U) {
418 thr->m_eQueue.m_tail = thr->m_eQueue.m_end;
420 --thr->m_eQueue.m_tail;
431 thr->m_eQueue.m_frontEvt =
nullptr;
434 Q_ASSERT_ID(520, nFree == (thr->m_eQueue.m_end + 1U));
497 m_timeEvt.sig =
static_cast<QSignal>(sig);
500 m_timeEvt.m_ctr =
static_cast<QTimeEvtCtr>(nTicks);
501 m_timeEvt.m_interval = 0U;
535 if (m_timeEvt.m_ctr != 0U) {
538 m_timeEvt.m_ctr = 0U;
592 wasArmed = teDisarm_();
628 && (thr !=
nullptr));
unsigned int uint_fast16_t
fast at-least 16-bit unsigned int
unsigned char uint8_t
exact-width 8-bit unsigned int
unsigned int uint_fast8_t
fast at-least 8-bit unsigned int
QActive active object (based on QP::QHsm implementation)
std::uint8_t m_prio
QF priority (1..QF_MAX_ACTIVE) of this active object.
static QTimeEvt timeEvtHead_[QF_MAX_TICK_RATE]
heads of linked lists of time events, one for every clock tick rate
static void gc(QEvt const *const e) noexcept
Recycle a dynamic event.
static void add_(QActive *const a) noexcept
Register an active object to be managed by the framework.
static QActive * active_[QF_MAX_ACTIVE+1U]
array of registered active objects
QHsmAttr m_state
current active state (state-variable)
QHsmAttr m_temp
temporary: transition chain, target state, etc.
void *volatile m_act
the active object that receives the time events
Extended (blocking) thread of the QXK preemptive kernel.
void start(std::uint_fast8_t const prio, QEvt const **const qSto, std::uint_fast16_t const qLen, void *const stkSto, std::uint_fast16_t const stkSize, void const *const par) override
Starts execution of an extended thread and registers the thread with the framework.
void block_(void) const noexcept
void init(void const *const e, std::uint_fast8_t const qs_id) noexcept override
Executes the top-most initial transition in HSM.
void postLIFO(QEvt const *const e) noexcept override
Posts an event directly to the event queue of the active object using the Last-In-First-Out (LIFO) po...
static bool delay(std::uint_fast16_t const nTicks) noexcept
delay (block) the current extended thread for a specified # ticks
bool delayCancel(void) noexcept
cancel the delay
bool post_(QEvt const *const e, std::uint_fast16_t const margin, void const *const sender) noexcept override
void dispatch(QEvt const *const e, std::uint_fast8_t const qs_id) noexcept override
Dispatches an event to HSM.
QTimeEvt m_timeEvt
time event to handle blocking timeouts
void unblock_(void) const noexcept
static QEvt const * queueGet(std::uint_fast16_t const nTicks=QXTHREAD_NO_TIMEOUT) noexcept
obtain a message from the private message queue (block if no messages)
void teArm_(enum_t const sig, std::uint_fast16_t const nTicks) noexcept
bool teDisarm_(void) noexcept
namespace associated with the QP/C++ framework
std::uint8_t QEQueueCtr
The data type to store the ring-buffer counters based on the macro QF_EQUEUE_CTR_SIZE.
std::uint_fast16_t const QF_NO_MARGIN
special value of margin that causes asserting failure in case event allocation or event posting fails
@ QS_QF_ACTIVE_GET
AO got an event and its queue is not empty.
@ QS_QF_ACTIVE_POST_ATTEMPT
attempt to post an evt to AO failed
@ QS_QF_ACTIVE_POST
an event was posted (FIFO) directly to AO
@ QS_QF_ACTIVE_GET_LAST
AO got an event and its queue is empty.
void(*)(QXThread *const me) QXThreadHandler
Pointer to a thread-handler function.
void QF_EVT_REF_CTR_INC_(QEvt const *const e) noexcept
increment the refCtr_ of an event e
QMState const * obj
pointer to QMState object
static constexpr std::uint_fast16_t QXTHREAD_NO_TIMEOUT
no-timeout sepcification when blocking on queues or semaphores
constexpr std::uint8_t TE_IS_LINKED
QXThreadHandler thr
pointer to an thread-handler function
std::uint16_t QSignal
QSignal represents the signal of an event.
QActionHandler act
pointer to an action-handler function
State object for the QP::QMsm class (QM State Machine).
Customizable and memory-efficient assertions for embedded systems.
#define Q_DEFINE_THIS_MODULE(name_)
Define the user-specified module name for assertions in this file.
#define Q_ASSERT_ID(id_, test_)
General purpose assertion with user-specified assertion-id.
#define Q_ENSURE_ID(id_, test_)
Assertion for checking postconditions with user-specified assertion-id.
#define Q_REQUIRE_ID(id_, test_)
Assertion for checking preconditions with user-specified assertion-id.
#define Q_ERROR_ID(id_)
Assertion with user-specified assertion-id for a wrong path.
int enum_t
alias for enumerations used for event signals
#define Q_STATE_CAST(handler_)
Macro to perform casting to QStateHandler.
#define QF_CRIT_EXIT_NOP()
No-operation for exiting a critical section.
#define QF_CRIT_STAT_
This is an internal macro for defining the critical section status type.
#define QF_PTR_AT_(base_, i_)
access element at index i_ from the base pointer base_
#define QF_CRIT_X_()
This is an internal macro for exiting a critical section.
#define QF_CRIT_E_()
This is an internal macro for entering a critical section.
#define Q_ERROR_CRIT_(id_)
#define QS_TEST_PROBE_DEF(fun_)
QS macro to define the Test-Probe for a given fun_.
#define QS_TEST_PROBE_ID(id_, code_)
QS macro to apply a Test-Probe.
Dummy definitions of the QS macros that avoid code generation from the QS instrumentation.
#define QS_BEGIN_NOCRIT_PRE_(rec_, qs_id_)
#define QS_OBJ_PRE_(obj_)
#define QS_END_NOCRIT_PRE_()
#define QS_2U8_PRE_(data1_, data2_)
#define QS_SIG_PRE_(sig_)
#define QS_EQC_PRE_(ctr_)
Internal (package scope) QS/C++ interface.
QS/C++ port to a 32-bit CPU, generic compiler.
#define QF_MAX_ACTIVE
The maximum number of active objects in the application.
std::uint8_t volatile lockHolder
prio of the lock holder
#define QXK_ISR_CONTEXT_()
Internal port-specific macro that reports the execution context.
std::uint_fast8_t QXK_sched_(void) noexcept
QXK scheduler finds the highest-priority thread ready to run.
QP::QPSet readySet
ready-set of all threads
QP::QActive *volatile curr
currently executing thread
QXK_Attr QXK_attr_
global attributes of the QXK kernel
Internal (package scope) QXK/C++ interface.
void QXK_stackInit_(void *thr, QP::QXThreadHandler const handler, void *const stkSto, std::uint_fast16_t const stkSize) noexcept
initialize the private stack of a given AO
#define QXK_PTR_CAST_(type_, ptr_)
intertnal macro to encapsulate casting of pointers for MISRA deviations
void QXK_threadRet_(void) noexcept
called when a thread function returns
#define QXTHREAD_CAST_(ptr_)
intertnal macro to encapsulate casting of pointers for MISRA deviations */
QSignal sig
signal of the event instance
std::uint8_t volatile refCtr_
reference counter
std::uint8_t poolId_
pool ID (0 for static event)
void insert(std::uint_fast8_t const n) noexcept
insert element n into the set, n = 1..QF_MAX_ACTIVE
void rmove(std::uint_fast8_t const n) noexcept
remove element n from the set, n = 1..QF_MAX_ACTIVE