Line | Branch | Exec | Source |
---|---|---|---|
1 | #include "ConfigFileReader.h" | ||
2 | #include <filesystem> | ||
3 | #include <cstdlib> | ||
4 | #include <sstream> | ||
5 | |||
6 | namespace iguana { | ||
7 | |||
8 | 44 | ConfigFileReader::ConfigFileReader(std::string_view name) | |
9 | 44 | : Object(name) | |
10 | { | ||
11 | // the algorithms need to know where the config files are; | ||
12 | // first, add config files from installation prefix; since this | ||
13 | // is added first, it's the lowest priority in the configuration | ||
14 | // search path | ||
15 |
2/4✓ Branch 0 (7→8) taken 44 times.
✗ Branch 1 (7→43) not taken.
✓ Branch 2 (8→9) taken 44 times.
✗ Branch 3 (8→33) not taken.
|
44 | AddDirectory(GetConfigInstallationPrefix()); |
16 | // next, add `IGUANA_CONFIG_PATH` paths, which provides: | ||
17 | // - user override of the configuration path(s) | ||
18 | // - a fallback, if `GetConfigInstallationPrefix` is wrong, which happens | ||
19 | // if the Iguana installation is relocated | ||
20 | 44 | auto user_paths_env_var = std::getenv("IGUANA_CONFIG_PATH"); | |
21 |
1/2✗ Branch 0 (11→12) not taken.
✓ Branch 1 (11→32) taken 44 times.
|
44 | if(user_paths_env_var != nullptr) { |
22 | ✗ | std::istringstream user_paths_stream(user_paths_env_var); | |
23 | std::string user_path_token; | ||
24 | decltype(m_directories) user_paths; | ||
25 | ✗ | while(getline(user_paths_stream, user_path_token, ':')) // tokenize `IGUANA_CONFIG_PATH` | |
26 | ✗ | user_paths.push_front(user_path_token); | |
27 | ✗ | for(auto const& user_path : user_paths) // add the paths in the correct order | |
28 | ✗ | AddDirectory(user_path); | |
29 | // after these default paths have been added, the user | ||
30 | // may still override by calling `AddDirectory` etc. themselves | ||
31 | ✗ | } | |
32 | 44 | } | |
33 | |||
34 | 44 | std::string ConfigFileReader::GetConfigInstallationPrefix() | |
35 | { | ||
36 | 44 | return IGUANA_ETCDIR; | |
37 | } | ||
38 | |||
39 | 88 | void ConfigFileReader::AddDirectory(std::string const& dir) | |
40 | { | ||
41 |
2/2✓ Branch 0 (2→3) taken 53 times.
✓ Branch 1 (2→7) taken 35 times.
|
88 | if(dir == "") |
42 | return; // handle unset directory name | ||
43 |
1/2✓ Branch 0 (4→5) taken 53 times.
✗ Branch 1 (4→8) not taken.
|
53 | m_log->Trace("Add directory {}", dir); |
44 | 53 | m_directories.push_front(dir); | |
45 | } | ||
46 | |||
47 | 85 | void ConfigFileReader::AddFile(std::string const& name) | |
48 | { | ||
49 |
2/2✓ Branch 0 (2→3) taken 35 times.
✓ Branch 1 (2→4) taken 50 times.
|
85 | if(name == "") |
50 | 35 | return; // handle unset file name | |
51 | 50 | auto full_name = FindFile(name); | |
52 |
1/2✓ Branch 0 (7→8) taken 47 times.
✗ Branch 1 (7→13) not taken.
|
47 | m_log->Trace(" ===> Add file {}", full_name); |
53 |
1/2✓ Branch 0 (9→10) taken 47 times.
✗ Branch 1 (9→15) not taken.
|
47 | m_files.push_front(full_name); |
54 | } | ||
55 | |||
56 | 6 | void ConfigFileReader::PrintDirectories(Logger::Level const level) | |
57 | { | ||
58 |
1/2✓ Branch 0 (3→4) taken 6 times.
✗ Branch 1 (3→17) not taken.
|
6 | if(m_log->GetLevel() <= level) { |
59 | 6 | m_log->Print(level, "{:=^60}", " Configuration file search path order: "); | |
60 | 6 | m_log->Print(level, " - ./"); | |
61 |
2/2✓ Branch 0 (14→7) taken 12 times.
✓ Branch 1 (14→15) taken 6 times.
|
18 | for(auto const& dir : m_directories) |
62 |
3/4✓ Branch 0 (8→9) taken 12 times.
✗ Branch 1 (8→18) not taken.
✓ Branch 2 (10→11) taken 6 times.
✓ Branch 3 (10→12) taken 6 times.
|
12 | m_log->Print(level, " - {}", dir); |
63 | 6 | m_log->Print(level, "{:=^60}", ""); | |
64 | } | ||
65 | 6 | } | |
66 | |||
67 | 50 | std::string ConfigFileReader::FindFile(std::string const& name) | |
68 | { | ||
69 |
1/2✗ Branch 0 (2→3) not taken.
✓ Branch 1 (2→5) taken 50 times.
|
50 | if(name == "") |
70 | ✗ | return ""; // handle unset file name | |
71 |
1/2✓ Branch 0 (6→7) taken 50 times.
✗ Branch 1 (6→54) not taken.
|
50 | m_log->Trace("Searching for file '{}' in:", name); |
72 | // first try `./` or assume `name` is a relative or absolute path + filename | ||
73 |
2/2✓ Branch 0 (14→15) taken 49 times.
✓ Branch 1 (14→16) taken 1 times.
|
100 | auto found_local = std::filesystem::exists(name); |
74 |
2/2✓ Branch 0 (14→15) taken 49 times.
✓ Branch 1 (14→16) taken 1 times.
|
50 | m_log->Trace(" - ./{}", found_local ? " - FOUND" : ""); |
75 |
2/2✓ Branch 0 (17→18) taken 1 times.
✓ Branch 1 (17→19) taken 49 times.
|
50 | if(found_local) |
76 | return name; | ||
77 | // then search each entry of `m_directories` | ||
78 |
2/2✓ Branch 0 (44→20) taken 57 times.
✓ Branch 1 (44→45) taken 3 times.
|
60 | for(auto const& dir : m_directories) { |
79 | 57 | std::string filename = dir + "/" + name; | |
80 |
3/4✓ Branch 0 (24→25) taken 57 times.
✗ Branch 1 (24→64) not taken.
✓ Branch 2 (30→31) taken 11 times.
✓ Branch 3 (30→32) taken 46 times.
|
114 | auto found = std::filesystem::exists(filename); |
81 |
3/4✓ Branch 0 (30→31) taken 11 times.
✓ Branch 1 (30→32) taken 46 times.
✓ Branch 2 (34→35) taken 57 times.
✗ Branch 3 (34→62) not taken.
|
114 | m_log->Trace(" - {}{}", dir, found ? " - FOUND" : ""); |
82 |
2/2✓ Branch 0 (36→37) taken 46 times.
✓ Branch 1 (36→40) taken 11 times.
|
57 | if(found) |
83 | 46 | return filename; | |
84 | } | ||
85 | // throw exception if not found anywhere | ||
86 |
1/2✓ Branch 0 (46→47) taken 3 times.
✗ Branch 1 (46→66) not taken.
|
3 | m_log->Error("Cannot find configuration file named '{}'", name); |
87 | 3 | PrintDirectories(Logger::error); | |
88 |
1/2✓ Branch 0 (50→51) taken 3 times.
✗ Branch 1 (50→68) not taken.
|
3 | throw std::runtime_error("configuration file not found"); |
89 | } | ||
90 | |||
91 | 79 | std::string ConfigFileReader::ConvertAlgoNameToConfigName(std::string_view algo_name, std::string_view ext) | |
92 | { | ||
93 | 79 | std::string result = std::string(algo_name); | |
94 | std::string::size_type it = 0; | ||
95 |
2/2✓ Branch 0 (5→4) taken 57 times.
✓ Branch 1 (5→6) taken 79 times.
|
136 | while((it = result.find("::", it)) != std::string::npos) |
96 |
1/2✓ Branch 0 (4→5) taken 57 times.
✗ Branch 1 (4→23) not taken.
|
57 | result.replace(it, 2, "/"); |
97 |
2/4✓ Branch 0 (8→9) taken 79 times.
✗ Branch 1 (8→21) not taken.
✓ Branch 2 (11→12) taken 79 times.
✗ Branch 3 (11→17) not taken.
|
237 | return "algorithms/" + result + "/Config." + std::string(ext); |
98 | } | ||
99 | |||
100 | } | ||
101 |