/* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors) * * 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 . */ #include #include #include #if defined(_MSC_VER) #include #define access _access #define F_OK 0 #else #include #endif #include void volk_gnsssdr_get_config_path(char *path) { if (!path) return; const char *suffix = "/.volk_gnsssdr/volk_gnsssdr_config"; const char *suffix2 = "/volk_gnsssdr/volk_gnsssdr_config"; // non-hidden char *home = NULL; // allows config redirection via env variable home = getenv("VOLK_CONFIGPATH"); if (home != NULL) { strncpy(path, home, 512); strcat(path, suffix2); return; } // check for user-local config file home = getenv("HOME"); if (home != NULL) { strncpy(path, home, 512); strcat(path, suffix); if (access(path, F_OK) != -1) { return; } } // check for config file in APPDATA (Windows) home = getenv("APPDATA"); if (home != NULL) { strncpy(path, home, 512); strcat(path, suffix); if (access(path, F_OK) != -1) { return; } } // check for system-wide config file if (access("/etc/volk_gnsssdr/volk_gnsssdr_config", F_OK) != -1) { strncpy(path, "/etc", 512); strcat(path, suffix2); return; } // if nothing exists, write to HOME or APPDATA home = getenv("HOME"); if (home == NULL) home = getenv("APPDATA"); if (home != NULL) { strncpy(path, home, 512); strcat(path, suffix); return; } path[0] = 0; return; } 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); if (!path[0]) return n_arch_prefs; //no prefs found 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) { 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++; } } fclose(config_file); *prefs_res = prefs; return n_arch_prefs; }