ParameterManager.h 9.95 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.
 *
 ****************************************************************************/

10

11 12
#ifndef ParameterManager_H
#define ParameterManager_H
13 14 15 16 17

#include <QObject>
#include <QMap>
#include <QXmlStreamReader>
#include <QLoggingCategory>
18
#include <QMutex>
Don Gagne's avatar
Don Gagne committed
19
#include <QDir>
20
#include <QJsonObject>
21 22

#include "FactSystem.h"
23 24
#include "MAVLinkProtocol.h"
#include "AutoPilotPlugin.h"
25
#include "QGCMAVLink.h"
26
#include "Vehicle.h"
27 28 29 30

/// @file
///     @author Don Gagne <don@thegagnes.com>

31 32
Q_DECLARE_LOGGING_CATEGORY(ParameterManagerVerbose1Log)
Q_DECLARE_LOGGING_CATEGORY(ParameterManagerVerbose2Log)
33 34

/// Connects to Parameter Manager to load/update Facts
35
class ParameterManager : public QObject
36 37 38 39 40
{
    Q_OBJECT
    
public:
    /// @param uas Uas which this set of facts is associated with
41 42
    ParameterManager(Vehicle* vehicle);
    ~ParameterManager();
43

44 45 46 47 48 49 50 51
    /// true: Parameters are ready for use
    Q_PROPERTY(bool parametersReady READ parametersReady NOTIFY parametersReadyChanged)
    bool parametersReady(void) { return _parametersReady; }

    /// true: Parameters are missing from firmware response, false: all parameters received from firmware
    Q_PROPERTY(bool missingParameters READ missingParameters NOTIFY missingParametersChanged)
    bool missingParameters(void) { return _missingParameters; }

52 53 54
    Q_PROPERTY(double loadProgress READ loadProgress NOTIFY loadProgressChanged)
    double loadProgress(void) const { return _loadProgress; }

55 56 57
    /// @return Directory of parameter caches
    static QDir parameterCacheDir();

58
    /// @return Location of parameter cache file
59
    static QString parameterCacheFile(int vehicleId, int componentId);
60
    
61

62
    /// Re-request the full set of parameters from the autopilot
dogmaphobic's avatar
dogmaphobic committed
63
    void refreshAllParameters(uint8_t componentID = MAV_COMP_ID_ALL);
64

65 66 67 68 69 70
    /// Request a refresh on the specific parameter
    void refreshParameter(int componentId, const QString& name);
    
    /// Request a refresh on all parameters that begin with the specified prefix
    void refreshParametersPrefix(int componentId, const QString& namePrefix);
    
71 72
    void resetAllParametersToDefaults(void);

73
    /// Returns true if the specifed parameter exists
74 75 76 77
    ///     @param componentId Component id or FactSystem::defaultComponentId
    ///     @param name Parameter name
    bool parameterExists(int componentId, const QString& name);

78
	/// Returns all parameter names
Don Gagne's avatar
Don Gagne committed
79
	QStringList parameterNames(int componentId);
80
    
81 82 83 84 85
    /// Returns the specified Parameter. Returns a default empty fact is parameter does not exists. Also will pop
    /// a missing parameter error to user if parameter does not exist.
    ///     @param componentId Component id or FactSystem::defaultComponentId
    ///     @param name Parameter name
    Fact* getParameter(int componentId, const QString& name);
86
    
87 88
    const QMap<int, QMap<QString, QStringList> >& getGroupMap(void);
    
89 90 91
    /// Returns error messages from loading
    QString readParametersFromStream(QTextStream& stream);
    
92
    void writeParametersToStream(QTextStream &stream);
93 94 95 96 97 98 99 100 101

    /// Returns the version number for the parameter set, -1 if not known
    int parameterSetVersion(void) { return _parameterSetMajorVersion; }

    /// Returns the newest available parameter meta data file (from cache or internal) for the specified information.
    ///     @param wantedMajorVersion Major version you are looking for
    ///     @param[out] majorVersion Major version for found meta data
    ///     @param[out] minorVersion Minor version for found meta data
    /// @return Meta data file name of best match, emptyString is none found
102
    static QString parameterMetaDataFile(Vehicle* vehicle, MAV_AUTOPILOT firmwareType, int wantedMajorVersion, int& majorVersion, int& minorVersion);
103 104 105

    /// If this file is newer than anything in the cache, cache it as the latest version
    static void cacheMetaDataFile(const QString& metaDataFile, MAV_AUTOPILOT firmwareType);
Don Gagne's avatar
Don Gagne committed
106

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
    int defaultComponentId(void) { return _defaultComponentId; }

    /// Saves the specified param set to the json object.
    ///     @param componentId Component id which contains params, MAV_COMP_ID_ALL to save all components
    ///     @param paramsToSave List of params names to save, empty to save all for component
    ///     @param saveObject Json object to save to
    void saveToJson(int componentId, const QStringList& paramsToSave, QJsonObject& saveObject);

    /// Load a parameter set from json
    ///     @param json Json object to load from
    ///     @param required true: no parameters in object will generate error
    ///     @param errorString Error string if return is false
    /// @return true: success, false: failure (errorString set)
    bool loadFromJson(const QJsonObject& json, bool required, QString& errorString);

122 123
    Vehicle* vehicle(void) { return _vehicle; }

124
signals:
125 126
    void parametersReadyChanged(bool parametersReady);
    void missingParametersChanged(bool missingParameters);
127
    void loadProgressChanged(float value);
128 129
    
protected:
130 131
    Vehicle*            _vehicle;
    MAVLinkProtocol*    _mavlink;
132
    
133
    void _parameterUpdate(int vehicleId, int componentId, QString parameterName, int parameterCount, int parameterId, int mavType, QVariant value);
134
    void _valueUpdated(const QVariant& value);
135
    void _waitingParamTimeout(void);
136
    void _tryCacheLookup(void);
137
    void _initialRequestTimeout(void);
dogmaphobic's avatar
dogmaphobic committed
138

139 140 141 142
private:
    static QVariant _stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool failOk = false);
    int _actualComponentId(int componentId);
    void _determineDefaultComponentId(void);
143
    void _setupGroupMap(void);
144 145
    void _readParameterRaw(int componentId, const QString& paramName, int paramIndex);
    void _writeParameterRaw(int componentId, const QString& paramName, const QVariant& value);
146 147
    void _writeLocalParamCache(int vehicleId, int componentId);
    void _tryCacheHashLoad(int vehicleId, int componentId, QVariant hash_value);
148
    void _addMetaDataToDefaultComponent(void);
149
    QString _remapParamNameToVersion(const QString& paramName);
150
    void _loadOfflineEditingParams(void);
151
    QString _logVehiclePrefix(int componentId = -1);
152
    void _setLoadProgress(double loadProgress);
153

154 155 156
    MAV_PARAM_TYPE _factTypeToMavType(FactMetaData::ValueType_t factType);
    FactMetaData::ValueType_t _mavTypeToFactType(MAV_PARAM_TYPE mavType);
    void _saveToEEPROM(void);
157
    void _checkInitialLoadComplete(bool failIfNoDefaultComponent);
158

159
    /// First mapping is by component id
160
    /// Second mapping is parameter name, to Fact* in QVariant
161
    QMap<int, QVariantMap>            _mapParameterName2Variant;
162

163
    QMap<int, QMap<int, QString> >    _mapParameterId2Name;
164
    
165 166 167 168
    /// First mapping is by component id
    /// Second mapping is group name, to Fact
    QMap<int, QMap<QString, QStringList> > _mapGroup2ParameterName;
    
169
    double      _loadProgress;                  ///< Parameter load progess, [0.0,1.0]
170 171
    bool        _parametersReady;               ///< true: parameter load complete
    bool        _missingParameters;             ///< true: parameter missing from initial load
Ricardo de Almeida Gonzaga's avatar
Ricardo de Almeida Gonzaga committed
172
    bool        _initialLoadComplete;           ///< true: Initial load of all parameters complete, whether successful or not
173 174
    bool        _waitingForDefaultComponent;    ///< true: last chance wait for default component params
    bool        _saveRequired;                  ///< true: _saveToEEPROM should be called
175
    int         _defaultComponentId;
176 177 178 179
    QString     _defaultComponentIdParam;       ///< Parameter which identifies default component
    QString     _versionParam;                  ///< Parameter which contains parameter set version
    int         _parameterSetMajorVersion;      ///< Version for parameter set, -1 if not known
    QObject*    _parameterMetaData;             ///< Opaque data from FirmwarePlugin::loadParameterMetaDataCall
180

Don Gagne's avatar
Don Gagne committed
181 182 183 184 185 186
    // Wait counts from previous parameter update cycle
    int         _prevWaitingReadParamIndexCount;
    int         _prevWaitingReadParamNameCount;
    int         _prevWaitingWriteParamNameCount;


187 188 189 190 191
    static const int    _maxInitialRequestListRetry = 4;        ///< Maximum retries for request list
    int                 _initialRequestRetryCount;              ///< Current retry count for request list
    static const int    _maxInitialLoadRetrySingleParam = 5;    ///< Maximum retries for initial index based load of a single param
    static const int    _maxReadWriteRetry = 5;                 ///< Maximum retries read/write
    bool                _disableAllRetries;                     ///< true: Don't retry any requests (used for testing)
192

193 194 195 196 197
    QMap<int, int>                  _paramCountMap;             ///< Key: Component id, Value: count of parameters in this component
    QMap<int, QMap<int, int> >      _waitingReadParamIndexMap;  ///< Key: Component id, Value: Map { Key: parameter index still waiting for, Value: retry count }
    QMap<int, QMap<QString, int> >  _waitingReadParamNameMap;   ///< Key: Component id, Value: Map { Key: parameter name still waiting for, Value: retry count }
    QMap<int, QMap<QString, int> >  _waitingWriteParamNameMap;  ///< Key: Component id, Value: Map { Key: parameter name still waiting for, Value: retry count }
    QMap<int, QList<int> >          _failedReadParamIndexMap;   ///< Key: Component id, Value: failed parameter index
198

199 200
    int _totalParamCount;   ///< Number of parameters across all components
    
201
    QTimer _initialRequestTimeoutTimer;
202 203 204
    QTimer _waitingParamTimeoutTimer;
    
    QMutex _dataMutex;
Don Gagne's avatar
Don Gagne committed
205 206
    
    static Fact _defaultFact;   ///< Used to return default fact, when parameter not found
207 208

    static const char* _cachedMetaDataFilePrefix;
209 210 211 212
    static const char* _jsonParametersKey;
    static const char* _jsonCompIdKey;
    static const char* _jsonParamNameKey;
    static const char* _jsonParamValueKey;
213 214
};

215
#endif