From c3c10987902d1384305e6716f86e56dc418d0600 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 25 Mar 2023 14:31:15 +0100 Subject: [PATCH] Define HAS ICD tables as const unordered_map, so they don't need to be recreated each time --- src/core/system_parameters/Galileo_CNAV.h | 59 +++++++++++++++ .../system_parameters/galileo_has_data.cc | 73 ++----------------- 2 files changed, 67 insertions(+), 65 deletions(-) diff --git a/src/core/system_parameters/Galileo_CNAV.h b/src/core/system_parameters/Galileo_CNAV.h index 226b1d888..ebb7d5bba 100644 --- a/src/core/system_parameters/Galileo_CNAV.h +++ b/src/core/system_parameters/Galileo_CNAV.h @@ -22,6 +22,8 @@ #include #include +#include +#include #include /** \addtogroup Core @@ -116,6 +118,63 @@ const std::pair GALILEO_MT1_HEADER_RESERVED({19, 4}); const std::pair GALILEO_MT1_HEADER_MASK_ID({23, 5}); const std::pair GALILEO_MT1_HEADER_IOD_SET_ID({28, 5}); +// HAS SIS ICD v1.0 Table 20 +const std::unordered_map> HAS_SIGNAL_INDEX_TABLE = { + {0, { + {0, "L1 C/A"}, + {1, "Reserved"}, + {2, "Reserved"}, + {3, "L1C(D)"}, + {4, "L1C(P)"}, + {5, "L1C(D+P)"}, + {6, "L2 CM"}, + {7, "L2 CL"}, + {8, "L2 CM+CL"}, + {9, "L2 P"}, + {10, "Reserved"}, + {11, "L5 I"}, + {12, "L5 Q"}, + {13, "L5 I + L5 Q"}, + {14, "Reserved"}, + {15, "Reserved"}, + }}, + {2, { + {0, "E1-B I/NAV OS"}, + {1, "E1-C"}, + {2, "E1-B + E1-C"}, + {3, "E5a-I F/NAV OS"}, + {4, "E5a-Q"}, + {5, "E5a-I+E5a-Q"}, + {6, "E5b-I I/NAV OS"}, + {7, "E5b-Q"}, + {8, "E5b-I+E5b-Q"}, + {9, "E5-I"}, + {10, "E5-Q"}, + {11, "E5-I + E5-Q"}, + {12, "E6-B C/NAV HAS"}, + {13, "E6-C"}, + {14, "E6-B + E6-C"}, + {15, "Reserved"}, + }}}; + +// HAS SIS ICD v1.0 Table 23 +const std::unordered_map HAS_VALIDITY_INTERVALS = { + {0, 5}, + {1, 10}, + {2, 15}, + {3, 20}, + {4, 30}, + {5, 60}, + {6, 90}, + {7, 120}, + {8, 180}, + {9, 240}, + {10, 300}, + {11, 600}, + {12, 900}, + {13, 1800}, + {14, 3600}}; + /** \} */ /** \} */ diff --git a/src/core/system_parameters/galileo_has_data.cc b/src/core/system_parameters/galileo_has_data.cc index 5168e33bf..2e722f64a 100644 --- a/src/core/system_parameters/galileo_has_data.cc +++ b/src/core/system_parameters/galileo_has_data.cc @@ -19,10 +19,9 @@ #include #include #include -#include #include #include -#include +#include #include @@ -32,44 +31,6 @@ std::vector Galileo_HAS_data::get_signals_in_mask(uint8_t nsys) con { return {}; } - // See HAS SIS ICD v1.0 Table 20 - std::unordered_map> signal_index_table = { - {0, { - {0, "L1 C/A"}, - {1, "Reserved"}, - {2, "Reserved"}, - {3, "L1C(D)"}, - {4, "L1C(P)"}, - {5, "L1C(D+P)"}, - {6, "L2 CM"}, - {7, "L2 CL"}, - {8, "L2 CM+CL"}, - {9, "L2 P"}, - {10, "Reserved"}, - {11, "L5 I"}, - {12, "L5 Q"}, - {13, "L5 I + L5 Q"}, - {14, "Reserved"}, - {15, "Reserved"}, - }}, - {2, { - {0, "E1-B I/NAV OS"}, - {1, "E1-C"}, - {2, "E1-B + E1-C"}, - {3, "E5a-I F/NAV OS"}, - {4, "E5a-Q"}, - {5, "E5a-I+E5a-Q"}, - {6, "E5b-I I/NAV OS"}, - {7, "E5b-Q"}, - {8, "E5b-I+E5b-Q"}, - {9, "E5-I"}, - {10, "E5-Q"}, - {11, "E5-I + E5-Q"}, - {12, "E6-B C/NAV HAS"}, - {13, "E6-C"}, - {14, "E6-B + E6-C"}, - {15, "Reserved"}, - }}}; std::vector signals_in_mask; uint16_t sig = signal_mask[nsys]; @@ -80,14 +41,14 @@ std::vector Galileo_HAS_data::get_signals_in_mask(uint8_t nsys) con { if ((bits[HAS_MSG_NUMBER_SIGNAL_MASKS - k - 1])) { - if (signal_index_table[system].count(k) == 0) + try + { + signals_in_mask.emplace_back(HAS_SIGNAL_INDEX_TABLE.at(system).at(k)); + } + catch (const std::out_of_range& e) { signals_in_mask.emplace_back("Unknown"); } - else - { - signals_in_mask.push_back(signal_index_table[system][k]); - } } } return signals_in_mask; @@ -923,26 +884,8 @@ uint16_t Galileo_HAS_data::get_nsat_sub() const uint16_t Galileo_HAS_data::get_validity_interval_s(uint8_t validity_interval_index) const { - // See HAS SIS ICD v1.0 Table 23 - const std::map validity_intervals = { - {0, 5}, - {1, 10}, - {2, 15}, - {3, 20}, - {4, 30}, - {5, 60}, - {6, 90}, - {7, 120}, - {8, 180}, - {9, 240}, - {10, 300}, - {11, 600}, - {12, 900}, - {13, 1800}, - {14, 3600}}; - - auto it = validity_intervals.find(validity_interval_index); - if (it == validity_intervals.end()) + const auto it = HAS_VALIDITY_INTERVALS.find(validity_interval_index); + if (it == HAS_VALIDITY_INTERVALS.cend()) { return 0; }