GCC Code Coverage Report


Directory: ./
File: src/iguana/services/RCDBReader.cc
Date: 2025-03-24 18:50:00
Exec Total Coverage
Lines: 14 19 73.7%
Functions: 2 2 100.0%
Branches: 16 40 40.0%

Line Branch Exec Source
1 #include "RCDBReader.h"
2 #include "GlobalParam.h"
3
4 namespace iguana {
5
6
2/4
✓ Branch 0 (3→4) taken 8 times.
✗ Branch 1 (3→60) not taken.
✓ Branch 2 (4→5) taken 8 times.
✗ Branch 3 (4→52) not taken.
8 RCDBReader::RCDBReader(std::string_view name, Logger::Level lev) : Object(name, lev)
7 {
8 #ifdef USE_RCDB
9
10 // choose the RCDB URL, from the following priority ordering
11 // 1. try `GlobalRcdbUrl`
12
3/6
✓ Branch 0 (4→5) taken 8 times.
✗ Branch 1 (4→52) not taken.
✓ Branch 2 (5→6) taken 8 times.
✗ Branch 3 (5→42) not taken.
✗ Branch 4 (8→9) not taken.
✓ Branch 5 (8→14) taken 8 times.
16 m_url = GlobalRcdbUrl();
13
1/2
✗ Branch 0 (8→9) not taken.
✓ Branch 1 (8→14) taken 8 times.
8 if(!m_url.empty())
14 m_log->Debug("RCDB URL set from 'iguana::GlobalRcdbUrl': {:?}", m_url);
15 else {
16 // 2. try env var `RCDB_CONNECTION`
17
1/2
✗ Branch 0 (15→16) not taken.
✓ Branch 1 (15→20) taken 8 times.
8 if(auto url_ptr{std::getenv("RCDB_CONNECTION")}; url_ptr != nullptr)
18 m_url = std::string(url_ptr);
19
1/2
✗ Branch 0 (20→21) not taken.
✓ Branch 1 (20→26) taken 8 times.
8 if(!m_url.empty())
20 m_log->Debug("RCDB URL set from env var 'RCDB_CONNECTION': {:?}", m_url);
21 else {
22 // 3. fallback to default value
23
2/4
✓ Branch 0 (28→29) taken 8 times.
✗ Branch 1 (28→48) not taken.
✓ Branch 2 (30→31) taken 8 times.
✗ Branch 3 (30→52) not taken.
8 m_log->Warn("RCDB URL not set; you may choose a URL with the environment variable 'RCDB_CONNECTION' or with the global parameter 'iguana::GlobalRcdbUrl'; for now, let's proceed with the URL set to {:?}", m_default_url);
24 m_url = m_default_url;
25
1/2
✓ Branch 0 (34→35) taken 8 times.
✗ Branch 1 (34→50) not taken.
8 m_log->Debug("RCDB URL set from default fallback: {:?}", m_url);
26 }
27 }
28
29 // then start the connection
30
1/4
✓ Branch 0 (37→38) taken 8 times.
✗ Branch 1 (37→52) not taken.
✗ Branch 2 (52→53) not taken.
✗ Branch 3 (52→55) not taken.
8 m_rcdb_connection = std::make_unique<rcdb::Connection>(m_url, true);
31
32 #endif
33 8 }
34
35 8 double RCDBReader::GetBeamEnergy(int const runnum)
36 {
37 double const default_value = 10.6;
38 #ifdef USE_RCDB
39
2/4
✓ Branch 0 (3→4) taken 8 times.
✗ Branch 1 (3→12) not taken.
✗ Branch 2 (5→6) not taken.
✓ Branch 3 (5→8) taken 8 times.
16 auto cnd = m_rcdb_connection->GetCondition(runnum, "beam_energy");
40
1/2
✗ Branch 0 (5→6) not taken.
✓ Branch 1 (5→8) taken 8 times.
8 if(!cnd) {
41 m_log->Error("Failed to find beam energy from RCDB for run {}; assuming it is {} GeV", runnum, default_value);
42 return default_value;
43 }
44
1/2
✓ Branch 0 (8→9) taken 8 times.
✗ Branch 1 (8→14) not taken.
8 return cnd->ToDouble() / 1e3; // convert [MeV] -> [GeV]
45 #else
46 std::call_once(m_error_once, [&]() { m_log->Error("RCDB dependency not found; RCDBReader::GetBeamEnergy will return the default value of {} GeV.", default_value); });
47 return default_value;
48 #endif
49 8 }
50
51 }
52