Fact.cc 11.1 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
/*=====================================================================
 
 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"
Don Gagne's avatar
Don Gagne committed
28
#include "QGCMAVLink.h"
Don Gagne's avatar
Don Gagne committed
29 30 31

#include <QtQml>

Don Gagne's avatar
Don Gagne committed
32 33 34
Fact::Fact(QObject* parent)
    : QObject(parent)
    , _componentId(-1)
35
    , _rawValue(0)
Don Gagne's avatar
Don Gagne committed
36 37
    , _type(FactMetaData::valueTypeInt32)
    , _metaData(NULL)
Don Gagne's avatar
Don Gagne committed
38 39 40 41 42
{    
    FactMetaData* metaData = new FactMetaData(_type, this);
    setMetaData(metaData);
}

Don Gagne's avatar
Don Gagne committed
43 44 45 46
Fact::Fact(int componentId, QString name, FactMetaData::ValueType_t type, QObject* parent)
    : QObject(parent)
    , _name(name)
    , _componentId(componentId)
47
    , _rawValue(0)
Don Gagne's avatar
Don Gagne committed
48 49
    , _type(type)
    , _metaData(NULL)
Don Gagne's avatar
Don Gagne committed
50
{
Don Gagne's avatar
Don Gagne committed
51 52 53
    FactMetaData* metaData = new FactMetaData(_type, this);
    setMetaData(metaData);
}
Don Gagne's avatar
Don Gagne committed
54

Don Gagne's avatar
Don Gagne committed
55 56 57 58 59 60 61 62 63 64
Fact::Fact(const Fact& other, QObject* parent)
    : QObject(parent)
{
    *this = other;
}

const Fact& Fact::operator=(const Fact& other)
{
    _name           = other._name;
    _componentId    = other._componentId;
65
    _rawValue          = other._rawValue;
Don Gagne's avatar
Don Gagne committed
66 67 68 69 70 71 72 73 74
    _type           = other._type;
    
    if (_metaData && other._metaData) {
        *_metaData = *other._metaData;
    } else {
        _metaData = NULL;
    }
    
    return *this;
Don Gagne's avatar
Don Gagne committed
75 76
}

Don Gagne's avatar
Don Gagne committed
77
void Fact::forceSetRawValue(const QVariant& value)
78 79 80 81 82
{
    if (_metaData) {
        QVariant    typedValue;
        QString     errorString;
        
83
        if (_metaData->convertAndValidateRaw(value, true /* convertOnly */, typedValue, errorString)) {
Don Gagne's avatar
Don Gagne committed
84 85 86
            _rawValue.setValue(typedValue);
            emit valueChanged(cookedValue());
            emit _containerRawValueChanged(rawValue());
87 88 89 90 91 92
        }
    } else {
        qWarning() << "Meta data pointer missing";
    }
}

93
void Fact::setRawValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
94
{
Don Gagne's avatar
Don Gagne committed
95 96 97 98
    if (_metaData) {
        QVariant    typedValue;
        QString     errorString;
        
99
        if (_metaData->convertAndValidateRaw(value, true /* convertOnly */, typedValue, errorString)) {
100 101
            if (typedValue != _rawValue) {
                _rawValue.setValue(typedValue);
Don Gagne's avatar
Don Gagne committed
102 103
                emit valueChanged(cookedValue());
                emit _containerRawValueChanged(rawValue());
Don Gagne's avatar
Don Gagne committed
104 105 106 107
            }
        }
    } else {
        qWarning() << "Meta data pointer missing";
108
    }
Don Gagne's avatar
Don Gagne committed
109 110
}

Don Gagne's avatar
Don Gagne committed
111
void Fact::setCookedValue(const QVariant& value)
112 113 114 115 116 117 118 119 120 121 122 123 124
{
    if (_metaData) {
        setRawValue(_metaData->cookedTranslator()(value));
    } else {
        qWarning() << "Meta data pointer missing";
    }
}

void Fact::setEnumStringValue(const QString& value)
{
    if (_metaData) {
        int index = _metaData->enumStrings().indexOf(value);
        if (index != -1) {
Don Gagne's avatar
Don Gagne committed
125
            setCookedValue(_metaData->enumValues()[index]);
126 127 128 129 130 131 132 133 134
        }
    } else {
        qWarning() << "Meta data pointer missing";
    }
}

void Fact::setEnumIndex(int index)
{
    if (_metaData) {
Don Gagne's avatar
Don Gagne committed
135
        setCookedValue(_metaData->enumValues()[index]);
136 137 138 139 140
    } else {
        qWarning() << "Meta data pointer missing";
    }
}

Don Gagne's avatar
Don Gagne committed
141
void Fact::_containerSetRawValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
142
{
143
    _rawValue = value;
Don Gagne's avatar
Don Gagne committed
144
    emit valueChanged(cookedValue());
145
    emit vehicleUpdated(_rawValue);
Don Gagne's avatar
Don Gagne committed
146
}
147 148 149 150 151 152

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

153 154 155 156 157
int Fact::componentId(void) const
{
    return _componentId;
}

Don Gagne's avatar
Don Gagne committed
158
QVariant Fact::cookedValue(void) const
159
{
160 161 162 163 164 165 166 167
    if (_metaData) {
        return _metaData->rawTranslator()(_rawValue);
    } else {
        qWarning() << "Meta data pointer missing";
        return _rawValue;
    }
}

168
QString Fact::enumStringValue(void)
169 170 171
{
    if (_metaData) {
        int enumIndex = this->enumIndex();
Don Gagne's avatar
Don Gagne committed
172
        if (enumIndex >= 0 && enumIndex < _metaData->enumStrings().count()) {
173 174 175 176 177 178 179 180 181
            return _metaData->enumStrings()[enumIndex];
        }
    } else {
        qWarning() << "Meta data pointer missing";
    }

    return QString();
}

182
int Fact::enumIndex(void)
183 184 185
{
    if (_metaData) {
        int index = 0;
186

187
        foreach (QVariant enumValue, _metaData->enumValues()) {
Don Gagne's avatar
Don Gagne committed
188
            if (enumValue == rawValue()) {
189 190 191 192
                return index;
            }
            index ++;
        }
193 194 195 196 197 198

        // Current value is not in list, add it manually
        _metaData->addEnumInfo(QString("Unknown: %1").arg(rawValue().toString()), rawValue());
        emit enumStringsChanged();
        emit enumValuesChanged();
        return index;
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
    } else {
        qWarning() << "Meta data pointer missing";
    }

    return -1;
}

QStringList Fact::enumStrings(void) const
{
    if (_metaData) {
        return _metaData->enumStrings();
    } else {
        qWarning() << "Meta data pointer missing";
        return QStringList();
    }
}

QVariantList Fact::enumValues(void) const
{
    if (_metaData) {
        return _metaData->enumValues();
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariantList();
    }
224 225
}

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
QStringList Fact::bitmaskStrings(void) const
{
    if (_metaData) {
        return _metaData->bitmaskStrings();
    } else {
        qWarning() << "Meta data pointer missing";
        return QStringList();
    }
}

QVariantList Fact::bitmaskValues(void) const
{
    if (_metaData) {
        return _metaData->bitmaskValues();
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariantList();
    }
}

246
QString Fact::_variantToString(const QVariant& variant) const
247
{
248 249 250 251
    QString valueString;

    switch (type()) {
        case FactMetaData::valueTypeFloat:
252
            valueString = QString("%1").arg(variant.toFloat(), 0, 'f', decimalPlaces());
253 254
            break;
        case FactMetaData::valueTypeDouble:
255
            valueString = QString("%1").arg(variant.toDouble(), 0, 'f', decimalPlaces());
256 257
            break;
        default:
258
            valueString = variant.toString();
259 260 261 262
            break;
    }

    return valueString;
263 264
}

265 266 267 268 269 270
QString Fact::rawValueString(void) const
{
    return _variantToString(rawValue());
}

QString Fact::cookedValueString(void) const
271
{
Don Gagne's avatar
Don Gagne committed
272
    return _variantToString(cookedValue());
273 274
}

275 276 277 278 279 280 281 282 283 284 285 286 287 288
QVariant Fact::rawDefaultValue(void) const
{
    if (_metaData) {
        if (!_metaData->defaultValueAvailable()) {
            qDebug() << "Access to unavailable default value";
        }
        return _metaData->rawDefaultValue();
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariant(0);
    }
}

QVariant Fact::cookedDefaultValue(void) const
289
{
Don Gagne's avatar
Don Gagne committed
290 291 292 293
    if (_metaData) {
        if (!_metaData->defaultValueAvailable()) {
            qDebug() << "Access to unavailable default value";
        }
294
        return _metaData->cookedDefaultValue();
Don Gagne's avatar
Don Gagne committed
295 296 297
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariant(0);
298
    }
299 300
}

301
QString Fact::cookedDefaultValueString(void) const
302
{
303
    return _variantToString(cookedDefaultValue());
304 305
}

306
FactMetaData::ValueType_t Fact::type(void) const
307
{
308
    return _type;
309 310
}

311
QString Fact::shortDescription(void) const
312
{
Don Gagne's avatar
Don Gagne committed
313 314 315 316 317 318
    if (_metaData) {
        return _metaData->shortDescription();
    } else {
        qWarning() << "Meta data pointer missing";
        return QString();
    }
319 320
}

321
QString Fact::longDescription(void) const
322
{
Don Gagne's avatar
Don Gagne committed
323 324 325 326 327 328
    if (_metaData) {
        return _metaData->longDescription();
    } else {
        qWarning() << "Meta data pointer missing";
        return QString();
    }
329 330
}

331 332 333 334 335 336 337 338 339 340 341
QString Fact::rawUnits(void) const
{
    if (_metaData) {
        return _metaData->rawUnits();
    } else {
        qWarning() << "Meta data pointer missing";
        return QString();
    }
}

QString Fact::cookedUnits(void) const
342
{
Don Gagne's avatar
Don Gagne committed
343
    if (_metaData) {
344
        return _metaData->cookedUnits();
Don Gagne's avatar
Don Gagne committed
345 346 347 348
    } else {
        qWarning() << "Meta data pointer missing";
        return QString();
    }
349 350
}

351
QVariant Fact::rawMin(void) const
352
{
Don Gagne's avatar
Don Gagne committed
353
    if (_metaData) {
354
        return _metaData->rawMin();
Don Gagne's avatar
Don Gagne committed
355 356 357 358
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariant(0);
    }
359 360
}

361
QVariant Fact::cookedMin(void) const
362
{
363 364 365 366 367 368
    if (_metaData) {
        return _metaData->cookedMin();
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariant(0);
    }
369 370
}

371 372 373 374 375 376
QString Fact::cookedMinString(void) const
{
    return _variantToString(cookedMin());
}

QVariant Fact::rawMax(void) const
377
{
Don Gagne's avatar
Don Gagne committed
378
    if (_metaData) {
379
        return _metaData->rawMax();
Don Gagne's avatar
Don Gagne committed
380 381 382 383 384 385
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariant(0);
    }
}

386
QVariant Fact::cookedMax(void) const
387
{
388 389 390 391 392 393 394 395 396 397 398
    if (_metaData) {
        return _metaData->cookedMax();
    } else {
        qWarning() << "Meta data pointer missing";
        return QVariant(0);
    }
}

QString Fact::cookedMaxString(void) const
{
    return _variantToString(cookedMax());
399 400
}

401
bool Fact::minIsDefaultForType(void) const
Don Gagne's avatar
Don Gagne committed
402 403 404 405 406 407 408 409 410
{
    if (_metaData) {
        return _metaData->minIsDefaultForType();
    } else {
        qWarning() << "Meta data pointer missing";
        return false;
    }
}

411
bool Fact::maxIsDefaultForType(void) const
Don Gagne's avatar
Don Gagne committed
412 413 414 415 416 417 418
{
    if (_metaData) {
        return _metaData->maxIsDefaultForType();
    } else {
        qWarning() << "Meta data pointer missing";
        return false;
    }
419 420
}

421 422 423 424 425 426 427 428 429 430
int Fact::decimalPlaces(void) const
{
    if (_metaData) {
        return _metaData->decimalPlaces();
    } else {
        qWarning() << "Meta data pointer missing";
        return FactMetaData::defaultDecimalPlaces;
    }
}

431
QString Fact::group(void) const
432
{
Don Gagne's avatar
Don Gagne committed
433 434 435 436 437 438
    if (_metaData) {
        return _metaData->group();
    } else {
        qWarning() << "Meta data pointer missing";
        return QString();
    }
439 440
}

441 442 443
void Fact::setMetaData(FactMetaData* metaData)
{
    _metaData = metaData;
Don Gagne's avatar
Don Gagne committed
444
    emit valueChanged(cookedValue());
445
}
446

447
bool Fact::valueEqualsDefault(void) const
448
{
Don Gagne's avatar
Don Gagne committed
449 450
    if (_metaData) {
        if (_metaData->defaultValueAvailable()) {
451
            return _metaData->rawDefaultValue() == rawValue();
Don Gagne's avatar
Don Gagne committed
452 453 454
        } else {
            return false;
        }
455
    } else {
Don Gagne's avatar
Don Gagne committed
456
        qWarning() << "Meta data pointer missing";
457 458 459 460
        return false;
    }
}

461
bool Fact::defaultValueAvailable(void) const
462
{
Don Gagne's avatar
Don Gagne committed
463 464 465 466 467 468 469 470
    if (_metaData) {
        return _metaData->defaultValueAvailable();
    } else {
        qWarning() << "Meta data pointer missing";
        return false;
    }
}

471
QString Fact::validate(const QString& cookedValue, bool convertOnly)
Don Gagne's avatar
Don Gagne committed
472 473 474 475 476
{
    if (_metaData) {
        QVariant    typedValue;
        QString     errorString;
        
477
        _metaData->convertAndValidateCooked(cookedValue, convertOnly, typedValue, errorString);
Don Gagne's avatar
Don Gagne committed
478 479 480 481 482 483 484
        
        return errorString;
    } else {
        qWarning() << "Meta data pointer missing";
        return QString("Internal error: Meta data pointer missing");
    }
}