rssguard/src/librssguard/miscellaneous/autosaver.cpp
Martin Rotter d40409f62a Save.
2020-08-07 12:16:51 +02:00

59 lines
1.3 KiB
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#include "miscellaneous/autosaver.h"
#include <QCoreApplication>
#include <QDir>
#include <QMetaObject>
#include "definitions/definitions.h"
#define AUTOSAVE_IN (1000 * 3) // seconds
#define MAXWAIT (1000 * 15) // seconds
AutoSaver::AutoSaver(QObject* parent) : QObject(parent) {
Q_ASSERT(parent);
}
AutoSaver::~AutoSaver() {
if (m_timer.isActive()) {
qWarningNN << LOGSEC_CORE << "AutoSaver still active when destroyed, changes not saved.";
if (parent() != nullptr && parent()->metaObject() != nullptr) {
qDebugNN << LOGSEC_CORE << "Should call saveIfNeccessary.";
}
}
}
void AutoSaver::changeOccurred() {
if (!m_firstChange.isValid()) {
m_firstChange.start();
}
if (m_firstChange.elapsed() > MAXWAIT) {
saveIfNeccessary();
}
else {
m_timer.start(AUTOSAVE_IN, this);
}
}
void AutoSaver::timerEvent(QTimerEvent* event) {
if (event->timerId() == m_timer.timerId()) {
saveIfNeccessary();
}
else {
QObject::timerEvent(event);
}
}
void AutoSaver::saveIfNeccessary() {
if (m_timer.isActive()) {
m_timer.stop();
m_firstChange.invalidate();
if (!QMetaObject::invokeMethod(parent(), "save", Qt::DirectConnection)) {
qCriticalNN << LOGSEC_CORE << ("AutoSaver error invoking slot save() on parent.");
}
}
}