forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl_config.cpp
236 lines (198 loc) · 6.21 KB
/
cl_config.cpp
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include "cl_config.h"
#include <wx/stdpaths.h>
#include <wx/filefn.h>
#include <wx/log.h>
#include <algorithm>
#include "cl_standard_paths.h"
clConfig::clConfig(const wxString& filename)
{
if ( wxFileName(filename).IsAbsolute() ) {
m_filename = filename;
} else {
m_filename = clStandardPaths::Get().GetUserDataDir() + wxFileName::GetPathSeparator() + "config" + wxFileName::GetPathSeparator() + filename;
}
{
// Make sure that the directory exists
wxLogNull noLog;
wxMkdir( clStandardPaths::Get().GetUserDataDir() );
wxMkdir( m_filename.GetPath() );
}
if ( m_filename.FileExists() ) {
m_root = new JSONRoot(m_filename);
} else {
m_root = new JSONRoot(cJSON_Object);
}
}
clConfig::~clConfig()
{
m_root->save( m_filename );
wxDELETE(m_root);
}
clConfig& clConfig::Get()
{
static clConfig config;
return config;
}
bool clConfig::GetWorkspaceTabOrder(wxArrayString& tabs, int& selected)
{
if ( m_root->toElement().hasNamedObject("workspaceTabOrder") ) {
JSONElement element = m_root->toElement().namedObject("workspaceTabOrder");
tabs = element.namedObject("tabs").toArrayString();
selected = element.namedObject("selected").toInt();
return true;
}
return false;
}
void clConfig::SetWorkspaceTabOrder(const wxArrayString& tabs, int selected)
{
DoDeleteProperty("workspaceTabOrder");
// first time
JSONElement e = JSONElement::createObject("workspaceTabOrder");
e.addProperty("tabs", tabs);
e.addProperty("selected", selected);
m_root->toElement().append( e );
m_root->save(m_filename);
}
void clConfig::DoDeleteProperty(const wxString& property)
{
if ( m_root->toElement().hasNamedObject(property) ) {
m_root->toElement().removeProperty(property);
}
}
bool clConfig::ReadItem(clConfigItem* item, const wxString &differentName)
{
wxString nameToUse = differentName.IsEmpty() ? item->GetName() : differentName;
if ( m_root->toElement().hasNamedObject(nameToUse) ) {
item->FromJSON( m_root->toElement().namedObject(nameToUse));
return true;
}
return false;
}
void clConfig::WriteItem(const clConfigItem* item, const wxString &differentName)
{
wxString nameToUse = differentName.IsEmpty() ? item->GetName() : differentName;
DoDeleteProperty(nameToUse);
m_root->toElement().append(item->ToJSON());
m_root->save(m_filename);
}
void clConfig::Reload()
{
if ( m_filename.FileExists() == false )
return;
delete m_root;
m_root = new JSONRoot(m_filename);
}
wxArrayString clConfig::MergeArrays(const wxArrayString& arr1, const wxArrayString& arr2) const
{
wxArrayString sArr1, sArr2;
sArr1.insert(sArr1.end(), arr1.begin(), arr1.end());
sArr2.insert(sArr2.end(), arr2.begin(), arr2.end());
// Sort the arrays
std::sort(sArr1.begin(), sArr1.end());
std::sort(sArr2.begin(), sArr2.end());
wxArrayString output;
std::set_union(sArr1.begin(), sArr1.end(), sArr2.begin(), sArr2.end(), std::back_inserter(output));
return output;
}
JSONElement::wxStringMap_t clConfig::MergeStringMaps(const JSONElement::wxStringMap_t& map1, const JSONElement::wxStringMap_t& map2) const
{
JSONElement::wxStringMap_t output;
output.insert(map1.begin(), map1.end());
output.insert(map2.begin(), map2.end());
return output;
}
void clConfig::Save()
{
if ( m_root )
m_root->save(m_filename);
}
void clConfig::Save(const wxFileName& fn)
{
if ( m_root )
m_root->save(fn);
}
JSONElement clConfig::GetGeneralSetting()
{
if ( !m_root->toElement().hasNamedObject("General") ) {
JSONElement general = JSONElement::createObject("General");
m_root->toElement().append(general);
}
return m_root->toElement().namedObject("General");
}
void clConfig::Write(const wxString& name, bool value)
{
JSONElement general = GetGeneralSetting();
if (general.hasNamedObject(name)) {
general.removeProperty(name);
}
general.addProperty(name, value);
Save();
}
bool clConfig::Read(const wxString& name, bool defaultValue)
{
JSONElement general = GetGeneralSetting();
if (general.namedObject(name).isBool()) {
return general.namedObject(name).toBool();
}
return defaultValue;
}
void clConfig::Write(const wxString& name, int value)
{
JSONElement general = GetGeneralSetting();
if (general.hasNamedObject(name)) {
general.removeProperty(name);
}
general.addProperty(name, value);
Save();
}
int clConfig::Read(const wxString& name, int defaultValue)
{
JSONElement general = GetGeneralSetting();
return general.namedObject(name).toInt(defaultValue);
}
void clConfig::Write(const wxString& name, const wxString& value)
{
JSONElement general = GetGeneralSetting();
if (general.hasNamedObject(name)) {
general.removeProperty(name);
}
general.addProperty(name, value);
Save();
}
wxString clConfig::Read(const wxString& name, const wxString& defaultValue)
{
JSONElement general = GetGeneralSetting();
if (general.namedObject(name).isString()) {
return general.namedObject(name).toString();
}
return defaultValue;
}
int clConfig::GetAnnoyingDlgAnswer(const wxString& name, int defaultValue)
{
if ( m_root->toElement().hasNamedObject("AnnoyingDialogsAnswers") ) {
JSONElement element = m_root->toElement().namedObject("AnnoyingDialogsAnswers");
if ( element.hasNamedObject(name) ) {
return element.namedObject(name).toInt(defaultValue);
}
}
return defaultValue;
}
void clConfig::SetAnnoyingDlgAnswer(const wxString& name, int value)
{
if ( !m_root->toElement().hasNamedObject("AnnoyingDialogsAnswers") ) {
JSONElement element = JSONElement::createObject("AnnoyingDialogsAnswers");
m_root->toElement().append(element);
}
JSONElement element =m_root->toElement().namedObject("AnnoyingDialogsAnswers");
if ( element.hasNamedObject(name) ) {
element.removeProperty(name);
}
element.addProperty(name, value);
Save();
}
void clConfig::ClearAnnoyingDlgAnswers()
{
DoDeleteProperty("AnnoyingDialogsAnswers");
Save();
Reload();
}