-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSysConfig.cpp
More file actions
497 lines (376 loc) · 9.25 KB
/
Copy pathSysConfig.cpp
File metadata and controls
497 lines (376 loc) · 9.25 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
/*
* This file is part of libopi.
*
* Copyright (c) 2018 Tor Krill <tor@openproducts.com>
*
* libopi is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* libopi 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with libopi. If not, see <http://www.gnu.org/licenses/>.
*/
#include "SysConfig.h"
#include "Config.h"
#include <libutils/Exceptions.h>
#include <libutils/FileUtils.h>
#include <libutils/Logger.h>
#include <sys/file.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <utility>
#include <vector>
#include <ext/stdio_filebuf.h>
#include <fstream>
using namespace Utils;
namespace OPI {
SysConfig::SysConfig(): path(SYSCONFIGDBPATH),fd(0), writeable(false)
{
}
SysConfig::SysConfig(bool writeable): path(SYSCONFIGDBPATH),fd(0), writeable(writeable)
{
}
SysConfig::SysConfig(string path, bool writeable): path(std::move(path)), fd(0), writeable(writeable)
{
}
void SysConfig::Writeable(bool writeable)
{
this->writeable = writeable;
}
bool SysConfig::IsWriteable()
{
return this->writeable;
}
string SysConfig::GetKeyAsString(const string &scope, const string &key)
{
json db = this->LoadDB();
json val = this->GetKey( db, scope, key );
if( val.is_string() )
{
return val;
}
logg << Logger::Error << "Key " << key << " not of wanted type" << lend;
throw runtime_error("Key not of wanted type in config db");
}
list<string> SysConfig::GetKeyAsStringList(const string &scope, const string &key)
{
json db = this->LoadDB();
json val = this->GetKey( db, scope, key );
if( val.is_array() )
{
list<string> ret;
for( const auto& item: val)
{
if( item.is_string() )
{
ret.push_back(item);
}
else
{
logg << Logger::Error << "ConfigDB: unexpected data type in list"<<lend;
throw runtime_error("Unexpected data type in list");
}
}
return ret;
}
logg << Logger::Error << "Key " << key << " not of wanted type" << lend;
throw runtime_error("Key not of wanted type in config db");
}
int SysConfig::GetKeyAsInt(const string &scope, const string &key)
{
json db = this->LoadDB();
json val = this->GetKey( db, scope, key );
if( val.is_number_integer() )
{
return val;
}
logg << Logger::Error << "Key " << key << " not of wanted type" << lend;
throw runtime_error("Key not of wanted type in config db");
}
list<int> SysConfig::GetKeyAsIntList(const string &scope, const string &key)
{
json db = this->LoadDB();
json val = this->GetKey( db, scope, key );
if( val.is_array() )
{
list<int> ret;
for( const auto& item: val )
{
if( item.is_number_integer())
{
ret.push_back(item);
}
else
{
logg << Logger::Error << "ConfigDB: unexpected data type in list"<<lend;
throw runtime_error("Unexpected data type in list");
}
}
return ret;
}
logg << Logger::Error << "Key " << key << " not of wanted type" << lend;
throw runtime_error("Key not of wanted type in config db");
}
bool SysConfig::GetKeyAsBool(const string &scope, const string &key)
{
json db = this->LoadDB();
json val = this->GetKey( db, scope, key );
if( val.is_boolean() )
{
return val;
}
logg << Logger::Error << "Key " << key << " not of wanted type" << lend;
throw runtime_error("Key not of wanted type in config db");
}
list<bool> SysConfig::GetKeyAsBoolList(const string &scope, const string &key)
{
json db = this->LoadDB();
json val = this->GetKey( db, scope, key );
if( val.is_array() )
{
list<bool> ret;
for(const auto& item: val)
{
if( item.is_boolean() )
{
ret.push_back(item);
}
else
{
logg << Logger::Error << "ConfigDB: unexpected data type in list"<<lend;
throw runtime_error("Unexpected data type in list");
}
}
return ret;
}
logg << Logger::Error << "Key " << key << " not of wanted type" << lend;
throw runtime_error("Key not of wanted type in config db");
}
void SysConfig::PutKey(const string &scope, const string &key, const char *value)
{
this->PutKey(scope, key, string(value));
}
void SysConfig::PutKey(const string &scope, const string &key, const string &value)
{
this->OpenDB();
json db = this->ReadDB();
db[scope][key]=value;
this->WriteDB(db);
this->CloseDB();
}
void SysConfig::PutKey(const string &scope, const string &key, const list<string> &value)
{
this->OpenDB();
json db = this->ReadDB();
json l;
for(const auto& val: value)
{
l.push_back(val);
}
db[scope][key] = l;
this->WriteDB(db);
this->CloseDB();
}
void SysConfig::PutKey(const string &scope, const string &key, int value)
{
this->OpenDB();
json db = this->ReadDB();
db[scope][key]=value;
this->WriteDB(db);
this->CloseDB();
}
void SysConfig::PutKey(const string &scope, const string &key, const list<int> &value)
{
this->OpenDB();
json db = this->ReadDB();
json l;
for(const auto& val: value)
{
l.push_back(val);
}
db[scope][key] = l;
this->WriteDB(db);
this->CloseDB();
}
void SysConfig::PutKey(const string &scope, const string &key, bool value)
{
this->OpenDB();
json db = this->ReadDB();
db[scope][key]=value;
this->WriteDB(db);
this->CloseDB();
}
void SysConfig::PutKey(const string &scope, const string &key, const list<bool> &value)
{
this->OpenDB();
json db = this->ReadDB();
json l;
for(const auto& val: value)
{
l.push_back(val);
}
db[scope][key] = l;
this->WriteDB(db);
this->CloseDB();
}
void SysConfig::RemoveKey(const string &scope, const string &key)
{
this->OpenDB();
json db = this->ReadDB();
if( this->HasKey( db, scope, key ) )
{
db[scope].erase(key);
if(db[scope].empty() )
{
db.erase(scope);
}
}
this->WriteDB(db);
this->CloseDB();
}
bool SysConfig::HasKey(const string &scope, const string &key)
{
json db = this->LoadDB();
bool res = this->HasKey( db, scope, key);
this->CloseDB();
return res;
}
bool SysConfig::HasScope(const string &scope)
{
json db = this->LoadDB();
bool res = this->HasScope( db, scope );
this->CloseDB();
return res;
}
SysConfig::~SysConfig()
{
this->CloseDB();
}
json SysConfig::LoadDB()
{
this->OpenDB();
json val = this->ReadDB();
this->CloseDB();
return val;
}
json SysConfig::GetKey(const json &db, const string &scope, const string &key)
{
if( this->HasKey(db, scope, key) )
{
return db[scope][key];
}
else
{
logg << Logger::Debug << "ConfigDB: No such key [" << key << "] or scope [" << scope << "] in database" << lend;
}
throw runtime_error("ConfigDB: key or scope not found");
}
bool SysConfig::DBExists()
{
return File::FileExists( SYSCONFIGDBPATH );
}
bool SysConfig::HasScope(const json &val, const string &scope)
{
return val.contains( scope ) && val[scope].is_object();
}
bool SysConfig::HasKey(const json &val, const string &scope, const string &key)
{
return this->HasScope(val, scope) && val[scope].contains(key);
}
void SysConfig::OpenDB()
{
if( this->fd > 0 )
{
throw runtime_error("Configdb already open");
}
int flags = this->writeable ? O_RDWR|O_CREAT : O_RDONLY;
if((this->fd=open(this->path.c_str(), flags, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH))<0)
{
logg << Logger::Error << "Unable to open file sysconfig database (" << path << ")"<< lend;
throw ErrnoException("Unable to open file '"+path+"'");
}
if( flock(this->fd, LOCK_EX) == -1 )
{
close( this->fd );
this->fd = 0;
logg << Logger::Error << "Unable to lock sysconfig database"<< lend;
throw ErrnoException("Unable to lock file '"+ this->path +"'");
}
}
void SysConfig::CloseDB()
{
if ( this->fd > 0 )
{
close( this->fd );
this->fd = 0;
}
}
json SysConfig::ReadDB()
{
json val;
struct stat st = {};
if(fstat(this->fd,&st))
{
return val;
}
// Empty file
if( st.st_size == 0 )
{
return val;
}
// Make sure we have room for data
vector<char> data(st.st_size);
data.resize(st.st_size);
size_t read_total = 0;
ssize_t bytes_read = 0;
do
{
bytes_read = read(fd, &data[read_total], st.st_size - read_total);
if(bytes_read < 0 )
{
logg << Logger::Error << "Unable to read sysconfig database"<< lend;
throw ErrnoException("Failed to read file '"+path+"'");
}
if( bytes_read > 0 )
{
read_total += bytes_read;
}
}while( bytes_read>0);
try
{
val = json::parse(string(&data.front(), data.size()) );
}
catch (json::parse_error& err)
{
logg << Logger::Error << "Failed to parse sysconfig datbaase: " << err.what() <<lend;
}
return val;
}
void SysConfig::WriteDB(const json &db)
{
if( ! this->writeable )
{
logg << Logger::Error << "SysConfig: tried to write readonly sysconfig" << lend;
throw std::runtime_error("Attempt to write readonly config database");
}
if( lseek( this->fd, SEEK_SET, 0 ) < 0 )
{
throw ErrnoException("ConfigDB: failed to rewind db-file before write");
}
if( ftruncate( this->fd, 0 ) < 0 )
{
throw ErrnoException("ConfigDB: failed to truncate db-file before write");
}
string out = db.dump(4);
__gnu_cxx::stdio_filebuf<char> fb(this->fd,std::ios_base::out);
iostream of(&fb);
of<< out <<flush;
}
} // END NameSpace OPI