CMS 3D CMS Logo

L1GtPsbSetupConfigOnlineProd.cc
Go to the documentation of this file.
1 
16 // this class header
18 
19 // system include files
20 #include "boost/lexical_cast.hpp"
21 #include <algorithm>
22 
23 // user include files
25 
26 // constructor
29 
30  // empty
31 
32 }
33 
34 // destructor
36 
37  // empty
38 
39 }
40 
41 // public methods
42 
43 std::unique_ptr<L1GtPsbSetup> L1GtPsbSetupConfigOnlineProd::newObject(
44  const std::string& objectKey) {
45 
46  auto pL1GtPsbSetup = std::make_unique<L1GtPsbSetup>();
47 
48  const std::string gtSchema = "CMS_GT";
49 
50  // the setup's contents, to be filled from database
51  std::vector<L1GtPsbConfig> psbConfigurations;
52 
53  // SELECT PSB_SLOT_*_SETUP_FK FROM CMS_GT.GT_SETUP WHERE GT_SETUP.ID = MyKey
54  std::vector<std::string> psbColumns = m_omdsReader.columnNames(gtSchema, "GT_SETUP");
55 
56  std::vector<std::string>::iterator newEnd = std::remove_if(
57  psbColumns.begin(), psbColumns.end(), &notPsbColumnName);
58  psbColumns.erase(newEnd, psbColumns.end());
59 
60  // select * from CMS_GT.GT_SETUP where GT_SETUP.ID = objectKey
62  psbColumns, gtSchema, "GT_SETUP", "GT_SETUP.ID",
63  m_omdsReader.singleAttribute(objectKey));
64 
65  // check if query was successful and produced one line only
66  if (!checkOneLineResult(psbKeys, "GT_SETUP query for PSB keys with ID = " + objectKey)) {
67  edm::LogError("L1-O2O")
68  << "Problem to get content of CMS_GT.GT_SETUP for GT_SETUP.ID key: "
69  << objectKey;
70  return pL1GtPsbSetup;
71  }
72 
73  // fill the psbConfigurations vector
74  for (std::vector<std::string>::const_iterator it = psbColumns.begin(); it != psbColumns.end(); ++it) {
75 
76  std::string psbKey;
77  psbKeys.fillVariable(*it, psbKey);
78 
79  if (psbKey.empty()) {
80  addDefaultPsb(*it, psbConfigurations);
81  } else {
82  addPsbFromDb(psbKey, psbConfigurations);
83  }
84  }
85 
86  // assign to the result object
87  pL1GtPsbSetup->setGtPsbSetup(psbConfigurations);
88 
89  if (edm::isDebugEnabled()) {
90  LogTrace("L1-O2O") << (*pL1GtPsbSetup) << std::endl;
91  }
92 
93  return pL1GtPsbSetup;
94 }
95 
96 // Return true if columnName does NOT match the pattern
97 // PSB_SLOT_.*_SETUP_FK
99 
100  static std::string startMatch("PSB_SLOT_");
101  static std::string endMatch("_SETUP_FK");
102 
103  unsigned len = columnName.size();
104 
105  // it's not a PSB column name if it's too short
106  return len <= ( startMatch.size() + endMatch.size() ) ||
107  // or the start doesn't match
108  columnName.substr(0, startMatch.size()) != startMatch ||
109  // or the end doesn't match
110  columnName.substr(len - endMatch.size(), endMatch.size()) != endMatch;
111 }
112 
114  L1GtPsbConfig>& psbSetup) {
115 
116  // SQL> describe gt_psb_setup;
117  // (heavily pruned to just the stuff we need to set up a GtPsbConfig)
118  // Name Null? Type
119  // ----------------------------------------- -------- ----------------------------
120  // ID NOT NULL VARCHAR2(256)
121  // BOARD_SLOT NUMBER(3)
122  // CH0_SEND_LVDS_NOT_DS92LV16 NUMBER(1)
123  // CH1_SEND_LVDS_NOT_DS92LV16 NUMBER(1)
124  // ENABLE_TT_LVDS_0 NUMBER(1)
125  // ENABLE_TT_LVDS_1 NUMBER(1)
126  // ENABLE_TT_LVDS_2 NUMBER(1)
127  // ENABLE_TT_LVDS_3 NUMBER(1)
128  // ENABLE_TT_LVDS_4 NUMBER(1)
129  // ENABLE_TT_LVDS_5 NUMBER(1)
130  // ENABLE_TT_LVDS_6 NUMBER(1)
131  // ENABLE_TT_LVDS_7 NUMBER(1)
132  // ENABLE_TT_LVDS_8 NUMBER(1)
133  // ENABLE_TT_LVDS_9 NUMBER(1)
134  // ENABLE_TT_LVDS_10 NUMBER(1)
135  // ENABLE_TT_LVDS_11 NUMBER(1)
136  // ENABLE_TT_LVDS_12 NUMBER(1)
137  // ENABLE_TT_LVDS_13 NUMBER(1)
138  // ENABLE_TT_LVDS_14 NUMBER(1)
139  // ENABLE_TT_LVDS_15 NUMBER(1)
140  // SERLINK_CH0_REC_ENABLE NUMBER(1)
141  // SERLINK_CH1_REC_ENABLE NUMBER(1)
142  // SERLINK_CH2_REC_ENABLE NUMBER(1)
143  // SERLINK_CH3_REC_ENABLE NUMBER(1)
144  // SERLINK_CH4_REC_ENABLE NUMBER(1)
145  // SERLINK_CH5_REC_ENABLE NUMBER(1)
146  // SERLINK_CH6_REC_ENABLE NUMBER(1)
147  // SERLINK_CH7_REC_ENABLE NUMBER(1)
148 
149  const std::string gtSchema = "CMS_GT";
150 
151  // setup up columns to query
152  std::vector<std::string> columnNames;
153 
154  static const std::string lvdPrefix = "ENABLE_TT_LVDS_";
155  static const std::string lvdSuffix = "";
156  static const std::string serPrefix = "SERLINK_CH";
157  static const std::string serSuffix = "_REC_ENABLE";
158  static const std::string boardSlotColumn = "BOARD_SLOT";
159  static const std::string ch0FormatColumn = "CH0_SEND_LVDS_NOT_DS92LV16";
160  static const std::string ch1FormatColumn = "CH1_SEND_LVDS_NOT_DS92LV16";
161 
162  columnNames.push_back(boardSlotColumn);
163  columnNames.push_back(ch0FormatColumn);
164  columnNames.push_back(ch1FormatColumn);
165 
166  for (unsigned i = 0; i < (unsigned) L1GtPsbConfig::PsbNumberLvdsGroups; ++i) {
167  columnNames.push_back(numberedColumnName(lvdPrefix, i, lvdSuffix));
168  }
169 
170  for (unsigned i = 0; i < (unsigned) L1GtPsbConfig::PsbSerLinkNumberChannels; ++i) {
171  columnNames.push_back(numberedColumnName(serPrefix, i, serSuffix));
172  }
173 
174  // execute database query
176  columnNames, gtSchema, "GT_PSB_SETUP", "GT_PSB_SETUP.ID", m_omdsReader.singleAttribute(
177  psbKey));
178 
179  // check if query was successful and we get only one line
180  if (!checkOneLineResult(psbQuery, "GT_PSB_SETUP query for PSB keys with ID = " + psbKey)) {
181  edm::LogError("L1-O2O")
182  << "Problem to get setup for PSB keys with ID = " << psbKey;
183  return; // FIXME: change method to bool?
184  }
185 
186  // extract values
187  int16_t boardSlot;
188 
189  getRequiredValue(psbQuery, boardSlotColumn, boardSlot);
190 
191  bool sendLvds0, sendLvds1;
192 
193  getRequiredValue(psbQuery, ch0FormatColumn, sendLvds0);
194  getRequiredValue(psbQuery, ch1FormatColumn, sendLvds1);
195 
196  const std::vector<bool>& enableRecLvds = extractBoolVector(
197  psbQuery, lvdPrefix, lvdSuffix, L1GtPsbConfig::PsbNumberLvdsGroups);
198  const std::vector<bool>& serLinkRecEnable = extractBoolVector(
199  psbQuery, serPrefix, serSuffix, L1GtPsbConfig::PsbSerLinkNumberChannels);
200 
201  // create new PSB object with db values
203 
204  toAdd.setGtBoardSlot(boardSlot);
205  toAdd.setGtPsbCh0SendLvds(sendLvds0);
206  toAdd.setGtPsbCh1SendLvds(sendLvds1);
207  toAdd.setGtPsbEnableRecLvds(enableRecLvds);
208  toAdd.setGtPsbEnableRecSerLink(serLinkRecEnable);
209 
210  // add to vector
211  psbSetup.push_back(toAdd);
212 }
213 
214 void L1GtPsbSetupConfigOnlineProd::addDefaultPsb(const std::string& psbColumn, std::vector<
215  L1GtPsbConfig>& psbSetup) const {
216 
217  // deduce the assigned board from the column name
218  unsigned boardSlot = numberFromString(psbColumn);
219 
220  // create a default PsbConfig with the appropriate board slot and all links disabled
222  static std::vector<bool> allFalseLvds(L1GtPsbConfig::PsbNumberLvdsGroups, false);
223  static std::vector<bool> allFalseSerLink(L1GtPsbConfig::PsbSerLinkNumberChannels, false);
224 
225  toAdd.setGtBoardSlot(boardSlot);
226  toAdd.setGtPsbCh0SendLvds(false);
227  toAdd.setGtPsbCh1SendLvds(false);
228  toAdd.setGtPsbEnableRecLvds(allFalseLvds);
229  toAdd.setGtPsbEnableRecSerLink(allFalseSerLink);
230 
231  psbSetup.push_back(toAdd);
232 }
233 
236  const std::string& suffix, unsigned nColumns) const {
237 
238  std::vector<bool> result(nColumns);
239 
240  for (unsigned i = 0; i < nColumns; ++i) {
241  bool dbValue;
242  getRequiredValue(query, numberedColumnName(prefix, i, suffix), dbValue);
243  result[i] = dbValue;
244  }
245 
246  return result;
247 }
248 
250  const l1t::OMDSReader::QueryResults& result, const std::string& queryDescription) const {
251 
252  // check if query was successful
253  if (result.queryFailed()) {
254  edm::LogError("L1-O2O") << "\n " << queryDescription + " failed: no match found!";
255  return false;
256 
257  } else if (result.numberRows() != 1) {
258  edm::LogError("L1-O2O") << "\nProblem with " << queryDescription << ": "
259  << ( result.numberRows() ) << " rows were returned, expected 1.";
260  return false;
261  }
262 
263  return true;
264 }
265 
266 
268  const std::string& prefix, unsigned number) const {
269 
270  return numberedColumnName(prefix, number, "");
271 
272 }
273 
275  const std::string& prefix, unsigned number, const std::string& suffix) const {
276 
277  std::ostringstream colName;
278  colName << prefix << number << suffix;
279 
280  return colName.str();
281 }
282 
284 
285  std::istringstream stream(aString);
286  unsigned result;
287 
288  for (unsigned i = 0; i < aString.size(); ++i) {
289  if (stream >> result) {
290  // we got a value
291  return result;
292  } else {
293  // clear error flags from failed >>
294  stream.clear();
295  // skip another character
296  stream.seekg(i);
297  }
298  }
299 
300  // throw here
301  throw cms::Exception("NumberNotFound") << "Failed to extract numeric value from " << aString;
302 }
303 
bool checkOneLineResult(const l1t::OMDSReader::QueryResults &result, const std::string &queryDescription) const
Ensures that result contains exactly one line, returning false otherwise.
bool isDebugEnabled()
static bool notPsbColumnName(const std::string &columnName)
std::string numberedColumnName(const std::string &prefix, unsigned number, const std::string &suffix) const
Concatenates prefix, number and suffix into a string.
bool fillVariable(const std::string &columnName, T &outputVariable) const
Definition: OMDSReader.h:311
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:295
void getRequiredValue(const l1t::OMDSReader::QueryResults &result, const std::string &colName, T &value) const
std::unique_ptr< L1GtPsbSetup > newObject(const std::string &objectKey) override
public methods
void setGtPsbEnableRecLvds(const std::vector< bool > &)
void setGtPsbCh0SendLvds(const bool &)
void addDefaultPsb(const std::string &psbColumn, std::vector< L1GtPsbConfig > &psbSetup) const
Creates a default valued PSB from an empty foreign key in the GT_SETUP table.
static const int PsbSerLinkNumberChannels
number of channels per board
Definition: L1GtPsbConfig.h:67
~L1GtPsbSetupConfigOnlineProd() override
destructor
static const int PsbNumberLvdsGroups
number of LVDS groups per board
Definition: L1GtPsbConfig.h:64
Definition: query.py:1
void setGtPsbEnableRecSerLink(const std::vector< bool > &)
std::vector< std::string > columnNames(const std::string &schemaName, const std::string &tableName)
Definition: OMDSReader.cc:165
const QueryResults basicQuery(const std::vector< std::string > &columnNames, const std::string &schemaName, const std::string &tableName, const std::string &conditionLHS="", const QueryResults conditionRHS=QueryResults(), const std::string &conditionRHSName="")
Definition: OMDSReader.cc:86
#define LogTrace(id)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
std::vector< bool > extractBoolVector(const l1t::OMDSReader::QueryResults &query, const std::string &prefix, const std::string &suffix, unsigned nColumns) const
void setGtBoardSlot(const int &)
L1GtPsbSetupConfigOnlineProd(const edm::ParameterSet &)
constructor
void addPsbFromDb(const std::string &psbKey, std::vector< L1GtPsbConfig > &psbSetup)
Creates a new PSB object from a GT_PSB_SETUP entry and adds.
void setGtPsbCh1SendLvds(const bool &)
unsigned numberFromString(const std::string &aString) const