qpcpp/include/qk.hpp
2025-01-21 19:41:21 -05:00

119 lines
3.5 KiB
C++

//============================================================================
// QP/C++ Real-Time Embedded Framework (RTEF)
// Version 8.0.2
//
// Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved.
//
// Q u a n t u m L e a P s
// ------------------------
// Modern Embedded Software
//
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-QL-commercial
//
// This software is dual-licensed under the terms of the open-source GNU
// General Public License (GPL) or under the terms of one of the closed-
// source Quantum Leaps commercial licenses.
//
// Redistributions in source code must retain this top-level comment block.
// Plagiarizing this software to sidestep the license obligations is illegal.
//
// NOTE:
// The GPL does NOT permit the incorporation of this code into proprietary
// programs. Please contact Quantum Leaps for commercial licensing options,
// which expressly supersede the GPL and are designed explicitly for
// closed-source distribution.
//
// Quantum Leaps contact information:
// <www.state-machine.com/licensing>
// <info@state-machine.com>
//============================================================================
#ifndef QK_HPP_
#define QK_HPP_
namespace QP {
using QSchedStatus = std::uint_fast8_t;
} // namespace QP
//============================================================================
extern "C" {
class QK_Attr {
public:
QP::QPSet readySet;
std::uint_fast8_t actPrio;
std::uint_fast8_t nextPrio;
std::uint_fast8_t actThre;
std::uint_fast8_t lockCeil;
std::uint_fast8_t intNest;
}; // class QK_Attr
extern QK_Attr QK_priv_;
std::uint_fast8_t QK_sched_() noexcept;
std::uint_fast8_t QK_sched_act_(
QP::QActive const * const act,
std::uint_fast8_t const pthre_in) noexcept;
void QK_activate_() noexcept;
} // extern "C"
//============================================================================
namespace QP {
namespace QK {
QSchedStatus schedLock(std::uint_fast8_t const ceiling) noexcept;
void schedUnlock(QSchedStatus const prevCeil) noexcept;
void onIdle();
} // namespace QK
} // namespace QP
//============================================================================
// interface used only for internal implementation, but not in applications
#ifdef QP_IMPL
// scheduler locking for QK...
#define QF_SCHED_STAT_ QSchedStatus lockStat_;
#define QF_SCHED_LOCK_(ceil_) do { \
if (QK_ISR_CONTEXT_()) { \
lockStat_ = 0xFFU; \
} else { \
lockStat_ = QK::schedLock((ceil_)); \
} \
} while (false)
#define QF_SCHED_UNLOCK_() do { \
if (lockStat_ != 0xFFU) { \
QK::schedUnlock(lockStat_); \
} \
} while (false)
// QActive event queue customization for QK...
#define QACTIVE_EQUEUE_WAIT_(me_) (static_cast<void>(0))
#define QACTIVE_EQUEUE_SIGNAL_(me_) do { \
QK_priv_.readySet.insert( \
static_cast<std::uint_fast8_t>((me_)->m_prio)); \
if (!QK_ISR_CONTEXT_()) { \
if (QK_sched_() != 0U) { \
QK_activate_(); \
} \
} \
} while (false)
// QF event pool customization for QK...
#define QF_EPOOL_TYPE_ QMPool
#define QF_EPOOL_INIT_(p_, poolSto_, poolSize_, evtSize_) \
(p_).init((poolSto_), (poolSize_), (evtSize_))
#define QF_EPOOL_EVENT_SIZE_(p_) ((p_).getBlockSize())
#define QF_EPOOL_GET_(p_, e_, m_, qsId_) \
((e_) = static_cast<QEvt *>((p_).get((m_), (qsId_))))
#define QF_EPOOL_PUT_(p_, e_, qsId_) ((p_).put((e_), (qsId_)))
#endif // QP_IMPL
#endif // QK_HPP_