Newer
Older
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
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
#include "VehicleLinkManager.h"
#include "Vehicle.h"
#include "QGCLoggingCategory.h"
#include "LinkManager.h"
#include "QGCApplication.h"
QGC_LOGGING_CATEGORY(VehicleLinkManagerLog, "VehicleLinkManagerLog")
VehicleLinkManager::VehicleLinkManager(Vehicle* vehicle)
: QObject (vehicle)
, _vehicle (vehicle)
, _linkMgr (qgcApp()->toolbox()->linkManager())
{
connect(this, &VehicleLinkManager::linkNamesChanged, this, &VehicleLinkManager::linkStatusesChanged);
connect(&_commLostCheckTimer, &QTimer::timeout, this, &VehicleLinkManager::_commLostCheck);
_commLostCheckTimer.setSingleShot(false);
_commLostCheckTimer.setInterval(_commLostCheckTimeoutMSecs);
}
void VehicleLinkManager::mavlinkMessageReceived(LinkInterface* link, mavlink_message_t message)
{
// Radio status messages come from Sik Radios directly. It doesn't indicate there is any life on the other end.
if (message.msgid != MAVLINK_MSG_ID_RADIO_STATUS) {
int linkIndex = _containsLinkIndex(link);
if (linkIndex == -1) {
_addLink(link);
} else {
LinkInfo_t& linkInfo = _rgLinkInfo[linkIndex];
linkInfo.heartbeatElapsedTimer.restart();
if (_rgLinkInfo[linkIndex].commLost) {
_commRegainedOnLink(link);
}
}
}
}
void VehicleLinkManager::_commRegainedOnLink(LinkInterface* link)
{
QString commRegainedMessage;
QString primarySwitchMessage;
int linkIndex = _containsLinkIndex(link);
if (linkIndex == -1) {
return;
}
_rgLinkInfo[linkIndex].commLost = false;
// Notify the user of communication regained
bool isPrimaryLink = link == _primaryLink;
if (_rgLinkInfo.count() > 1) {
commRegainedMessage = tr("%1Communication regained on %2 link").arg(_vehicle->_vehicleIdSpeech()).arg(isPrimaryLink ? tr("primary") : tr("secondary"));
} else {
commRegainedMessage = tr("%1Communication regained").arg(_vehicle->_vehicleIdSpeech());
}
// Try to switch to another link
if (_updatePrimaryLink()) {
QString primarySwitchMessage = tr("%1Switching communication to new primary link").arg(_vehicle->_vehicleIdSpeech());
}
if (!commRegainedMessage.isEmpty()) {
_vehicle->_say(commRegainedMessage);
}
if (!primarySwitchMessage.isEmpty()) {
_vehicle->_say(primarySwitchMessage);
}
if (!commRegainedMessage.isEmpty() || !primarySwitchMessage.isEmpty()) {
bool showBothMessages = !commRegainedMessage.isEmpty() && !primarySwitchMessage.isEmpty();
qgcApp()->showAppMessage(QStringLiteral("%1%2%3").arg(commRegainedMessage).arg(showBothMessages ? " " : "").arg(primarySwitchMessage));
}
emit linkStatusesChanged();
// Check recovery from total communication loss
if (_communicationLost) {
bool noCommunicationLoss = true;
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
if (linkInfo.commLost) {
noCommunicationLoss = false;
break;
}
}
if (noCommunicationLoss) {
_communicationLost = false;
emit communicationLostChanged(false);
}
}
}
void VehicleLinkManager::_commLostCheck(void)
{
QString switchingPrimaryLinkMessage;
if (!_communicationLostEnabled) {
return;
}
bool linkStatusChange = false;
for (LinkInfo_t& linkInfo: _rgLinkInfo) {
if (!linkInfo.commLost && !linkInfo.link->linkConfiguration()->isHighLatency() && linkInfo.heartbeatElapsedTimer.elapsed() > _heartbeatMaxElpasedMSecs) {
linkInfo.commLost = true;
linkStatusChange = true;
// Notify the user of individual link communication loss
bool isPrimaryLink = linkInfo.link.get() == _primaryLink;
if (_rgLinkInfo.count() > 1) {
QString msg = tr("%1Communication lost on %2 link.").arg(_vehicle->_vehicleIdSpeech()).arg(isPrimaryLink ? tr("primary") : tr("secondary"));
_vehicle->_say(msg);
qgcApp()->showAppMessage(msg);
}
}
}
if (linkStatusChange) {
emit linkStatusesChanged();
}
// Switch to better primary link if needed
if (_updatePrimaryLink()) {
QString msg = tr("%1Switching communication to secondary link.").arg(_vehicle->_vehicleIdSpeech());
_vehicle->_say(msg);
qgcApp()->showAppMessage(msg);
}
// Check for total communication loss
if (!_communicationLost) {
bool totalCommunicationLoss = true;
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
if (!linkInfo.commLost) {
totalCommunicationLoss = false;
break;
}
}
if (totalCommunicationLoss) {
if (_autoDisconnect) {
// There is only one link to the vehicle and we want to auto disconnect from it
closeVehicle();
return;
}
_vehicle->_say(tr("%1Communication lost").arg(_vehicle->_vehicleIdSpeech()));
_communicationLost = true;
emit communicationLostChanged(true);
}
}
}
int VehicleLinkManager::_containsLinkIndex(LinkInterface* link)
{
for (int i=0; i<_rgLinkInfo.count(); i++) {
if (_rgLinkInfo[i].link.get() == link) {
return i;
}
}
return -1;
}
void VehicleLinkManager::_addLink(LinkInterface* link)
{
if (_containsLinkIndex(link) != -1) {
qCWarning(VehicleLinkManagerLog) << "_addLink call with link which is already in the list";
return;
} else {
qCDebug(VehicleLinkManagerLog) << "_addLink:" << link->getName() << QString("%1").arg((qulonglong)link, 0, 16);
link->addVehicleReference();
LinkInfo_t linkInfo;
linkInfo.link = _linkMgr->sharedLinkInterfacePointerForLink(link);
if (!link->linkConfiguration()->isHighLatency()) {
linkInfo.heartbeatElapsedTimer.start();
}
_rgLinkInfo.append(linkInfo);
_updatePrimaryLink();
connect(link, &LinkInterface::disconnected, this, &VehicleLinkManager::_linkDisconnected);
emit linkNamesChanged();
if (_rgLinkInfo.count() == 1) {
_commLostCheckTimer.start();
}
}
}
void VehicleLinkManager::_removeLink(LinkInterface* link)
{
int linkIndex = _containsLinkIndex(link);
if (linkIndex == -1) {
qCWarning(VehicleLinkManagerLog) << "_removeLink call with link which is already in the list";
return;
} else {
qCDebug(VehicleLinkManagerLog) << "_removeLink:" << QString("%1").arg((qulonglong)link, 0, 16);
if (link == _primaryLink) {
_primaryLink = nullptr;
emit primaryLinkChanged();
}
disconnect(link, &LinkInterface::disconnected, this, &VehicleLinkManager::_linkDisconnected);
link->removeVehicleReference();
emit linkNamesChanged();
_rgLinkInfo.removeAt(linkIndex); // Remove the link last since it may cause the link itself to be deleted
if (_rgLinkInfo.count() == 0) {
_commLostCheckTimer.stop();
}
}
}
void VehicleLinkManager::_linkDisconnected(void)
{
qCDebug(VehicleLog) << "_linkDisconnected linkCount" << _rgLinkInfo.count();
LinkInterface* link = qobject_cast<LinkInterface*>(sender());
if (link) {
_removeLink(link);
_updatePrimaryLink();
if (_rgLinkInfo.count() == 0) {
qCDebug(VehicleLog) << "All links removed. Closing down Vehicle.";
emit allLinksRemoved(_vehicle);
}
}
}
LinkInterface* VehicleLinkManager::_bestActivePrimaryLink(void)
{
#ifndef NO_SERIAL_LINK
// Best choice is a USB connection
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
if (!linkInfo.commLost) {
SharedLinkInterfacePtr link = linkInfo.link;
SerialLink* serialLink = qobject_cast<SerialLink*>(link.get());
if (serialLink) {
SharedLinkConfigurationPtr config = serialLink->linkConfiguration();
if (config) {
SerialConfiguration* serialConfig = qobject_cast<SerialConfiguration*>(config.get());
if (serialConfig && serialConfig->usbDirect()) {
return link.get();
}
}
}
}
}
#endif
// Next best is normal latency link
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
if (!linkInfo.commLost) {
SharedLinkInterfacePtr link = linkInfo.link;
SharedLinkConfigurationPtr config = link->linkConfiguration();
if (config && !config->isHighLatency()) {
return link.get();
}
}
}
// Last possible choice is a high latency link
if (_primaryLink && _primaryLink->linkConfiguration()->isHighLatency()) {
// Best choice continues to be the current high latency link
return _primaryLink;
} else {
// Pick any high latency link if one exists
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
if (!linkInfo.commLost) {
SharedLinkInterfacePtr link = linkInfo.link;
SharedLinkConfigurationPtr config = link->linkConfiguration();
if (config && config->isHighLatency()) {
return link.get();
}
}
}
}
return nullptr;
}
bool VehicleLinkManager::_updatePrimaryLink(void)
{
int linkIndex = _containsLinkIndex(_primaryLink);
if (linkIndex != -1 && !_rgLinkInfo[linkIndex].commLost && !_rgLinkInfo[linkIndex].link->linkConfiguration()->isHighLatency()) {
// Current priority link is still valid
return false;
}
LinkInterface* bestActivePrimaryLink = _bestActivePrimaryLink();
if (linkIndex != -1 && !bestActivePrimaryLink) {
// Nothing better available, leave things set to current primary link
return false;
} else {
if (bestActivePrimaryLink != _primaryLink) {
if (_primaryLink && _primaryLink->linkConfiguration()->isHighLatency()) {
_vehicle->sendMavCommand(MAV_COMP_ID_AUTOPILOT1,
MAV_CMD_CONTROL_HIGH_LATENCY,
true,
0); // Stop transmission on this link
}
_primaryLink = bestActivePrimaryLink;
emit primaryLinkChanged();
if (bestActivePrimaryLink && bestActivePrimaryLink->linkConfiguration()->isHighLatency()) {
_vehicle->sendMavCommand(MAV_COMP_ID_AUTOPILOT1,
MAV_CMD_CONTROL_HIGH_LATENCY,
true,
1); // Start transmission on this link
}
return true;
} else {
return false;
}
}
}
void VehicleLinkManager::closeVehicle(void)
{
// Vehicle is no longer communicating with us. Remove all link references
QList<LinkInfo_t> rgLinkInfoCopy = _rgLinkInfo;
for (const LinkInfo_t& linkInfo: rgLinkInfoCopy) {
_removeLink(linkInfo.link.get());
}
_rgLinkInfo.clear();
emit allLinksRemoved(_vehicle);
}
void VehicleLinkManager::setCommunicationLostEnabled(bool communicationLostEnabled)
{
if (_communicationLostEnabled != communicationLostEnabled) {
_communicationLostEnabled = communicationLostEnabled;
emit communicationLostEnabledChanged(communicationLostEnabled);
}
}
bool VehicleLinkManager::containsLink(LinkInterface* link)
{
return _containsLinkIndex(link) != -1;
}
QString VehicleLinkManager::primaryLinkName() const
{
if (_primaryLink) {
return _primaryLink->linkConfiguration()->name();
}
return QString();
}
void VehicleLinkManager::setPrimaryLinkByName(const QString& name)
{
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
if (linkInfo.link->linkConfiguration()->name() == name) {
_primaryLink = linkInfo.link.get();
emit primaryLinkChanged();
}
}
}
QStringList VehicleLinkManager::linkNames(void) const
{
QStringList rgNames;
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
rgNames.append(linkInfo.link->linkConfiguration()->name());
}
return rgNames;
}
QStringList VehicleLinkManager::linkStatuses(void) const
{
QStringList rgStatuses;
for (const LinkInfo_t& linkInfo: _rgLinkInfo) {
rgStatuses.append(linkInfo.commLost ? tr("Comm Lost") : "");
}
return rgStatuses;
}