445 lines
16 KiB
C++
Raw Normal View History

2014-04-13 21:35:34 -04:00
//****************************************************************************
2015-06-06 18:30:55 -04:00
// Model: history.qm
2014-04-13 21:35:34 -04:00
// File: ./history.cpp
//
// This code has been generated by QM tool (see state-machine.com/qm).
// DO NOT EDIT THIS FILE MANUALLY. All your changes will be lost.
//
2016-12-01 10:31:49 -05:00
// This code is covered by the following commercial QP license:
// License # : QPCPP-EVAL-161130
// Issued to : Company/individual evaluating the QP/C++ framework
// Framework(s): qpcpp
// Support ends: 2017-01-31
// Product(s) :
// This license is available only for evaluation purposes and
// the generated code is still licensed under the terms of GPL.
// Please submit request for extension of the evaluaion period at:
// http://www.state-machine.com/licensing/index.html#RequestForm
2014-04-13 21:35:34 -04:00
//****************************************************************************
//${.::history.cpp} ..........................................................
#include "qep_port.h"
#include "qassert.h"
#include "history.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Q_DEFINE_THIS_FILE
2016-12-01 10:31:49 -05:00
#if ((QP_VERSION < 580) || (QP_VERSION != ((QP_RELEASE^4294967295) % 0x3E8)))
#error qpcpp version 5.8.0 or higher required
#endif
2014-04-13 21:35:34 -04:00
//${SMs::ToastOven} ..........................................................
class ToastOven : public QP::QMsm {
public:
ToastOven();
protected:
static QP::QState initial(ToastOven * const me, QP::QEvt const * const e);
static QP::QState doorClosed (ToastOven * const me, QP::QEvt const * const e);
static QP::QState doorClosed_e(ToastOven * const me);
static QP::QState doorClosed_x(ToastOven * const me);
static QP::QState doorClosed_i(ToastOven * const me);
static QP::QMState const doorClosed_s;
static QP::QState heating (ToastOven * const me, QP::QEvt const * const e);
static QP::QState heating_e(ToastOven * const me);
static QP::QState heating_x(ToastOven * const me);
2016-12-01 10:31:49 -05:00
static QP::QState heating_i(ToastOven * const me);
2014-04-13 21:35:34 -04:00
static QP::QMState const heating_s;
static QP::QState toasting (ToastOven * const me, QP::QEvt const * const e);
static QP::QState toasting_e(ToastOven * const me);
static QP::QMState const toasting_s;
static QP::QState baking (ToastOven * const me, QP::QEvt const * const e);
static QP::QState baking_e(ToastOven * const me);
static QP::QMState const baking_s;
static QP::QState off (ToastOven * const me, QP::QEvt const * const e);
static QP::QState off_e(ToastOven * const me);
static QP::QMState const off_s;
static QP::QState doorOpen (ToastOven * const me, QP::QEvt const * const e);
static QP::QState doorOpen_e(ToastOven * const me);
static QP::QState doorOpen_x(ToastOven * const me);
static QP::QMState const doorOpen_s;
static QP::QState final (ToastOven * const me, QP::QEvt const * const e);
static QP::QState final_e(ToastOven * const me);
static QP::QMState const final_s;
2016-12-01 10:31:49 -05:00
protected:
2014-04-13 21:35:34 -04:00
QP::QMState const *his_doorClosed;
};
static ToastOven l_oven; // the only instance of the ToastOven class
// global-scope definitions ------------------------------------
QP::QMsm * const the_oven = &l_oven; // the opaque pointer
//${SMs::ToastOven} ..........................................................
//${SMs::ToastOven::ToastOven} ...............................................
ToastOven::ToastOven()
: QMsm(Q_STATE_CAST(&ToastOven::initial))
{}
//${SMs::ToastOven::SM} ......................................................
QP::QState ToastOven::initial(ToastOven * const me, QP::QEvt const * const e) {
static struct {
QP::QMState const *target;
2015-06-06 18:30:55 -04:00
QP::QActionHandler act[3];
2014-04-13 21:35:34 -04:00
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&doorClosed_s, // target state
2014-04-13 21:35:34 -04:00
{
2015-06-06 18:30:55 -04:00
Q_ACTION_CAST(&doorClosed_e), // entry
Q_ACTION_CAST(&doorClosed_i), // initial tran.
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
// ${SMs::ToastOven::SM::initial}
(void)e; /* avoid compiler warning */
2015-05-22 20:38:16 -04:00
// state history attributes
2014-04-13 21:35:34 -04:00
me->his_doorClosed = &off_s;
return QM_TRAN_INIT(&tatbl_);
}
//${SMs::ToastOven::SM::doorClosed} ..........................................
QP::QMState const ToastOven::doorClosed_s = {
static_cast<QP::QMState const *>(0), // superstate (top)
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::doorClosed),
Q_ACTION_CAST(&ToastOven::doorClosed_e),
Q_ACTION_CAST(&ToastOven::doorClosed_x),
Q_ACTION_CAST(&ToastOven::doorClosed_i)
2014-04-13 21:35:34 -04:00
};
// ${SMs::ToastOven::SM::doorClosed}
QP::QState ToastOven::doorClosed_e(ToastOven * const me) {
printf("door-Closed;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&doorClosed_s);
}
// ${SMs::ToastOven::SM::doorClosed}
QP::QState ToastOven::doorClosed_x(ToastOven * const me) {
2016-12-01 10:31:49 -05:00
// save deep history
me->his_doorClosed = me->stateObj();
2014-04-13 21:35:34 -04:00
return QM_EXIT(&doorClosed_s);
}
// ${SMs::ToastOven::SM::doorClosed::initial}
QP::QState ToastOven::doorClosed_i(ToastOven * const me) {
static struct {
QP::QMState const *target;
QP::QActionHandler act[2];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&off_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&off_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
// ${SMs::ToastOven::SM::doorClosed::initial}
return QM_TRAN_INIT(&tatbl_);
}
// ${SMs::ToastOven::SM::doorClosed}
QP::QState ToastOven::doorClosed(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
// ${SMs::ToastOven::SM::doorClosed::TERMINATE}
case TERMINATE_SIG: {
static struct {
QP::QMState const *target;
QP::QActionHandler act[3];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&final_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&doorClosed_x), // exit
Q_ACTION_CAST(&final_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
status_ = QM_TRAN(&tatbl_);
break;
}
// ${SMs::ToastOven::SM::doorClosed::OPEN}
case OPEN_SIG: {
static struct {
QP::QMState const *target;
QP::QActionHandler act[3];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&doorOpen_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&doorClosed_x), // exit
Q_ACTION_CAST(&doorOpen_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
status_ = QM_TRAN(&tatbl_);
break;
}
// ${SMs::ToastOven::SM::doorClosed::TOAST}
case TOAST_SIG: {
static struct {
QP::QMState const *target;
QP::QActionHandler act[3];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&toasting_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&heating_e), // entry
Q_ACTION_CAST(&toasting_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
status_ = QM_TRAN(&tatbl_);
break;
}
// ${SMs::ToastOven::SM::doorClosed::BAKE}
case BAKE_SIG: {
static struct {
QP::QMState const *target;
QP::QActionHandler act[3];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&baking_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&heating_e), // entry
Q_ACTION_CAST(&baking_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
status_ = QM_TRAN(&tatbl_);
break;
}
// ${SMs::ToastOven::SM::doorClosed::OFF}
case OFF_SIG: {
static struct {
QP::QMState const *target;
QP::QActionHandler act[2];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&off_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&off_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
status_ = QM_TRAN(&tatbl_);
break;
}
default: {
status_ = QM_SUPER();
break;
}
}
return status_;
}
//${SMs::ToastOven::SM::doorClosed::heating} .................................
QP::QMState const ToastOven::heating_s = {
&ToastOven::doorClosed_s, // superstate
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::heating),
Q_ACTION_CAST(&ToastOven::heating_e),
Q_ACTION_CAST(&ToastOven::heating_x),
Q_ACTION_CAST(&ToastOven::heating_i)
2014-04-13 21:35:34 -04:00
};
// ${SMs::ToastOven::SM::doorClosed::heating}
QP::QState ToastOven::heating_e(ToastOven * const me) {
printf("heater-On;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&heating_s);
}
// ${SMs::ToastOven::SM::doorClosed::heating}
QP::QState ToastOven::heating_x(ToastOven * const me) {
printf("heater-Off;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_EXIT(&heating_s);
}
2016-12-01 10:31:49 -05:00
// ${SMs::ToastOven::SM::doorClosed::heating::initial}
QP::QState ToastOven::heating_i(ToastOven * const me) {
static struct {
QP::QMState const *target;
QP::QActionHandler act[2];
} const tatbl_ = { // transition-action table
&toasting_s, // target state
{
Q_ACTION_CAST(&toasting_e), // entry
Q_ACTION_CAST(0) // zero terminator
}
};
// ${SMs::ToastOven::SM::doorClosed::heating::initial}
return QM_TRAN_INIT(&tatbl_);
}
2014-04-13 21:35:34 -04:00
// ${SMs::ToastOven::SM::doorClosed::heating}
QP::QState ToastOven::heating(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
default: {
status_ = QM_SUPER();
break;
}
}
2015-05-22 20:38:16 -04:00
(void)me; // avoid compiler warning in case 'me' is not used
2014-04-13 21:35:34 -04:00
return status_;
}
//${SMs::ToastOven::SM::doorClosed::heating::toasting} .......................
QP::QMState const ToastOven::toasting_s = {
&ToastOven::heating_s, // superstate
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::toasting),
Q_ACTION_CAST(&ToastOven::toasting_e),
2014-04-13 21:35:34 -04:00
Q_ACTION_CAST(0), // no exit action
Q_ACTION_CAST(0) // no intitial tran.
};
// ${SMs::ToastOven::SM::doorClosed::heating::toasting}
QP::QState ToastOven::toasting_e(ToastOven * const me) {
printf("toasting;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&toasting_s);
}
// ${SMs::ToastOven::SM::doorClosed::heating::toasting}
QP::QState ToastOven::toasting(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
default: {
status_ = QM_SUPER();
break;
}
}
2015-05-22 20:38:16 -04:00
(void)me; // avoid compiler warning in case 'me' is not used
2014-04-13 21:35:34 -04:00
return status_;
}
//${SMs::ToastOven::SM::doorClosed::heating::baking} .........................
QP::QMState const ToastOven::baking_s = {
&ToastOven::heating_s, // superstate
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::baking),
Q_ACTION_CAST(&ToastOven::baking_e),
2014-04-13 21:35:34 -04:00
Q_ACTION_CAST(0), // no exit action
Q_ACTION_CAST(0) // no intitial tran.
};
// ${SMs::ToastOven::SM::doorClosed::heating::baking}
QP::QState ToastOven::baking_e(ToastOven * const me) {
printf("baking;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&baking_s);
}
// ${SMs::ToastOven::SM::doorClosed::heating::baking}
QP::QState ToastOven::baking(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
default: {
status_ = QM_SUPER();
break;
}
}
2015-05-22 20:38:16 -04:00
(void)me; // avoid compiler warning in case 'me' is not used
2014-04-13 21:35:34 -04:00
return status_;
}
//${SMs::ToastOven::SM::doorClosed::off} .....................................
QP::QMState const ToastOven::off_s = {
&ToastOven::doorClosed_s, // superstate
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::off),
Q_ACTION_CAST(&ToastOven::off_e),
2014-04-13 21:35:34 -04:00
Q_ACTION_CAST(0), // no exit action
Q_ACTION_CAST(0) // no intitial tran.
};
// ${SMs::ToastOven::SM::doorClosed::off}
QP::QState ToastOven::off_e(ToastOven * const me) {
printf("toaster-Off;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&off_s);
}
// ${SMs::ToastOven::SM::doorClosed::off}
QP::QState ToastOven::off(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
default: {
status_ = QM_SUPER();
break;
}
}
2015-05-22 20:38:16 -04:00
(void)me; // avoid compiler warning in case 'me' is not used
2014-04-13 21:35:34 -04:00
return status_;
}
//${SMs::ToastOven::SM::doorOpen} ............................................
QP::QMState const ToastOven::doorOpen_s = {
static_cast<QP::QMState const *>(0), // superstate (top)
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::doorOpen),
Q_ACTION_CAST(&ToastOven::doorOpen_e),
Q_ACTION_CAST(&ToastOven::doorOpen_x),
2014-04-13 21:35:34 -04:00
Q_ACTION_CAST(0) // no intitial tran.
};
// ${SMs::ToastOven::SM::doorOpen}
QP::QState ToastOven::doorOpen_e(ToastOven * const me) {
printf("door-Open,lamp-On;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&doorOpen_s);
}
// ${SMs::ToastOven::SM::doorOpen}
QP::QState ToastOven::doorOpen_x(ToastOven * const me) {
printf("lamp-Off;");
(void)me; // avoid compiler warning in case 'me' is not used
return QM_EXIT(&doorOpen_s);
}
// ${SMs::ToastOven::SM::doorOpen}
QP::QState ToastOven::doorOpen(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
// ${SMs::ToastOven::SM::doorOpen::CLOSE}
case CLOSE_SIG: {
static struct {
QP::QMState const *target;
2016-12-01 10:31:49 -05:00
QP::QActionHandler act[3];
2014-04-13 21:35:34 -04:00
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&doorClosed_s, // target state
2014-04-13 21:35:34 -04:00
{
Q_ACTION_CAST(&doorOpen_x), // exit
Q_ACTION_CAST(&doorClosed_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2014-04-13 21:35:34 -04:00
}
};
status_ = QM_TRAN_HIST(me->his_doorClosed, &tatbl_);
break;
2015-06-06 18:30:55 -04:00
}
// ${SMs::ToastOven::SM::doorOpen::TERMINATE}
case TERMINATE_SIG: {
static struct {
QP::QMState const *target;
QP::QActionHandler act[3];
} const tatbl_ = { // transition-action table
2016-12-01 10:31:49 -05:00
&final_s, // target state
2015-06-06 18:30:55 -04:00
{
Q_ACTION_CAST(&doorOpen_x), // exit
Q_ACTION_CAST(&final_e), // entry
2016-12-01 10:31:49 -05:00
Q_ACTION_CAST(0) // zero terminator
2015-06-06 18:30:55 -04:00
}
};
status_ = QM_TRAN(&tatbl_);
break;
2014-04-13 21:35:34 -04:00
}
default: {
status_ = QM_SUPER();
break;
}
}
return status_;
}
//${SMs::ToastOven::SM::final} ...............................................
QP::QMState const ToastOven::final_s = {
static_cast<QP::QMState const *>(0), // superstate (top)
2016-12-01 10:31:49 -05:00
Q_STATE_CAST(&ToastOven::final),
Q_ACTION_CAST(&ToastOven::final_e),
2014-04-13 21:35:34 -04:00
Q_ACTION_CAST(0), // no exit action
Q_ACTION_CAST(0) // no intitial tran.
};
// ${SMs::ToastOven::SM::final}
QP::QState ToastOven::final_e(ToastOven * const me) {
printf("-> final\nBye!Bye!\n");
_exit(0);
(void)me; // avoid compiler warning in case 'me' is not used
return QM_ENTRY(&final_s);
}
// ${SMs::ToastOven::SM::final}
QP::QState ToastOven::final(ToastOven * const me, QP::QEvt const * const e) {
QP::QState status_;
switch (e->sig) {
default: {
status_ = QM_SUPER();
break;
}
}
2015-05-22 20:38:16 -04:00
(void)me; // avoid compiler warning in case 'me' is not used
2014-04-13 21:35:34 -04:00
return status_;
}