blob: 3040ac2ed43616b0f94cb1592b75b59ecf8261c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/* Copyright 2015 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "BaseConfigObject.h"
#include <QTimer>
#include <QFile>
#include <QCoreApplication>
#include <QDebug>
#include "Exception.h"
#include "FileSystem.h"
BaseConfigObject::BaseConfigObject(const QString &filename)
: m_filename(filename)
{
m_saveTimer = new QTimer;
m_saveTimer->setSingleShot(true);
// cppcheck-suppress pureVirtualCall
QObject::connect(m_saveTimer, &QTimer::timeout, [this](){saveNow();});
setSaveTimeout(250);
m_initialReadTimer = new QTimer;
m_initialReadTimer->setSingleShot(true);
QObject::connect(m_initialReadTimer, &QTimer::timeout, [this]()
{
loadNow();
m_initialReadTimer->deleteLater();
m_initialReadTimer = 0;
});
m_initialReadTimer->start(0);
// cppcheck-suppress pureVirtualCall
m_appQuitConnection = QObject::connect(qApp, &QCoreApplication::aboutToQuit, [this](){saveNow();});
}
BaseConfigObject::~BaseConfigObject()
{
delete m_saveTimer;
if (m_initialReadTimer)
{
delete m_initialReadTimer;
}
QObject::disconnect(m_appQuitConnection);
}
void BaseConfigObject::setSaveTimeout(int msec)
{
m_saveTimer->setInterval(msec);
}
void BaseConfigObject::scheduleSave()
{
m_saveTimer->stop();
m_saveTimer->start();
}
void BaseConfigObject::saveNow()
{
if (m_saveTimer->isActive())
{
m_saveTimer->stop();
}
if (m_disableSaving)
{
return;
}
try
{
FS::write(m_filename, doSave());
}
catch (Exception & e)
{
qCritical() << e.cause();
}
}
void BaseConfigObject::loadNow()
{
if (m_saveTimer->isActive())
{
saveNow();
}
try
{
doLoad(FS::read(m_filename));
}
catch (Exception & e)
{
qWarning() << "Error loading" << m_filename << ":" << e.cause();
}
}
|