b5d9e433
Peter M. Groen
Fixed License Hea...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ****************************************************************************
* Copyright 2019 Open Systems Development BV *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the "Software"), *
* to deal in the Software without restriction, including without limitation *
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
* and/or sell copies of the Software, and to permit persons to whom the *
* Software is furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *
* DEALINGS IN THE SOFTWARE. *
* ***************************************************************************/
|
51becbde
Peter M. Groen
Committed the ent...
|
22
23
|
#include "mqttclient.h"
|
199d7075
Peter M. Groen
implement logging...
|
24
25
26
|
// osdev::components::logger
#include "log.h"
|
51becbde
Peter M. Groen
Committed the ent...
|
27
28
29
30
31
|
// osdev::components::mqtt
#include "clientpaho.h"
#include "mqttutil.h"
#include "mqttidgenerator.h"
#include "mqtttypeconverter.h"
|
51becbde
Peter M. Groen
Committed the ent...
|
32
33
34
35
36
37
|
#include "lockguard.h"
#include "uriparser.h"
// std
#include <numeric>
#include <iostream>
|
199d7075
Peter M. Groen
implement logging...
|
38
|
#include <string>
|
51becbde
Peter M. Groen
Committed the ent...
|
39
40
|
using namespace osdev::components::mqtt;
|
199d7075
Peter M. Groen
implement logging...
|
41
|
using namespace osdev::components::log;
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
namespace {
/**
* @brief Generate a unique client id so that a new client does not steal the connection from an existing client.
* @param clientId The base client identifier.
* @param clientNumber The next client that is derived from the base client identifier.
* @return A unique client identifier string.
*/
std::string generateUniqueClientId(const std::string& clientId, std::size_t clientNumber)
{
return clientId + "_" + std::to_string(clientNumber) + "_" + MqttTypeConverter::toStdString(MqttIdGenerator::generate());
}
} // namespace
MqttClient::MqttClient(const std::string& _clientId, const std::function<void(const Token& token)>& deliveryCompleteCallback)
: m_interfaceMutex()
, m_internalMutex()
, m_endpoint()
, m_clientId(_clientId)
, m_activeTokens()
, m_activeTokensCV()
, m_deliveryCompleteCallback(deliveryCompleteCallback)
, m_serverState(this)
, m_principalClient()
, m_additionalClients()
, m_eventQueue(_clientId)
|
84738f56
Peter M. Groen
Setting up the lo...
|
69
|
, m_workerThread( std::thread( &MqttClient::eventHandler, this ) )
|
51becbde
Peter M. Groen
Committed the ent...
|
70
|
{
|
199d7075
Peter M. Groen
implement logging...
|
71
72
|
Log::init( "mqtt-library" );
LogInfo( "MQTT Client started", "[MqttClient::MqttClient]");
|
51becbde
Peter M. Groen
Committed the ent...
|
73
74
75
76
|
}
MqttClient::~MqttClient()
{
|
51becbde
Peter M. Groen
Committed the ent...
|
77
|
{
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
78
|
// LogDebug( "MqttClient", std::string( m_clientId + " - disconnect" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
79
80
81
82
|
this->disconnect();
decltype(m_principalClient) principalClient{};
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
|
199d7075
Peter M. Groen
implement logging...
|
83
|
LogDebug( "MqttClient", std::string( m_clientId + " - cleanup principal client" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
84
85
|
m_principalClient.swap(principalClient);
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
86
|
|
199d7075
Peter M. Groen
implement logging...
|
87
|
LogDebug( "MqttClient", std::string( m_clientId + " - dtor stop queue" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
88
89
90
91
|
m_eventQueue.stop();
if (m_workerThread.joinable()) {
m_workerThread.join();
}
|
199d7075
Peter M. Groen
implement logging...
|
92
|
LogDebug( "MqttClient", std::string( m_clientId + " - dtor ready" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
}
std::string MqttClient::clientId() const
{
return m_clientId;
}
StateChangeCallbackHandle MqttClient::registerStateChangeCallback(const SlotStateChange& cb)
{
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
return m_serverState.registerStateChangeCallback(cb);
}
void MqttClient::unregisterStateChangeCallback(StateChangeCallbackHandle handle)
{
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
m_serverState.unregisterStateChangeCallback(handle);
}
void MqttClient::clearAllStateChangeCallbacks()
{
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
m_serverState.clearAllStateChangeCallbacks();
}
StateEnum MqttClient::state() const
{
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
return m_serverState.state();
}
|
9421324b
Peter M. Groen
First fix on conn...
|
128
|
void MqttClient::connect(const std::string& host, int port, const Credentials &credentials, const mqtt_LWT &lwt, bool blocking )
|
51becbde
Peter M. Groen
Committed the ent...
|
129
|
{
|
51becbde
Peter M. Groen
Committed the ent...
|
130
131
132
133
134
135
136
|
osdev::components::mqtt::ParsedUri _endpoint = {
{ "scheme", "tcp" },
{ "user", credentials.username() },
{ "password", credentials.password() },
{ "host", host },
{ "port", std::to_string(port) }
};
|
31eece9b
Steven
added LWT ( last ...
|
137
|
|
9421324b
Peter M. Groen
First fix on conn...
|
138
|
this->connect( UriParser::toString( _endpoint ), lwt, blocking );
|
51becbde
Peter M. Groen
Committed the ent...
|
139
140
|
}
|
9421324b
Peter M. Groen
First fix on conn...
|
141
|
void MqttClient::connect( const std::string &_endpoint, const mqtt_LWT &lwt, bool blocking )
|
51becbde
Peter M. Groen
Committed the ent...
|
142
|
{
|
199d7075
Peter M. Groen
implement logging...
|
143
|
LogInfo( "MqttClient", std::string( m_clientId + " - Request connect" ) );
|
84738f56
Peter M. Groen
Setting up the lo...
|
144
|
|
51becbde
Peter M. Groen
Committed the ent...
|
145
146
147
148
149
150
151
152
153
154
155
156
|
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
IMqttClientImpl* client(nullptr);
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (m_principalClient && m_principalClient->connectionStatus() != ConnectionStatus::Disconnected) {
if (_endpoint == m_endpoint)
{
// idempotent
return;
}
else
{
|
199d7075
Peter M. Groen
implement logging...
|
157
|
LogError( "MqttClient", std::string( m_clientId + " - Cannot connect to different endpoint. Disconnect first." ) );
|
84738f56
Peter M. Groen
Setting up the lo...
|
158
|
return;
|
51becbde
Peter M. Groen
Committed the ent...
|
159
160
161
|
}
}
m_endpoint = _endpoint;
|
31eece9b
Steven
added LWT ( last ...
|
162
163
|
if (!m_principalClient)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
164
165
166
167
168
169
170
171
172
|
std::string derivedClientId(generateUniqueClientId(m_clientId, 1));
m_principalClient = std::make_unique<ClientPaho>(
m_endpoint,
derivedClientId,
[this](const std::string& id, ConnectionStatus cs) { this->connectionStatusChanged(id, cs); },
[this](std::string clientId, std::int32_t token) { this->deliveryComplete(clientId, token); });
}
client = m_principalClient.get();
}
|
31eece9b
Steven
added LWT ( last ...
|
173
|
|
9421324b
Peter M. Groen
First fix on conn...
|
174
|
client->connect( blocking, lwt );
|
51becbde
Peter M. Groen
Committed the ent...
|
175
176
177
178
|
}
void MqttClient::disconnect()
{
|
199d7075
Peter M. Groen
implement logging...
|
179
|
LogInfo( "MqttClient", std::string( m_clientId + " - Request disconnect" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
180
181
182
183
184
185
|
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
decltype(m_additionalClients) additionalClients{};
std::vector<IMqttClientImpl*> clients{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
|
84738f56
Peter M. Groen
Setting up the lo...
|
186
187
|
if (!m_principalClient || m_principalClient->connectionStatus() == ConnectionStatus::Disconnected || m_principalClient->connectionStatus() == ConnectionStatus::DisconnectInProgress)
{
|
199d7075
Peter M. Groen
implement logging...
|
188
|
LogDebug( "MqttClient", std::string( m_clientId + " - Principal client not connected" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
189
190
|
return;
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
191
|
m_additionalClients.swap( additionalClients );
|
51becbde
Peter M. Groen
Committed the ent...
|
192
|
|
84738f56
Peter M. Groen
Setting up the lo...
|
193
194
195
|
for (const auto& c : additionalClients)
{
clients.push_back( c.get() );
|
51becbde
Peter M. Groen
Committed the ent...
|
196
|
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
197
|
clients.push_back( m_principalClient.get() );
|
51becbde
Peter M. Groen
Committed the ent...
|
198
199
|
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
200
|
|
199d7075
Peter M. Groen
implement logging...
|
201
|
LogDebug( "MqttClient", std::string( m_clientId + " - Unsubscribe and disconnect clients" ) );
|
84738f56
Peter M. Groen
Setting up the lo...
|
202
203
|
for ( auto& cl : clients )
{
|
51becbde
Peter M. Groen
Committed the ent...
|
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
cl->unsubscribeAll();
}
this->waitForCompletionInternal(clients, std::chrono::milliseconds(2000), std::set<Token>{});
for (auto& cl : clients) {
cl->disconnect(false, 2000);
}
this->waitForCompletionInternal(clients, std::chrono::milliseconds(3000), std::set<Token>{});
}
Token MqttClient::publish(const MqttMessage& message, int qos)
{
if (hasWildcard(message.topic()) || !isValidTopic(message.topic())) {
return Token(m_clientId, -1);
}
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
IMqttClientImpl* client(nullptr);
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (!m_principalClient || m_principalClient->connectionStatus() == ConnectionStatus::Disconnected)
{
if( !m_principalClient )
{
|
199d7075
Peter M. Groen
implement logging...
|
227
|
LogInfo( "[MqttClient::publish]", std::string( "Principal client not initialized") );
|
51becbde
Peter M. Groen
Committed the ent...
|
228
229
230
231
232
233
|
}
if( m_principalClient->connectionStatus() == ConnectionStatus::Disconnected )
{
std::cout << "Unable to publish, not connected.." << std::endl;
}
|
199d7075
Peter M. Groen
implement logging...
|
234
235
|
LogError("MqttClient", std::string( m_clientId + " - Unable to publish, not connected" ) );
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
236
|
return Token(m_clientId, -1);
|
51becbde
Peter M. Groen
Committed the ent...
|
237
238
239
240
241
242
243
244
|
}
client = m_principalClient.get();
}
return Token(client->clientId(), client->publish(message, qos));
}
Token MqttClient::subscribe(const std::string& topic, int qos, const std::function<void(MqttMessage)>& cb)
{
|
199d7075
Peter M. Groen
implement logging...
|
245
|
LogDebug( "[MqttClient::subscribe]", std::string( m_clientId + " - Subscribe to topic " + topic ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
246
247
248
249
250
251
252
|
// OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
bool clientFound = false;
IMqttClientImpl* client(nullptr);
{
// OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (!m_principalClient || m_principalClient->connectionStatus() == ConnectionStatus::Disconnected)
{
|
199d7075
Peter M. Groen
implement logging...
|
253
|
LogError("MqttClient", std::string( m_clientId + " - Unable to subscribe, not connected" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
254
|
// throw (?)(MqttException, "Not connected");
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
255
|
return Token(m_clientId, -1);
|
51becbde
Peter M. Groen
Committed the ent...
|
256
|
}
|
9421324b
Peter M. Groen
First fix on conn...
|
257
258
|
if (!m_principalClient->isOverlapping(topic))
{
|
51becbde
Peter M. Groen
Committed the ent...
|
259
260
261
|
client = m_principalClient.get();
clientFound = true;
}
|
9421324b
Peter M. Groen
First fix on conn...
|
262
263
264
265
|
else
{
for (const auto& c : m_additionalClients)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
266
267
268
269
270
271
272
|
if (!c->isOverlapping(topic)) {
client = c.get();
clientFound = true;
break;
}
}
}
|
9421324b
Peter M. Groen
First fix on conn...
|
273
274
|
if (!clientFound)
{
|
199d7075
Peter M. Groen
implement logging...
|
275
|
LogDebug("[MqttClient::subscribe]", std::string( m_clientId + " - Creating new ClientPaho instance for subscription on topic " + topic ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
276
277
278
279
280
281
282
283
284
|
std::string derivedClientId(generateUniqueClientId(m_clientId, m_additionalClients.size() + 2)); // principal client is nr 1.
m_additionalClients.emplace_back(std::make_unique<ClientPaho>(
m_endpoint,
derivedClientId,
[this](const std::string& id, ConnectionStatus cs) { this->connectionStatusChanged(id, cs); },
std::function<void(const std::string&, std::int32_t)>{}));
client = m_additionalClients.back().get();
}
}
|
9421324b
Peter M. Groen
First fix on conn...
|
285
286
|
if (!clientFound)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
287
288
289
290
291
292
293
|
client->connect(true);
}
return Token{ client->clientId(), client->subscribe(topic, qos, cb) };
}
std::set<Token> MqttClient::unsubscribe(const std::string& topic, int qos)
{
|
199d7075
Peter M. Groen
implement logging...
|
294
|
LogDebug("[MqttClient::unsubscribe]", std::string( m_clientId + " - Unsubscribe from topic " + topic ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
295
296
297
298
299
|
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
std::vector<IMqttClientImpl*> clients{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (!m_principalClient || m_principalClient->connectionStatus() == ConnectionStatus::Disconnected) {
|
199d7075
Peter M. Groen
implement logging...
|
300
|
LogError("[MqttClient::unsubscribe]", std::string( m_clientId + " - Unable to unsubscribe, not connected" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
301
|
// Throw (MqttException, "Not connected");
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
302
|
return std::set<Token>();
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
}
clients.push_back(m_principalClient.get());
for (const auto& c : m_additionalClients) {
clients.push_back(c.get());
}
}
std::set<Token> tokens{};
for (auto* c : clients) {
auto token = c->unsubscribe(topic, qos);
if (-1 != token) {
tokens.emplace(Token{ c->clientId(), token });
}
}
return tokens;
}
bool MqttClient::waitForCompletion(std::chrono::milliseconds waitFor) const
{
return this->waitForCompletion(waitFor, std::set<Token>{});
}
bool MqttClient::waitForCompletion(std::chrono::milliseconds waitFor, const Token& token) const
{
if (-1 == token.token()) {
return false;
}
return this->waitForCompletion(waitFor, std::set<Token>{ token });
}
bool MqttClient::waitForCompletion(std::chrono::milliseconds waitFor, const std::set<Token>& tokens) const
{
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
std::vector<IMqttClientImpl*> clients{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (m_principalClient) {
clients.push_back(m_principalClient.get());
}
for (const auto& c : m_additionalClients) {
clients.push_back(c.get());
}
}
return waitForCompletionInternal(clients, waitFor, tokens);
}
boost::optional<bool> MqttClient::commandResult(const Token& token) const
{
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
std::vector<IMqttClientImpl*> clients{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (m_principalClient) {
clients.push_back(m_principalClient.get());
}
for (const auto& c : m_additionalClients) {
clients.push_back(c.get());
}
}
for (auto* c : clients) {
if (token.clientId() == c->clientId()) {
return c->operationResult(token.token());
}
}
return boost::optional<bool>{};
}
std::string MqttClient::endpoint() const
{
auto ep = UriParser::parse(m_endpoint);
if (ep.find("user") != ep.end()) {
ep["user"].clear();
}
if (ep.find("password") != ep.end()) {
ep["password"].clear();
}
return UriParser::toString(ep);
}
void MqttClient::connectionStatusChanged(const std::string& id, ConnectionStatus cs)
{
|
199d7075
Peter M. Groen
implement logging...
|
383
|
LogDebug("[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - connection status of wrapped client " + id + " changed to " + std::to_string( static_cast<int>(cs) ) ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
IMqttClientImpl* principalClient{ nullptr };
std::vector<IMqttClientImpl*> clients{};
std::vector<ConnectionStatus> connectionStates{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (!m_principalClient) {
return;
}
if (m_principalClient) {
principalClient = m_principalClient.get();
clients.push_back(principalClient);
connectionStates.push_back(m_principalClient->connectionStatus());
}
for (const auto& c : m_additionalClients) {
clients.push_back(c.get());
connectionStates.push_back(c->connectionStatus());
}
}
auto newState = determineState(connectionStates);
bool resubscribe = (StateEnum::ConnectionFailure == m_serverState.state() && StateEnum::Good == newState);
if (resubscribe) {
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
m_activeTokens.clear();
}
for (auto* cl : clients) {
try {
cl->resubscribe();
}
catch (const std::exception& e) {
|
199d7075
Peter M. Groen
implement logging...
|
414
|
LogError("[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - resubscribe on wrapped client " + cl->clientId() + " in context of connection status change in wrapped client : " + id + " => FAILED : " + e.what() ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
}
}
m_activeTokensCV.notify_all();
}
// The server state change and a possible resubscription are done in the context of the MqttClient worker thread
// The wrapper is free to pick up new work such as the acknowledment of the just recreated subscriptions.
this->pushEvent([this, resubscribe, clients, principalClient, newState]() {
if (resubscribe) {
// Just wait for the subscription commands to complete. We do not use waitForCompletionInternal because that call will always timeout when there are active tokens.
// Active tokens are removed typically by work done on the worker thread. The wait action is also performed on the worker thread.
auto waitFor = std::chrono::milliseconds(1000);
if (!waitForCompletionInternalClients(clients, waitFor, std::set<Token>{})) {
if (std::accumulate(clients.begin(), clients.end(), false, [](bool hasPending, IMqttClientImpl* client) { return hasPending || client->hasPendingSubscriptions(); })) {
|
199d7075
Peter M. Groen
implement logging...
|
429
|
LogWarning("[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - subscriptions are not recovered within timeout." ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
430
431
432
433
434
435
436
|
}
}
if (principalClient) {
try {
principalClient->publishPending();
}
catch (const std::exception& e) {
|
199d7075
Peter M. Groen
implement logging...
|
437
|
LogError( "[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - publishPending on wrapped client " + principalClient->clientId() + " => FAILED " + e.what() ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
|
}
}
}
m_serverState.emitStateChanged(newState);
});
}
void MqttClient::deliveryComplete(const std::string& _clientId, std::int32_t token)
{
if (!m_deliveryCompleteCallback) {
return;
}
Token t(_clientId, token);
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
if (!m_activeTokens.insert(t).second) {
// This should not happen. This means that some callback on the wrapper never came.
|
199d7075
Peter M. Groen
implement logging...
|
456
|
LogDebug("[MqttClient::deliveryComplete]", std::string( m_clientId + " - deliveryComplete, token is already active" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
}
}
this->pushEvent([this, t]() {
OSDEV_COMPONENTS_SCOPEGUARD(m_activeTokens, [this, &t]() {
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
m_activeTokens.erase(t);
}
m_activeTokensCV.notify_all();
});
m_deliveryCompleteCallback(t);
});
}
bool MqttClient::waitForCompletionInternal(const std::vector<IMqttClientImpl*>& clients, std::chrono::milliseconds waitFor, const std::set<Token>& tokens) const
{
if (!waitForCompletionInternalClients(clients, waitFor, tokens)) {
return false;
}
std::unique_lock<std::mutex> lck(m_internalMutex);
return m_activeTokensCV.wait_for(lck, waitFor, [this, &tokens]() {
if (tokens.empty()) { // wait for all operations to end
return m_activeTokens.empty();
}
else if (tokens.size() == 1) {
return m_activeTokens.find(*tokens.cbegin()) == m_activeTokens.end();
}
std::vector<Token> intersect{};
std::set_intersection(m_activeTokens.begin(), m_activeTokens.end(), tokens.begin(), tokens.end(), std::back_inserter(intersect));
return intersect.empty(); });
}
bool MqttClient::waitForCompletionInternalClients(const std::vector<IMqttClientImpl*>& clients, std::chrono::milliseconds& waitFor, const std::set<Token>& tokens) const
{
for (auto* c : clients) {
std::set<std::int32_t> clientTokens{};
for (const auto& token : tokens) {
if (c->clientId() == token.clientId()) {
clientTokens.insert(token.token());
}
}
if (tokens.empty() || !clientTokens.empty()) {
waitFor -= c->waitForCompletion(waitFor, clientTokens);
}
}
if (waitFor > std::chrono::milliseconds(0)) {
return true;
}
waitFor = std::chrono::milliseconds(0);
return false;
}
StateEnum MqttClient::determineState(const std::vector<ConnectionStatus>& connectionStates)
{
std::size_t unknownStates = 0;
std::size_t goodStates = 0;
std::size_t reconnectStates = 0;
for (auto cst : connectionStates) {
switch (cst) {
case ConnectionStatus::Disconnected:
++unknownStates;
break;
case ConnectionStatus::DisconnectInProgress: // count as unknown because we don't want resubscribes to trigger when a wrapper is in this state.
++unknownStates;
break;
case ConnectionStatus::ConnectInProgress: // count as unknown because the wrapper is not connected yet.
++unknownStates;
break;
case ConnectionStatus::ReconnectInProgress:
++reconnectStates;
break;
case ConnectionStatus::Connected:
++goodStates;
break;
}
}
auto newState = StateEnum::Unknown;
if (reconnectStates > 0) {
newState = StateEnum::ConnectionFailure;
}
else if (unknownStates > 0) {
newState = StateEnum::Unknown;
}
else if (connectionStates.size() == goodStates) {
newState = StateEnum::Good;
}
return newState;
}
void MqttClient::pushEvent(std::function<void()> ev)
{
m_eventQueue.push(ev);
}
void MqttClient::eventHandler()
{
|
199d7075
Peter M. Groen
implement logging...
|
553
554
555
|
LogInfo("[MqttClient::eventHandler]", std::string( m_clientId + " - starting event handler." ) );
for (;;)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
556
557
558
559
560
561
562
563
564
565
|
std::vector<std::function<void()>> events;
if (!m_eventQueue.pop(events))
{
break;
}
for (const auto& ev : events)
{
ev();
}
}
|
199d7075
Peter M. Groen
implement logging...
|
566
|
LogInfo("[MqttClient::eventHandler]", std::string( m_clientId + " - leaving event handler." ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
567
|
}
|