CMS 3D CMS Logo

CaliGeneralDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 
8 
9 using namespace std;
10 using namespace oracle::occi;
11 
13  m_env = nullptr;
14  m_conn = nullptr;
15  m_writeStmt = nullptr;
16 
17  m_numEvents = 0;
18  m_comments = "none";
19 }
20 
22 
24  this->checkConnection();
25 
26  try {
27  m_writeStmt = m_conn->createStatement();
28  m_writeStmt->setSQL(
29  "INSERT INTO cali_general_dat (iov_id, logic_id, "
30  "num_events, comments) "
31  "VALUES (:iov_id, :logic_id, "
32  ":3, :4)");
33  } catch (SQLException& e) {
34  throw(std::runtime_error("CaliGeneralDat::prepareWrite(): " + e.getMessage()));
35  }
36 }
37 
38 void CaliGeneralDat::writeDB(const EcalLogicID* ecid, const CaliGeneralDat* item, CaliIOV* iov) noexcept(false) {
39  this->checkConnection();
40  this->checkPrepare();
41 
42  int iovID = iov->fetchID();
43  if (!iovID) {
44  throw(std::runtime_error("CaliGeneralDat::writeDB: IOV not in DB"));
45  }
46 
47  int logicID = ecid->getLogicID();
48  if (!logicID) {
49  throw(std::runtime_error("CaliGeneralDat::writeDB: Bad EcalLogicID"));
50  }
51 
52  try {
53  m_writeStmt->setInt(1, iovID);
54  m_writeStmt->setInt(2, logicID);
55 
56  m_writeStmt->setInt(3, item->getNumEvents());
57  m_writeStmt->setString(4, item->getComments());
58 
59  m_writeStmt->executeUpdate();
60  } catch (SQLException& e) {
61  throw(std::runtime_error("CaliGeneralDat::writeDB(): " + e.getMessage()));
62  }
63 }
64 
65 void CaliGeneralDat::fetchData(std::map<EcalLogicID, CaliGeneralDat>* fillMap, CaliIOV* iov) noexcept(false) {
66  this->checkConnection();
67  fillMap->clear();
68 
69  iov->setConnection(m_env, m_conn);
70  int iovID = iov->fetchID();
71  if (!iovID) {
72  // throw(std::runtime_error("CaliGeneralDat::writeDB: IOV not in DB"));
73  return;
74  }
75 
76  try {
77  m_readStmt->setSQL(
78  "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
79  "d.num_events, d.comments "
80  "FROM channelview cv JOIN cali_general_dat d "
81  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
82  "WHERE d.iov_id = :iov_id");
83  m_readStmt->setInt(1, iovID);
84  ResultSet* rset = m_readStmt->executeQuery();
85 
86  std::pair<EcalLogicID, CaliGeneralDat> p;
87  CaliGeneralDat dat;
88  while (rset->next()) {
89  p.first = EcalLogicID(rset->getString(1), // name
90  rset->getInt(2), // logic_id
91  rset->getInt(3), // id1
92  rset->getInt(4), // id2
93  rset->getInt(5), // id3
94  rset->getString(6)); // maps_to
95 
96  dat.setNumEvents(rset->getInt(7));
97  dat.setComments(rset->getString(8));
98 
99  p.second = dat;
100  fillMap->insert(p);
101  }
102  } catch (SQLException& e) {
103  throw(std::runtime_error("CaliGeneralDat::fetchData(): " + e.getMessage()));
104  }
105 }
void fetchData(std::map< EcalLogicID, CaliGeneralDat > *fillVec, CaliIOV *iov) noexcept(false)
void prepareWrite() noexcept(false) override
void writeDB(const EcalLogicID *ecid, const CaliGeneralDat *item, CaliIOV *iov) noexcept(false)
void setComments(std::string comments)
~CaliGeneralDat() override
void setNumEvents(int n)