LinkManager.h 9.73 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9 10


11 12
/// @file
///     @author Lorenz Meier <mavteam@student.ethz.ch>
pixhawk's avatar
pixhawk committed
13

14
#pragma once
pixhawk's avatar
pixhawk committed
15 16

#include <QList>
17
#include <QMultiMap>
18
#include <QMutex>
19

20
#include "LinkConfiguration.h"
21
#include "LinkInterface.h"
Don Gagne's avatar
Don Gagne committed
22
#include "QGCLoggingCategory.h"
23
#include "QGCToolbox.h"
Don Gagne's avatar
Don Gagne committed
24
#include "MAVLinkProtocol.h"
Gus Grubba's avatar
Gus Grubba committed
25
#if !defined(__mobile__)
Don Gagne's avatar
Don Gagne committed
26
#include "LogReplayLink.h"
27
#include "UdpIODevice.h"
dogmaphobic's avatar
dogmaphobic committed
28
#endif
Don Gagne's avatar
Don Gagne committed
29
#include "QmlObjectListModel.h"
30

Gus Grubba's avatar
Gus Grubba committed
31
#ifndef NO_SERIAL_LINK
Don Gagne's avatar
Don Gagne committed
32
    #include "SerialLink.h"
dogmaphobic's avatar
dogmaphobic committed
33
#endif
34

Don Gagne's avatar
Don Gagne committed
35
Q_DECLARE_LOGGING_CATEGORY(LinkManagerLog)
Don Gagne's avatar
Don Gagne committed
36
Q_DECLARE_LOGGING_CATEGORY(LinkManagerVerboseLog)
Don Gagne's avatar
Don Gagne committed
37

38
class QGCApplication;
39 40
class UDPConfiguration;
class AutoConnectSettings;
41
class LogReplayLink;
42

43
/// @brief Manage communication links
44 45 46 47 48
///
/// The Link Manager organizes the physical Links. It can manage arbitrary
/// links and takes care of connecting them as well assigning the correct
/// protocol instance to transport the link data into the application.

49
class LinkManager : public QGCTool
50
{
pixhawk's avatar
pixhawk committed
51
    Q_OBJECT
52

53
    // Unit Test has access to private constructor/destructor
Don Gagne's avatar
Don Gagne committed
54
    friend class LinkManagerTest;
55

Don Gagne's avatar
Don Gagne committed
56
public:
57
    LinkManager(QGCApplication* app, QGCToolbox* toolbox);
58
    ~LinkManager();
59

60 61 62 63
    Q_PROPERTY(bool isBluetoothAvailable                READ isBluetoothAvailable                                               CONSTANT)
    Q_PROPERTY(QmlObjectListModel*  linkConfigurations  READ _qmlLinkConfigurations                                             NOTIFY linkConfigurationsChanged)
    Q_PROPERTY(QStringList          linkTypeStrings     READ linkTypeStrings                                                    CONSTANT)
    Q_PROPERTY(QStringList          serialBaudRates     READ serialBaudRates                                                    CONSTANT)
64 65 66
    Q_PROPERTY(QStringList          serialPortStrings   READ serialPortStrings                                                  NOTIFY commPortStringsChanged)
    Q_PROPERTY(QStringList          serialPorts         READ serialPorts                                                        NOTIFY commPortsChanged)

67
    /// Create/Edit Link Configuration
68 69 70 71 72 73
    Q_INVOKABLE LinkConfiguration*  createConfiguration         (int type, const QString& name);
    Q_INVOKABLE LinkConfiguration*  startConfigurationEditing   (LinkConfiguration* config);
    Q_INVOKABLE void                cancelConfigurationEditing  (LinkConfiguration* config) { delete config; }
    Q_INVOKABLE bool                endConfigurationEditing     (LinkConfiguration* config, LinkConfiguration* editedConfig);
    Q_INVOKABLE bool                endCreateConfiguration      (LinkConfiguration* config);
    Q_INVOKABLE void                removeConfiguration         (LinkConfiguration* config);
Don Gagne's avatar
Don Gagne committed
74 75 76

    // Property accessors

dogmaphobic's avatar
dogmaphobic committed
77
    bool isBluetoothAvailable       (void);
Don Gagne's avatar
Don Gagne committed
78

79 80 81 82 83
    QList<LinkInterface*> links                 (void);
    QStringList         linkTypeStrings         (void) const;
    QStringList         serialBaudRates         (void);
    QStringList         serialPortStrings       (void);
    QStringList         serialPorts             (void);
84 85 86 87 88 89 90 91 92 93

    /// Load list of link configurations from disk
    void loadLinkConfigurationList();

    /// Save list of link configurations from disk
    void saveLinkConfigurationList();

    /// Suspend automatic confguration updates (during link maintenance for instance)
    void suspendConfigurationUpdates(bool suspend);

94
    /// Sets the flag to suspend the all new connections
95 96
    ///     @param reason User visible reason to suspend connections
    void setConnectionsSuspended(QString reason);
97

98
    /// Sets the flag to allow new connections to be made
99
    void setConnectionsAllowed(void) { _connectionsSuspended = false; }
100

101
    /// Creates, connects (and adds) a link  based on the given configuration instance.
Don Gagne's avatar
Don Gagne committed
102
    /// Link takes ownership of config.
103
    LinkInterface* createConnectedLink(SharedLinkConfigurationPointer& config, bool isPX4Flow = false);
Don Gagne's avatar
Don Gagne committed
104 105 106

    // This should only be used by Qml code
    Q_INVOKABLE void createConnectedLink(LinkConfiguration* config);
107

108
    /// Creates, connects (and adds) a link  based on the given configuration name.
Don Gagne's avatar
Don Gagne committed
109
    LinkInterface* createConnectedLink(const QString& name);
110

111 112 113
    /// Returns pointer to the mavlink forwarding link, or nullptr if it does not exist
    SharedLinkInterfacePointer mavlinkForwardingLink();

Don Gagne's avatar
Don Gagne committed
114 115
    /// Disconnects all existing links
    void disconnectAll(void);
116

117 118
    /// Connect the specified link
    bool connectLink(LinkInterface* link);
119

Don Gagne's avatar
Don Gagne committed
120 121
    /// Disconnect the specified link
    Q_INVOKABLE void disconnectLink(LinkInterface* link);
122

123 124 125 126
    // The following APIs are public but should not be called in normal use. The are mainly exposed
    // here for unit test code.
    void _deleteLink(LinkInterface* link);
    void _addLink(LinkInterface* link);
127

Don Gagne's avatar
Don Gagne committed
128
    // Called to signal app shutdown. Disconnects all links while turning off auto-connect.
Don Gagne's avatar
Don Gagne committed
129
    Q_INVOKABLE void shutdown(void);
Don Gagne's avatar
Don Gagne committed
130

131 132
    Q_INVOKABLE LogReplayLink* startLogReplay(const QString& logFile);

Don Gagne's avatar
Don Gagne committed
133 134 135 136 137
#ifdef QT_DEBUG
    // Only used by unit test tp restart after a shutdown
    void restart(void) { setConnectionsAllowed(); }
#endif

138 139 140
    /// @return true: specified link is an autoconnect link
    bool isAutoconnectLink(LinkInterface* link);

141 142 143
    // Override from QGCTool
    virtual void setToolbox(QGCToolbox *toolbox);

144 145 146 147 148 149 150 151 152 153 154
    /// @return This mavlink channel is never assigned to a vehicle.
    uint8_t reservedMavlinkChannel(void) { return 0; }

    /// If you are going to hold a reference to a LinkInterface* in your object you must reference count it
    /// by using this method to get access to the shared pointer.
    SharedLinkInterfacePointer sharedLinkInterfacePointerForLink(LinkInterface* link);

    bool containsLink(LinkInterface* link);

    SharedLinkConfigurationPointer addConfiguration(LinkConfiguration* config);

155 156
    void startAutoConnectedLinks(void);

157 158 159 160 161 162 163
    /// Reserves a mavlink channel for use
    /// @return Mavlink channel index, 0 for no channels available
    int _reserveMavlinkChannel(void);

    /// Free the specified mavlink channel for re-use
    void _freeMavlinkChannel(int channel);

164
    static const char*  settingsGroup;
Don Gagne's avatar
Don Gagne committed
165

166
signals:
pixhawk's avatar
pixhawk committed
167
    void newLink(LinkInterface* link);
Don Gagne's avatar
Don Gagne committed
168 169

    // Link has been deleted. You may not necessarily get a linkInactive before the link is deleted.
170
    void linkDeleted(LinkInterface* link);
Don Gagne's avatar
Don Gagne committed
171 172

    // Link has been connected, but no Vehicle seen on link yet.
173
    void linkConnected(LinkInterface* link);
Don Gagne's avatar
Don Gagne committed
174 175

    // Link disconnected, all vehicles on link should be gone as well.
176
    void linkDisconnected(LinkInterface* link);
Don Gagne's avatar
Don Gagne committed
177 178 179 180 181 182 183

    // New vehicle has been seen on the link.
    void linkActive(LinkInterface* link, int vehicleId, int vehicleFirmwareType, int vehicleType);

    // No longer hearing from any vehicles on this link.
    void linkInactive(LinkInterface* link);

184
    void commPortStringsChanged();
185 186
    void commPortsChanged();
    void linkConfigurationsChanged();
187

188 189 190
private slots:
    void _linkConnected(void);
    void _linkDisconnected(void);
191
    void _linkConnectionRemoved(LinkInterface* link);
Gus Grubba's avatar
Gus Grubba committed
192
#ifndef NO_SERIAL_LINK
Don Gagne's avatar
Don Gagne committed
193
    void _activeLinkCheck(void);
Don Gagne's avatar
Don Gagne committed
194
#endif
195

196
private:
197
    QmlObjectListModel* _qmlLinkConfigurations  (void) { return &_qmlConfigurations; }
198
    bool _connectionsSuspendedMsg(void);
Don Gagne's avatar
Don Gagne committed
199
    void _updateAutoConnectLinks(void);
200 201
    void _updateSerialPorts();
    void _fixUnnamed(LinkConfiguration* config);
202
    void _removeConfiguration(LinkConfiguration* config);
Don Gagne's avatar
Don Gagne committed
203

Gus Grubba's avatar
Gus Grubba committed
204
#ifndef NO_SERIAL_LINK
Don Gagne's avatar
Don Gagne committed
205
    SerialConfiguration* _autoconnectConfigurationsContainsPort(const QString& portName);
dogmaphobic's avatar
dogmaphobic committed
206
#endif
207

208
    void _mavlinkMessageReceived(LinkInterface* link, mavlink_message_t message);
209

210 211 212 213 214
    bool    _configUpdateSuspended;                     ///< true: stop updating configuration list
    bool    _configurationsLoaded;                      ///< true: Link configurations have been loaded
    bool    _connectionsSuspended;                      ///< true: all new connections should not be allowed
    QString _connectionsSuspendedReason;                ///< User visible reason for suspension
    QTimer  _portListTimer;
215
    uint32_t _mavlinkChannelsUsedBitMask;
216

217 218
    AutoConnectSettings*    _autoConnectSettings;
    MAVLinkProtocol*        _mavlinkProtocol;
219 220 221 222

    QList<SharedLinkInterfacePointer>       _sharedLinks;
    QList<SharedLinkConfigurationPointer>   _sharedConfigurations;
    QList<SharedLinkConfigurationPointer>   _sharedAutoconnectConfigurations;
223
    QString                                 _autoConnectRTKPort;
224
    QmlObjectListModel                      _qmlConfigurations;
Don Gagne's avatar
Don Gagne committed
225

226
    QMap<QString, int>  _autoconnectWaitList;   ///< key: QGCSerialPortInfo.systemLocation, value: wait count
227
    QStringList _commPortList;
228
    QStringList _commPortDisplayList;
229

Gus Grubba's avatar
Gus Grubba committed
230
#ifndef NO_SERIAL_LINK
231 232 233
    QTimer              _activeLinkCheckTimer;                  ///< Timer which checks for a vehicle showing up on a usb direct link
    QList<SerialLink*>  _activeLinkCheckList;                   ///< List of links we are waiting for a vehicle to show up on
    static const int    _activeLinkCheckTimeoutMSecs = 15000;   ///< Amount of time to wait for a heatbeat. Keep in mind ArduPilot stack heartbeat is slow to come.
Don Gagne's avatar
Don Gagne committed
234
#endif
Don Gagne's avatar
Don Gagne committed
235

236
    static const char*  _defaultUDPLinkName;
237
    static const char*  _mavlinkForwardingLinkName;
238 239
    static const int    _autoconnectUpdateTimerMSecs;
    static const int    _autoconnectConnectDelayMSecs;
240 241

    // NMEA GPS device for GCS position
242
#ifndef __mobile__
243
#ifndef NO_SERIAL_LINK
244 245 246
    QString      _nmeaDeviceName;
    QSerialPort* _nmeaPort;
    uint32_t     _nmeaBaud;
247
    UdpIODevice  _nmeaSocket;
248
#endif
249
#endif
pixhawk's avatar
pixhawk committed
250 251
};