-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig_file.h
101 lines (84 loc) · 3.33 KB
/
config_file.h
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
/* ----------------------------------------------------------------------------
* Copyright (C) 2007-2010,2020 Th. Zoerner
* ----------------------------------------------------------------------------
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ----------------------------------------------------------------------------
*/
#ifndef _CONFIG_FILE_H
#define _CONFIG_FILE_H
#include <QObject>
#include <QJsonObject>
#include <QFileDevice>
class QTimer;
class QFile;
class MainWin;
class MainText;
class MainSearch;
class Highlighter;
enum class LoadMode { Head, Tail };
// ----------------------------------------------------------------------------
class ConfigFile : public QObject
{
Q_OBJECT
public:
static void connectWidgets(MainWin * mainWin, MainSearch * search,
MainText * mainText, Highlighter * higl);
static void loadRcFile();
static void updateRcFile();
static void updateRcAfterIdle();
static bool isValid();
static void getFileLoadParams(LoadMode& mode, size_t& size, bool fromPipe);
static void updateFileLoadParams(LoadMode mode, size_t size);
private:
// constructor can only be invoked via the static interface
ConfigFile();
~ConfigFile();
void loadConfig();
void writeConfig();
void writeConfigDelayed();
QJsonObject getRcValues();
void setRcValues(const QJsonObject& obj);
bool checkRcVersion(const QJsonObject& obj);
QFileDevice::Permissions backupConfig(QFile& fh);
QString getRcPath();
private:
static MainWin * s_mainWin;
static MainText * s_mainText;
static MainSearch * s_search;
static Highlighter* s_higl;
static ConfigFile * s_instance;
QTimer * m_timUpdateRc = nullptr;
qint64 m_tsUpdateRc = 0;
bool m_rcFileWriteError = false;
bool m_rcFileBackedup = false;
bool m_rcLoadComplete = false;
QJsonObject m_prevRcContent;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// command line parameters
//
friend bool ParseArgv(int argc, const char * const argv[]);
static LoadMode load_file_mode;
static size_t load_buf_size_stream_default;
static size_t load_buf_size;
static bool load_buf_size_opt;
static const LoadMode defaultLoadFileMode = LoadMode::Head;
static const size_t defaultLoadBufSize = 0;
static const size_t defaultLoadBufSizeStream = 20*1024*1024;
static constexpr const char * defaultRcFileName = ".trowserc.qt";
static const char * myrcfile;
static const uint32_t rcfile_compat = 0x03000001;
static const uint32_t rcfile_version = 0x03000001;
};
bool ParseArgv(int argc, const char * const argv[]);
#endif // _CONFIG_FILE_H