QGCUASParamManager.h 4.37 KB
Newer Older
1 2 3 4 5 6
#ifndef QGCUASPARAMMANAGER_H
#define QGCUASPARAMMANAGER_H

#include <QWidget>
#include <QMap>
#include <QTimer>
7
#include <QVariant>
8

9 10
#include "UASParameterDataModel.h"

tstellanova's avatar
tstellanova committed
11
//forward declarations
12
class QTextStream;
13
class UASInterface;
tstellanova's avatar
tstellanova committed
14
class UASParameterCommsMgr;
15

16
class QGCUASParamManager : public QObject
17 18 19
{
    Q_OBJECT
public:
20 21
    QGCUASParamManager(QObject* parent = 0);
    QGCUASParamManager* initWithUAS(UASInterface* uas);
22

tstellanova's avatar
tstellanova committed
23
    /** @brief Get the known, confirmed value of a parameter */
tstellanova's avatar
tstellanova committed
24
    virtual bool getParameterValue(int component, const QString& parameter, QVariant& value) const;
25

26 27 28 29 30 31 32
    /**
     * @brief Get a list of all component IDs using this parameter name
     * @param parameter The string encoding the parameter name
     * @return A list with all components using this parameter name. Can be empty.
     */
    virtual QList<int> getComponentForParam(const QString& parameter) const;

33 34 35
    /** @brief Provide tooltips / user-visible descriptions for parameters */
    virtual void setParamDescriptions(const QMap<QString,QString>& paramDescs);

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    /**
     * @brief Count the pending parameters in the current transmission
     * @return The number of pending parameters
     */
    virtual int countPendingParams() {
        return paramDataModel.countPendingParams();
    }

    /**
     * @brief Count the number of onboard parameters
     * @return The number of onboard parameters
     */
    virtual int countOnboardParams() {
        return paramDataModel.countOnboardParams();
    }

tstellanova's avatar
tstellanova committed
52 53 54 55
    /** @brief Get the UAS of this widget
     * @return The MAV of this mgr. Unless the MAV object has been destroyed, this is never null.
     */
    UASInterface* getUAS();
tstellanova's avatar
tstellanova committed
56

57 58 59
    /** @return The data model managed by this class */
    virtual UASParameterDataModel* dataModel();

tstellanova's avatar
tstellanova committed
60
protected:
61

tstellanova's avatar
tstellanova committed
62 63
    /** @brief Load parameter meta information from appropriate CSV file */
    virtual void loadParamMetaInfoCSV();
tstellanova's avatar
tstellanova committed
64

65
    void connectToModelAndComms();
66

tstellanova's avatar
tstellanova committed
67

68
signals:
69 70 71 72 73

    /** @brief We updated the parameter status message */
    void parameterStatusMsgUpdated(QString msg, int level);
    /** @brief We have received a complete list of all parameters onboard the MAV */
    void parameterListUpToDate();
74

75 76 77 78 79 80
    /** @brief We've received an update of a parameter's value */
    void parameterUpdated(int compId, QString paramName, QVariant value);

    /** @brief Notifies listeners that a param was added to or removed from the pending list */
    void pendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending);

81 82


83
public slots:
tstellanova's avatar
tstellanova committed
84 85 86
    /** @brief Send one parameter to the MAV: changes value in transient memory of MAV */
    virtual void setParameter(int component, QString parameterName, QVariant value);

87 88 89 90 91
    /** @brief Send all pending parameters to the MAV, for storage in transient (RAM) memory
     * @param persistAfterSend  If true, all parameters will be written to persistent storage as well
    */
    virtual void sendPendingParameters(bool persistAfterSend = false);

tstellanova's avatar
tstellanova committed
92

93
    /** @brief Request list of parameters from MAV */
tstellanova's avatar
tstellanova committed
94
    virtual void requestParameterList();
95

96 97 98
    /** @brief Request a list of params onboard the MAV if the onboard param list we have is empty */
    virtual void requestParameterListIfEmpty();

99 100
    /** @brief queue a pending parameter for sending to the MAV */
    virtual void setPendingParam(int componentId,  const QString& key,  const QVariant& value);
101

102 103 104
    /** @brief remove all params from the pending list */
    virtual void clearAllPendingParams();

tstellanova's avatar
tstellanova committed
105
    /** @brief Request a single parameter by name from the MAV */
106 107
    virtual void requestParameterUpdate(int component, const QString& parameter);

tstellanova's avatar
tstellanova committed
108

109 110 111 112 113 114 115 116 117
    virtual void writeOnboardParamsToStream(QTextStream &stream, const QString& uasName);
    virtual void readPendingParamsFromStream(QTextStream &stream);

    virtual void requestRcCalibrationParamsUpdate();

    /** @brief Copy the current parameters in volatile RAM to persistent storage (EEPROM/HDD) */
    virtual void copyVolatileParamsToPersistent();
    /** @brief Copy the parameters from persistent storage to volatile RAM  */
    virtual void copyPersistentParamsToVolatile();
tstellanova's avatar
tstellanova committed
118

119
protected:
120

tstellanova's avatar
tstellanova committed
121
    // Parameter data model
tstellanova's avatar
tstellanova committed
122
    UASInterface*           mav;   ///< The MAV this manager is controlling
123
    UASParameterDataModel  paramDataModel;///< Shared data model of parameters
tstellanova's avatar
tstellanova committed
124
    UASParameterCommsMgr*   paramCommsMgr; ///< Shared comms mgr for parameters
125

126 127 128
};

#endif // QGCUASPARAMMANAGER_H