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"
|
51becbde
Peter M. Groen
Committed the ent...
|
24
25
26
27
28
|
// osdev::components::mqtt
#include "clientpaho.h"
#include "mqttutil.h"
#include "mqttidgenerator.h"
#include "mqtttypeconverter.h"
|
51becbde
Peter M. Groen
Committed the ent...
|
29
30
31
32
33
34
|
#include "lockguard.h"
#include "uriparser.h"
// std
#include <numeric>
#include <iostream>
|
199d7075
Peter M. Groen
implement logging...
|
35
|
#include <string>
|
51becbde
Peter M. Groen
Committed the ent...
|
36
37
|
using namespace osdev::components::mqtt;
|
199d7075
Peter M. Groen
implement logging...
|
38
|
using namespace osdev::components::log;
|
51becbde
Peter M. Groen
Committed the ent...
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
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()
|
d557d523
Peter M. Groen
Fix deferred subs...
|
57
|
, m_subscriptionMutex()
|
51becbde
Peter M. Groen
Committed the ent...
|
58
59
60
61
62
63
64
65
66
|
, 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...
|
67
|
, m_workerThread( std::thread( &MqttClient::eventHandler, this ) )
|
d557d523
Peter M. Groen
Fix deferred subs...
|
68
|
, m_deferredSubscriptions()
|
51becbde
Peter M. Groen
Committed the ent...
|
69
|
{
|
199d7075
Peter M. Groen
implement logging...
|
70
71
|
Log::init( "mqtt-library" );
LogInfo( "MQTT Client started", "[MqttClient::MqttClient]");
|
51becbde
Peter M. Groen
Committed the ent...
|
72
73
74
75
|
}
MqttClient::~MqttClient()
{
|
51becbde
Peter M. Groen
Committed the ent...
|
76
|
{
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
77
|
// LogDebug( "MqttClient", std::string( m_clientId + " - disconnect" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
78
79
80
81
|
this->disconnect();
decltype(m_principalClient) principalClient{};
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
|
199d7075
Peter M. Groen
implement logging...
|
82
|
LogDebug( "MqttClient", std::string( m_clientId + " - cleanup principal client" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
83
84
|
m_principalClient.swap(principalClient);
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
85
|
|
199d7075
Peter M. Groen
implement logging...
|
86
|
LogDebug( "MqttClient", std::string( m_clientId + " - dtor stop queue" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
87
88
89
90
|
m_eventQueue.stop();
if (m_workerThread.joinable()) {
m_workerThread.join();
}
|
199d7075
Peter M. Groen
implement logging...
|
91
|
LogDebug( "MqttClient", std::string( m_clientId + " - dtor ready" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
}
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();
}
|
1a77e1b5
Steven
added logging str...
|
127
|
void MqttClient::connect(const std::string& host, int port, const Credentials &credentials, const mqtt_LWT &lwt, bool blocking, const LogSettings &log_settings )
|
51becbde
Peter M. Groen
Committed the ent...
|
128
|
{
|
51becbde
Peter M. Groen
Committed the ent...
|
129
130
131
132
133
134
135
|
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 ...
|
136
|
|
1a77e1b5
Steven
added logging str...
|
137
|
this->connect( UriParser::toString( _endpoint ), lwt, blocking, log_settings );
|
51becbde
Peter M. Groen
Committed the ent...
|
138
139
|
}
|
1a77e1b5
Steven
added logging str...
|
140
|
void MqttClient::connect( const std::string &_endpoint, const mqtt_LWT &lwt, bool blocking, const LogSettings &log_settings )
|
51becbde
Peter M. Groen
Committed the ent...
|
141
|
{
|
1a77e1b5
Steven
added logging str...
|
142
143
144
|
Log::setLogLevel( log_settings.level );
Log::setMask( log_settings.mask );
|
199d7075
Peter M. Groen
implement logging...
|
145
|
LogInfo( "MqttClient", std::string( m_clientId + " - Request connect" ) );
|
84738f56
Peter M. Groen
Setting up the lo...
|
146
|
|
51becbde
Peter M. Groen
Committed the ent...
|
147
148
149
150
151
152
153
154
155
156
157
158
|
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...
|
159
|
LogError( "MqttClient", std::string( m_clientId + " - Cannot connect to different endpoint. Disconnect first." ) );
|
84738f56
Peter M. Groen
Setting up the lo...
|
160
|
return;
|
51becbde
Peter M. Groen
Committed the ent...
|
161
162
163
|
}
}
m_endpoint = _endpoint;
|
31eece9b
Steven
added LWT ( last ...
|
164
165
|
if (!m_principalClient)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
166
167
168
169
170
171
172
173
174
|
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 ...
|
175
|
|
9421324b
Peter M. Groen
First fix on conn...
|
176
|
client->connect( blocking, lwt );
|
51becbde
Peter M. Groen
Committed the ent...
|
177
178
179
180
|
}
void MqttClient::disconnect()
{
|
199d7075
Peter M. Groen
implement logging...
|
181
|
LogInfo( "MqttClient", std::string( m_clientId + " - Request disconnect" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
182
183
184
185
186
187
|
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...
|
188
189
|
if (!m_principalClient || m_principalClient->connectionStatus() == ConnectionStatus::Disconnected || m_principalClient->connectionStatus() == ConnectionStatus::DisconnectInProgress)
{
|
199d7075
Peter M. Groen
implement logging...
|
190
|
LogDebug( "MqttClient", std::string( m_clientId + " - Principal client not connected" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
191
192
|
return;
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
193
|
m_additionalClients.swap( additionalClients );
|
51becbde
Peter M. Groen
Committed the ent...
|
194
|
|
84738f56
Peter M. Groen
Setting up the lo...
|
195
196
197
|
for (const auto& c : additionalClients)
{
clients.push_back( c.get() );
|
51becbde
Peter M. Groen
Committed the ent...
|
198
|
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
199
|
clients.push_back( m_principalClient.get() );
|
51becbde
Peter M. Groen
Committed the ent...
|
200
201
|
}
|
84738f56
Peter M. Groen
Setting up the lo...
|
202
|
|
199d7075
Peter M. Groen
implement logging...
|
203
|
LogDebug( "MqttClient", std::string( m_clientId + " - Unsubscribe and disconnect clients" ) );
|
84738f56
Peter M. Groen
Setting up the lo...
|
204
205
|
for ( auto& cl : clients )
{
|
51becbde
Peter M. Groen
Committed the ent...
|
206
207
208
209
210
211
212
213
214
215
216
217
|
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)
{
|
60ac1cde
Peter M. Groen
[Fix] Bugfix in h...
|
218
219
220
|
if (hasWildcard(message.topic()))
{
LogDebug("[MqttClient::publish]","Topic has wildcard : " + message.topic());
|
51becbde
Peter M. Groen
Committed the ent...
|
221
222
|
return Token(m_clientId, -1);
}
|
60ac1cde
Peter M. Groen
[Fix] Bugfix in h...
|
223
224
225
226
227
228
|
else if(!isValidTopic(message.topic()))
{
LogDebug("[MqttClient::publish]","Topic is invalid : " + message.topic());
return Token(m_clientId, -1);
}
|
51becbde
Peter M. Groen
Committed the ent...
|
229
230
231
232
233
234
235
236
|
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...
|
237
|
LogInfo( "[MqttClient::publish]", std::string( "Principal client not initialized") );
|
51becbde
Peter M. Groen
Committed the ent...
|
238
239
240
241
242
243
|
}
if( m_principalClient->connectionStatus() == ConnectionStatus::Disconnected )
{
std::cout << "Unable to publish, not connected.." << std::endl;
}
|
199d7075
Peter M. Groen
implement logging...
|
244
245
|
LogError("MqttClient", std::string( m_clientId + " - Unable to publish, not connected" ) );
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
246
|
return Token(m_clientId, -1);
|
51becbde
Peter M. Groen
Committed the ent...
|
247
248
249
|
}
client = m_principalClient.get();
}
|
60ac1cde
Peter M. Groen
[Fix] Bugfix in h...
|
250
251
252
253
254
255
256
|
if(!client)
{
LogDebug("[MqttClient::publish]", "Invalid pointer to IMqttClient retrieved.");
return Token(m_clientId, -1);
}
|
51becbde
Peter M. Groen
Committed the ent...
|
257
258
259
260
261
|
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...
|
262
|
LogDebug( "[MqttClient::subscribe]", std::string( m_clientId + " - Subscribe to topic " + topic ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
263
264
265
266
267
|
// OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
bool clientFound = false;
IMqttClientImpl* client(nullptr);
{
// OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
|
d557d523
Peter M. Groen
Fix deferred subs...
|
268
|
if (!m_principalClient || m_principalClient->connectionStatus() != ConnectionStatus::Connected)
|
51becbde
Peter M. Groen
Committed the ent...
|
269
|
{
|
199d7075
Peter M. Groen
implement logging...
|
270
|
LogError("MqttClient", std::string( m_clientId + " - Unable to subscribe, not connected" ) );
|
d557d523
Peter M. Groen
Fix deferred subs...
|
271
272
273
|
// Store the subscription in the buffer for later processing.
{
OSDEV_COMPONENTS_LOCKGUARD(m_subscriptionMutex);
|
ef28d9ce
Peter M. Groen
Fixed pass by ref...
|
274
|
m_deferredSubscriptions.emplace_back( topic, qos, cb );
|
d557d523
Peter M. Groen
Fix deferred subs...
|
275
276
|
}
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
277
|
return Token(m_clientId, -1);
|
51becbde
Peter M. Groen
Committed the ent...
|
278
|
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
279
|
|
9421324b
Peter M. Groen
First fix on conn...
|
280
281
|
if (!m_principalClient->isOverlapping(topic))
{
|
51becbde
Peter M. Groen
Committed the ent...
|
282
283
284
|
client = m_principalClient.get();
clientFound = true;
}
|
9421324b
Peter M. Groen
First fix on conn...
|
285
286
287
288
|
else
{
for (const auto& c : m_additionalClients)
{
|
ef28d9ce
Peter M. Groen
Fixed pass by ref...
|
289
290
|
if (!c->isOverlapping(topic))
{
|
51becbde
Peter M. Groen
Committed the ent...
|
291
292
293
294
295
296
|
client = c.get();
clientFound = true;
break;
}
}
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
297
|
|
9421324b
Peter M. Groen
First fix on conn...
|
298
299
|
if (!clientFound)
{
|
199d7075
Peter M. Groen
implement logging...
|
300
|
LogDebug("[MqttClient::subscribe]", std::string( m_clientId + " - Creating new ClientPaho instance for subscription on topic " + topic ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
301
302
303
304
305
306
307
308
309
|
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();
}
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
310
|
|
9421324b
Peter M. Groen
First fix on conn...
|
311
312
|
if (!clientFound)
{
|
d557d523
Peter M. Groen
Fix deferred subs...
|
313
|
client->connect( true );
|
51becbde
Peter M. Groen
Committed the ent...
|
314
315
316
317
318
319
|
}
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...
|
320
|
LogDebug("[MqttClient::unsubscribe]", std::string( m_clientId + " - Unsubscribe from topic " + topic ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
321
322
323
324
|
OSDEV_COMPONENTS_LOCKGUARD(m_interfaceMutex);
std::vector<IMqttClientImpl*> clients{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
|
ef28d9ce
Peter M. Groen
Fixed pass by ref...
|
325
326
|
if (!m_principalClient || m_principalClient->connectionStatus() == ConnectionStatus::Disconnected)
{
|
199d7075
Peter M. Groen
implement logging...
|
327
|
LogError("[MqttClient::unsubscribe]", std::string( m_clientId + " - Unable to unsubscribe, not connected" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
328
|
// Throw (MqttException, "Not connected");
|
8bf44a9d
Peter M. Groen
Sensible return v...
|
329
|
return std::set<Token>();
|
51becbde
Peter M. Groen
Committed the ent...
|
330
|
}
|
2569446f
Peter M. Groen
Added extra subsc...
|
331
|
|
51becbde
Peter M. Groen
Committed the ent...
|
332
|
clients.push_back(m_principalClient.get());
|
ef28d9ce
Peter M. Groen
Fixed pass by ref...
|
333
334
|
for (const auto& c : m_additionalClients)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
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...
|
412
|
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...
|
413
414
415
416
417
|
IMqttClientImpl* principalClient{ nullptr };
std::vector<IMqttClientImpl*> clients{};
std::vector<ConnectionStatus> connectionStates{};
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
|
d557d523
Peter M. Groen
Fix deferred subs...
|
418
419
420
|
if (m_principalClient)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
421
422
423
424
|
principalClient = m_principalClient.get();
clients.push_back(principalClient);
connectionStates.push_back(m_principalClient->connectionStatus());
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
425
426
427
|
for (const auto& c : m_additionalClients)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
428
429
430
431
|
clients.push_back(c.get());
connectionStates.push_back(c->connectionStatus());
}
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
432
|
|
51becbde
Peter M. Groen
Committed the ent...
|
433
|
auto newState = determineState(connectionStates);
|
3fef3f83
Peter M. Groen
Active Resubscrib...
|
434
435
436
437
|
LogDebug( "[MqttClient::connectionStatusChanged]", std::string("Old state : " + std::to_string(static_cast<int>(m_serverState.state())));
LogDebug( "[MqttClient::connectionStatusChanged]", std::string("New state : " + std::to_string(static_cast<int>(newState)));
bool resubscribe = (StateEnum::ConnectionFailure == m_serverState.state() && StateEnum::Good == newState);
// First activate pending subscriptions
|
11fe0b09
Peter M. Groen
Rework for subscr...
|
438
|
{
|
3fef3f83
Peter M. Groen
Active Resubscrib...
|
439
440
441
|
OSDEV_COMPONENTS_LOCKGUARD(m_subscriptionMutex);
LogDebug( "[MqttClient::connectionsStatusChanged]", std::string( m_clientId + " - Number of pending subscriptions : " + std::to_string(m_deferredSubscriptions.size() ) ) );
while( m_deferredSubscriptions.size() > 0 )
|
8ae7f1fe
Peter M. Groen
Fix deferred subs...
|
442
|
{
|
3fef3f83
Peter M. Groen
Active Resubscrib...
|
443
444
445
|
auto subscription = m_deferredSubscriptions.at( 0 );
this->subscribe( subscription.getTopic(), subscription.getQoS(), subscription.getCallBack() );
m_deferredSubscriptions.erase( m_deferredSubscriptions.begin() );
|
8ae7f1fe
Peter M. Groen
Fix deferred subs...
|
446
|
}
|
3fef3f83
Peter M. Groen
Active Resubscrib...
|
447
|
}
|
8ae7f1fe
Peter M. Groen
Fix deferred subs...
|
448
|
|
3fef3f83
Peter M. Groen
Active Resubscrib...
|
449
450
451
452
453
454
|
LogDebug( "[MqttClient::connectionStatusChanged]",
std::string( m_clientId + " - Resubscribing..." ) );
{
OSDEV_COMPONENTS_LOCKGUARD(m_internalMutex);
m_activeTokens.clear();
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
455
|
|
3fef3f83
Peter M. Groen
Active Resubscrib...
|
456
457
|
if (resubscribe)
{
|
d557d523
Peter M. Groen
Fix deferred subs...
|
458
459
460
461
462
|
for (auto* cl : clients)
{
try
{
LogDebug( "[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - Client " + cl->clientId() + " has " + std::string( cl->hasPendingSubscriptions() ? "" : "no" ) + " pending subscriptions" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
463
464
|
cl->resubscribe();
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
465
466
|
catch (const std::exception& e)
{
|
199d7075
Peter M. Groen
implement logging...
|
467
|
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...
|
468
469
470
471
472
473
474
475
|
}
}
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]() {
|
d557d523
Peter M. Groen
Fix deferred subs...
|
476
477
|
if (resubscribe)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
478
479
480
|
// 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);
|
d557d523
Peter M. Groen
Fix deferred subs...
|
481
482
483
484
485
486
487
488
489
490
|
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...
|
491
|
LogWarning("[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - subscriptions are not recovered within timeout." ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
492
493
|
}
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
494
495
496
497
|
if (principalClient)
{
try
{
|
51becbde
Peter M. Groen
Committed the ent...
|
498
499
|
principalClient->publishPending();
}
|
d557d523
Peter M. Groen
Fix deferred subs...
|
500
501
|
catch (const std::exception& e)
{
|
199d7075
Peter M. Groen
implement logging...
|
502
|
LogError( "[MqttClient::connectionStatusChanged]", std::string( m_clientId + " - publishPending on wrapped client " + principalClient->clientId() + " => FAILED " + e.what() ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
}
}
}
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...
|
521
|
LogDebug("[MqttClient::deliveryComplete]", std::string( m_clientId + " - deliveryComplete, token is already active" ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
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
|
}
}
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...
|
618
619
620
|
LogInfo("[MqttClient::eventHandler]", std::string( m_clientId + " - starting event handler." ) );
for (;;)
{
|
51becbde
Peter M. Groen
Committed the ent...
|
621
622
623
624
625
626
627
628
629
630
|
std::vector<std::function<void()>> events;
if (!m_eventQueue.pop(events))
{
break;
}
for (const auto& ev : events)
{
ev();
}
}
|
199d7075
Peter M. Groen
implement logging...
|
631
|
LogInfo("[MqttClient::eventHandler]", std::string( m_clientId + " - leaving event handler." ) );
|
51becbde
Peter M. Groen
Committed the ent...
|
632
|
}
|
7771e50f
Steven
moved log.h to in...
|
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
|
void MqttClient::setMask(log::LogMask logMask )
{
Log::setMask( logMask );
}
void MqttClient::setLogLevel(log::LogLevel logLevel)
{
Log::setLogLevel( logLevel );
}
void MqttClient::setContext(std::string context)
{
Log::setContext( context );
}
|