MMS 34cdcc7929 7.0.0rc1
major release 7.0.0 release candidate 1
2022-04-19 19:23:30 -04:00

178 lines
5.8 KiB
C++

//============================================================================
// Product: DPP example
// Last Updated for Version: 6.8.0
// Date of the Last Update: 2020-01-24
//
// Q u a n t u m L e a P s
// ------------------------
// Modern Embedded Software
//
// Copyright (C) 2005-2019 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 <www.gnu.org/licenses/>.
//
// Contact information:
// <www.state-machine.com/licensing>
// <info@state-machine.com>
//============================================================================
#include "qpcpp.hpp"
#include "dpp.hpp"
#include "bsp.hpp"
Q_DEFINE_THIS_FILE
// Active object class -------------------------------------------------------
class Philo : public QActive {
private:
QTimeEvt m_timeEvt; // to timeout thinking or eating
public:
Philo();
private:
Q_STATE_DECL(initial);
Q_STATE_DECL(thinking);
Q_STATE_DECL(hungry);
Q_STATE_DECL(eating);
};
// Local objects -------------------------------------------------------------
static Philo l_philo[N_PHILO]; // storage for all Philos
#define THINK_TIME (BSP_TICKS_PER_SEC/2)
#define EAT_TIME (BSP_TICKS_PER_SEC/5)
// helper macro to provide the ID of Philo "me_"
#define PHILO_ID(me_) ((uint8_t)((me_) - l_philo))
enum InternalSignals { // internal signals
TIMEOUT_SIG = MAX_SIG
};
// Global objects ------------------------------------------------------------
QActive * const AO_Philo[N_PHILO] = { // "opaque" pointers to Philo AOs
&l_philo[0],
&l_philo[1],
&l_philo[2],
&l_philo[3],
&l_philo[4]
};
//............................................................................
Philo::Philo()
: QActive((QStateHandler)&Philo::initial),
m_timeEvt(this, TIMEOUT_SIG)
{}
//............................................................................
Q_STATE_DEF(Philo, initial) {
static bool registered; // starts off with 0, per C-standard
if (!registered) {
QS_OBJ_DICTIONARY(&l_philo[0]);
QS_OBJ_DICTIONARY(&l_philo[0].m_timeEvt);
QS_OBJ_DICTIONARY(&l_philo[1]);
QS_OBJ_DICTIONARY(&l_philo[1].m_timeEvt);
QS_OBJ_DICTIONARY(&l_philo[2]);
QS_OBJ_DICTIONARY(&l_philo[2].m_timeEvt);
QS_OBJ_DICTIONARY(&l_philo[3]);
QS_OBJ_DICTIONARY(&l_philo[3].m_timeEvt);
QS_OBJ_DICTIONARY(&l_philo[4]);
QS_OBJ_DICTIONARY(&l_philo[4].m_timeEvt);
QS_FUN_DICTIONARY(&initial);
QS_FUN_DICTIONARY(&thinking);
QS_FUN_DICTIONARY(&hungry);
QS_FUN_DICTIONARY(&eating);
registered = true;
}
QS_SIG_DICTIONARY(HUNGRY_SIG, this); // signal for each Philos
QS_SIG_DICTIONARY(TIMEOUT_SIG, this); // signal for each Philos
subscribe(EAT_SIG);
return tran(&thinking);
}
//............................................................................
Q_STATE_DEF(Philo, thinking) {
switch (e->sig) {
case Q_ENTRY_SIG: {
m_timeEvt.armX(THINK_TIME);
return Q_RET_HANDLED;
}
case TIMEOUT_SIG: {
return tran(&hungry);
}
case EAT_SIG: // intentionally fall-through
case DONE_SIG: {
// EAT or DONE must be for other Philos than this one
Q_ASSERT(((TableEvt const *)e)->philoNum != PHILO_ID(this));
return Q_RET_HANDLED;
}
}
return super(&top);
}
//............................................................................
Q_STATE_DEF(Philo, hungry) {
switch (e->sig) {
case Q_ENTRY_SIG: {
TableEvt *pe = Q_NEW(TableEvt, HUNGRY_SIG);
pe->philoNum = PHILO_ID(this);
AO_Table->POST(pe, this);
return Q_RET_HANDLED;
}
case EAT_SIG: {
if (((TableEvt *)e)->philoNum == PHILO_ID(this)) {
return tran(&eating);
}
break;
}
case DONE_SIG: {
// DONE must be for other Philos than this one
Q_ASSERT(((TableEvt const *)e)->philoNum != PHILO_ID(this));
return Q_RET_HANDLED;
}
}
return super(&top);
}
//............................................................................
Q_STATE_DEF(Philo, eating) {
switch (e->sig) {
case Q_ENTRY_SIG: {
m_timeEvt.armX(EAT_TIME);
return Q_RET_HANDLED;
}
case Q_EXIT_SIG: {
TableEvt *pe = Q_NEW(TableEvt, DONE_SIG);
pe->philoNum = PHILO_ID(this);
QF::PUBLISH(pe, this);
return Q_RET_HANDLED;
}
case TIMEOUT_SIG: {
return tran(&thinking);
}
case EAT_SIG: // intentionally fall-through
case DONE_SIG: {
// EAT or DONE must be for other Philos than this one
Q_ASSERT(((TableEvt const *)e)->philoNum != PHILO_ID(this));
return Q_RET_HANDLED;
}
}
return super(&top);
}