nymea/libguh-core/hardware/plugintimermanagerimplement...

234 lines
6.2 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright (C) 2017 Simon Stürz <simon.stuerz@guh.io> *
* *
* This file is part of guh. *
* *
* This library 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 2.1 of the License, or (at your option) any later version. *
* *
* This library 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 this library; If not, see *
* <http://www.gnu.org/licenses/>. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "plugintimermanagerimplementation.h"
#include "loggingcategories.h"
#include "guhcore.h"
namespace guhserver {
PluginTimerImplementation::PluginTimerImplementation(int intervall, QObject *parent) :
PluginTimer(parent),
m_interval(intervall)
{
connect(GuhCore::instance()->timeManager(), &TimeManager::tick, this, &PluginTimerImplementation::tick);
}
int PluginTimerImplementation::interval() const
{
return m_interval;
}
int PluginTimerImplementation::currentTick() const
{
return m_currentTick;
}
bool PluginTimerImplementation::running() const
{
return m_running;
}
void PluginTimerImplementation::setRunning(const bool &running)
{
if (m_running != running) {
m_running = running;
emit runningChanged(m_running);
}
}
void PluginTimerImplementation::setPaused(const bool &paused)
{
if (m_paused != paused) {
m_paused = paused;
emit pausedChanged(m_paused);
}
}
void PluginTimerImplementation::setCurrentTick(const int &tick)
{
if (m_currentTick != tick) {
m_currentTick = tick;
emit currentTickChanged(m_currentTick);
}
}
void PluginTimerImplementation::tick()
{
if (m_paused)
return;
if (!m_running)
return;
setCurrentTick(m_currentTick += 1);
if (m_currentTick >= m_interval) {
emit timeout();
reset();
}
}
void PluginTimerImplementation::reset()
{
setCurrentTick(0);
}
void PluginTimerImplementation::start()
{
setPaused(false);
setRunning(true);
}
void PluginTimerImplementation::stop()
{
setPaused(false);
setRunning(false);
}
void PluginTimerImplementation::pause()
{
m_paused = true;
}
void PluginTimerImplementation::resume()
{
m_paused = false;
}
PluginTimerManagerImplementation::PluginTimerManagerImplementation(QObject *parent) :
PluginTimerManager(parent)
{
m_available = true;
qCDebug(dcHardware()) << "-->" << name() << "created successfully.";
}
PluginTimer *PluginTimerManagerImplementation::registerTimer(int seconds)
{
QPointer<PluginTimerImplementation> pluginTimer = new PluginTimerImplementation(seconds, this);
qCDebug(dcHardware()) << "Register timer" << pluginTimer->interval();
// TODO: schedule timer for load balancing
// // Get min/max timer interval
// PluginTimer *shortestTimer = nullptr;
// PluginTimer *longestTimer = nullptr;
// foreach (PluginTimer *timer, m_timers) {
// if (!shortestTimer && !longestTimer) {
// shortestTimer = timer;
// longestTimer = timer;
// continue;
// }
// if (timer->interval() < shortestTimer->interval()) {
// shortestTimer = timer;
// continue;
// }
// if (timer->interval() > longestTimer->interval()) {
// longestTimer = timer;
// continue;
// }
// }
m_timers.append(pluginTimer);
return pluginTimer.data();
}
void PluginTimerManagerImplementation::unregisterTimer(PluginTimer *timer)
{
QPointer<PluginTimer> timerPointer(timer);
if (timerPointer.isNull()) {
qCWarning(dcHardware()) << name() << "Cannot unregister timer. Looks like the timer is already unregistered.";
return;
}
qCDebug(dcHardware()) << "Unregister timer" << timer->interval();
foreach (QPointer<PluginTimerImplementation> tPointer, m_timers) {
if (timerPointer.data() == tPointer.data()) {
m_timers.removeAll(tPointer);
tPointer->deleteLater();
}
}
}
bool PluginTimerManagerImplementation::available() const
{
return m_available;
}
bool PluginTimerManagerImplementation::enabled() const
{
return m_enabled;
}
void PluginTimerManagerImplementation::timeTick()
{
// If timer resource is not enabled do nothing
if (!enabled()) {
return;
}
foreach (PluginTimerImplementation *timer, m_timers) {
timer->tick();
}
}
void PluginTimerManagerImplementation::setEnabled(bool enabled)
{
if (enabled == m_enabled) {
qCDebug(dcHardware()) << "TimerManager already" << (enabled ? "enabled": "disabled");
return;
}
m_enabled = enabled;
emit enabledChanged(enabled);
foreach (QPointer<PluginTimerImplementation> timer, m_timers) {
timer->setPaused(enabled);
}
}
bool PluginTimerManagerImplementation::enable()
{
if (!available())
return false;
setEnabled(true);
return true;
}
bool PluginTimerManagerImplementation::disable()
{
if (!available())
return false;
setEnabled(false);
return true;
}
}