QGCUASParamManager.h 4.57 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
    /** @brief determine which component is the root component for the UAS and return its ID or 0 if unknown */
    virtual int getDefaultComponentId();

29 30 31 32 33 34 35
    /**
     * @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;

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

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
    /**
     * @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
55 56 57 58
    /** @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
59

60 61 62
    /** @return The data model managed by this class */
    virtual UASParameterDataModel* dataModel();

tstellanova's avatar
tstellanova committed
63
protected:
64

tstellanova's avatar
tstellanova committed
65 66
    /** @brief Load parameter meta information from appropriate CSV file */
    virtual void loadParamMetaInfoCSV();
tstellanova's avatar
tstellanova committed
67

68
    void connectToModelAndComms();
69

tstellanova's avatar
tstellanova committed
70

71
signals:
72 73 74 75 76

    /** @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();
77

78 79 80 81 82 83
    /** @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);

84 85


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

90 91 92
    /** @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
    */
93
    virtual void sendPendingParameters(bool persistAfterSend = false, bool forceSend = false);
94

tstellanova's avatar
tstellanova committed
95

96
    /** @brief Request list of parameters from MAV */
tstellanova's avatar
tstellanova committed
97
    virtual void requestParameterList();
98

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

102
    /** @brief queue a pending parameter for sending to the MAV */
103
    virtual void setPendingParam(int componentId,  const QString& key,  const QVariant& value, bool forceSend = false);
104

105 106 107
    /** @brief remove all params from the pending list */
    virtual void clearAllPendingParams();

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

tstellanova's avatar
tstellanova committed
111

112 113 114 115 116 117 118 119 120
    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
121

122
protected:
123

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

129 130 131
};

#endif // QGCUASPARAMMANAGER_H