mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-08-13 18:14:13 +02:00
da3a976b60
QetLogger (discussion #644, steps 1-3) captures whatever an explicit qDebug()/qInfo()/qWarning() call already decided to report. Most of a session -- painting, dragging, a slow synchronous operation -- produces no log output at all, so a silent multi-second gap in the log is indistinguishable from the user simply not doing anything. That gap came up directly: investigating a user-reported "the program lagged" required inferring stalls from timestamp gaps between unrelated log lines, which can't tell a real freeze apart from normal idle time. EventLoopWatchdog closes that gap directly instead of inferring it. A QTimer::PreciseTimer repeating tick (every 50ms) measures the *actual* elapsed time since the previous tick via QElapsedTimer (monotonic, unaffected by system clock/NTP adjustments). Qt does not queue up missed fires for a normal repeating timer, so if the main thread is blocked for 600ms, the timer fires once as soon as the loop frees up, with ~600ms measured since the last tick -- that gap is the stall, measured at its source. Only logs (via the existing qWarning() path, so it reuses QetLogger's file/ring/rotation with no new plumbing) when a tick is late by more than 200ms, so a healthy session produces zero output from this class, in keeping with QetLogger's bounded-log design. Same QET_WATCHDOG_DISABLE=1 escape-hatch convention as QetLogger's own QET_LOG_DISABLE=1. Deliberately not included: attributing a stall to what caused it. This tells you a stall happened and how long -- pairing that timestamp with gdb attached to a running session (as used for the CLI hang, PR #661) is still how you get from "it stalled" to a root cause. Stacked on #647 (feature-diagnostic-logging-crash) for QetLogger/ qWarning() plumbing this depends on -- diff includes its commits until that merges. Verified against the compiled binary, not just read: temporarily injected a QThread::msleep(600) via a one-shot QTimer 2s after startup, confirmed the exact expected warning ("EventLoopWatchdog: main thread stalled for 620 ms") at the right severity through the real qWarning()/QetLogger path, then removed the test hook and reconfirmed a normal run produces no output from this class at all.
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/*
|
|
Copyright 2006-2026 The QElectroTech Team
|
|
This file is part of QElectroTech.
|
|
|
|
QElectroTech 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "eventloopwatchdog.h"
|
|
|
|
#include <QDebug>
|
|
#include <QProcessEnvironment>
|
|
|
|
EventLoopWatchdog::EventLoopWatchdog(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
m_disabled = QProcessEnvironment::systemEnvironment()
|
|
.value(QStringLiteral("QET_WATCHDOG_DISABLE")) == QStringLiteral("1");
|
|
|
|
// Precise, not the default Coarse: Coarse explicitly trades timing
|
|
// accuracy for power/scheduling efficiency (platform-dependent, but
|
|
// commonly +/- a double-digit percentage), which would show up as
|
|
// noise indistinguishable from a real stall in exactly the
|
|
// measurement this class exists to make trustworthy.
|
|
m_timer.setTimerType(Qt::PreciseTimer);
|
|
connect(&m_timer, &QTimer::timeout, this, &EventLoopWatchdog::tick);
|
|
}
|
|
|
|
void EventLoopWatchdog::start()
|
|
{
|
|
if (m_disabled)
|
|
return;
|
|
|
|
m_elapsed.start();
|
|
m_timer.start(kTickIntervalMs);
|
|
}
|
|
|
|
void EventLoopWatchdog::tick()
|
|
{
|
|
// restart() returns the elapsed time and resets the clock in one
|
|
// call, so this tick's own cost is never counted against the next.
|
|
const qint64 actual_ms = m_elapsed.restart();
|
|
|
|
if (actual_ms > kStallThresholdMs) {
|
|
qWarning() << "EventLoopWatchdog: main thread stalled for"
|
|
<< actual_ms << "ms (expected a tick every"
|
|
<< kTickIntervalMs << "ms)";
|
|
}
|
|
}
|