-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmbrtuclient.cpp
903 lines (797 loc) · 24.4 KB
/
mbrtuclient.cpp
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
/*********************************************************************
* Copyright EoF Software Labs. All Rights Reserved.
* Copyright EoF Software Labs Authors.
* Written by B. Eschrich ([email protected])
* SPDX-License-Identifier: GPL v3
**********************************************************************/
#include <QCoreApplication>
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QMutexLocker>
#include <QSerialPortInfo>
#include <QTimer>
#include <mbrtuclient.h>
MBRtuClient::MBRtuClient(QObject* parent)
: QObject {parent}
, m_config()
, m_modbus(this)
, m_isOpen(false)
, m_worker(nullptr)
{
qRegisterMetaType<QSerialPort::SerialPortError>();
qRegisterMetaType<QModbusDevice::Error>();
qRegisterMetaType<QModbusDevice::State>();
/* default configuration (Firefly AIO-RK3568J IPC board) */
m_config.m_portName = "ttysWK0"; // RS485_1 / ttysWK1 = RS485_2
m_config.m_baudRate = QSerialPort::Baud9600;
m_config.m_dataBits = QSerialPort::Data8;
m_config.m_stopBits = QSerialPort::OneStop;
m_config.m_parity = QSerialPort::NoParity;
m_config.m_traceFlags =
(TRACE_CONTROL | //
TRACE_REQUEST | //
TRACE_RESPONSE | //
TRACE_DATAUNIT);
connect(&m_modbus, &QModbusRtuSerialMaster::errorOccurred, this, &MBRtuClient::onModbusError);
connect(&m_modbus, &QModbusRtuSerialMaster::stateChanged, this, &MBRtuClient::onModbusState);
}
MBRtuClient::~MBRtuClient()
{
qDebug() << Q_FUNC_INFO;
removeWorker();
}
void MBRtuClient::customEvent(QEvent* event)
{
if (isTrace(TRACE_INTERNAL)) {
qDebug() << "MODBUS: Custom event:" << event->type();
}
switch (CS_EVENT_ID(event->type())) {
case CS_EVENT(ID_EVENT_OPEN): {
connectDevice();
return;
}
case CS_EVENT(ID_EVENT_CLOSE): {
disconnectDevice();
return;
}
case CS_EVENT(ID_EVENT_READ):
case CS_EVENT(ID_EVENT_WRITE):
case CS_EVENT(ID_EVENT_REQUEST): {
IOEvent* ev;
if ((ev = dynamic_cast<IOEvent*>(event))) {
request(ev);
}
return;
}
}
QObject::customEvent(event);
}
/* --------------------------------------------------------------------
* API Methods
* -------------------------------------------------------------------- */
const MBRtuClient::TConfig& MBRtuClient::config() const
{
return m_config;
}
bool MBRtuClient::isOpen() const
{
return m_isOpen;
}
void MBRtuClient::open()
{
qApp->postEvent(this, new QEvent(CS_EVENT(ID_EVENT_OPEN)));
}
void MBRtuClient::close()
{
qApp->postEvent(this, new QEvent(CS_EVENT(ID_EVENT_CLOSE)));
}
void MBRtuClient::read(const uint server, const QModbusDataUnit& unit)
{
if (!m_worker) {
qApp->postEvent(this, new IOEvent(CS_EVENT(ID_EVENT_READ), server, unit));
}
else {
m_worker->scheduleRequest({
.type = MBQueueWorker::DataUnitRead,
.server = server,
.request = {},
// .unit = QModbusDataUnit(unit.registerType(), unit.startAddress(), unit.values()),
.unit = unit,
});
m_worker->notifyRequest();
}
}
void MBRtuClient::write(const uint server, const QModbusDataUnit& unit)
{
if (!m_worker) {
qApp->postEvent(this, new IOEvent(CS_EVENT(ID_EVENT_WRITE), server, unit));
}
else {
m_worker->scheduleRequest({
.type = MBQueueWorker::DataUnitWrite,
.server = server,
.request = {},
//.unit = QModbusDataUnit(unit.registerType(), unit.startAddress(), unit.values()),
.unit = unit,
});
m_worker->notifyRequest();
}
}
void MBRtuClient::send(const uint server, const QModbusRequest& mr)
{
if (!m_worker) {
qApp->postEvent(this, new IOEvent(CS_EVENT(ID_EVENT_REQUEST), server, mr));
}
else {
m_worker->scheduleRequest({
.type = MBQueueWorker::RequestSend,
.server = server,
//.request = QModbusRequest(mr),
.request = mr,
.unit = {},
});
m_worker->notifyRequest();
}
}
const QString& MBRtuClient::portName() const
{
return m_config.m_portName;
}
void MBRtuClient::setPortName(const QString& name)
{
if (m_config.m_portName != name) {
m_config.m_portName = name;
m_modbus.setConnectionParameter( //
QModbusRtuSerialMaster::SerialPortNameParameter,
QVariant::fromValue(name));
}
}
const QSerialPort::BaudRate& MBRtuClient::baudRate() const
{
return m_config.m_baudRate;
}
void MBRtuClient::setBaudRate(const QSerialPort::BaudRate rate)
{
if (m_config.m_baudRate != rate) {
m_config.m_baudRate = rate;
m_modbus.setConnectionParameter( //
QModbusRtuSerialMaster::SerialBaudRateParameter,
QVariant::fromValue(rate));
}
}
const QSerialPort::Parity& MBRtuClient::parity() const
{
return m_config.m_parity;
}
void MBRtuClient::setParity(const QSerialPort::Parity parity)
{
if (m_config.m_parity != parity) {
m_config.m_parity = parity;
m_modbus.setConnectionParameter( //
QModbusRtuSerialMaster::SerialParityParameter,
QVariant::fromValue(parity));
}
}
const QSerialPort::DataBits& MBRtuClient::dataBits() const
{
return m_config.m_dataBits;
}
void MBRtuClient::setDataBits(const QSerialPort::DataBits bits)
{
if (m_config.m_dataBits != bits) {
m_config.m_dataBits = bits;
m_modbus.setConnectionParameter( //
QModbusRtuSerialMaster::SerialDataBitsParameter,
QVariant::fromValue(bits));
}
}
const QSerialPort::StopBits& MBRtuClient::stopBits() const
{
return m_config.m_stopBits;
}
void MBRtuClient::setStopBits(const QSerialPort::StopBits bits)
{
if (m_config.m_stopBits != bits) {
m_config.m_stopBits = bits;
m_modbus.setConnectionParameter( //
QModbusRtuSerialMaster::SerialStopBitsParameter,
QVariant::fromValue(bits));
}
}
void MBRtuClient::setTraceFlags(const uint flags)
{
m_config.m_traceFlags = flags;
}
uint MBRtuClient::traceFlags() const
{
return m_config.m_traceFlags;
}
/* --------------------------------------------------------------------
* Private Methods
* -------------------------------------------------------------------- */
bool MBRtuClient::isTrace(uint mask) const
{
return ((traceFlags() & mask) == mask);
}
inline void MBRtuClient::createWorker()
{
if (!m_worker) {
m_worker = new MBQueueWorker(this, this);
connect(m_worker, &MBQueueWorker::started, this, &MBRtuClient::onWorkerStarted);
connect(m_worker, &MBQueueWorker::finished, this, &MBRtuClient::onWorkerFinished);
connect(m_worker, &MBQueueWorker::destroyed, this, &MBRtuClient::onWorkerDestroyed);
m_worker->start(QThread::HighPriority);
}
}
inline void MBRtuClient::removeWorker()
{
if (m_worker) {
m_worker->requestInterruption();
m_worker->notifyRequest();
m_worker->notifyResponse();
m_worker->wait(5000);
m_worker->deleteLater();
m_worker = nullptr;
}
}
inline bool MBRtuClient::connectDevice()
{
if (m_isOpen) {
return true;
}
/* find symbolic link to real port name */
QSerialPortInfo spi;
QDir devPath("/dev");
QString portName = m_config.m_portName;
QFileInfoList fil = devPath.entryInfoList(QStringList() << "ttyMB*");
if (!fil.isEmpty()) {
qInfo() << "MODBUS: Found ttyMBUS symlink to serial device.";
foreach (auto fi, fil) {
if (fi.isSymLink()) {
QString sym = fi.absoluteFilePath();
QString tgt = fi.symLinkTarget();
qInfo() << "MODBUS: " << sym << " -> " << tgt;
if (sym.contains(portName)) {
QString dev;
dev = tgt.replace(devPath.absolutePath(), "");
dev = dev.replace("/", "");
qInfo() << "MODBUS: Using device:" << dev << "for" << portName;
portName = dev;
break;
}
}
}
}
/* lookup known serial ports */
foreach (auto pi, spi.availablePorts()) {
if (pi.portName().contains(portName)) {
qInfo() << "MODBUS: Using device:" << pi.systemLocation();
spi = pi;
break;
}
}
if (spi.isNull()) {
qCritical() << "MODBUS: Can't find serial port:" << portName.toUtf8().constData();
return false;
}
/* create worker thread */
createWorker();
m_modbus.setConnectionParameter( //
QModbusDevice::SerialPortNameParameter,
QVariant::fromValue(m_config.m_portName));
m_modbus.setConnectionParameter( //
QModbusDevice::SerialBaudRateParameter,
QVariant::fromValue(m_config.m_baudRate));
m_modbus.setConnectionParameter( //
QModbusDevice::SerialDataBitsParameter,
QVariant::fromValue(m_config.m_dataBits));
m_modbus.setConnectionParameter( //
QModbusDevice::SerialStopBitsParameter,
QVariant::fromValue(m_config.m_stopBits));
m_modbus.setConnectionParameter( //
QModbusDevice::SerialParityParameter,
QVariant::fromValue(m_config.m_parity));
return m_modbus.connectDevice();
}
inline void MBRtuClient::disconnectDevice()
{
removeWorker();
if (m_isOpen) {
m_isOpen = false;
m_modbus.disconnectDevice();
}
}
inline void MBRtuClient::request(IOEvent* event)
{
switch (CS_EVENT_ID(event->type())) {
case CS_EVENT(ID_EVENT_READ):
case CS_EVENT(ID_EVENT_WRITE): {
request(event->type(), event->server(), event->unit());
break;
}
case CS_EVENT(ID_EVENT_REQUEST): {
request(event->server(), event->request());
break;
}
default: {
qCritical() << "MODBUS: Invalid event type:" << event->type();
if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
break;
}
}
}
inline void MBRtuClient::request(uint server, const QModbusRequest& mr)
{
if (server > 248) {
qCritical() << "MODBUS: Invalid server address:" << server;
if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
return;
}
if (!mr.isValid()) {
qCritical() << "MODBUS: Invalid request object.";
if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
return;
}
if (isTrace(TRACE_REQUEST | TRACE_INTERNAL)) {
qDebug() << "MODBUS: Request" //
<< "Device:" << Qt::dec << server //
<< "Data:" << Qt::hex << mr;
}
QModbusReply* reply;
if ((reply = m_modbus.sendRawRequest(mr, server))) {
connect(reply, &QModbusReply::finished, this, &MBRtuClient::onModbusReply);
connect(reply, &QModbusReply::destroyed, this, &MBRtuClient::onReplyDestroyed);
connect(reply, &QModbusReply::errorOccurred, this, &MBRtuClient::onModbusError);
}
else if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
}
inline void MBRtuClient::request(uint action, uint server, const QModbusDataUnit& unit)
{
if (server > 248) {
qCritical() << "MODBUS: Invalid server address:" << server;
if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
return;
}
if (!unit.isValid()) {
qCritical() << "MODBUS: Invalid data unit.";
if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
return;
}
if (isTrace(TRACE_REQUEST | TRACE_INTERNAL)) {
qDebug() << "MODBUS: Request" //
<< "Event:" << Qt::dec << action //
<< "DAddr:" << Qt::dec << server //
<< "RType:" << Qt::hex << unit.registerType() //
<< "RAddr:" << Qt::hex << unit.startAddress() //
<< "Count:" << Qt::dec << unit.valueCount() //
<< "Value:" << Qt::hex << unit.values();
}
QModbusReply* reply = 0L;
switch (CS_EVENT_ID(action)) {
case CS_EVENT(ID_EVENT_READ): {
reply = m_modbus.sendReadRequest(unit, server);
break;
}
case CS_EVENT(ID_EVENT_WRITE): {
reply = m_modbus.sendWriteRequest(unit, server);
break;
}
default: {
qCritical() << "MODBUS: Invalid request type:" << action;
if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
return;
}
}
if (reply) {
connect(reply, &QModbusReply::finished, this, &MBRtuClient::onModbusReply);
connect(reply, &QModbusReply::destroyed, this, &MBRtuClient::onReplyDestroyed);
connect(reply, &QModbusReply::errorOccurred, this, &MBRtuClient::onModbusError);
}
else if (m_worker) {
m_worker->notifyResponse(); // unlock waiting worker
}
}
/* --------------------------------------------------------------------
* Event Methods
* -------------------------------------------------------------------- */
void MBRtuClient::onModbusError(QModbusDevice::Error code)
{
if (code == QModbusDevice::NoError) {
return;
}
QString msg;
switch (code) {
case QModbusDevice::ReadError: {
msg = tr("Read error");
break;
}
case QModbusDevice::WriteError: {
msg = tr("Write error");
break;
}
case QModbusDevice::ConnectionError: {
msg = tr("Connection error");
break;
}
case QModbusDevice::ConfigurationError: {
msg = tr("Configuration error");
break;
}
case QModbusDevice::TimeoutError: {
msg = tr("Timeout error");
break;
}
case QModbusDevice::ProtocolError: {
msg = tr("Protocol error");
break;
}
case QModbusDevice::ReplyAbortedError: {
msg = tr("Reply aborted error");
break;
}
default: {
msg = tr("Unknown error %1").arg(code);
break;
}
}
qCritical() << "MODBUS:" << msg.toUtf8().constData();
if (m_worker) {
emit error(m_worker->activeServer(), code, msg);
}
else {
emit error(0, code, msg);
}
/* force port close if open, but not on timeout. May
* be one of the devices in chain is offline. */
if (m_isOpen && code != QModbusDevice::TimeoutError) {
disconnectDevice();
}
}
void MBRtuClient::onModbusState(QModbusDevice::State state)
{
if (isTrace(TRACE_INTERNAL)) {
qDebug() << "MODBUS: State changed:" << state;
}
switch (state) {
case QModbusDevice::UnconnectedState: {
m_isOpen = false;
emit closed();
break;
}
case QModbusDevice::ConnectingState: {
break;
}
case QModbusDevice::ConnectedState: {
m_isOpen = true;
emit opened();
break;
}
case QModbusDevice::ClosingState: {
break;
}
}
}
void MBRtuClient::onModbusReply()
{
QModbusReply* reply;
if (!(reply = dynamic_cast<QModbusReply*>(sender()))) {
qCritical() << "MODBUS: Invalid reply object";
return;
}
/* error event already emitted by modbus */
if (reply->error() != QModbusDevice::NoError) {
reply->deleteLater();
return;
}
/* get raw result */
QModbusResponse resp = reply->rawResult();
if (!resp.isValid() || resp.isException()) {
qCritical() << "MODBUS: Got invalid response. Exception:" //
<< resp.exceptionCode();
reply->deleteLater();
return;
}
if (isTrace(TRACE_RESPONSE | TRACE_INTERNAL)) {
QStringList dump;
for (qint16 i = 0; i < resp.dataSize(); i++) {
dump << tr("0x%1").arg(resp.data().at(i), 2, 16, QChar('0'));
}
qDebug() << "MODBUS: Response" //
<< "Func:" << Qt::hex << resp.functionCode() //
<< "Size:" << Qt::dec << resp.dataSize() //
<< "Dump:" << dump;
}
/* raw result translator */
bool isUnit;
QModbusDataUnit unit = reply->result();
auto translate = [resp](QModbusDataUnit& unit) {
/* nothing to do if empty */
if (resp.dataSize() <= 0) {
return false;
}
QVector<quint16> values;
QModbusDataUnit::RegisterType type;
QByteArray data = resp.data();
int count = data.count();
/* setup data unit type */
switch (resp.functionCode()) {
case QModbusResponse::ReadDiscreteInputs: {
type = QModbusDataUnit::DiscreteInputs;
break;
}
case QModbusResponse::ReadCoils: {
type = QModbusDataUnit::Coils;
break;
}
case QModbusResponse::ReadHoldingRegisters: {
type = QModbusDataUnit::HoldingRegisters;
// first byte is number of bytes in data
count = data.at(0);
data.remove(0, 1);
break;
}
case QModbusResponse::ReadInputRegisters: {
type = QModbusDataUnit::InputRegisters;
// first byte is number of bytes in data
count = data.at(0);
data.remove(0, 1);
break;
}
default: {
type = QModbusDataUnit::InputRegisters;
break;
}
}
/* digital input read */
if (type == QModbusDataUnit::Coils || type == QModbusDataUnit::DiscreteInputs) {
/* first byte 0 should be number of bit mask bytes */
for (int i = 1; i < count; i++) {
char mask = data.at(i);
for (quint8 b = 0; b < 8; b++) {
if ((mask & (1 << b)) != 0) {
values.append(1);
}
else {
values.append(0);
}
}
}
}
/* others as analog input */
else {
do {
quint16 value = 0;
/* hi byte */
if (!data.isEmpty()) {
value = static_cast<quint16>(data.at(0));
data.remove(0, 1);
}
/* add lo byte */
if (!data.isEmpty()) {
value <<= 8; // shift to hi byte
value |= (data.at(0) & 0x00ff);
data.remove(0, 1);
}
/* save result */
values.append(value);
} while (!data.isEmpty());
}
/* return translated */
unit = QModbusDataUnit(type);
unit.setStartAddress(count);
unit.setValueCount(values.count());
unit.setValues(values);
return unit.isValid();
};
/* translate to data unit manually */
if (!(isUnit = unit.isValid())) {
isUnit = translate(unit);
}
if (isTrace(TRACE_DATAUNIT | TRACE_INTERNAL)) {
qDebug() << "MODBUS: DataUnit" //
<< "RT:" << Qt::hex << unit.registerType() //
<< "SA:" << Qt::hex << unit.startAddress() //
<< "VC:" << Qt::dec << unit.valueCount() //
<< "VD:" << Qt::hex << unit.values();
}
/* notfiy consumer */
if (m_worker) {
emit received(m_worker->activeServer(), resp, unit, isUnit);
}
else {
emit received(0, resp, unit, isUnit);
}
/* remove reply object */
reply->deleteLater();
return;
}
void MBRtuClient::onReplyDestroyed()
{
if (isTrace(TRACE_INTERNAL)) {
qDebug() << "MODBUS: Reply object destoyed.";
}
/* notfiy consumer */
if (m_worker) {
emit complete(m_worker->activeServer());
/* run next request */
m_worker->notifyResponse();
}
else {
emit complete(0);
}
}
void MBRtuClient::onWorkerStarted()
{
if (isTrace(TRACE_INTERNAL)) {
qDebug() << "MODBUS: Queue worker started.";
}
}
void MBRtuClient::onWorkerFinished()
{
if (isTrace(TRACE_INTERNAL)) {
qDebug() << "MODBUS: Queue worker finished.";
}
}
void MBRtuClient::onWorkerDestroyed()
{
if (isTrace(TRACE_INTERNAL)) {
qDebug() << "MODBUS: Queue worker destoyed.";
}
m_worker = nullptr;
}
/* --------------------------------------------------------------------
* WorkerThread
* -------------------------------------------------------------------- */
MBQueueWorker::MBQueueWorker(MBRtuClient* client, QObject* parent)
: QThread(parent)
, m_client(client)
, m_queue()
, m_queueLock()
, m_queueWaitLock()
, m_responseWaitLock()
, m_queueWait()
, m_responseWait()
, m_pendingRequest()
{
}
MBQueueWorker::~MBQueueWorker()
{
qDebug() << Q_FUNC_INFO;
clearQueue();
if (isRunning()) {
requestInterruption();
notifyRequest();
notifyResponse();
}
}
void MBQueueWorker::clearQueue()
{
QMutexLocker lock(&m_queueLock);
m_queue.clear();
}
void MBQueueWorker::scheduleRequest(const TRequest& request)
{
QMutexLocker lock(&m_queueLock);
m_queue.append(request);
}
void MBQueueWorker::notifyRequest()
{
m_queueWait.wakeOne();
}
void MBQueueWorker::notifyResponse()
{
m_responseWait.wakeOne();
}
uint MBQueueWorker::activeServer()
{
return m_pendingRequest.server;
}
inline bool MBQueueWorker::isQueueEmpty()
{
QMutexLocker lock(&m_queueLock);
return m_queue.isEmpty();
}
inline void MBQueueWorker::sendRequest()
{
QMutexLocker lock(&m_queueLock);
m_pendingRequest = m_queue.takeFirst();
switch (m_pendingRequest.type) {
case RequestSend: {
qApp->postEvent(
m_client, //
new MBRtuClient::IOEvent( //
CS_EVENT(MBRtuClient::ID_EVENT_REQUEST),
m_pendingRequest.server,
m_pendingRequest.request));
return;
}
case DataUnitRead: {
qApp->postEvent(
m_client, //
new MBRtuClient::IOEvent( //
CS_EVENT(MBRtuClient::ID_EVENT_READ),
m_pendingRequest.server,
m_pendingRequest.unit));
return;
}
case DataUnitWrite: {
qApp->postEvent(
m_client, //
new MBRtuClient::IOEvent( //
CS_EVENT(MBRtuClient::ID_EVENT_WRITE),
m_pendingRequest.server,
m_pendingRequest.unit));
return;
}
}
}
inline bool MBQueueWorker::waitForRequests()
{
QMutexLocker lock(&m_queueWaitLock);
m_queueWait.wait(&m_queueWaitLock);
/* stop thread if interrupted */
if (isInterruptionRequested()) {
return false;
}
return true;
}
inline bool MBQueueWorker::waitForResponse()
{
QMutexLocker lock(&m_responseWaitLock);
if (!m_responseWait.wait(&m_responseWaitLock, 30000)) {
qCritical() << "MODBUS: Request timed out!";
return false;
}
/* stop thread if interrupted */
if (isInterruptionRequested()) {
return false;
}
return true;
}
void MBQueueWorker::run()
{
if (m_client->isTrace(MBRtuClient::TRACE_INTERNAL)) {
qDebug() << "MODBUS: Worker run enter.";
}
while (!isInterruptionRequested()) {
if (isQueueEmpty()) {
/* wait for new requests */
if (!waitForRequests()) {
break;
}
}
/* send pending request via UI thread. Events
* handled by modbus client object instance */
sendRequest();
/* wait for response ack */
if (!waitForResponse()) {
break;
}
}
if (isInterruptionRequested()) {
if (m_client->isTrace(MBRtuClient::TRACE_INTERNAL)) {
qDebug() << "MODBUS: Queue worker interrupted.";
}
exit(-1);
return;
}
if (m_client->isTrace(MBRtuClient::TRACE_INTERNAL)) {
qDebug() << "MODBUS: Worker run leave.";
}
exit(0);
}