CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DCULVRTempsDat.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  m_readStmt = nullptr;
17 
18  m_t1 = 0;
19  m_t2 = 0;
20  m_t3 = 0;
21 }
22 
24 
26  this->checkConnection();
27 
28  try {
29  m_writeStmt = m_conn->createStatement();
30  m_writeStmt->setSQL(
31  "INSERT INTO dcu_lvr_temps_dat (iov_id, logic_id, "
32  "t1, t2, t3) "
33  "VALUES (:iov_id, :logic_id, "
34  ":3, :4, :5)");
35  } catch (SQLException& e) {
36  throw(std::runtime_error("DCULVRTempsDat::prepareWrite(): " + e.getMessage()));
37  }
38 }
39 
40 void DCULVRTempsDat::writeDB(const EcalLogicID* ecid, const DCULVRTempsDat* item, DCUIOV* iov) noexcept(false) {
41  this->checkConnection();
42  this->checkPrepare();
43 
44  int iovID = iov->fetchID();
45  if (!iovID) {
46  throw(std::runtime_error("DCULVRTempsDat::writeDB: IOV not in DB"));
47  }
48 
49  int logicID = ecid->getLogicID();
50  if (!logicID) {
51  throw(std::runtime_error("DCULVRTempsDat::writeDB: Bad EcalLogicID"));
52  }
53 
54  try {
55  m_writeStmt->setInt(1, iovID);
56  m_writeStmt->setInt(2, logicID);
57 
58  m_writeStmt->setFloat(3, item->getT1());
59  m_writeStmt->setFloat(4, item->getT2());
60  m_writeStmt->setFloat(5, item->getT3());
61 
62  m_writeStmt->executeUpdate();
63  } catch (SQLException& e) {
64  throw(std::runtime_error("DCULVRTempsDat::writeDB(): " + e.getMessage()));
65  }
66 }
67 
68 void DCULVRTempsDat::fetchData(std::map<EcalLogicID, DCULVRTempsDat>* fillMap, DCUIOV* iov) noexcept(false) {
69  this->checkConnection();
70  fillMap->clear();
71 
72  iov->setConnection(m_env, m_conn);
73  int iovID = iov->fetchID();
74  if (!iovID) {
75  // throw(std::runtime_error("DCULVRTempsDat::writeDB: IOV not in DB"));
76  return;
77  }
78 
79  try {
80  m_readStmt->setSQL(
81  "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
82  "d.t1, d.t2, d.t3 "
83  "FROM channelview cv JOIN dcu_lvr_temps_dat d "
84  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
85  "WHERE d.iov_id = :iov_id");
86  m_readStmt->setInt(1, iovID);
87  ResultSet* rset = m_readStmt->executeQuery();
88 
89  std::pair<EcalLogicID, DCULVRTempsDat> p;
91  while (rset->next()) {
92  p.first = EcalLogicID(rset->getString(1), // name
93  rset->getInt(2), // logic_id
94  rset->getInt(3), // id1
95  rset->getInt(4), // id2
96  rset->getInt(5), // id3
97  rset->getString(6)); // maps_to
98 
99  dat.setT1(rset->getFloat(7));
100  dat.setT2(rset->getFloat(8));
101  dat.setT3(rset->getFloat(9));
102 
103  p.second = dat;
104  fillMap->insert(p);
105  }
106  } catch (SQLException& e) {
107  throw(std::runtime_error("DCULVRTempsDat::fetchData(): " + e.getMessage()));
108  }
109 }
void fetchData(std::map< EcalLogicID, DCULVRTempsDat > *fillVec, DCUIOV *iov) noexcept(false)
void writeDB(const EcalLogicID *ecid, const DCULVRTempsDat *item, DCUIOV *iov) noexcept(false)
Definition: DCUIOV.h:13
void prepareWrite() noexcept(false) override
~DCULVRTempsDat() override
void setT3(float temp)
static std::vector< std::string > checklist dat
void setT1(float temp)
void setT2(float temp)