1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-07-02 09:53:15 +00:00
gnss-sdr/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/volk_gnsssdr_prefs.c

68 lines
2.2 KiB
C
Raw Normal View History

2015-01-08 18:49:59 +00:00
/* Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors)
2014-11-07 17:02:52 +00:00
*
* This file is part of GNSS-SDR.
*
* GNSS-SDR 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.
*
* GNSS-SDR 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 GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
*/
2014-09-07 23:56:09 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <volk_gnsssdr/volk_gnsssdr_prefs.h>
void volk_gnsssdr_get_config_path(char *path)
{
2015-04-26 22:36:45 +00:00
if (!path) return;
2014-09-07 23:56:09 +00:00
const char *suffix = "/.volk_gnsssdr/volk_gnsssdr_config";
char *home = NULL;
if (home == NULL) home = getenv("HOME");
if (home == NULL) home = getenv("APPDATA");
2014-11-22 09:19:06 +00:00
if (home == NULL)
{
2015-04-26 22:36:45 +00:00
path[0] = 0;
2014-11-22 09:19:06 +00:00
return;
}
2015-05-14 09:20:02 +00:00
strncpy(path, home, 512);
2014-09-07 23:56:09 +00:00
strcat(path, suffix);
}
size_t volk_gnsssdr_load_preferences(volk_gnsssdr_arch_pref_t **prefs_res)
{
FILE *config_file;
char path[512], line[512];
size_t n_arch_prefs = 0;
volk_gnsssdr_arch_pref_t *prefs = NULL;
//get the config path
volk_gnsssdr_get_config_path(path);
2015-04-26 22:36:45 +00:00
if (!path[0]) return n_arch_prefs; //no prefs found
2014-09-07 23:56:09 +00:00
config_file = fopen(path, "r");
if(!config_file) return n_arch_prefs; //no prefs found
//reset the file pointer and write the prefs into volk_gnsssdr_arch_prefs
while(fgets(line, sizeof(line), config_file) != NULL)
{
2014-11-22 09:19:06 +00:00
prefs = (volk_gnsssdr_arch_pref_t *) realloc(prefs, (n_arch_prefs+1) * sizeof(*prefs));
volk_gnsssdr_arch_pref_t *p = prefs + n_arch_prefs;
if(sscanf(line, "%s %s %s", p->name, p->impl_a, p->impl_u) == 3 && !strncmp(p->name, "volk_gnsssdr_", 5))
{
n_arch_prefs++;
}
2014-09-07 23:56:09 +00:00
}
fclose(config_file);
*prefs_res = prefs;
return n_arch_prefs;
}