-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathserver.cpp
More file actions
460 lines (354 loc) · 12.4 KB
/
server.cpp
File metadata and controls
460 lines (354 loc) · 12.4 KB
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
/* Copyright © 2018-2019 Pascal JEAN, All rights reserved.
* This file is part of the libmodbuspp Library.
*
* The libmodbuspp Library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* The libmodbuspp Library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the libmodbuspp Library; if not, see <http://www.gnu.org/licenses/>.
*/
#include <fstream>
#include <iostream> // for debug
#include <sstream>
#ifdef _WIN32
# include <winsock2.h>
# if defined(SD_BOTH) && ! defined(SHUT_RDWR)
# define SHUT_RDWR SD_BOTH
# endif
#else
# include <sys/socket.h>
# include <fcntl.h>
# include <unistd.h>
#endif
#include "server_p.h"
#include "config.h"
using json = nlohmann::json;
namespace Modbus {
// ---------------------------------------------------------------------------
//
// Server Class
//
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
Server::Server (Server::Private &dd) : Device (dd) {}
// ---------------------------------------------------------------------------
Server::Server () :
Device (*new Private (this)) {}
// ---------------------------------------------------------------------------
Server::Server (Net net, const std::string & connection,
const std::string & settings) : Server () {
PIMP_D (Server);
d->setBackend (net, connection, settings);
}
// ---------------------------------------------------------------------------
Server::Server (const std::string & jsonfile,
const std::string & key) : Server () {
PIMP_D (Server);
d->setConfigFromFile (jsonfile, key);
}
// ---------------------------------------------------------------------------
Server::~Server() {
// std::cout << "-- ~Server --" << std::endl;
terminate();
}
// ---------------------------------------------------------------------------
void Server::close() {
if (isOpen()) {
terminate();
Device::close();
}
}
// ---------------------------------------------------------------------------
int Server::poll (long timeout) {
if (!isRunning() && isOpen()) {
PIMP_D (Server);
if (!d->receiveTask.valid()) {
// starts the receiving thread
d->receiveTask = std::async (std::launch::async, Server::Private::receive, d);
}
if (d->receiveTask.wait_for (std::chrono::milliseconds (timeout)) == std::future_status::ready) {
// message received ?
int rc = d->receiveTask.get();
return d->task (rc);
}
return 0;
}
return -1;
}
// ---------------------------------------------------------------------------
bool Server::hasSlave (int slaveAddr) const {
PIMP_D (const Server);
return d->slave.count (slaveAddr) > 0;
}
// ---------------------------------------------------------------------------
BufferedSlave & Server::addSlave (int slaveAddr, Device * master) {
PIMP_D (Server);
if (isOpen()) {
throw std::logic_error ("Unable to add slave when open !");
}
return *d->addSlave (slaveAddr, master);
}
// ---------------------------------------------------------------------------
BufferedSlave & Server::slave (int slaveAddr) {
PIMP_D (Server);
return *d->slave.at (d->defaultSlave (slaveAddr));
}
// ---------------------------------------------------------------------------
const BufferedSlave & Server::slave (int slaveAddr) const {
PIMP_D (const Server);
return *d->slave.at (d->defaultSlave (slaveAddr));
}
// ---------------------------------------------------------------------------
BufferedSlave * Server::slavePtr (int slaveAddr) {
PIMP_D (Server);
int i = d->defaultSlave (slaveAddr);
return hasSlave (i) ? d->slave.at (i).get() : nullptr;
}
// ---------------------------------------------------------------------------
const BufferedSlave * Server::slavePtr (int slaveAddr) const {
PIMP_D (const Server);
int i = d->defaultSlave (slaveAddr);
return hasSlave (i) ? d->slave.at (i).get() : nullptr;
}
// ---------------------------------------------------------------------------
BufferedSlave & Server::operator[] (int slaveAddr) {
PIMP_D (Server);
return * d->slave.at (slaveAddr);
}
// ---------------------------------------------------------------------------
const BufferedSlave & Server::operator[] (int slaveAddr) const {
PIMP_D (const Server);
return * d->slave.at (slaveAddr);
}
// ---------------------------------------------------------------------------
bool Server::run () {
if (!isRunning() && isOpen()) {
PIMP_D (Server);
// Fetch std::future object associated with promise
std::future<void> running = d->stopDaemon.get_future();
// Starting Thread & move the future object in lambda function by reference
d->daemon = std::thread (&Private::loop, std::move (running), d);
}
return isRunning();
}
// ---------------------------------------------------------------------------
void Server::terminate () {
PIMP_D (Server);
if (d->sock != -1) {
::shutdown (d->sock, SHUT_RDWR);
}
if (isRunning()) {
// Set the value in promise
d->stopDaemon.set_value();
// Wait for thread to join
d->daemon.join();
}
}
// ---------------------------------------------------------------------------
bool Server::isRunning() const {
PIMP_D (const Server);
return d->daemon.joinable();
}
// ---------------------------------------------------------------------------
const std::map <int, std::shared_ptr<BufferedSlave>> & Server::slaves() const {
PIMP_D (const Server);
return d->slave;
}
// ---------------------------------------------------------------------------
Message::Callback Server::messageCallback() const {
PIMP_D (const Server);
return d->messageCB;
}
// ---------------------------------------------------------------------------
void Server::setMessageCallback (Message::Callback cb) {
PIMP_D (Server);
d->messageCB = cb;
}
// ---------------------------------------------------------------------------
//
// Server::Private Class
//
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
Server::Private::Private (Server * q) :
Device::Private (q), sock (-1), req (0) {}
// ---------------------------------------------------------------------------
Server::Private::~Private() = default;
// ---------------------------------------------------------------------------
// virtual
void Server::Private::setConfig (const nlohmann::json & config) {
PIMP_Q (Server);
Json::setConfig (q, config);
}
// ---------------------------------------------------------------------------
// virtual
void Server::Private::setBackend (Net net, const std::string & connection,
const std::string & settings) {
Device::Private::setBackend (net, connection, settings);
#if MODBUSPP_HAVE_RTU_MULTI_SLAVES
if (net == Rtu) {
modbus_rtu_set_recv_filter (ctx(), FALSE);
}
#endif
}
// ---------------------------------------------------------------------------
BufferedSlave * Server::Private::addSlave (int slaveAddr, Device * master) {
if (modbus_set_slave (ctx(), slaveAddr) != 0) {
std::ostringstream oss;
oss << "Unable to add slave[" << slaveAddr << "]\n" << lastError();
throw std::invalid_argument (oss.str());
}
std::shared_ptr<BufferedSlave> s;
if (slave.count (slaveAddr)) {
s = slave[slaveAddr];
s->setDevice (master);
}
else {
s = std::make_shared<BufferedSlave> (slaveAddr, master);
slave[slaveAddr] = s;
}
return s.get();
}
// ---------------------------------------------------------------------------
bool Server::Private::open() {
bool isOk = false;
switch (backend->net()) {
case Tcp:
sock = modbus_tcp_pi_listen (ctx(), 1);
isOk = (sock != -1);
break;
case Rtu:
isOk = Device::Private::open();
default:
break;
}
if (isOk && !req) {
PIMP_Q (Server);
req = std::make_shared<Request> (*q);
}
return isOk;
}
// ---------------------------------------------------------------------------
void Server::Private::close() {
if (backend->net() == Tcp) {
if (sock != -1) {
#ifdef _WIN32
::closesocket (sock);
#else
::close (sock);
#endif
sock = -1;
}
}
Device::Private::close();
}
// ---------------------------------------------------------------------------
int Server::Private::task (int rc) {
PIMP_Q (Server);
if (rc == -1 && errno != EMBBADCRC) {
if (q->recoveryLink()) {
close();
if (open()) {
errno = 0;
rc = 0;
}
else {
throw std::runtime_error ("Unable to recovery link !");
}
}
}
else if (rc > 0) {
int id = req->slave();
if (slave.count (id) > 0) {
if (modbus_set_slave (ctx(), id) == 0) {
int ret;
BufferedSlave * slv = slave[id].get();
// route the message to a possible device to copy its registers to the map.
ret = slv->readFromDevice (req.get());
if (ret >= 0) {
if (slv->beforeReplyCallback()) {
ret = slv->beforeReplyCallback() (req.get(), q);
if (ret != 0) { // -1 error, 1 exit, 0 continue
return ret;
}
}
rc = modbus_reply (ctx(), req->adu(), rc, slv->map());
if (rc >= 0) {
if (slv->afterReplyCallback()) {
ret = slv->afterReplyCallback() (req.get(), q);
if (ret != 0) { // -1 error, 1 exit, 0 continue
return ret;
}
}
// route the message to a possible device to write its registers from map.
ret = slv->writeToDevice (req.get());
if (ret < 0) {
rc = ret;
}
}
}
}
rc = 0;
}
else {
if (messageCB) {
rc = messageCB (req.get(), q);
}
}
}
return rc;
}
// ---------------------------------------------------------------------------
// static
int Server::Private::receive (Private * d) {
int rc;
if ( (d->backend->net() == Tcp) && !d->isConnected()) {
// accept blocking call !
if (modbus_tcp_pi_accept (d->ctx(), &d->sock) < 0) {
return -1;
}
}
d->req->clear();
rc = modbus_receive (d->ctx(), d->req->adu());
if (rc > 0) {
d->req->setAduSize (rc);
}
return rc;
}
// ---------------------------------------------------------------------------
// static
void Server::Private::loop (std::future<void> run, Private * d) {
int rc;
while (run.wait_for (std::chrono::milliseconds (100)) == std::future_status::timeout) {
rc = d->receive (d);
rc = d->task (rc);
}
}
// ---------------------------------------------------------------------------
//
// Modbus::Json Namespace
//
// ---------------------------------------------------------------------------
namespace Json {
// -------------------------------------------------------------------------
void setConfig (Server * srv, const nlohmann::json & j) {
setConfig (reinterpret_cast<Device *> (srv), j);
if (j.contains ("slaves")) {
auto slaves = j["slaves"];
for (const auto & config : slaves) {
auto id = config["id"].get<int>();
BufferedSlave & slv = srv->addSlave (id);
setConfig (&slv, config);
}
}
}
}
}
/* ========================================================================== */