qpcpp/ports/qt/guiapp.cpp
2020-07-18 17:58:58 -04:00

262 lines
9.9 KiB
C++

/// @file
/// @brief QP/C++ port to Qt
/// @cond
///***************************************************************************
/// Last updated for version 6.8.2 / Qt 5.x
/// Last updated on 2020-07-17
///
/// Q u a n t u m L e a P s
/// ------------------------
/// Modern Embedded Software
///
/// Copyright (C) 2005-2020 Quantum Leaps. 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 <www.gnu.org/licenses>.
///
/// Contact information:
/// <www.state-machine.com/licensing>
/// <info@state-machine.com>
///***************************************************************************
/// @endcond
#define QP_IMPL // this is QP implementation
#include "qf_port.hpp" // QF port
#include "qf_pkg.hpp"
#include "qassert.h"
#ifdef Q_SPY // QS software tracing enabled?
#include "qs_port.hpp" // include QS port
#else
#include "qs_dummy.hpp" // disable the QS software tracing
#endif // Q_SPY
Q_DEFINE_THIS_MODULE("guiapp")
//****************************************************************************
namespace QP {
static QEvent::Type l_qp_event_type = QEvent::MaxUser;
//----------------------------------------------------------------------------
class QP_Event : public QEvent {
public:
QP_Event(QP::QEvt const *e)
: QEvent(l_qp_event_type),
m_qpevt(e)
{}
QP::QEvt const *m_qpevt; // QP event pointer
};
//----------------------------------------------------------------------------
GuiApp::GuiApp(int &argc, char **argv)
: QApplication(argc, argv),
m_act(0)
{
l_qp_event_type = static_cast<QEvent::Type>(QEvent::registerEventType());
}
//............................................................................
void GuiApp::registerAct(void *act) {
Q_REQUIRE(m_act == 0); // the GUI active object must not be registered
m_act = act;
}
//............................................................................
bool GuiApp::event(QEvent *e) {
if (e->type() == l_qp_event_type) {
QP::QEvt const *qpevt = (static_cast<QP_Event *>(e))->m_qpevt;
static_cast<QP::QActive *>(m_act)->dispatch(qpevt); // dispatch to AO
QP::QF::gc(qpevt); // garbage collect the QP evt
return true; // event recognized and handled
}
else {
return QApplication::event(e); // delegate to the superclass
}
}
//............................................................................
void GuiQActive::start(std::uint_fast8_t const prio,
QEvt const * * const qSto, std::uint_fast16_t const qLen,
void * const stkSto, std::uint_fast16_t const stkSize,
void const * const par)
{
Q_REQUIRE((0U < prio)
&& (prio <= QF_MAX_ACTIVE)
&& (qSto == nullptr) /* does not need per-actor queue */
&& (stkSto == nullptr)); // AOs don't need stack
(void)stkSize;
(void)qLen;
setPrio(prio); // set the QF priority of this AO
QF::add_(this); // make QF aware of this AO
static_cast<GuiApp *>(QApplication::instance())->registerAct(this);
this->init(par); // execute initial transition (virtual call)
QS_FLUSH(); // flush the trace buffer to the host
}
//............................................................................
#ifndef Q_SPY
bool GuiQActive::post_(QEvt const * const e,
std::uint_fast16_t const /*margin*/) noexcept
#else
bool GuiQActive::post_(QEvt const * const e,
std::uint_fast16_t const /*margin*/,
void const * const sender)
#endif
{
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
// is it a dynamic event?
if (QF_EVT_POOL_ID_(e) != 0U) {
QF_EVT_REF_CTR_INC_(e); // increment the reference counter
}
QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST,
QS::priv_.locFilter[QS::AO_OBJ], this)
QS_TIME_PRE_(); // timestamp
QS_OBJ_PRE_(sender); // the sender object
QS_SIG_PRE_(e->sig); // the signal of the event
QS_OBJ_PRE_(this); // this active object
QS_2U8_PRE_(QF_EVT_POOL_ID_(e), /* the poolID of the event */
QF_EVT_REF_CTR_(e)); // the ref Ctr of the event
QS_EQC_PRE_(0U); // number of free entries (not used)
QS_EQC_PRE_(0U); // min number of free entries (not used)
QS_END_NOCRIT_PRE_()
QF_CRIT_EXIT_();
// QCoreApplication::postEvent() is thread-safe per Qt documentation
QCoreApplication::postEvent(QApplication::instance(), new QP_Event(e));
return true;
}
//............................................................................
void GuiQActive::postLIFO(QEvt const * const e) noexcept {
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
// is it a dynamic event?
if (QF_EVT_POOL_ID_(e) != 0U) {
QF_EVT_REF_CTR_INC_(e); // increment the reference counter
}
QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST_LIFO,
QS::priv_.locFilter[QS::AO_OBJ], this)
QS_TIME_PRE_(); // timestamp
QS_SIG_PRE_(e->sig); // the signal of this event
QS_OBJ_PRE_(this); // this active object
QS_2U8_PRE_(QF_EVT_POOL_ID_(e), /* the poolID of the event */
QF_EVT_REF_CTR_(e)); // the ref Ctr of the event
QS_EQC_PRE_(0U); // number of free entries (not used)
QS_EQC_PRE_(0U); // min number of free entries (not used)
QS_END_NOCRIT_PRE_()
QF_CRIT_EXIT_();
// QCoreApplication::postEvent() is thread-safe per Qt documentation
QCoreApplication::postEvent(QApplication::instance(), new QP_Event(e),
Qt::HighEventPriority);
}
//****************************************************************************
void GuiQMActive::start(std::uint_fast8_t const prio,
QEvt const * * const qSto, std::uint_fast16_t const qLen,
void * const stkSto, std::uint_fast16_t const stkSize,
void const * const par)
{
Q_REQUIRE((0U < prio) && (prio <= QF_MAX_ACTIVE)
&& (qSto == nullptr) /* does not need per-actor queue */
&& (stkSto == nullptr)); // AOs don't need stack
(void)stkSize;
(void)qLen;
setPrio(prio); // set the QF priority of this active object
QF::add_(this); // make QF aware of this active object
static_cast<GuiApp *>(QApplication::instance())->registerAct(this);
this->init(par); // execute initial transition (virtual call)
QS_FLUSH(); // flush the trace buffer to the host
}
//............................................................................
#ifndef Q_SPY
bool GuiQMActive::post_(QEvt const * const e,
std::uint_fast16_t const /*margin*/) noexcept
#else
bool GuiQMActive::post_(QEvt const * const e,
std::uint_fast16_t const /*margin*/,
void const * const sender)
#endif
{
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
// is it a dynamic event?
if (QF_EVT_POOL_ID_(e) != 0U) {
QF_EVT_REF_CTR_INC_(e); // increment the reference counter
}
QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST,
QS::priv_.locFilter[QS::AO_OBJ], this)
QS_TIME_PRE_(); // timestamp
QS_OBJ_PRE_(sender); // the sender object
QS_SIG_PRE_(e->sig); // the signal of the event
QS_OBJ_PRE_(this); // this active object
QS_2U8_PRE_(QF_EVT_POOL_ID_(e), /* the poolID of the event */
QF_EVT_REF_CTR_(e)); // the ref Ctr of the event
QS_EQC_PRE_(0U); // number of free entries (not used)
QS_EQC_PRE_(0U); // min number of free entries (not used)
QS_END_NOCRIT_PRE_()
QF_CRIT_EXIT_();
// QCoreApplication::postEvent() is thread-safe per Qt documentation
QCoreApplication::postEvent(QApplication::instance(), new QP_Event(e));
return true;
}
//............................................................................
void GuiQMActive::postLIFO(QEvt const * const e) noexcept {
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
// is it a dynamic event?
if (QF_EVT_POOL_ID_(e) != 0U) {
QF_EVT_REF_CTR_INC_(e); // increment the reference counter
}
QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST_LIFO,
QS::priv_.locFilter[QS::AO_OBJ], this)
QS_TIME_PRE_(); // timestamp
QS_SIG_PRE_(e->sig); // the signal of this event
QS_OBJ_PRE_(this); // this active object
QS_2U8_PRE_(QF_EVT_POOL_ID_(e), /* the poolID of the event */
QF_EVT_REF_CTR_(e)); // the ref Ctr of the event
QS_EQC_PRE_(0U); // number of free entries (not used)
QS_EQC_PRE_(0U); // min number of free entries (not used)
QS_END_NOCRIT_PRE_()
QF_CRIT_EXIT_();
// QCoreApplication::postEvent() is thread-safe per Qt documentation
QCoreApplication::postEvent(QApplication::instance(), new QP_Event(e),
Qt::HighEventPriority);
}
} // namespace QP