MultiSignalSpy.cc 6.89 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10 11 12 13 14

#include "MultiSignalSpy.h"
#include <QEventLoop>
#include <QCoreApplication>
#include <QDebug>
15
#include <QTest>
Don Gagne's avatar
Don Gagne committed
16 17 18 19 20 21 22 23 24

/// @file
///     @brief This class allows you to keep track of signal counts on a set of signals associated with an object.
///     Mainly used for writing object unit tests.
///
///     @author Don Gagne <don@thegagnes.com>

MultiSignalSpy::MultiSignalSpy(QObject* parent) :
    QObject(parent),
25 26
    _signalEmitter(nullptr),
    _rgSignals(nullptr),
Don Gagne's avatar
Don Gagne committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    _cSignals(0)
{
}

MultiSignalSpy::~MultiSignalSpy()
{
    Q_ASSERT(_rgSignals);

    for (size_t i=0; i<_cSignals; i++) {
        delete _rgSpys[i];
    }
}

/// Initializes the class. Must be called once before use.
///     @return true if success, false for failure

Don Gagne's avatar
Don Gagne committed
43 44 45
bool MultiSignalSpy::init(QObject*        signalEmitter,    ///< [in] object which the signals are emitted from
                          const char**    rgSignals,        ///< [in] array of signals to spy on
                          size_t          cSignals)         ///< [in] numbers of signals in rgSignals
Don Gagne's avatar
Don Gagne committed
46 47 48 49 50 51 52 53 54 55 56 57
{
    if (!signalEmitter || !rgSignals || cSignals == 0) {
        qDebug() << "Invalid arguments";
        return false;
    }
    
    _signalEmitter = signalEmitter;
    _rgSignals = rgSignals;
    _cSignals = cSignals;

    // Allocate and connect QSignalSpy's
    _rgSpys = new QSignalSpy*[_cSignals];
58
    Q_ASSERT(_rgSpys != nullptr);
Don Gagne's avatar
Don Gagne committed
59 60 61 62 63 64 65 66 67 68 69
    for (size_t i=0; i<_cSignals; i++) {
        _rgSpys[i] = new QSignalSpy(_signalEmitter, _rgSignals[i]);
        if (!_rgSpys[i]->isValid()) {
            qDebug() << "Invalid signal";
            return false;
        }
    }
    
    return true;
}

Don Gagne's avatar
Don Gagne committed
70
bool MultiSignalSpy::_checkSignalByMaskWorker(quint32 mask, bool multipleSignalsAllowed)
Don Gagne's avatar
Don Gagne committed
71 72 73 74
{
    for (size_t i=0; i<_cSignals; i++) {
        if ((1 << i) & mask) {
            QSignalSpy* spy = _rgSpys[i];
75
            Q_ASSERT(spy != nullptr);
Don Gagne's avatar
Don Gagne committed
76
            
77 78
            if ((multipleSignalsAllowed && spy->count() ==  0) || (!multipleSignalsAllowed && spy->count() != 1)) {
                qDebug() << "Failed index:" << i;
Don Gagne's avatar
Don Gagne committed
79
                _printSignalState(mask);
Don Gagne's avatar
Don Gagne committed
80 81 82 83 84 85 86 87
                return false;
            }
        }
    }
    
    return true;
}

Don Gagne's avatar
Don Gagne committed
88
bool MultiSignalSpy::_checkOnlySignalByMaskWorker(quint32 mask, bool multipleSignalsAllowed)
Don Gagne's avatar
Don Gagne committed
89 90 91
{
    for (size_t i=0; i<_cSignals; i++) {
        QSignalSpy* spy = _rgSpys[i];
92
        Q_ASSERT(spy != nullptr);
Don Gagne's avatar
Don Gagne committed
93 94

        if ((1 << i) & mask) {
95
            if ((multipleSignalsAllowed && spy->count() ==  0) || (!multipleSignalsAllowed && spy->count() != 1)) {
Don Gagne's avatar
Don Gagne committed
96
                _printSignalState(mask);
Don Gagne's avatar
Don Gagne committed
97 98 99 100
                return false;
            }
        } else {
            if (spy->count() != 0) {
Don Gagne's avatar
Don Gagne committed
101
                _printSignalState(mask);
Don Gagne's avatar
Don Gagne committed
102 103 104 105 106 107 108 109
                return false;
            }
        }
    }
    
    return true;
}

Don Gagne's avatar
Don Gagne committed
110
bool MultiSignalSpy::checkSignalByMask(quint32 mask)
111 112 113 114
{
    return _checkSignalByMaskWorker(mask, false /* multipleSignalsAllowed */);
}

Don Gagne's avatar
Don Gagne committed
115
bool MultiSignalSpy::checkOnlySignalByMask(quint32 mask)
116 117 118 119
{
    return _checkOnlySignalByMaskWorker(mask, false /* multipleSignalsAllowed */);
}

Don Gagne's avatar
Don Gagne committed
120
bool MultiSignalSpy::checkSignalsByMask(quint32 mask)
121 122 123 124
{
    return _checkSignalByMaskWorker(mask, true /* multipleSignalsAllowed */);
}

Don Gagne's avatar
Don Gagne committed
125
bool MultiSignalSpy::checkOnlySignalsByMask(quint32 mask)
126 127 128 129
{
    return _checkOnlySignalByMaskWorker(mask, true /* multipleSignalsAllowed */);
}

Don Gagne's avatar
Don Gagne committed
130
/// @return true if signal count = 0 for specified signals
Don Gagne's avatar
Don Gagne committed
131
bool MultiSignalSpy::checkNoSignalByMask(quint32 mask)
Don Gagne's avatar
Don Gagne committed
132 133 134 135
{
    for (size_t i=0; i<_cSignals; i++) {
        if ((1 << i) & mask) {
            QSignalSpy* spy = _rgSpys[i];
136
            Q_ASSERT(spy != nullptr);
Don Gagne's avatar
Don Gagne committed
137 138

            if (spy->count() != 0) {
Don Gagne's avatar
Don Gagne committed
139
                _printSignalState(mask);
Don Gagne's avatar
Don Gagne committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
                return false;
            }
        }
    }
    
    return true;
}

/// @return true if signal count = 0 on all signals
bool MultiSignalSpy::checkNoSignals(void)
{
    return checkNoSignalByMask(~0);
}

/// @return QSignalSpy for the specified signal
Don Gagne's avatar
Don Gagne committed
155
QSignalSpy* MultiSignalSpy::getSpyByIndex(quint32 index)
Don Gagne's avatar
Don Gagne committed
156 157
{
    Q_ASSERT(index < _cSignals);
158
    Q_ASSERT(_rgSpys[index] != nullptr);
Don Gagne's avatar
Don Gagne committed
159 160 161 162 163

    return _rgSpys[index];
}

/// Sets the signal count to 0 for the specified signal
Don Gagne's avatar
Don Gagne committed
164
void MultiSignalSpy::clearSignalByIndex(quint32 index)
Don Gagne's avatar
Don Gagne committed
165 166
{
    Q_ASSERT(index < _cSignals);
167
    Q_ASSERT(_rgSpys[index] != nullptr);
Don Gagne's avatar
Don Gagne committed
168 169 170 171 172
    
    _rgSpys[index]->clear();
}

/// Sets the signal count to 0 for all specified signals
Don Gagne's avatar
Don Gagne committed
173
void MultiSignalSpy::clearSignalsByMask(quint32 mask)
Don Gagne's avatar
Don Gagne committed
174 175 176 177
{
    for (size_t i=0; i<_cSignals; i++) {
        if ((1 << i) & mask) {
            QSignalSpy* spy = _rgSpys[i];
178
            Q_ASSERT(spy != nullptr);
Don Gagne's avatar
Don Gagne committed
179 180 181 182 183 184 185 186 187

            spy->clear();
        }
    }
}

/// Sets the signal count to 0 for all signals
void MultiSignalSpy::clearAllSignals(void)
{
Don Gagne's avatar
Don Gagne committed
188
    for (quint32 i=0;i<_cSignals; i++) {
Don Gagne's avatar
Don Gagne committed
189 190 191 192 193 194 195 196 197 198 199 200 201
        clearSignalByIndex(i);
    }
}

void MultiSignalSpy::timerEvent(QTimerEvent * event)
{
    Q_UNUSED(event);
    _timeout = true;
}

/// Waits the specified signal
///     @return false for timeout
bool MultiSignalSpy::waitForSignalByIndex(
Don Gagne's avatar
Don Gagne committed
202
                                          quint32 index,  ///< [in] index of signal to wait on
Don Gagne's avatar
Don Gagne committed
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
                                          int     msec)   ///< [in] numbers of milleconds to wait before timeout, -1 wait forever
{
    // Check input parameters
    if (msec < -1 || msec == 0)
        return false;
    
    // activate the timeout
    _timeout = false;
    int timerId;
    if (msec != -1) {
        timerId = startTimer(msec);
        Q_ASSERT(timerId);
    } else {
        timerId = 0;
    }
    
    // Begin waiting
    QSignalSpy* spy = _rgSpys[index];
    Q_ASSERT(spy);
    
    while (spy->count() == 0 && !_timeout) {
Don Gagne's avatar
Don Gagne committed
224
        QTest::qWait(100);
Don Gagne's avatar
Don Gagne committed
225 226 227 228 229 230 231 232 233
    }
    
    // Clean up and return status
    if (timerId) {
        killTimer(timerId);
    }

    return spy->count() != 0;
}
234

Don Gagne's avatar
Don Gagne committed
235
void MultiSignalSpy::_printSignalState(quint32 mask)
236 237
{
    for (size_t i=0; i<_cSignals; i++) {
Don Gagne's avatar
Don Gagne committed
238 239
        bool expected = (1 << i) & mask;

240
        QSignalSpy* spy = _rgSpys[i];
241
        Q_ASSERT(spy != nullptr);
Don Gagne's avatar
Don Gagne committed
242
        qDebug() << "Signal index:" << i << "count:" << spy->count() << "expected:" << expected << _rgSignals[i];
243 244
    }
}
Don Gagne's avatar
Don Gagne committed
245

Don Gagne's avatar
Don Gagne committed
246
bool MultiSignalSpy::pullBoolFromSignalIndex(quint32 index)
Don Gagne's avatar
Don Gagne committed
247 248 249 250
{
    QSignalSpy* spy = getSpyByIndex(index);
    return spy->value(0).value(0).toBool();
}
Don Gagne's avatar
Don Gagne committed
251 252 253 254 255 256 257 258 259 260 261 262

int MultiSignalSpy::pullIntFromSignalIndex(quint32 index)
{
    QSignalSpy* spy = getSpyByIndex(index);
    return spy->value(0).value(0).toInt();
}

QGeoCoordinate MultiSignalSpy::pullQGeoCoordinateFromSignalIndex(quint32 index)
{
    QSignalSpy* spy = getSpyByIndex(index);
    return spy->value(0).value(0).value<QGeoCoordinate>();
}