QP/C++ 6.9.3
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
qk.hpp
Go to the documentation of this file.
1 
39 #ifndef QK_HPP
40 #define QK_HPP
41 
42 #include "qequeue.hpp" // QK kernel uses the native QF event queue
43 #include "qmpool.hpp" // QK kernel uses the native QF memory pool
44 #include "qpset.hpp" // QK kernel uses the native QF priority set
45 
46 
47 //****************************************************************************
48 // QF configuration for QK -- data members of the QActive class...
49 
50 // QK event-queue used for AOs
51 #define QF_EQUEUE_TYPE QEQueue
52 
53 // QK thread type used for AOs
54 // QK uses this member to store the private Thread-Local Storage pointer.
55 //
56 #define QF_THREAD_TYPE void*
57 
58 
59 //****************************************************************************
60 namespace QP {
61  class QActive; // forward declaration
62 } // namespace QP
63 
65 extern "C" {
66 
67 struct QK_Attr {
68  std::uint8_t volatile actPrio;
72  std::uint8_t volatile intNest;
74 };
75 
77 extern QK_Attr QK_attr_;
78 
80 std::uint_fast8_t QK_sched_(void) noexcept;
81 
83 // the currently executing AOs.
84 void QK_activate_(void) noexcept;
85 
86 #ifdef QK_ON_CONTEXT_SW
87 
109 
110 #endif // QK_ON_CONTEXT_SW
111 
112 } // extern "C"
113 
114 
115 //****************************************************************************
116 namespace QP {
117 
120 
121 //****************************************************************************
132 class QK {
133 public:
134  // QK scheduler locking...
136  static QSchedStatus schedLock(std::uint_fast8_t const ceiling) noexcept;
137 
139  static void schedUnlock(QSchedStatus const stat) noexcept;
140 
152  static void onIdle(void);
153 
155  static char_t const *getVersion(void) noexcept {
156  return versionStr;
157  }
158 };
159 
160 } // namespace QP
161 
162 
163 //****************************************************************************
164 // interface used only inside QF, but not in applications
165 
166 #ifdef QP_IMPL
167 
168  #ifndef QK_ISR_CONTEXT_
170  // (ISR vs. thread).
173  #define QK_ISR_CONTEXT_() (QK_attr_.intNest != 0U)
174  #endif // QK_ISR_CONTEXT_
175 
176  // QK-specific scheduler locking
178  // that needs to be preserved to allow nesting of locks.
179  //
180  #define QF_SCHED_STAT_ QSchedStatus lockStat_;
181 
183  #define QF_SCHED_LOCK_(prio_) do { \
184  if (QK_ISR_CONTEXT_()) { \
185  lockStat_ = 0xFFU; \
186  } else { \
187  lockStat_ = QK::schedLock((prio_)); \
188  } \
189  } while (false)
190 
192  #define QF_SCHED_UNLOCK_() do { \
193  if (lockStat_ != 0xFFU) { \
194  QK::schedUnlock(lockStat_); \
195  } \
196  } while (false)
197 
198  // QK-specific native event queue operations...
199  #define QACTIVE_EQUEUE_WAIT_(me_) \
200  Q_ASSERT_ID(110, (me_)->m_eQueue.m_frontEvt != nullptr)
201 
202  #define QACTIVE_EQUEUE_SIGNAL_(me_) do { \
203  QK_attr_.readySet.insert( \
204  static_cast<std::uint_fast8_t>((me_)->m_prio)); \
205  if (!QK_ISR_CONTEXT_()) { \
206  if (QK_sched_() != 0U) { \
207  QK_activate_(); \
208  } \
209  } \
210  } while (false)
211 
212  // QK-specific native QF event pool operations...
213  #define QF_EPOOL_TYPE_ QMPool
214  #define QF_EPOOL_INIT_(p_, poolSto_, poolSize_, evtSize_) \
215  (p_).init((poolSto_), (poolSize_), (evtSize_))
216  #define QF_EPOOL_EVENT_SIZE_(p_) ((p_).getBlockSize())
217  #define QF_EPOOL_GET_(p_, e_, m_, qs_id_) \
218  ((e_) = static_cast<QEvt *>((p_).get((m_), (qs_id_))))
219  #define QF_EPOOL_PUT_(p_, e_, qs_id_) ((p_).put((e_), (qs_id_)))
220 
221 #endif // QP_IMPL
222 
223 #endif // QK_HPP
224 
unsigned int uint_fast16_t
fast at-least 16-bit unsigned int
Definition: 16bit/stdint.h:38
unsigned char uint8_t
exact-width 8-bit unsigned int
Definition: 16bit/stdint.h:29
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
QK services.
Definition: qk.hpp:132
static QSchedStatus schedLock(std::uint_fast8_t const ceiling) noexcept
QK selective scheduler lock.
Definition: qk.cpp:227
static char_t const * getVersion(void) noexcept
get the current QK version number string of the form X.Y.Z
Definition: qk.hpp:155
static void schedUnlock(QSchedStatus const stat) noexcept
QK selective scheduler unlock.
Definition: qk.cpp:277
static void onIdle(void)
QK idle callback (customized in BSPs for QK)
namespace associated with the QP/C++ framework
Definition: struct.dox:1
constexpr char_t const versionStr[]
the current QP version number string based on QP_VERSION_STR
Definition: qep.hpp:133
std::uint_fast16_t QSchedStatus
The scheduler lock status.
Definition: qk.hpp:119
char char_t
typedef for character strings.
Definition: qassert.h:77
platform-independent fast "raw" thread-safe event queue interface
std::uint8_t volatile lockPrio
lock prio (0 == no-lock)
Definition: qk.hpp:70
QK_Attr QK_attr_
global attributes of the QK kernel
Definition: qk.cpp:60
std::uint8_t volatile lockHolder
prio of the lock holder
Definition: qk.hpp:71
void QK_activate_(void) noexcept
QK activator activates the next active object. The activated AO preempts.
Definition: qk.cpp:356
std::uint8_t volatile actPrio
prio of the active AO
Definition: qk.hpp:68
QP::QPSet readySet
QK ready-set of AOs and "naked" threads.
Definition: qk.hpp:73
void QK_onContextSw(QP::QActive *prev, QP::QActive *next)
QK context switch callback (customized in BSPs for QK)
std::uint8_t volatile nextPrio
prio of the next AO to execute
Definition: qk.hpp:69
std::uint8_t volatile intNest
ISR nesting level.
Definition: qk.hpp:72
std::uint_fast8_t QK_sched_(void) noexcept
QK scheduler finds the highest-priority thread ready to run.
Definition: qk.cpp:329
attributes of the QK kernel (in C for easy access in assembly)
Definition: qk.hpp:67
platform-independent memory pool QP::QMPool interface.
platform-independent priority sets of 8 or 64 elements.
Priority Set of up to 32 elements *‍/.
Definition: qpset.hpp:76