mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-02-04 06:13:00 +08:00
121 lines
5.2 KiB
C++
121 lines
5.2 KiB
C++
//****************************************************************************
|
|
// Product: QF/C++
|
|
// Last Updated for Version: 5.2.0
|
|
// Date of the Last Update: Dec 02, 2013
|
|
//
|
|
// Q u a n t u m L e a P s
|
|
// ---------------------------
|
|
// innovating embedded systems
|
|
//
|
|
// Copyright (C) 2002-2013 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 <http://www.gnu.org/licenses/>.
|
|
//
|
|
// Contact information:
|
|
// Quantum Leaps Web sites: http://www.quantum-leaps.com
|
|
// http://www.state-machine.com
|
|
// e-mail: info@quantum-leaps.com
|
|
//****************************************************************************
|
|
#include "qf_pkg.h"
|
|
#include "qassert.h"
|
|
|
|
/// \file
|
|
/// \ingroup qf
|
|
/// \brief QEQueue::post() implementation.
|
|
///
|
|
/// \note this function is used for the "raw" thread-safe queues and NOT
|
|
/// for the queues of active objects.
|
|
|
|
namespace QP {
|
|
|
|
Q_DEFINE_THIS_MODULE("qeq_fifo")
|
|
|
|
//............................................................................
|
|
bool QEQueue::post(QEvt const * const e, uint_t const margin) {
|
|
bool status;
|
|
QF_CRIT_STAT_
|
|
|
|
Q_REQUIRE(e != null_evt); // the event must be valid
|
|
|
|
QF_CRIT_ENTRY_();
|
|
QEQueueCtr nFree = m_nFree; // temporary to avoid UB for volatile access
|
|
|
|
if (nFree > static_cast<QEQueueCtr>(margin)) { // margin available?
|
|
|
|
QS_BEGIN_NOCRIT_(QS_QF_EQUEUE_POST_FIFO, QS::priv_.eqObjFilter, this)
|
|
QS_TIME_(); // timestamp
|
|
QS_SIG_(e->sig); // the signal of this event
|
|
QS_OBJ_(this); // this queue object
|
|
QS_2U8_(e->poolId_, e->refCtr_); // pool Id & refCtr of the evt
|
|
QS_EQC_(nFree); // number of free entries
|
|
QS_EQC_(m_nMin); // min number of free entries
|
|
QS_END_NOCRIT_()
|
|
|
|
if (e->poolId_ != u8_0) { // is it a dynamic event?
|
|
QF_EVT_REF_CTR_INC_(e); // increment the reference counter
|
|
}
|
|
|
|
--nFree; // one free entry just used up
|
|
m_nFree = nFree; // update the volatile
|
|
if (m_nMin > nFree) {
|
|
m_nMin = nFree; // update minimum so far
|
|
}
|
|
|
|
if (m_frontEvt == null_evt) { // is the queue empty?
|
|
m_frontEvt = e; // deliver event directly
|
|
}
|
|
else { // queue is not empty, leave event in the ring-buffer
|
|
// insert event into the ring buffer (FIFO)
|
|
QF_PTR_AT_(m_ring, m_head) = e; // insert e into buffer
|
|
if (m_head == static_cast<QEQueueCtr>(0)) { // need to wrap?
|
|
m_head = m_end; // wrap around
|
|
}
|
|
--m_head;
|
|
}
|
|
status = true; // event posted successfully
|
|
}
|
|
else {
|
|
Q_ASSERT(margin != u_0); // can tollerate dropping evts?
|
|
|
|
QS_BEGIN_NOCRIT_(QS_QF_EQUEUE_POST_ATTEMPT, QS::priv_.eqObjFilter,
|
|
this)
|
|
QS_TIME_(); // timestamp
|
|
QS_SIG_(e->sig); // the signal of this event
|
|
QS_OBJ_(this); // this queue object
|
|
QS_2U8_(e->poolId_, e->refCtr_); // pool Id & refCtr of the evt
|
|
QS_EQC_(nFree); // number of free entries
|
|
QS_EQC_(static_cast<QEQueueCtr>(margin)); // margin requested
|
|
QS_END_NOCRIT_()
|
|
|
|
status = false; // event not posted
|
|
}
|
|
QF_CRIT_EXIT_();
|
|
|
|
return status;
|
|
}
|
|
|
|
} // namespace QP
|
|
|
|
//****************************************************************************
|
|
// NOTE01:
|
|
// The zero value of the 'margin' argument is special and denotes situation
|
|
// when the post() operation is assumed to succeed (event delivery guarantee).
|
|
// An assertion fires, when the event cannot be delivered in this case.
|
|
//
|