This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtumodbusserver.h
88 lines (72 loc) · 2.19 KB
/
rtumodbusserver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//
// SmartServer
// Copyright (C) 2021 АО "Нефтеавтоматика"
//
// Разработчик
// Ананьев А.А. <Ananev-AA@nefteavtomatika.ru>
//
#ifndef RTUMODBUSSERVER_H
#define RTUMODBUSSERVER_H
#include <memory>
#include <QTimer>
#include <QDateTime>
#include <QSerialPort>
#include "smartcardinfo.h"
#include "rtumodbusdatabuffer.h"
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
#include <QModbusRtuSerialSlave>
typedef QModbusRtuSerialSlave QModbusRtuSerialServer;
#else
#include <QModbusRtuSerialServer>
#endif
///
/// \brief The RtuModbusServer class
///
class RtuModbusServer : public QModbusRtuSerialServer
{
Q_OBJECT
public:
///
/// \brief RtuModbusServer
///
RtuModbusServer();
///
/// \brief ~RtuModbusServer
///
virtual ~RtuModbusServer();
///
/// \brief Добавление информации о смарт-карте в регистры Modbus RTU
/// \param smi
///
void addSmartCardInfo(const SmartCardInfo& smi);
///
/// \brief Создание адресного пространства Modbus RTU сервера
/// \param type - тип регистров (3x, 4x)
/// \param start - начальный адрес (начиная с 0)
/// \param count - количество регистров
/// \param alignment - выравнивание (количество регистров, кторое занимает ID смарт-карты)
///
void createRegisters(QModbusDataUnit::RegisterType type, quint16 start, quint16 count, quint8 alignment = 1);
///
/// \brief Таймаут перезапуска сервера
/// \return
///
int restartTimeout() const;
///
/// \brief Устанавливает таймаут перезапуска сервера
/// \param value
///
void setRestartTimeout(int value);
signals:
void restarted();
private slots:
void on_timeout();
protected:
QModbusResponse processRequest(const QModbusPdu &request) override;
private:
int _restartTimeout;
QTimer _restartTimer;
qint64 _lastRequestTime;
std::unique_ptr<RtuModbusDataBuffer> _buffer;
};
#endif // RTUMODBUSSERVER_H