45 #include "qf_port.hpp"
92 void const *
const sender) noexcept
122 else if (nFree >
static_cast<QEQueueCtr>(margin)) {
130 if (e->poolId_ != 0U) {
137 m_eQueue.m_nFree = nFree;
138 if (m_eQueue.m_nMin > nFree) {
139 m_eQueue.m_nMin = nFree;
158 &
static_cast<std::uint8_t>(1U << (m_prio & 7U))) != 0U)
164 if (m_eQueue.m_frontEvt ==
nullptr) {
165 m_eQueue.m_frontEvt = e;
171 QF_PTR_AT_(m_eQueue.m_ring, m_eQueue.m_head) = e;
174 if (m_eQueue.m_head == 0U) {
175 m_eQueue.m_head = m_eQueue.m_end;
200 &
static_cast<std::uint8_t>(1U << (m_prio & 7U))) != 0U)
243 if (e->poolId_ != 0U) {
248 m_eQueue.m_nFree = nFree;
249 if (m_eQueue.m_nMin > nFree) {
250 m_eQueue.m_nMin = nFree;
268 &
static_cast<std::uint8_t>(1U << (m_prio & 7U))) != 0U)
275 QEvt const *
const frontEvt = m_eQueue.m_frontEvt;
276 m_eQueue.m_frontEvt = e;
279 if (frontEvt ==
nullptr) {
285 if (m_eQueue.m_tail == m_eQueue.m_end) {
286 m_eQueue.m_tail = 0U;
289 QF_PTR_AT_(m_eQueue.m_ring, m_eQueue.m_tail) = frontEvt;
320 QEvt const *
const e = m_eQueue.m_frontEvt;
321 QEQueueCtr const nFree = m_eQueue.m_nFree + 1U;
322 m_eQueue.m_nFree = nFree;
325 if (nFree <= m_eQueue.m_end) {
328 m_eQueue.m_frontEvt =
QF_PTR_AT_(m_eQueue.m_ring, m_eQueue.m_tail);
329 if (m_eQueue.m_tail == 0U) {
330 m_eQueue.m_tail = m_eQueue.m_end;
344 m_eQueue.m_frontEvt =
nullptr;
381 && (active_[prio] !=
nullptr));
397 m_eQueue.m_head =
static_cast<QEQueueCtr>(tickRate);
403 static_cast<void>(e);
404 static_cast<void>(qs_id);
405 m_eQueue.m_tail = 0U;
411 static_cast<void>(e);
412 static_cast<void>(qs_id);
417 m_eQueue.m_tail = 0U;
420 for (; nTicks > 0U; --nTicks) {
431 void const *
const sender) noexcept
437 static_cast<void>(e);
438 static_cast<void>(margin);
442 if (m_eQueue.m_frontEvt ==
nullptr) {
445 static QEvt const tickEvt(0U, QEvt::STATIC_EVT);
447 static QEvt const tickEvt = { 0U, 0U, 0U };
450 m_eQueue.m_frontEvt = &tickEvt;
475 static_cast<void>(e);
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)
virtual void postLIFO(QEvt const *const e) noexcept
Posts an event directly to the event queue of the active object using the Last-In-First-Out (LIFO) po...
virtual bool post_(QEvt const *const e, std::uint_fast16_t const margin, void const *const sender) noexcept
QEvt const * get_(void) noexcept
Get an event from the event queue of an active object.
static std::uint_fast16_t getQueueMin(std::uint_fast8_t const prio) noexcept
This function returns the minimum of free entries of the given event queue.
static void gc(QEvt const *const e) noexcept
Recycle a dynamic event.
static void onTestPost(void const *sender, QActive *recipient, QEvt const *e, bool status)
void init(void const *const e, std::uint_fast8_t const qs_id) noexcept override
executes the top-most initial transition in QP::QHsm
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...
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 QHsm.
#define QACTIVE_EQUEUE_SIGNAL_(me_)
Platform-dependent macro defining how QF should signal the active object task that an event has just ...
#define QACTIVE_EQUEUE_WAIT_(me_)
Platform-dependent macro defining how QF should block the calling task when the QF native queue is em...
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_POST_LIFO
an event was posted (LIFO) directly to AO
@ 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 QF_EVT_REF_CTR_INC_(QEvt const *const e) noexcept
increment the refCtr_ of an event e
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_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.
#define TICK_X(tickRate_, sender_)
Invoke the system clock tick processing QP::QF::tickX_().
Internal (package scope) QF/C++ interface.
#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 Q_ASSERT_CRIT_(id_, test_)
#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.
QSignal sig
signal of the event instance
std::uint8_t volatile refCtr_
reference counter
std::uint8_t poolId_
pool ID (0 for static event)