MissionManager.h 4.62 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 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.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10 11 12 13 14 15 16 17 18 19

#ifndef MissionManager_H
#define MissionManager_H

#include <QObject>
#include <QLoggingCategory>
#include <QThread>
#include <QMutex>
#include <QTimer>

20
#include "MissionItem.h"
Don Gagne's avatar
Don Gagne committed
21 22
#include "QGCMAVLink.h"
#include "QGCLoggingCategory.h"
23
#include "LinkInterface.h"
Don Gagne's avatar
Don Gagne committed
24 25 26 27 28

class Vehicle;

Q_DECLARE_LOGGING_CATEGORY(MissionManagerLog)

29
class MissionManager : public QObject
Don Gagne's avatar
Don Gagne committed
30 31 32 33 34 35 36
{
    Q_OBJECT
    
public:
    MissionManager(Vehicle* vehicle);
    ~MissionManager();
    
37
    bool inProgress(void);
38
    const QList<MissionItem*>& missionItems(void) { return _missionItems; }
39
    int currentItem(void) { return _currentMissionItem; }
Don Gagne's avatar
Don Gagne committed
40
    
Don Gagne's avatar
Don Gagne committed
41 42 43
    void requestMissionItems(void);
    
    /// Writes the specified set of mission items to the vehicle
44 45
    ///     @param missionItems Items to send to vehicle
    void writeMissionItems(const QList<MissionItem*>& missionItems);
46
    
Don Gagne's avatar
Don Gagne committed
47 48 49 50 51
    /// Writes the specified set mission items to the vehicle as an ArduPilot guided mode mission item.
    ///     @param gotoCoord Coordinate to move to
    ///     @param altChangeOnly true: only altitude change, false: lat/lon/alt change
    void writeArduPilotGuidedMissionItem(const QGeoCoordinate& gotoCoord, bool altChangeOnly);

52 53 54
    /// Removes all mission items from vehicle
    void removeAll(void);

55 56 57 58 59 60 61 62 63
    /// Error codes returned in error signal
    typedef enum {
        InternalError,
        AckTimeoutError,        ///< Timed out waiting for response from vehicle
        ProtocolOrderError,     ///< Incorrect protocol sequence from vehicle
        RequestRangeError,      ///< Vehicle requested item out of range
        ItemMismatchError,      ///< Vehicle returned item with seq # different than requested
        VehicleError,           ///< Vehicle returned error
        MissingRequestsError,   ///< Vehicle did not request all items during write sequence
64
        MaxRetryExceeded,       ///< Retry failed
65
    } ErrorCode_t;
Don Gagne's avatar
Don Gagne committed
66

Don Gagne's avatar
Don Gagne committed
67
    // These values are public so the unit test can set appropriate signal wait times
68
    static const int _ackTimeoutMilliseconds = 1000;
Don Gagne's avatar
Don Gagne committed
69 70
    static const int _maxRetryCount = 5;
    
Don Gagne's avatar
Don Gagne committed
71
signals:
72
    void newMissionItemsAvailable(bool removeAllRequested);
Don Gagne's avatar
Don Gagne committed
73
    void inProgressChanged(bool inProgress);
74
    void error(int errorCode, const QString& errorMsg);
75
    void currentItemChanged(int currentItem);
Don Gagne's avatar
Don Gagne committed
76
    
Don Gagne's avatar
Don Gagne committed
77 78 79 80 81 82 83 84 85 86
private slots:
    void _mavlinkMessageReceived(const mavlink_message_t& message);
    void _ackTimeout(void);
    
private:
    typedef enum {
        AckNone,            ///< State machine is idle
        AckMissionCount,    ///< MISSION_COUNT message expected
        AckMissionItem,     ///< MISSION_ITEM expected
        AckMissionRequest,  ///< MISSION_REQUEST is expected, or MISSION_ACK to end sequence
Ricardo de Almeida Gonzaga's avatar
Ricardo de Almeida Gonzaga committed
87
        AckGuidedItem,      ///< MISSION_ACK expected in response to ArduPilot guided mode single item send
Don Gagne's avatar
Don Gagne committed
88 89
    } AckType_t;
    
90
    void _startAckTimeout(AckType_t ack);
91
    bool _checkForExpectedAck(AckType_t receivedAck);
92
    void _readTransactionComplete(void);
Don Gagne's avatar
Don Gagne committed
93
    void _handleMissionCount(const mavlink_message_t& message);
94 95
    void _handleMissionItem(const mavlink_message_t& message, bool missionItemInt);
    void _handleMissionRequest(const mavlink_message_t& message, bool missionItemInt);
Don Gagne's avatar
Don Gagne committed
96
    void _handleMissionAck(const mavlink_message_t& message);
97
    void _handleMissionCurrent(const mavlink_message_t& message);
98
    void _requestNextMissionItem(void);
Don Gagne's avatar
Don Gagne committed
99
    void _clearMissionItems(void);
100
    void _sendError(ErrorCode_t errorCode, const QString& errorMsg);
Don Gagne's avatar
Don Gagne committed
101
    QString _ackTypeToString(AckType_t ackType);
Don Gagne's avatar
Don Gagne committed
102
    QString _missionResultToString(MAV_MISSION_RESULT result);
103
    void _finishTransaction(bool success);
104 105
    void _requestList(void);
    void _writeMissionCount(void);
Don Gagne's avatar
Don Gagne committed
106 107 108

private:
    Vehicle*            _vehicle;
109
    LinkInterface*      _dedicatedLink;
Don Gagne's avatar
Don Gagne committed
110 111
    
    QTimer*             _ackTimeoutTimer;
112 113
    AckType_t           _expectedAck;
    int                 _retryCount;
Don Gagne's avatar
Don Gagne committed
114
    
115 116 117 118
    bool        _readTransactionInProgress;
    bool        _writeTransactionInProgress;
    QList<int>  _itemIndicesToWrite;    ///< List of mission items which still need to be written to vehicle
    QList<int>  _itemIndicesToRead;     ///< List of mission items which still need to be requested from vehicle
Don Gagne's avatar
Don Gagne committed
119 120 121
    
    QMutex _dataMutex;
    
122
    QList<MissionItem*> _missionItems;
123
    int                 _currentMissionItem;
Don Gagne's avatar
Don Gagne committed
124 125
};

126
#endif