/// @file
/// @brief QXK/C++ preemptive kernel counting semaphore implementation
/// @ingroup qxk
/// @cond
////**************************************************************************
/// Last updated for version 5.7.4
/// Last updated on 2016-11-01
///
/// Q u a n t u m L e a P s
/// ---------------------------
/// innovating embedded systems
///
/// Copyright (C) Quantum Leaps, LLC. All rights reserved.
///
/// This program is open source software: you can redistribute it and/or
/// modify it under the terms of the GNU General Public License as published
/// by the Free Software Foundation, either version 3 of the License, or
/// (at your option) any later version.
///
/// Alternatively, this program may be distributed and modified under the
/// terms of Quantum Leaps commercial licenses, which expressly supersede
/// the GNU General Public License and are specifically designed for
/// licensees interested in retaining the proprietary status of their code.
///
/// This program is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU General Public License for more details.
///
/// You should have received a copy of the GNU General Public License
/// along with this program. If not, see .
///
/// Contact information:
/// http://www.state-machine.com
/// mailto:info@state-machine.com
////**************************************************************************
/// @endcond
#define QP_IMPL // this is QP implementation
#include "qf_port.h" // QF port
#include "qxk_pkg.h" // QXK package-scope internal interface
#include "qassert.h" // QP embedded systems-friendly assertions
#ifdef Q_SPY // QS software tracing enabled?
#include "qs_port.h" // include QS port
#else
#include "qs_dummy.h" // disable the QS software tracing
#endif // Q_SPY
// protection against including this source file in a wrong project
#ifndef qxk_h
#error "Source file included in a project NOT based on the QXK kernel"
#endif // qxk_h
namespace QP {
Q_DEFINE_THIS_MODULE("qxk_sema")
//****************************************************************************
/// @description
/// Initializes a semaphore with the specified count. If the semaphore is used
/// for resource sharing, the initial value of the semaphore count should be
/// set to the number of identical resources guarded by the semaphore. If the
/// semaphore is used as a signaling mechanism, the initial count should set
/// to 0.
///
/// @param[in] count initial value of the semaphore counter
///
/// @note
/// QXSemaphore::init() must be called **before** the semaphore can be used
/// (signaled or waited on).
///
void QXSemaphore::init(uint_fast16_t const count) {
m_count = count;
m_waitSet.setEmpty();
}
//****************************************************************************
/// @description
/// When an extended thread calls QXSemaphore::wait() and the value of the
/// semaphore counter is greater than 0, QXSemaphore_wait() decrements the
/// semaphore counter and returns (true) to its caller. However, if the value
/// of the semaphore counter is 0, the function places the calling thread in
/// the waiting list for the semaphore. The thread waits until the semaphore
/// is signaled by calling QXSemaphore::signal(), or the specified timeout
/// expires. If the semaphore is signaled before the timeout expires, QXK
/// resumes the highest-priority extended thread waiting for the semaphore.
///
/// @param[in] nTicks number of clock ticks (at the associated rate)
/// to wait for the semaphore. The value of
/// QXTHREAD_NO_TIMEOUT indicates that no timeout will
/// occur and the semaphore will wait indefinitely.
/// @param[in] tickRate system clock tick rate serviced in this call.
///
/// @returns
/// true if the semaphore has been signaled, and false if the timeout occured.
///
/// @note
/// Multiple extended threads can wait for a given semahpre.
///
bool QXSemaphore::wait(uint_fast16_t const nTicks,
uint_fast8_t const tickRate)
{
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
QXThread *thr = static_cast(QXK_attr_.curr);
Q_REQUIRE_ID(100, (!QXK_ISR_CONTEXT_()) /* can't block inside an ISR */
&& (thr != static_cast(0)) /* current must be extended */
&& (thr->m_temp.obj == static_cast(0))); // !blocked
if (m_count > static_cast(0)) {
--m_count;
thr->m_timeEvt.sig = static_cast(QXK_SEMA_SIG); // non-zero
}
else {
// remember the blocking object
thr->m_temp.obj = reinterpret_cast(this);
thr->teArm_(static_cast(QXK_SEMA_SIG), nTicks, tickRate);
m_waitSet.insert(thr->m_prio);
QXK_attr_.readySet.remove(thr->m_prio);
(void)QXK_sched_();
QF_CRIT_EXIT_();
QF_CRIT_EXIT_NOP(); // BLOCK here
QF_CRIT_ENTRY_();
// the blocking object must be this semaphore
Q_ASSERT_ID(110, thr->m_temp.obj
== reinterpret_cast(this));
thr->m_temp.obj = static_cast(0); // clear
}
QF_CRIT_EXIT_();
// signal of non-zero means that the time event has not expired
return (thr->m_timeEvt.sig != static_cast(0));
}
//****************************************************************************
/// @description
/// If the semaphore counter value is 0 or more, it is incremented, and
/// this function returns to its caller. If the extended threads are waiting
/// for the semaphore to be signaled, QXSemaphore_signal() removes the highest-
/// priority thread waiting for the semaphore from the waiting list and makes
/// this thread ready-to-run. The QXK scheduler is then called to determine if
/// the awakened thread is now the highest-priority thread that is ready-to-run.
///
/// @note
/// A semaphore can be signaled from many places, including from ISRs, basic
/// threads (AOs), and extended threads.
///
void QXSemaphore::signal(void) {
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
if (m_waitSet.notEmpty()) {
uint_fast8_t p = m_waitSet.findMax();
QXK_attr_.readySet.insert(p);
m_waitSet.remove(p);
QXThread *thr = static_cast(QF::active_[p]);
// the thread must be extended and the semaphore count must be zero
Q_ASSERT_ID(210, (thr->m_thread != static_cast(0))
&& (m_count == static_cast(0)));
// disarm the internal time event
(void)thr->teDisarm_();
if (!QXK_ISR_CONTEXT_()) { // not inside ISR?
(void)QXK_sched_();
}
}
else {
++m_count;
}
QF_CRIT_EXIT_();
}
} // namespace QP