GCC Code Coverage Report


Directory: ./
File: src/iguana/algorithms/AlgorithmFactory.cc
Date: 2025-03-24 18:50:00
Exec Total Coverage
Lines: 13 14 92.9%
Functions: 3 3 100.0%
Branches: 6 12 50.0%

Line Branch Exec Source
1 #include "Algorithm.h"
2
3 namespace iguana {
4
5 std::unordered_map<std::string, AlgorithmFactory::algo_creator_t> AlgorithmFactory::s_creators;
6 std::unordered_map<std::string, std::vector<std::string>> AlgorithmFactory::s_created_banks;
7
8 734 bool AlgorithmFactory::Register(std::string const& name, algo_creator_t creator, std::vector<std::string> const new_banks) noexcept
9 {
10
1/2
✓ Branch 0 (3→4) taken 734 times.
✗ Branch 1 (3→20) not taken.
734 if(auto it = s_creators.find(name); it == s_creators.end()) {
11 1468 s_creators.insert({name, creator});
12
2/2
✓ Branch 0 (19→8) taken 175 times.
✓ Branch 1 (19→20) taken 734 times.
909 for(auto const& new_bank : new_banks) {
13
1/2
✓ Branch 0 (9→10) taken 175 times.
✗ Branch 1 (9→16) not taken.
175 if(auto it = s_created_banks.find(new_bank); it == s_created_banks.end())
14 350 s_created_banks.insert({new_bank, {}});
15 175 s_created_banks.at(new_bank).push_back(name);
16 }
17 return true;
18 }
19 return false;
20 }
21
22 48 algo_t AlgorithmFactory::Create(std::string const& name)
23 {
24
1/2
✓ Branch 0 (3→4) taken 48 times.
✗ Branch 1 (3→8) not taken.
48 if(auto it = s_creators.find(name); it != s_creators.end())
25 48 return it->second();
26 throw std::runtime_error(fmt::format("AlgorithmFactory: algorithm with name {:?} does not exist", name));
27 }
28
29 19 std::optional<std::vector<std::string>> AlgorithmFactory::QueryNewBank(std::string const& bank_name) noexcept
30 {
31
1/2
✓ Branch 0 (3→4) taken 19 times.
✗ Branch 1 (3→6) not taken.
19 if(auto it = s_created_banks.find(bank_name); it != s_created_banks.end())
32 19 return it->second;
33 return {};
34 }
35 }
36