PX4ParameterFacts.h 3.34 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 
 This file is part of the QGROUNDCONTROL project
 
 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
 
 ======================================================================*/

#ifndef PX4ParameterFacts_h
#define PX4ParameterFacts_h

#include <QObject>
#include <QMap>
#include <QXmlStreamReader>
#include <QLoggingCategory>

#include "Fact.h"
#include "UASInterface.h"

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

// FIXME: This file should be auto-generated from the Parameter XML file.

Q_DECLARE_LOGGING_CATEGORY(PX4ParameterFactsLog)
Q_DECLARE_LOGGING_CATEGORY(PX4ParameterFactsMetaDataLog)

/// Collection of Parameter Facts for PX4 AutoPilot
///
/// These Facts are available for binding within QML code. For example:
/// @code{.unparsed}
///     TextInput {
48
///         text: parameters["RC_MAP_THROTTLE"].value
Don Gagne's avatar
Don Gagne committed
49 50 51 52 53 54 55 56 57 58 59 60 61
///     }
/// @endcode

class PX4ParameterFacts : public QObject
{
    Q_OBJECT
    
public:
    /// @param uas Uas which this set of facts is associated with
    PX4ParameterFacts(UASInterface* uas, QObject* parent = NULL);
    
    ~PX4ParameterFacts();
    
62 63 64 65 66 67
    /// Returns true if the full set of facts are ready
    bool factsAreReady(void) { return _factsReady; }

    /// Returns the fact QVariantMap
    const QVariantMap& factMap(void) { return _mapParameterName2Variant; }
    
Don Gagne's avatar
Don Gagne committed
68 69
    static void loadParameterFactMetaData(void);
    static void deleteParameterFactMetaData(void);
70 71 72 73 74
    static void clearStaticData(void);
    
signals:
    /// Signalled when the full set of facts are ready
    void factsReady(void);
Don Gagne's avatar
Don Gagne committed
75 76 77
    
private slots:
    void _parameterChanged(int uas, int component, QString parameterName, QVariant value);
78 79
    void _valueUpdated(QVariant value);
    void _paramMgrParameterListUpToDate(void);
Don Gagne's avatar
Don Gagne committed
80 81 82 83 84 85 86 87
    
private:
    static FactMetaData* _parseParameter(QXmlStreamReader& xml, const QString& group);
    static void _initMetaData(FactMetaData* metaData);
    static QVariant _stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool failOk = false);

    QMap<Fact*, QString> _mapFact2ParameterName;    ///< Maps from a Fact to a parameter name
    
88
    static bool _parameterMetaDataLoaded;   ///< true: parameter meta data already loaded
Don Gagne's avatar
Don Gagne committed
89 90 91 92 93 94
    static QMap<QString, FactMetaData*> _mapParameterName2FactMetaData; ///< Maps from a parameter name to FactMetaData
    
    int _uasId;             ///< Id for uas which this set of Facts are associated with
    int _lastSeenComponent;
    
    QGCUASParamManagerInterface* _paramMgr;
95
    
96 97
    QVariantMap _mapParameterName2Variant;
    
98
    bool _factsReady;   ///< All facts received from param mgr
Don Gagne's avatar
Don Gagne committed
99 100 101
};

#endif