2023-05-26 13:03:38 +02:00
|
|
|
#ifndef UPDATE_H_INCLUDED
|
|
|
|
#define UPDATE_H_INCLUDED
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QFile>
|
2023-06-16 16:51:30 +02:00
|
|
|
#include <QDir>
|
|
|
|
#include <QByteArray>
|
2023-06-27 17:25:23 +02:00
|
|
|
#include <QProcess>
|
2023-05-26 13:03:38 +02:00
|
|
|
|
2023-06-16 16:51:30 +02:00
|
|
|
#include "plugins/interfaces.h"
|
2023-07-14 13:33:46 +02:00
|
|
|
#include "apism/apism_client.h"
|
2023-05-26 13:03:38 +02:00
|
|
|
|
|
|
|
#ifdef PTU5
|
|
|
|
#define SERIAL_PORT "ttymxc2"
|
|
|
|
#else
|
|
|
|
#define SERIAL_PORT "ttyUSB0"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Update;
|
|
|
|
|
|
|
|
// TODO: check hardware compatibility
|
|
|
|
// TODO: opkg commandos
|
|
|
|
|
|
|
|
class Update : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2023-06-16 16:51:30 +02:00
|
|
|
hwinf *m_hw;
|
2023-05-26 13:03:38 +02:00
|
|
|
char const *m_serialInterface;
|
|
|
|
char const *m_baudrate;
|
2023-07-17 16:45:11 +02:00
|
|
|
QString m_customerRepository;
|
|
|
|
QString m_customerNrStr;
|
2023-07-14 13:33:46 +02:00
|
|
|
QString m_branchName;
|
2023-05-26 13:03:38 +02:00
|
|
|
QString m_workingDir;
|
2023-06-20 16:13:11 +02:00
|
|
|
bool m_maintenanceMode;
|
2023-07-14 13:33:46 +02:00
|
|
|
bool m_dryRun;
|
2023-06-16 16:51:30 +02:00
|
|
|
|
2023-05-26 13:03:38 +02:00
|
|
|
public:
|
2023-06-16 16:51:30 +02:00
|
|
|
enum class DownloadResult {OK, ERROR, TIMEOUT, NOP};
|
2023-06-22 15:20:21 +02:00
|
|
|
enum class FileTypeJson {CONFIG=1, DEVICE=2, CASH=3, SERIAL=4, TIME=5, PRINTER=6};
|
2023-06-16 16:51:30 +02:00
|
|
|
|
|
|
|
static hwinf *loadDCPlugin(QDir const &plugInDir, QString const &fn);
|
2023-07-10 16:00:34 +02:00
|
|
|
static QStringList split(QString line, QChar sep = ',');
|
2023-06-16 16:51:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
explicit Update(hwinf *hw,
|
2023-07-17 16:45:11 +02:00
|
|
|
QString customerRepository,
|
|
|
|
QString customerNrStr,
|
2023-07-14 13:33:46 +02:00
|
|
|
QString branchName,
|
2023-07-17 16:45:11 +02:00
|
|
|
QString workingDir,
|
2023-07-14 13:33:46 +02:00
|
|
|
bool dryRun = false,
|
2023-05-26 13:03:38 +02:00
|
|
|
QObject *parent = nullptr,
|
|
|
|
char const *serialInterface = SERIAL_PORT,
|
|
|
|
char const *baudrate = "115200");
|
|
|
|
virtual ~Update() override;
|
2023-07-17 16:45:11 +02:00
|
|
|
bool doUpdate(QStringList const &linesToWorkOn);
|
2023-05-26 13:03:38 +02:00
|
|
|
|
2023-07-17 16:45:11 +02:00
|
|
|
//QString customerId() { return m_customerId; }
|
|
|
|
//QString const customerId() const { return m_customerId; }
|
2023-07-14 13:33:46 +02:00
|
|
|
|
|
|
|
QString branchName() { return m_branchName; }
|
|
|
|
QString const branchName() const { return m_branchName; }
|
|
|
|
|
2023-07-17 16:45:11 +02:00
|
|
|
//QString repositoryPath() { return m_repositoryPath; }
|
|
|
|
//QString const repositoryPath() const { return m_repositoryPath; }
|
2023-07-14 13:33:46 +02:00
|
|
|
|
2023-06-16 16:51:30 +02:00
|
|
|
private:
|
2023-06-22 15:20:21 +02:00
|
|
|
static QString jsonType(enum FileTypeJson type);
|
|
|
|
|
2023-06-16 16:51:30 +02:00
|
|
|
DownloadResult sendStatus(int ret) const;
|
|
|
|
DownloadResult sendNextAddress(int bNum) const;
|
|
|
|
DownloadResult sendNextDataBlock(QByteArray const &b, int bNum) const;
|
|
|
|
DownloadResult dc_downloadBinary(QByteArray const &binary) const;
|
|
|
|
|
|
|
|
bool startBootloader() const;
|
|
|
|
bool stopBootloader() const;
|
|
|
|
bool openSerial(int br, QString baudrate, QString comPort) const;
|
|
|
|
void closeSerial() const;
|
2023-07-06 14:13:33 +02:00
|
|
|
bool isSerialOpen() const;
|
2023-06-16 16:51:30 +02:00
|
|
|
bool resetDeviceController() const;
|
|
|
|
QByteArray loadBinaryDCFile(QString filename) const;
|
|
|
|
bool downloadBinaryToDC(QString const &bFile) const;
|
2023-06-21 16:19:45 +02:00
|
|
|
bool updateDC(QString bFile) const;
|
2023-06-22 15:20:21 +02:00
|
|
|
bool updatePrinterTemplate(int templateIdx, QString fname) const;
|
|
|
|
bool updateBinary(char const *fileToSendToDC);
|
|
|
|
bool updateConfig(QString jsFileToSendToDC);
|
|
|
|
bool updateCashConf(QString jsFileToSendToDC);
|
|
|
|
bool updateDeviceConf(QString jsFileToSendToDC);
|
|
|
|
bool downloadJson(enum FileTypeJson type, int templateIdx,
|
|
|
|
QString jsFileToSendToDC) const;
|
2023-06-27 17:25:23 +02:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void readyReadStandardOutput();
|
|
|
|
void readyReadStandardError();
|
|
|
|
void finished(int exitCode, QProcess::ExitStatus exitStatus);
|
|
|
|
|
2023-05-26 13:03:38 +02:00
|
|
|
};
|
|
|
|
#endif // UPDATE_H_INCLUDED
|