FactBinder.cc 5.34 KB
Newer Older
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
/*=====================================================================
 
 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 "FactBinder.h"
#include "UASManager.h"
#include "AutoPilotPluginManager.h"
30 31
#include "QGCApplication.h"

32
#include <QDebug>
33 34 35

FactBinder::FactBinder(void) :
    _autopilotPlugin(NULL),
36
    _fact(NULL),
37 38
    _componentId(FactSystem::defaultComponentId),
    _factMissingSignalConnected(false)
39 40 41 42 43 44
{
    UASInterface* uas = UASManager::instance()->getActiveUAS();
    Q_ASSERT(uas);
    
    _autopilotPlugin = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(uas);
    Q_ASSERT(_autopilotPlugin);
45
    Q_ASSERT(_autopilotPlugin->pluginReady());
46 47 48 49 50 51 52 53 54 55 56
}

QString FactBinder::name(void) const
{
    if (_fact) {
        return _fact->name();
    } else {
        return QString();
    }
}

57 58 59 60 61
int FactBinder::componentId(void) const
{
	return _componentId;
}

62 63 64 65 66 67 68 69
void FactBinder::setName(const QString& name)
{
    if (_fact) {
        disconnect(_fact, &Fact::valueChanged, this, &FactBinder::valueChanged);
        _fact = NULL;
    }
    
    if (!name.isEmpty()) {
70 71 72 73 74 75 76 77 78 79 80 81 82
		QString parsedName = name;
		
		// Component id + name combination?
		if (name.contains(":")) {
			QStringList parts = name.split(":");
			if (parts.count() == 2) {
				parsedName = parts[0];
				_componentId = parts[1].toInt();
			}
		}
		
        if (_autopilotPlugin->factExists(FactSystem::ParameterProvider, _componentId, parsedName)) {
            _fact = _autopilotPlugin->getFact(FactSystem::ParameterProvider, _componentId, parsedName);
83
            connect(_fact, &Fact::valueChanged, this, &FactBinder::valueChanged);
84 85 86

            emit valueChanged();
            emit nameChanged();
87 88
			emit metaDataChanged();
		} else {
89 90 91 92 93 94
            qgcApp()->reportMissingFact(name);
            if (_factMissingSignalConnected) {
                emit factMissing(name);
            } else {
                _missedFactMissingSignals << name;
            }
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
        }
    }
}

QVariant FactBinder::value(void) const
{
    if (_fact) {
        return _fact->value();
    } else {
        return QVariant(0);
    }
}

void FactBinder::setValue(const QVariant& value)
{
    if (_fact) {
        _fact->setValue(value);
    } else {
Don Gagne's avatar
Don Gagne committed
113 114
        qWarning() << "FAILED SETTING PARAM VALUE" << _fact->name() << ": PARAM DOES NOT EXIST ON SYSTEM!";
        Q_ASSERT(false);
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
    }
}

QString FactBinder::valueString(void) const
{
    if (_fact) {
        return _fact->valueString();
    } else {
        return QString();
    }
}

QString FactBinder::units(void) const
{
    if (_fact) {
        return _fact->units();
    } else {
        return QString();
    }
}
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197

QVariant FactBinder::defaultValue(void)
{
    if (_fact) {
        return _fact->defaultValue();
    } else {
		return QVariant(0);
    }
}

FactMetaData::ValueType_t FactBinder::type(void)
{
    if (_fact) {
        return _fact->type();
    } else {
		return FactMetaData::valueTypeUint32;
    }
}

QString FactBinder::shortDescription(void)
{
    if (_fact) {
        return _fact->shortDescription();
    } else {
        return QString();
    }
}

QString FactBinder::longDescription(void)
{
    if (_fact) {
        return _fact->longDescription();
    } else {
        return QString();
    }
}

QVariant FactBinder::min(void)
{
    if (_fact) {
        return _fact->min();
    } else {
		return QVariant(0);
    }
}

QVariant FactBinder::max(void)
{
    if (_fact) {
        return _fact->max();
    } else {
		return QVariant(0);
    }
}

QString FactBinder::group(void)
{
    if (_fact) {
        return _fact->group();
    } else {
        return QString();
    }
}
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

bool FactBinder::defaultValueAvailable(void)
{
    if (_fact) {
        return _fact->defaultValueAvailable();
    } else {
        return false;
    }
}

bool FactBinder::valueEqualsDefault(void)
{
    if (_fact) {
        return _fact->valueEqualsDefault();
    } else {
        return false;
    }
}
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239

void FactBinder::connectNotify(const QMetaMethod & signal)
{
    if (signal == QMetaMethod::fromSignal(&FactBinder::factMissing)) {
        _factMissingSignalConnected = true;
        if (_missedFactMissingSignals.count()) {
            QTimer::singleShot(10, this, &FactBinder::_delayedFactMissing);
        }
    }
}

void FactBinder::disconnectNotify(const QMetaMethod & signal)
{
    if (signal == QMetaMethod::fromSignal(&FactBinder::factMissing)) {
        _factMissingSignalConnected = false;
    }
}

void FactBinder::_delayedFactMissing(void)
{
    foreach (QString name, _missedFactMissingSignals) {
        emit factMissing(name);
    }
}