FactBinder.cc 4.55 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
#include <QDebug>
31 32 33

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

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

54 55 56 57 58
int FactBinder::componentId(void) const
{
	return _componentId;
}

59 60 61 62 63 64 65 66
void FactBinder::setName(const QString& name)
{
    if (_fact) {
        disconnect(_fact, &Fact::valueChanged, this, &FactBinder::valueChanged);
        _fact = NULL;
    }
    
    if (!name.isEmpty()) {
67 68 69 70 71 72 73 74 75 76 77 78 79
		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);
80
            connect(_fact, &Fact::valueChanged, this, &FactBinder::valueChanged);
81 82 83

            emit valueChanged();
            emit nameChanged();
84 85
			emit metaDataChanged();
		} else {
Don Gagne's avatar
Don Gagne committed
86 87
            qWarning() << "FAILED BINDING PARAM" << name << ": PARAM DOES NOT EXIST ON SYSTEM!";
            Q_ASSERT(false);
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        }
    }
}

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
106 107
        qWarning() << "FAILED SETTING PARAM VALUE" << _fact->name() << ": PARAM DOES NOT EXIST ON SYSTEM!";
        Q_ASSERT(false);
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
    }
}

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();
    }
}
128 129 130 131 132 133 134 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

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();
    }
}
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208

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

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