// SPDX-License-Identifier: LGPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of nymea. * * nymea is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * nymea 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with nymea. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /*! \class nymeaserver::TimeManager \brief Describes the centralized time manager of nymea. \ingroup rules \inmodule core */ /*! \fn void nymeaserver::TimeManager::tick() Represents the central time tick. Will be emitted every second. */ /*! \fn void nymeaserver::TimeManager::dateTimeChanged(const QDateTime &dateTime); Will be emitted when the \a dateTime has changed. */ #include "timemanager.h" #include "loggingcategories.h" namespace nymeaserver { /*! Constructs a new \l{TimeManager} with the given \a timeZone and \a parent. */ TimeManager::TimeManager(QObject *parent) : QObject(parent) { m_timerId = startTimer(1000, Qt::VeryCoarseTimer); } /*! Returns the current dateTime of this \l{TimeManager}. */ QDateTime TimeManager::currentDateTime() const { return QDateTime::currentDateTime().addSecs(m_overrideDifference); } /*! Stop the time. * * \note This method should only be used in tests and when shutting down the system. */ void TimeManager::stopTimer() { qCDebug(dcTimeManager()) << "Stopping TimeManager"; killTimer(m_timerId); } /*! Set the current time of this TimeManager to the given \a dateTime. * * \note This method should only be used in tests. */ void TimeManager::setTime(const QDateTime &dateTime) { qCWarning(dcTimeManager()) << "TimeManager time changed" << dateTime.toString("dd.MM.yyyy hh:mm:ss") << "You should only see this in tests."; m_overrideDifference = QDateTime::currentDateTime().secsTo(dateTime); // This method will only be called for testing to set the internal time emit dateTimeChanged(dateTime); } void TimeManager::timerEvent(QTimerEvent *event) { Q_UNUSED(event) emit tick(); // Minute based nymea time QDateTime now = QDateTime::currentDateTime(); if (m_lastEvent.time().minute() != now.time().minute()) { m_lastEvent = now; emit dateTimeChanged(now.addSecs(m_overrideDifference)); } } }