// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QTIMERINFO_UNIX_P_H #define QTIMERINFO_UNIX_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include // #define QTIMERINFO_DEBUG #include "qabstracteventdispatcher.h" #include // struct timeval QT_BEGIN_NAMESPACE // internal timer info struct QTimerInfo { int id; // - timer identifier qint64 interval; // - timer interval in milliseconds Qt::TimerType timerType; // - timer type timespec timeout; // - when to actually fire QObject *obj; // - object to receive event QTimerInfo **activateRef; // - ref from activateTimers #ifdef QTIMERINFO_DEBUG timeval expected; // when timer is expected to fire float cumulativeError; uint count; #endif }; class Q_CORE_EXPORT QTimerInfoList : public QList { #if ((_POSIX_MONOTONIC_CLOCK-0 <= 0) && !defined(Q_OS_MAC)) || defined(QT_BOOTSTRAPPED) timespec previousTime; clock_t previousTicks; int ticksPerSecond; int msPerTick; bool timeChanged(timespec *delta); void timerRepair(const timespec &); #endif // state variables used by activateTimers() QTimerInfo *firstTimerInfo; public: QTimerInfoList(); timespec currentTime; timespec updateCurrentTime(); // must call updateCurrentTime() first! void repairTimersIfNeeded(); bool timerWait(timespec &); void timerInsert(QTimerInfo *); qint64 timerRemainingTime(int timerId); void registerTimer(int timerId, qint64 interval, Qt::TimerType timerType, QObject *object); bool unregisterTimer(int timerId); bool unregisterTimers(QObject *object); QList registeredTimers(QObject *object) const; int activateTimers(); }; QT_END_NAMESPACE #endif // QTIMERINFO_UNIX_P_H