QP/C++ 6.9.3
qf_defer.cpp
Go to the documentation of this file.
1 
39 #define QP_IMPL // this is QP implementation
40 #include "qf_port.hpp" // QF port
41 #include "qf_pkg.hpp" // QF package-scope interface
42 #include "qassert.h" // QP embedded systems-friendly assertions
43 #ifdef Q_SPY // QS software tracing enabled?
44  #include "qs_port.hpp" // QS port
45  #include "qs_pkg.hpp" // QS facilities for pre-defined trace records
46 #else
47  #include "qs_dummy.hpp" // disable the QS software tracing
48 #endif // Q_SPY
49 
50 namespace QP {
51 
52 Q_DEFINE_THIS_MODULE("qf_defer")
53 
54 //****************************************************************************
77 bool QActive::defer(QEQueue * const eq, QEvt const * const e) const noexcept {
78  bool const status = eq->post(e, 0U, m_prio);
80 
82  QS_TIME_PRE_(); // time stamp
83  QS_OBJ_PRE_(this); // this active object
84  QS_OBJ_PRE_(eq); // the deferred queue
85  QS_SIG_PRE_(e->sig); // the signal of the event
86  QS_2U8_PRE_(e->poolId_, e->refCtr_); // pool Id & ref Count
87  QS_END_PRE_()
88 
89  return status;
90 }
91 
92 //****************************************************************************
113 bool QActive::recall(QEQueue * const eq) noexcept {
114  QEvt const * const e = eq->get(m_prio); // get evt from deferred queue
115  bool recalled;
116 
117  // event available?
118  if (e != nullptr) {
119  QActive::postLIFO(e); // post it to the _front_ of the AO's queue
120 
122  QF_CRIT_E_();
123 
124  // is it a dynamic event?
125  if (e->poolId_ != 0U) {
126 
127  // after posting to the AO's queue the event must be referenced
128  // at least twice: once in the deferred event queue (eq->get()
129  // did NOT decrement the reference counter) and once in the
130  // AO's event queue.
131  Q_ASSERT_CRIT_(210, e->refCtr_ >= 2U);
132 
133  // we need to decrement the reference counter once, to account
134  // for removing the event from the deferred event queue.
135  QF_EVT_REF_CTR_DEC_(e); // decrement the reference counter
136  }
137 
139  QS_TIME_PRE_(); // time stamp
140  QS_OBJ_PRE_(this); // this active object
141  QS_OBJ_PRE_(eq); // the deferred queue
142  QS_SIG_PRE_(e->sig); // the signal of the event
143  QS_2U8_PRE_(e->poolId_, e->refCtr_); // pool Id & ref Count
145 
146  QF_CRIT_X_();
147  recalled = true;
148  }
149  else {
151 
153  QS_TIME_PRE_(); // time stamp
154  QS_OBJ_PRE_(this); // this active object
155  QS_OBJ_PRE_(eq); // the deferred queue
156  QS_END_PRE_()
157 
158  recalled = false;
159  }
160  return recalled;
161 }
162 
163 //****************************************************************************
179  std::uint_fast16_t n = 0U;
180  for (QEvt const *e = eq->get(m_prio);
181  e != nullptr;
182  e = eq->get(m_prio))
183  {
184  QF::gc(e); // garbage collect
185  ++n; // count the flushed event
186  }
187  return n;
188 }
189 
190 } // namespace QP
191 
unsigned int uint_fast16_t
fast at-least 16-bit unsigned int
Definition: 16bit/stdint.h:38
QActive active object (based on QP::QHsm implementation)
Definition: qf.hpp:144
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...
Definition: qf_actq.cpp:228
bool recall(QEQueue *const eq) noexcept
Recall a deferred event from a given event queue.
Definition: qf_defer.cpp:113
std::uint_fast16_t flushDeferred(QEQueue *const eq) const noexcept
Flush the specified deferred queue 'eq'.
Definition: qf_defer.cpp:178
Native QF Event Queue class.
Definition: qequeue.hpp:123
static void gc(QEvt const *const e) noexcept
Recycle a dynamic event.
Definition: qf_dyn.cpp:219
namespace associated with the QP/C++ framework
Definition: struct.dox:1
@ QS_QF_ACTIVE_RECALL
AO recalled an event.
Definition: qs.hpp:79
@ QS_QF_ACTIVE_RECALL_ATTEMPT
AO attempted to recall an event.
Definition: qs.hpp:86
@ QS_QF_ACTIVE_DEFER
AO deferred an event.
Definition: qs.hpp:78
void QF_EVT_REF_CTR_DEC_(QEvt const *const e) noexcept
decrement the refCtr_ of an event e
Definition: qf_pkg.hpp:155
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.
Definition: qassert.h:120
Internal (package scope) QF/C++ interface.
#define QF_CRIT_STAT_
This is an internal macro for defining the critical section status type.
Definition: qf_pkg.hpp:56
#define Q_ASSERT_CRIT_(id_, test_)
Definition: qf_pkg.hpp:94
#define QF_CRIT_X_()
This is an internal macro for exiting a critical section.
Definition: qf_pkg.hpp:77
#define QF_CRIT_E_()
This is an internal macro for entering a critical section.
Definition: qf_pkg.hpp:66
#define QS_CRIT_STAT_
This is an internal macro for defining the critical section status type.
Definition: qs.hpp:783
#define QS_TIME_PRE_()
Definition: qs.hpp:266
Dummy definitions of the QS macros that avoid code generation from the QS instrumentation.
#define QS_BEGIN_PRE_(rec_, qs_id_)
Definition: qs_dummy.hpp:96
#define QS_BEGIN_NOCRIT_PRE_(rec_, qs_id_)
Definition: qs_dummy.hpp:98
#define QS_OBJ_PRE_(obj_)
Definition: qs_dummy.hpp:107
#define QS_END_NOCRIT_PRE_()
Definition: qs_dummy.hpp:99
#define QS_2U8_PRE_(data1_, data2_)
Definition: qs_dummy.hpp:101
#define QS_SIG_PRE_(sig_)
Definition: qs_dummy.hpp:105
#define QS_END_PRE_()
Definition: qs_dummy.hpp:97
Internal (package scope) QS/C++ interface.
QS/C++ port to a 32-bit CPU, generic compiler.
QEvt base class.
Definition: qep.hpp:209
QSignal sig
signal of the event instance
Definition: qep.hpp:210
std::uint8_t volatile refCtr_
reference counter
Definition: qep.hpp:212
std::uint8_t poolId_
pool ID (0 for static event)
Definition: qep.hpp:211