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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 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 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/*
timerinfo.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Thomas McGuire <thomas.mcguire@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "timerinfo.h"
#include "timermodel.h"
#include <core/util.h>
#include <core/probe.h>
#include <QObject>
#include <QTimer>
#include <QThread>
#include <QAbstractEventDispatcher>
#include <QMutexLocker>
using namespace GammaRay;
namespace GammaRay {
uint qHash(const TimerId &id)
{
switch (id.m_type) {
case TimerId::InvalidType:
Q_UNREACHABLE();
break;
case TimerId::QQmlTimerType:
case TimerId::QTimerType:
return ::qHash(id.m_timerAddress);
case TimerId::QObjectType:
return ::qHash(id.m_timerId) + ::qHash(id.m_timerAddress);
}
return 0;
}
}
TimerId::TimerId(QObject *timer)
: m_type(QQmlTimerType)
, m_timerAddress(timer)
{
Q_ASSERT(timer);
if (qobject_cast<QTimer *>(timer)) {
m_type = QTimerType;
}
}
TimerId::TimerId(int timerId, QObject *receiver)
: m_type(QObjectType)
, m_timerAddress(receiver)
, m_timerId(timerId)
{
Q_ASSERT(m_timerId != -1);
}
TimerId::Type TimerId::type() const
{
return m_type;
}
QObject *TimerId::address() const
{
return m_timerAddress;
}
int TimerId::timerId() const
{
return m_timerId;
}
bool TimerId::operator==(const TimerId &other) const
{
if (m_type != other.m_type)
return false;
switch (m_type) {
case TimerId::InvalidType:
Q_UNREACHABLE();
break;
case TimerId::QQmlTimerType:
case TimerId::QTimerType:
return m_timerAddress == other.m_timerAddress;
case TimerId::QObjectType:
return m_timerId == other.m_timerId && m_timerAddress == other.m_timerAddress;
}
return false;
}
bool TimerId::operator<(const TimerId &other) const
{
if (m_type == other.m_type) {
switch (m_type) {
case TimerId::InvalidType: {
Q_UNREACHABLE();
return false;
}
case TimerId::QQmlTimerType:
case TimerId::QTimerType:
return m_timerAddress < other.m_timerAddress;
case TimerId::QObjectType: {
if (m_timerId == other.m_timerId)
return m_timerAddress < other.m_timerAddress;
return m_timerId < other.m_timerId;
}
}
}
return m_type < other.m_type;
}
void TimerIdInfo::update(const TimerId &id, QObject *receiver)
{
QObject *object = receiver ? receiver : id.address();
type = id.type();
state = InvalidState;
// The timer became invalid
if (!object || (lastReceiverAddress == object && !lastReceiverObject)) {
type = TimerId::InvalidType;
return;
}
interval = 0;
switch (id.type()) {
case TimerId::InvalidType: {
Q_UNREACHABLE();
break;
}
case TimerId::QQmlTimerType: {
timerId = -1;
interval = object->property("interval").toInt();
lastReceiverAddress = id.address();
lastReceiverObject = object;
objectName = Util::displayString(object);
if (!object->property("running").toBool())
state = InactiveState;
else if (!object->property("repeat").toBool())
state = SingleShotState;
else
state = RepeatState;
break;
}
case TimerId::QTimerType: {
const QTimer *const timer = qobject_cast<QTimer *>(object);
timerId = timer->timerId();
interval = timer->interval();
lastReceiverAddress = id.address();
lastReceiverObject = object;
objectName = Util::displayString(object);
if (!timer->isActive())
state = InactiveState;
else if (timer->isSingleShot())
state = SingleShotState;
else
state = RepeatState;
break;
}
case TimerId::QObjectType: {
timerId = id.timerId();
lastReceiverAddress = object;
lastReceiverObject = receiver;
objectName = Util::displayString(object);
const QAbstractEventDispatcher *dispatcher = QAbstractEventDispatcher::instance(object->thread());
const QList<QAbstractEventDispatcher::TimerInfo> timers = dispatcher->registeredTimers(object);
const auto it = std::find_if(timers.constBegin(), timers.constEnd(), [this](const QAbstractEventDispatcher::TimerInfo &timer) {
return timer.timerId == timerId;
});
if (it != timers.constEnd()) {
interval = (*it).interval;
state = RepeatState;
}
break;
}
}
}
|