gtranslationTable
gtranslationTable.cc
Go to the documentation of this file.
1 // gtranslationTable
2 #include "gtranslationTable.h"
4 
5 
6 // c++
7 #include <iostream>
8 
9 using namespace std;
10 
11 
21 std::string GTranslationTable::formTTKey(const std::vector<int> &identity) const {
22  // Check for an empty identity vector to avoid undefined behavior.
23  if (identity.empty()) {
24  log->warning("Empty identity vector provided to formTTKey");
25  return "";
26  }
27 
28  std::ostringstream oss;
29  for (size_t i = 0; i < identity.size(); ++i) {
30  oss << identity[i];
31  if (i != identity.size() - 1)
32  oss << "-";
33  }
34  return oss.str();
35 }
36 
37 
46 void GTranslationTable::addGElectronicWithIdentity(const std::vector<int> &identity, const GElectronic &gtron) {
47  string ttKey = formTTKey(identity);
48  auto search = tt.find(ttKey);
49 
50  if (search == tt.end()) {
51  // Insert the new key-value pair
52  tt[ttKey] = gtron;
53  } else {
54  log->warning("Key <" + ttKey + "> already present in TT map");
55  }
56 
57  log->info(1, "Added GElectronic with identity <", ttKey, "> to TT map");
58 
59  log->debug(NORMAL, "Translation Table:");
60  for (auto &thisItem: tt) {
61  log->debug(NORMAL, GTAB, "<", thisItem.first, "> ", thisItem.second);
62  }
63 }
64 
65 
74 GElectronic GTranslationTable::getElectronics(const std::vector<int> &identity) const {
75  string ttKey = formTTKey(identity);
76  auto search = tt.find(ttKey);
77 
78  if (search != tt.end()) {
79  log->debug(NORMAL, "Found key <", ttKey, "> in TT map");
80  return search->second;
81  } else {
82  log->error(EC__TTNOTFOUNDINTT, "Key <", ttKey, "> not found in TT map");
83  }
84 
85  return GElectronic();
86 }
87 
GElectronic getElectronics(const std::vector< int > &identity) const
Retrieves the GElectronic configuration for the provided identity.
void addGElectronicWithIdentity(const std::vector< int > &identity, const GElectronic &gtron)
Adds a GElectronic configuration with the provided identity.
#define EC__TTNOTFOUNDINTT