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
|
/* -*- c++ -*- */
/*
* Copyright 2006,2013,2015 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio 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, or (at your option)
* any later version.
*
* GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <gnuradio/prefs.h>
#include <gnuradio/sys_paths.h>
#include <gnuradio/constants.h>
#include <algorithm>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/fstream.hpp>
namespace fs = boost::filesystem;
namespace gr {
prefs *
prefs::singleton()
{
static prefs instance; // Guaranteed to be destroyed.
// Instantiated on first use.
return &instance;
}
prefs::prefs()
{
std::string config = _read_files(_sys_prefs_filenames());
// Convert the string into a map
_convert_to_map(config);
}
prefs::~prefs()
{
// nop
}
std::vector<std::string>
prefs::_sys_prefs_filenames()
{
std::vector<std::string> fnames;
fs::path dir = prefsdir();
if(!fs::is_directory(dir))
return fnames;
fs::directory_iterator diritr(dir);
while(diritr != fs::directory_iterator()) {
fs::path p = *diritr++;
if(p.extension() == ".conf")
fnames.push_back(p.string());
}
std::sort(fnames.begin(), fnames.end());
// Find if there is a ~/.gnuradio/config.conf file and add this to
// the end of the file list to override any preferences in the
// installed path config files.
fs::path homedir = fs::path(gr::appdata_path());
homedir = homedir/".gnuradio/config.conf";
if(fs::exists(homedir)) {
fnames.push_back(homedir.string());
}
return fnames;
}
std::string
prefs::_read_files(const std::vector<std::string> &filenames)
{
std::string config;
std::vector<std::string>::const_iterator sitr;
char tmp[1024];
for(sitr = filenames.begin(); sitr != filenames.end(); sitr++) {
fs::ifstream fin(*sitr);
while(!fin.eof()) {
fin.getline(tmp, 1024);
std::string t(tmp);
// ignore empty lines or lines of just comments
if((t.size() > 0) && (t[0] != '#')) {
// remove any comments in the line
size_t hash = t.find("#");
// Remove any white space unless it's between quotes
// Search if the string has any quotes in it
size_t quote1 = t.find("\"");
if(quote1 != std::string::npos) {
// If yes, find where the start and end quotes are.
// Note that this isn't robust if there are multiple
// quoted strings in the line; this will just take the
// first and last, and if there is only a single quote,
// this will treat the entire line after the quote as the
// quoted text.
// the inq variable is strips the quotes as well.
size_t quote2 = t.find_last_of("\"");
std::string sol = t.substr(0, quote1);
std::string inq = t.substr(quote1+1, quote2-quote1-1);
std::string eol = t.substr(quote2+1, t.size()-quote2-1);
// Remove all white space of the text before the first quote
sol.erase(std::remove_if(sol.begin(), sol.end(),
::isspace), sol.end());
// Remove all white space of the text after the end quote
eol.erase(std::remove_if(eol.begin(), eol.end(),
::isspace), eol.end());
// Pack the stripped start and end of lines with the part
// of the string in quotes (but without the quotes).
t = sol + inq + eol;
}
else {
// No quotes, just strip all white space
t.erase(std::remove_if(t.begin(), t.end(),
::isspace), t.end());
}
// Use hash marks at the end of each segment as a delimiter
config += t.substr(0, hash) + '#';
}
}
fin.close();
}
return config;
}
void
prefs::_convert_to_map(const std::string &conf)
{
// Convert the string into an map of maps
// Map is structured as {section name: map of options}
// And options map is simply: {option name: option value}
std::string sub = conf;
size_t sec_start = sub.find("[");
while(sec_start != std::string::npos) {
sub = sub.substr(sec_start);
size_t sec_end = sub.find("]");
if(sec_end == std::string::npos)
throw std::runtime_error("Config file error: Mismatched section label.\n");
std::string sec = sub.substr(1, sec_end-1);
size_t next_sec_start = sub.find("[", sec_end);
std::string subsec = sub.substr(sec_end+1, next_sec_start-sec_end-2);
std::transform(sec.begin(), sec.end(), sec.begin(), ::tolower);
std::map<std::string, std::string> options_map = d_config_map[sec];
size_t next_opt = 0;
size_t next_val = 0;
next_opt = subsec.find("#");
while(next_opt < subsec.size()-1) {
next_val = subsec.find("=", next_opt);
std::string option = subsec.substr(next_opt+1, next_val-next_opt-1);
next_opt = subsec.find("#", next_val);
std::string value = subsec.substr(next_val+1, next_opt-next_val-1);
std::transform(option.begin(), option.end(), option.begin(), ::tolower);
options_map[option] = value;
}
d_config_map[sec] = options_map;
sec_start = sub.find("[", sec_end);
}
}
void
prefs::add_config_file(const std::string &configfile)
{
std::vector<std::string> filenames;
filenames.push_back(configfile);
std::string config = _read_files(filenames);
_convert_to_map(config);
}
std::string
prefs::to_string()
{
config_map_itr sections;
config_map_elem_itr options;
std::stringstream s;
for(sections = d_config_map.begin(); sections != d_config_map.end(); sections++) {
s << "[" << sections->first << "]" << std::endl;
for(options = sections->second.begin(); options != sections->second.end(); options++) {
s << options->first << " = " << options->second << std::endl;
}
s << std::endl;
}
return s.str();
}
void
prefs::save()
{
std::string conf = to_string();
fs::path homedir = fs::path(gr::appdata_path());
homedir = homedir/".gnuradio/config.conf";
fs::ofstream fout(homedir);
fout << conf;
fout.close();
}
char *
prefs::option_to_env(std::string section, std::string option)
{
std::stringstream envname;
std::string secname=section, optname=option;
std::transform(section.begin(), section.end(), secname.begin(), ::toupper);
std::transform(option.begin(), option.end(), optname.begin(), ::toupper);
envname << "GR_CONF_" << secname << "_" << optname;
return getenv(envname.str().c_str());
}
bool
prefs::has_section(const std::string §ion)
{
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
return d_config_map.count(s) > 0;
}
bool
prefs::has_option(const std::string §ion, const std::string &option)
{
if(option_to_env(section, option))
return true;
if(has_section(section)) {
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
std::string o = option;
std::transform(option.begin(), option.end(), o.begin(), ::tolower);
config_map_itr sec = d_config_map.find(s);
return sec->second.count(o) > 0;
}
else {
return false;
}
}
const std::string
prefs::get_string(const std::string §ion, const std::string &option,
const std::string &default_val)
{
char *env = option_to_env(section, option);
if(env)
return std::string(env);
if(has_option(section, option)) {
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
std::string o = option;
std::transform(option.begin(), option.end(), o.begin(), ::tolower);
config_map_itr sec = d_config_map.find(s);
config_map_elem_itr opt = sec->second.find(o);
return opt->second;
}
else {
return default_val;
}
}
void
prefs::set_string(const std::string §ion, const std::string &option,
const std::string &val)
{
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
std::string o = option;
std::transform(option.begin(), option.end(), o.begin(), ::tolower);
std::map<std::string, std::string> opt_map = d_config_map[s];
opt_map[o] = val;
d_config_map[s] = opt_map;
}
bool
prefs::get_bool(const std::string §ion, const std::string &option,
bool default_val)
{
if(has_option(section, option)) {
std::string str = get_string(section, option, "");
if(str == "") {
return default_val;
}
std::transform(str.begin(), str.end(), str.begin(), ::tolower);
if((str == "true") || (str == "on") || (str == "1"))
return true;
else if((str == "false") || (str == "off") || (str == "0"))
return false;
else
return default_val;
}
else {
return default_val;
}
}
void
prefs::set_bool(const std::string §ion, const std::string &option,
bool val)
{
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
std::string o = option;
std::transform(option.begin(), option.end(), o.begin(), ::tolower);
std::map<std::string, std::string> opt_map = d_config_map[s];
std::stringstream sstr;
sstr << (val == true);
opt_map[o] = sstr.str();
d_config_map[s] = opt_map;
}
long
prefs::get_long(const std::string §ion, const std::string &option,
long default_val)
{
if(has_option(section, option)) {
std::string str = get_string(section, option, "");
if(str == "") {
return default_val;
}
std::stringstream sstr(str);
long n;
sstr >> n;
return n;
}
else {
return default_val;
}
}
void
prefs::set_long(const std::string §ion, const std::string &option,
long val)
{
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
std::string o = option;
std::transform(option.begin(), option.end(), o.begin(), ::tolower);
std::map<std::string, std::string> opt_map = d_config_map[s];
std::stringstream sstr;
sstr << val;
opt_map[o] = sstr.str();
d_config_map[s] = opt_map;
}
double
prefs::get_double(const std::string §ion, const std::string &option,
double default_val)
{
if(has_option(section, option)) {
std::string str = get_string(section, option, "");
if(str == "") {
return default_val;
}
std::stringstream sstr(str);
double n;
sstr >> n;
return n;
}
else {
return default_val;
}
}
void
prefs::set_double(const std::string §ion, const std::string &option,
double val)
{
std::string s = section;
std::transform(section.begin(), section.end(), s.begin(), ::tolower);
std::string o = option;
std::transform(option.begin(), option.end(), o.begin(), ::tolower);
std::map<std::string, std::string> opt_map = d_config_map[s];
std::stringstream sstr;
sstr << val;
opt_map[o] = sstr.str();
d_config_map[s] = opt_map;
}
} /* namespace gr */
|