Fact.cc 3.54 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
/*=====================================================================
 
 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/>.
 
 ======================================================================*/

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

#include "Fact.h"

#include <QtQml>

31
Fact::Fact(int componentId, QString name, FactMetaData::ValueType_t type, QObject* parent) :
Don Gagne's avatar
Don Gagne committed
32
33
    QObject(parent),
    _name(name),
34
    _componentId(componentId),
35
    _type(type),
Don Gagne's avatar
Don Gagne committed
36
    _metaData(NULL)
Don Gagne's avatar
Don Gagne committed
37
{
38
    _value = 0;
Don Gagne's avatar
Don Gagne committed
39
40
}

41
void Fact::setValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
42
{
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
    switch (type()) {
        case FactMetaData::valueTypeInt8:
        case FactMetaData::valueTypeInt16:
        case FactMetaData::valueTypeInt32:
            _value.setValue(QVariant(value.toInt()));
            break;

        case FactMetaData::valueTypeUint8:
        case FactMetaData::valueTypeUint16:
        case FactMetaData::valueTypeUint32:
            _value.setValue(value.toUInt());
            break;

        case FactMetaData::valueTypeFloat:
            _value.setValue(value.toFloat());
            break;

        case FactMetaData::valueTypeDouble:
            _value.setValue(value.toDouble());
            break;
    }
64
65
    emit valueChanged(_value);
    emit _containerValueChanged(_value);
Don Gagne's avatar
Don Gagne committed
66
67
}

68
void Fact::_containerSetValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
69
70
{
    _value = value;
71
    emit valueChanged(_value);
Don Gagne's avatar
Don Gagne committed
72
}
Don Gagne's avatar
Don Gagne committed
73
74
75
76
77
78

QString Fact::name(void) const
{
    return _name;
}

79
80
81
82
83
int Fact::componentId(void) const
{
    return _componentId;
}

Don Gagne's avatar
Don Gagne committed
84
85
86
87
88
89
90
91
92
93
94
95
QVariant Fact::value(void) const
{
    return _value;
}

QString Fact::valueString(void) const
{
    return _value.toString();
}

QVariant Fact::defaultValue(void)
{
96
    Q_ASSERT(_metaData);
Don Gagne's avatar
Don Gagne committed
97
98
99
100
    if (!_metaData->defaultValueAvailable()) {
        qDebug() << "Access to unavailable default value";
    }
    return _metaData->defaultValue();
Don Gagne's avatar
Don Gagne committed
101
102
103
104
}

FactMetaData::ValueType_t Fact::type(void)
{
105
    return _type;
Don Gagne's avatar
Don Gagne committed
106
107
108
109
}

QString Fact::shortDescription(void)
{
Don Gagne's avatar
Don Gagne committed
110
111
    Q_ASSERT(_metaData);
    return _metaData->shortDescription();
Don Gagne's avatar
Don Gagne committed
112
113
114
115
}

QString Fact::longDescription(void)
{
Don Gagne's avatar
Don Gagne committed
116
117
    Q_ASSERT(_metaData);
    return _metaData->longDescription();
Don Gagne's avatar
Don Gagne committed
118
119
120
121
}

QString Fact::units(void)
{
Don Gagne's avatar
Don Gagne committed
122
123
    Q_ASSERT(_metaData);
    return _metaData->units();
Don Gagne's avatar
Don Gagne committed
124
125
126
127
}

QVariant Fact::min(void)
{
128
    Q_ASSERT(_metaData);
Don Gagne's avatar
Don Gagne committed
129
    return _metaData->min();
Don Gagne's avatar
Don Gagne committed
130
131
132
133
}

QVariant Fact::max(void)
{
134
    Q_ASSERT(_metaData);
Don Gagne's avatar
Don Gagne committed
135
    return _metaData->max();
Don Gagne's avatar
Don Gagne committed
136
137
}

Don Gagne's avatar
Don Gagne committed
138
139
QString Fact::group(void)
{
Don Gagne's avatar
Don Gagne committed
140
141
    Q_ASSERT(_metaData);
    return _metaData->group();
Don Gagne's avatar
Don Gagne committed
142
143
}

Don Gagne's avatar
Don Gagne committed
144
145
146
147
void Fact::setMetaData(FactMetaData* metaData)
{
    _metaData = metaData;
}
Don Gagne's avatar
Don Gagne committed
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163

bool Fact::valueEqualsDefault(void)
{
    Q_ASSERT(_metaData);
    if (_metaData->defaultValueAvailable()) {
        return _metaData->defaultValue() == value();
    } else {
        return false;
    }
}

bool Fact::defaultValueAvailable(void)
{
    Q_ASSERT(_metaData);
    return _metaData->defaultValueAvailable();
}