DCPlugin/src/ATBAPP/ATBDeviceControllerPlugin.h

144 lines
3.2 KiB
C
Raw Normal View History

#ifndef ATBDEVICECONTROLLERPLUGIN_H
#define ATBDEVICECONTROLLERPLUGIN_H
#include <QObject>
#include "src/ATBAPP/DeviceControllerInterface.h"
#include "src/ATBAPP/ATBAPPplugin.h"
#include "src/ATBAPP/DeviceControllerDiag.h"
#include "version.h"
2023-06-05 12:49:20 +02:00
#include "interfaces.h"
#include <unistd.h>
2023-05-04 13:21:14 +02:00
class QTextCodec;
using namespace nsDeviceControllerInterface;
class QSettings;
class ATBDeviceControllerPlugin :
public DeviceControllerInterface
{
Q_OBJECT
Q_INTERFACES(ATBAPPplugin)
Q_INTERFACES(DeviceControllerInterface)
#if QT_VERSION >= 0x050000
Q_PLUGIN_METADATA( IID "ATBDeviceControllerPlugin" )
#endif
public:
explicit ATBDeviceControllerPlugin(QObject *parent = nullptr);
~ATBDeviceControllerPlugin();
// ----------------------------------------------------------------------------
// interface:
2023-06-22 08:50:10 +02:00
PLUGIN_STATE initDCPlugin(QObject *eventReceiver, const QSettings & settings);
// TASKS: Cash handling -------------------------------------------------------
void requestStartCashInput(const QString & amount);
void requestStopCashInput();
void cashCollect();
void cashAbort();
// TASKS: printing ------------------------------------------------------------
void requestPrintTicket(const QHash<QString, QVariant> & printingData);
2023-06-01 16:30:50 +02:00
// TASKS: Account -------------------------------------------------------------
void requestAccount();
// mandantory ATBAPP plugin methods: ------------------------------------------
nsDeviceControllerInterface::PLUGIN_STATE getState();
QString & getLastError();
const QString & getLastErrorDescription();
const QString & getPluginInfo();
// helpers e.g. for debug / log
2023-06-12 08:31:17 +02:00
const QString getString(nsDeviceControllerInterface::RESULT_STATE resultState);;
public slots:
2023-06-13 17:00:17 +02:00
void onChangedProgramModeToSELL();
void onChangedProgramModeToSERVICE();
void onChangedProgramModeToIDLE();
void onChangedProgramModeToOOO();
signals:
private:
QString errorCode;
QString errorDescription;
QString pluginInfo;
2023-05-04 13:21:14 +02:00
int currentTemplate;
bool useDebug;
PLUGIN_STATE pluginState;
2023-06-21 10:55:12 +02:00
QObject* eventReceiver;
hwinf* hw;
DeviceControllerDiag* diag;
2023-05-04 13:21:14 +02:00
QTextCodec *codec;
2023-05-02 17:10:17 +02:00
2023-06-05 12:49:20 +02:00
bool private_loadCashAgentLib(QString pluginName);
quint8 currentSelectedTicketType;
nsDeviceControllerInterface::CASH_STATE currentCashState;
// counts failed hw->log_chkIfVaultRecordAvailable()
int accountCheckCounter;
2023-05-02 17:10:17 +02:00
private slots:
2023-05-04 13:21:14 +02:00
// printer
2023-05-03 11:56:36 +02:00
void onPrinterDataPrepared();
2023-05-04 13:21:14 +02:00
void onPrinterPrintNextTemplate();
void onPrinterWaitForPrinting();
2023-05-04 13:21:14 +02:00
2023-05-02 17:10:17 +02:00
void onPrintFinishedOK();
void onPrintFinishedERR();
2023-05-04 13:21:14 +02:00
// cash payment
2023-05-04 14:28:38 +02:00
void onCashGotCoin();
2023-06-15 18:49:13 +02:00
void onCashPayStopedSuccess();
2023-05-22 11:20:28 +02:00
void onCashPayStopByMax();
void onCashPayStopByEscrow();
void onCashPayStopByError();
void onCashPayStopByTimeout();
2023-06-13 17:00:17 +02:00
// doors and hardware contacts
void onServiceDoorOpened();
void onVaultDoorOpened();
void onCoinBoxRemoved();
void onCoinBoxInserted();
void onAllDoorsClosed();
void onCBinAndAllDoorsClosed();
// account handling
void private_startAccount();
void private_checkAccountData();
void private_getAccountData();
};
#endif // ATBDEVICECONTROLLERPLUGIN_H