CMS 3D CMS Logo

DTUserKeyedConfigHandler.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  *
4  * \author Paolo Ronchese INFN Padova
5  *
6  */
7 
8 //-----------------------
9 // This Class' Header --
10 //-----------------------
12 
13 //-------------------------------
14 // Collaborating Class Headers --
15 //-------------------------------
18 
23 
24 #include "RelationalAccess/ISessionProxy.h"
25 #include "RelationalAccess/ITransaction.h"
26 #include "RelationalAccess/ISchema.h"
27 #include "RelationalAccess/ITable.h"
28 #include "RelationalAccess/ICursor.h"
29 #include "RelationalAccess/IQuery.h"
30 #include "CoralBase/AttributeList.h"
31 #include "CoralBase/AttributeSpecification.h"
32 #include "CoralBase/Attribute.h"
33 
34 //---------------
35 // C++ Headers --
36 //---------------
37 
38 #include <iostream>
39 #include <memory>
40 
41 //-------------------
42 // Initializations --
43 //-------------------
44 
45 //----------------
46 // Constructors --
47 //----------------
49  : dataRun(ps.getParameter<int>("run")),
50  dataTag(ps.getParameter<std::string>("tag")),
51  onlineConnect(ps.getParameter<std::string>("onlineDB")),
52  onlineAuthentication(ps.getParameter<std::string>("onlineAuthentication")),
53  onlineAuthSys(ps.getUntrackedParameter<int>("onlineAuthSys", 1)),
54  brickContainer(ps.getParameter<std::string>("container")),
55  writeKeys(ps.getParameter<bool>("writeKeys")),
56  writeData(ps.getParameter<bool>("writeData")),
57  connection(),
58  isession() {
59  std::cout << " PopCon application for DT configuration export " << onlineAuthentication << std::endl;
60 
61  std::vector<edm::ParameterSet> dtConfigKeys(ps.getParameter<std::vector<edm::ParameterSet> >("DTConfigKeys"));
62  std::vector<edm::ParameterSet>::const_iterator iter = dtConfigKeys.begin();
63  std::vector<edm::ParameterSet>::const_iterator iend = dtConfigKeys.end();
64  while (iter != iend) {
65  const edm::ParameterSet& cp = *iter++;
66  int configType = cp.getUntrackedParameter<int>("configType");
67  int configKey = cp.getUntrackedParameter<int>("configKey");
68  std::cout << "config: " << configType << " -> " << configKey << std::endl;
69  DTConfigKey userKey;
70  userKey.confType = configType;
71  userKey.confKey = configKey;
72  userConf.push_back(userKey);
73  }
74 }
75 
76 //--------------
77 // Destructor --
78 //--------------
80 
81 //--------------
82 // Operations --
83 //--------------
85  //to access the information on the tag inside the offline database:
86  cond::TagInfo_t const& ti = tagInfo();
88  std::cout << "last configuration key already copied for run: " << last << std::endl;
89 
90  std::vector<DTConfigKey> lastKey;
91  // std::cout << "check for last " << std::endl;
92  if (last == 0) {
93  DTCCBConfig* dummyConf = new DTCCBConfig(dataTag);
94  dummyConf->setStamp(0);
95  dummyConf->setFullKey(lastKey);
96  cond::Time_t snc = 1;
97  if (writeKeys && (dataRun > 1))
98  m_to_transfer.push_back(std::make_pair(dummyConf, snc));
99  } else {
100  std::cout << "get last payload" << std::endl;
101  Ref payload = lastPayload();
102  std::cout << "get last full key" << std::endl;
103  lastKey = payload->fullKey();
104  std::cout << "last key: " << std::endl;
105  std::vector<DTConfigKey>::const_iterator keyIter = lastKey.begin();
106  std::vector<DTConfigKey>::const_iterator keyIend = lastKey.end();
107  while (keyIter != keyIend) {
108  const DTConfigKey& keyList = *keyIter++;
109  std::cout << keyList.confType << " : " << keyList.confKey << std::endl;
110  }
111  }
112 
113  std::cout << "configure DbConnection" << std::endl;
114  // conn->configure( cond::CmsDefaults );
118  std::cout << "create/open DbSession" << std::endl;
120  std::cout << "start transaction" << std::endl;
121  isession->transaction().start(true);
122 
123  // get ccb identifiers map
124  std::cout << "retrieve CCB map" << std::endl;
125  std::map<int, DTCCBId> ccbMap;
126  coral::ITable& ccbMapTable = isession->nominalSchema().tableHandle("CCBMAP");
127  std::unique_ptr<coral::IQuery> ccbMapQuery(ccbMapTable.newQuery());
128  ccbMapQuery->addToOutputList("CCBID");
129  ccbMapQuery->addToOutputList("WHEEL");
130  ccbMapQuery->addToOutputList("SECTOR");
131  ccbMapQuery->addToOutputList("STATION");
132  coral::ICursor& ccbMapCursor = ccbMapQuery->execute();
133  while (ccbMapCursor.next()) {
134  const coral::AttributeList& row = ccbMapCursor.currentRow();
135  int ccb = row["CCBID"].data<int>();
136  int wheel = row["WHEEL"].data<int>();
137  int sector = row["SECTOR"].data<int>();
138  int station = row["STATION"].data<int>();
139  DTCCBId ccbId;
140  ccbId.wheelId = wheel;
141  ccbId.stationId = station;
142  ccbId.sectorId = sector;
143  ccbMap.insert(std::pair<int, DTCCBId>(ccb, ccbId));
144  }
145 
146  // get brick types
147  std::cout << "retrieve brick types" << std::endl;
148  std::map<int, int> bktMap;
149  coral::AttributeList emptyBindVariableList;
150  std::unique_ptr<coral::IQuery> brickTypeQuery(isession->nominalSchema().newQuery());
151  brickTypeQuery->addToTableList("CFGBRICKS");
152  brickTypeQuery->addToTableList("BRKT2CSETT");
153  std::string bTypeCondition = "CFGBRICKS.BRKTYPE=BRKT2CSETT.BRKTYPE";
154  brickTypeQuery->addToOutputList("CFGBRICKS.BRKID");
155  brickTypeQuery->addToOutputList("BRKT2CSETT.CSETTYPE");
156  brickTypeQuery->setCondition(bTypeCondition, emptyBindVariableList);
157  coral::ICursor& brickTypeCursor = brickTypeQuery->execute();
158  while (brickTypeCursor.next()) {
159  const coral::AttributeList& row = brickTypeCursor.currentRow();
160  int id = row["CFGBRICKS.BRKID"].data<int>();
161  int bt = row["BRKT2CSETT.CSETTYPE"].data<short>();
162  // std::cout << "brick " << id << " type " << bt << std::endl;
163  // @@FIX - TEMPORARY PATCH
164  // if ( bt > 3 ) bt = 3;
165  bktMap.insert(std::pair<int, int>(id, bt));
166  }
167 
168  // get ccb config keys
169  std::cout << "retrieve CCB configuration keys" << std::endl;
170  std::map<int, std::map<int, int>*> keyMap;
171  std::map<int, int> cckMap;
172  coral::ITable& ccbRelTable = isession->nominalSchema().tableHandle("CCBRELATIONS");
173  std::unique_ptr<coral::IQuery> ccbRelQuery(ccbRelTable.newQuery());
174  ccbRelQuery->addToOutputList("CONFKEY");
175  ccbRelQuery->addToOutputList("CCBID");
176  ccbRelQuery->addToOutputList("CONFCCBKEY");
177  coral::ICursor& ccbRelCursor = ccbRelQuery->execute();
178  // loop over all full configurations
179  while (ccbRelCursor.next()) {
180  const coral::AttributeList& row = ccbRelCursor.currentRow();
181  int cfg = row["CONFKEY"].data<int>();
182  int ccb = row["CCBID"].data<int>();
183  int key = row["CONFCCBKEY"].data<int>();
184  // check for used configurations
185  // if ( cfgMap.find( cfg ) == cfgMap.end() ) continue;
186  if (userDiscardedKey(cfg))
187  continue;
188  std::map<int, std::map<int, int>*>::const_iterator keyIter = keyMap.find(cfg);
189  std::map<int, std::map<int, int>*>::const_iterator keyIend = keyMap.end();
190  std::map<int, int>* mapPtr = nullptr;
191  // check for new full configuration
192  if (keyIter != keyIend)
193  mapPtr = keyIter->second;
194  else
195  keyMap.insert(std::pair<int, std::map<int, int>*>(cfg, mapPtr = new std::map<int, int>));
196  // store ccb config key
197  std::map<int, int>& mapRef(*mapPtr);
198  mapRef.insert(std::pair<int, int>(ccb, key));
199  // check for new ccb config key
200  if (cckMap.find(key) == cckMap.end())
201  cckMap.insert(std::pair<int, int>(key, ccb));
202  }
203 
204  // get brick keys
205  std::cout << "retrieve CCB configuration bricks" << std::endl;
206  std::map<int, std::vector<int>*> brkMap;
207  coral::ITable& confBrickTable = isession->nominalSchema().tableHandle("CFG2BRKREL");
208  std::unique_ptr<coral::IQuery> confBrickQuery(confBrickTable.newQuery());
209  confBrickQuery->addToOutputList("CONFID");
210  confBrickQuery->addToOutputList("BRKID");
211  coral::ICursor& confBrickCursor = confBrickQuery->execute();
212  // loop over all brick keys
213  while (confBrickCursor.next()) {
214  const coral::AttributeList& row = confBrickCursor.currentRow();
215  int key = row["CONFID"].data<int>();
216  int brk = row["BRKID"].data<int>();
217  // check for used ccb config key
218  if (cckMap.find(key) == cckMap.end())
219  continue;
220  std::map<int, std::vector<int>*>::const_iterator brkIter = brkMap.find(key);
221  std::map<int, std::vector<int>*>::const_iterator brkIend = brkMap.end();
222  // check for new ccb config key
223  std::vector<int>* brkPtr = nullptr;
224  if (brkIter != brkIend)
225  brkPtr = brkIter->second;
226  else
227  brkMap.insert(std::pair<int, std::vector<int>*>(key, brkPtr = new std::vector<int>));
228  // store brick key
229  brkPtr->push_back(brk);
230  }
231 
232  // set run and full configuration in payload
233  DTCCBConfig* fullConf = new DTCCBConfig(dataTag);
234  fullConf->setStamp(1);
235  fullConf->setFullKey(userConf);
236  std::map<int, bool> userBricks;
237  std::map<int, bool>::const_iterator uBrkIter = userBricks.begin();
238  std::map<int, bool>::const_iterator uBrkIend = userBricks.end();
239  std::vector<DTConfigKey>::const_iterator cfgIter = userConf.begin();
240  std::vector<DTConfigKey>::const_iterator cfgIend = userConf.end();
241  while (cfgIter != cfgIend) {
242  const DTConfigKey& cfgEntry = *cfgIter++;
243  int cft = cfgEntry.confType;
244  int cfg = cfgEntry.confKey;
245  // retrieve ccb config map
246  std::map<int, std::map<int, int>*>::const_iterator keyIter = keyMap.find(cfg);
247  std::map<int, std::map<int, int>*>::const_iterator keyIend = keyMap.end();
248  std::map<int, int>* mapPtr = nullptr;
249  if (keyIter != keyIend)
250  mapPtr = keyIter->second;
251  if (mapPtr == nullptr)
252  continue;
253  std::map<int, int>::const_iterator ccbIter = mapPtr->begin();
254  std::map<int, int>::const_iterator ccbIend = mapPtr->end();
255  while (ccbIter != ccbIend) {
256  const std::pair<int, int>& ccbEntry = *ccbIter++;
257  // get ccb config key
258  int ccb = ccbEntry.first;
259  int key = ccbEntry.second;
260  // retrieve chamber id
261  std::map<int, DTCCBId>::const_iterator ccbIter = ccbMap.find(ccb);
262  std::map<int, DTCCBId>::const_iterator ccbIend = ccbMap.end();
263  if (ccbIter == ccbIend)
264  continue;
265  const DTCCBId& chaId = ccbIter->second;
266  // retrieve brick id list
267  std::map<int, std::vector<int>*>::const_iterator brkIter = brkMap.find(key);
268  std::map<int, std::vector<int>*>::const_iterator brkIend = brkMap.end();
269  if (brkIter == brkIend)
270  continue;
271  std::vector<int>* brkPtr = brkIter->second;
272  if (brkPtr == nullptr)
273  continue;
274  // brick id lists in payload
275  std::vector<int> bkList;
276  bkList.reserve(20);
277  std::map<int, int>::const_iterator bktIter = bktMap.begin();
278  std::map<int, int>::const_iterator bktIend = bktMap.end();
279  std::vector<int>::const_iterator bkiIter = brkPtr->begin();
280  std::vector<int>::const_iterator bkiIend = brkPtr->end();
281  while (bkiIter != bkiIend) {
282  int brickId = *bkiIter++;
283  bktIter = bktMap.find(brickId);
284  if (bktIter == bktIend)
285  continue;
286  if (bktIter->second == cft) {
287  bkList.push_back(brickId);
288  uBrkIter = userBricks.find(brickId);
289  if (uBrkIter == uBrkIend)
290  userBricks.insert(std::pair<int, bool>(brickId, true));
291  }
292  }
293  fullConf->appendConfigKey(chaId.wheelId, chaId.stationId, chaId.sectorId, bkList);
294  }
295  }
296  cond::Time_t snc = dataRun;
297  if (writeKeys)
298  m_to_transfer.push_back(std::make_pair(fullConf, snc));
299  std::cout << "writing payload : " << sizeof(*fullConf) << " ( " << (fullConf->end() - fullConf->begin()) << " ) "
300  << std::endl;
301  if (writeData)
302  chkConfigList(userBricks);
303 
304  isession->transaction().commit();
305 
306  return;
307 }
308 
309 void DTUserKeyedConfigHandler::chkConfigList(const std::map<int, bool>& userBricks) {
310  std::cout << "open POOL out db " << std::endl;
312 
313  std::map<int, bool>::const_iterator uBrkIter = userBricks.begin();
314  std::map<int, bool>::const_iterator uBrkIend = userBricks.end();
315 
316  coral::ITable& brickConfigTable = isession->nominalSchema().tableHandle("CFGBRICKS");
317  std::unique_ptr<coral::IQuery> brickConfigQuery(brickConfigTable.newQuery());
318  brickConfigQuery->addToOutputList("BRKID");
319  brickConfigQuery->addToOutputList("BRKNAME");
320  coral::ICursor& brickConfigCursor = brickConfigQuery->execute();
321  std::vector<int> missingList;
322  std::vector<unsigned long long> checkedKeys;
323  while (brickConfigCursor.next()) {
324  const coral::AttributeList& row = brickConfigCursor.currentRow();
325  int brickConfigId = row["BRKID"].data<int>();
326  uBrkIter = userBricks.find(brickConfigId);
327  if (uBrkIter == uBrkIend)
328  continue;
329  if (!(uBrkIter->second))
330  continue;
331  std::string brickConfigName = row["BRKNAME"].data<std::string>();
332  std::cout << "brick " << brickConfigId << " : " << brickConfigName << std::endl;
333  bool brickFound = false;
334  try {
335  std::cout << "load brick " << brickConfigId << std::endl;
336  std::cout << "key list " << keyList << std::endl;
337  std::cout << "get brick..." << std::endl;
338  std::shared_ptr<DTKeyedConfig> brickCheck = keyList->getUsingKey<DTKeyedConfig>(brickConfigId);
339  if (brickCheck.get()) {
340  brickFound = (brickCheck->getId() == brickConfigId);
341  }
342  } catch (std::exception const&) {
343  }
344  if (!brickFound) {
345  std::cout << "brick " << brickConfigId << " missing, copy request" << std::endl;
346  missingList.push_back(brickConfigId);
347  }
348  }
349 
350  std::vector<int>::const_iterator brickIter = missingList.begin();
351  std::vector<int>::const_iterator brickIend = missingList.end();
352  while (brickIter != brickIend) {
353  int brickConfigId = *brickIter++;
354  coral::AttributeList bindVariableList;
355  bindVariableList.extend("brickId", typeid(int));
356  bindVariableList["brickId"].data<int>() = brickConfigId;
357  std::unique_ptr<coral::IQuery> brickDataQuery(isession->nominalSchema().newQuery());
358  brickDataQuery->addToTableList("CFGRELATIONS");
359  brickDataQuery->addToTableList("CONFIGCMDS");
360  std::string brickCondition = "CONFIGCMDS.CMDID=CFGRELATIONS.CMDID";
361  brickCondition += " and CFGRELATIONS.BRKID=:brickId";
362  brickDataQuery->addToOutputList("CFGRELATIONS.BRKID");
363  brickDataQuery->addToOutputList("CONFIGCMDS.CONFDATA");
364  brickDataQuery->setCondition(brickCondition, bindVariableList);
365  coral::ICursor& brickDataCursor = brickDataQuery->execute();
366  DTKeyedConfig brickData;
367  brickData.setId(brickConfigId);
368  while (brickDataCursor.next()) {
369  const coral::AttributeList& row = brickDataCursor.currentRow();
370  brickData.add(row["CONFIGCMDS.CONFDATA"].data<std::string>());
371  }
372  cond::KeyedElement k(&brickData, brickConfigId);
373  std::cout << "now writing brick: " << brickConfigId << std::endl;
374  outdb->writeOneIOV(*(k.m_obj), k.m_key, brickContainer);
375  }
376 
377  return;
378 }
379 
381 
382 bool DTUserKeyedConfigHandler::sameConfigList(const std::vector<DTConfigKey>& cfgl,
383  const std::vector<DTConfigKey>& cfgr) {
384  if (cfgl.size() != cfgr.size())
385  return false;
386  std::map<int, int> lmap;
387  std::vector<DTConfigKey>::const_iterator lIter = cfgl.begin();
388  std::vector<DTConfigKey>::const_iterator lIend = cfgl.end();
389  while (lIter != lIend) {
390  const DTConfigKey& entry = *lIter++;
391  lmap.insert(std::pair<int, int>(entry.confType, entry.confKey));
392  }
393  std::map<int, int> rmap;
394  std::vector<DTConfigKey>::const_iterator rIter = cfgr.begin();
395  std::vector<DTConfigKey>::const_iterator rIend = cfgr.end();
396  while (rIter != rIend) {
397  const DTConfigKey& entry = *rIter++;
398  rmap.insert(std::pair<int, int>(entry.confType, entry.confKey));
399  }
400  std::map<int, int>::const_iterator lmIter = lmap.begin();
401  std::map<int, int>::const_iterator lmIend = lmap.end();
402  std::map<int, int>::const_iterator rmIter = rmap.begin();
403  std::map<int, int>::const_iterator rmIend = rmap.end();
404  while ((lmIter != lmIend) && (rmIter != rmIend)) {
405  const std::pair<int, int>& lEntry = *lmIter++;
406  const std::pair<int, int>& rEntry = *rmIter++;
407  if (lEntry.first != rEntry.first)
408  return false;
409  if (lEntry.second != rEntry.second)
410  return false;
411  }
412  return true;
413 }
414 
416  std::vector<DTConfigKey>::const_iterator iter = userConf.begin();
417  std::vector<DTConfigKey>::const_iterator iend = userConf.end();
418  while (iter != iend) {
419  const DTConfigKey& entry = *iter++;
420  if (entry.confKey == key)
421  return false;
422  }
423  return true;
424 }
425 
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
int wheelId
Definition: DTCCBConfig.h:42
Iov_t lastInterval
Definition: Types.h:73
void setStamp(int s)
Definition: DTCCBConfig.cc:121
std::string id() const override
void add(const std::string &data)
const cond::persistency::KeyList * keyList
std::vector< DTConfigKey > userConf
Time_t since
Definition: Types.h:53
static bool sameConfigList(const std::vector< DTConfigKey > &cfgl, const std::vector< DTConfigKey > &cfgr)
int sectorId
Definition: DTCCBConfig.h:44
cond::TagInfo_t const & tagInfo() const
void setList(const cond::persistency::KeyList *list)
unsigned long long Time_t
Definition: Time.h:14
int stationId
Definition: DTCCBConfig.h:43
void setAuthenticationSystem(int authSysCode)
std::vector< std::pair< DTCCBConfig *, Time_t > > m_to_transfer
Hash writeOneIOV(const T &payload, Time_t time, const std::string &recordName)
key
prepare the HTCondor submission files and eventually submit them
DTUserKeyedConfigHandler(const edm::ParameterSet &ps)
void setId(int id)
void chkConfigList(const std::map< int, bool > &userBricks)
const_iterator end() const
Definition: DTCCBConfig.cc:207
std::shared_ptr< coral::ISessionProxy > isession
const_iterator begin() const
Definition: DTCCBConfig.cc:205
void setFullKey(const std::vector< DTConfigKey > &)
Definition: DTCCBConfig.cc:119
cond::persistency::ConnectionPool connection
void setAuthenticationPath(const std::string &p)
std::shared_ptr< coral::ISessionProxy > createCoralSession(const std::string &connectionString, bool writeCapable=false)
std::shared_ptr< T > getUsingKey(unsigned long long key) const
Definition: KeyList.h:57
int appendConfigKey(int wheelId, int stationId, int sectorId, const std::vector< int > &confKey)
Definition: DTCCBConfig.cc:168