CMS 3D CMS Logo

MonLaserGreenDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 
6 
7 using namespace std;
8 using namespace oracle::occi;
9 
11  m_env = nullptr;
12  m_conn = nullptr;
13  m_writeStmt = nullptr;
14  m_readStmt = nullptr;
15 
16  m_apdMean = 0;
17  m_apdRMS = 0;
18  m_apdOverPNMean = 0;
19  m_apdOverPNRMS = 0;
20  m_taskStatus = false;
21 }
22 
24 
26  this->checkConnection();
27 
28  try {
29  m_writeStmt = m_conn->createStatement();
30  m_writeStmt->setSQL(
31  "INSERT INTO mon_laser_green_dat (iov_id, logic_id, "
32  "apd_mean, apd_rms, apd_over_pn_mean, apd_over_pn_rms, task_status) "
33  "VALUES (:iov_id, :logic_id, "
34  ":apd_mean, :apd_rms, :apd_over_pn_mean, :apd_over_pn_rms, :task_status)");
35  } catch (SQLException& e) {
36  throw(std::runtime_error("MonLaserGreenDat::prepareWrite(): " + e.getMessage()));
37  }
38 }
39 
40 void MonLaserGreenDat::writeDB(const EcalLogicID* ecid, const MonLaserGreenDat* item, MonRunIOV* iov) noexcept(false) {
41  this->checkConnection();
42  this->checkPrepare();
43 
44  int iovID = iov->fetchID();
45  if (!iovID) {
46  throw(std::runtime_error("MonLaserGreenDat::writeDB: IOV not in DB"));
47  }
48 
49  int logicID = ecid->getLogicID();
50  if (!logicID) {
51  throw(std::runtime_error("MonLaserGreenDat::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->getAPDMean());
59  m_writeStmt->setFloat(4, item->getAPDRMS());
60  m_writeStmt->setFloat(5, item->getAPDOverPNMean());
61  m_writeStmt->setFloat(6, item->getAPDOverPNRMS());
62  m_writeStmt->setInt(7, item->getTaskStatus());
63 
64  m_writeStmt->executeUpdate();
65  } catch (SQLException& e) {
66  throw(std::runtime_error("MonLaserGreenDat::writeDB(): " + e.getMessage()));
67  }
68 }
69 
70 void MonLaserGreenDat::fetchData(std::map<EcalLogicID, MonLaserGreenDat>* fillMap, MonRunIOV* iov) noexcept(false) {
71  this->checkConnection();
72 
73  fillMap->clear();
74 
75  iov->setConnection(m_env, m_conn);
76  int iovID = iov->fetchID();
77  if (!iovID) {
78  // throw(std::runtime_error("MonLaserGreenDat::writeDB: IOV not in DB"));
79  return;
80  }
81 
82  try {
83  m_readStmt->setSQL(
84  "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
85  "d.apd_mean, d.apd_rms, d.apd_over_pn_mean, d.apd_over_pn_rms, d.task_status "
86  "FROM channelview cv JOIN mon_laser_green_dat d "
87  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
88  "WHERE d.iov_id = :iov_id");
89  m_readStmt->setInt(1, iovID);
90  ResultSet* rset = m_readStmt->executeQuery();
91 
92  std::pair<EcalLogicID, MonLaserGreenDat> p;
93  MonLaserGreenDat dat;
94  while (rset->next()) {
95  p.first = EcalLogicID(rset->getString(1), // name
96  rset->getInt(2), // logic_id
97  rset->getInt(3), // id1
98  rset->getInt(4), // id2
99  rset->getInt(5), // id3
100  rset->getString(6)); // maps_to
101 
102  dat.setAPDMean(rset->getFloat(7));
103  dat.setAPDRMS(rset->getFloat(8));
104  dat.setAPDOverPNMean(rset->getFloat(9));
105  dat.setAPDOverPNRMS(rset->getFloat(10));
106  dat.setTaskStatus(rset->getInt(11));
107 
108  p.second = dat;
109  fillMap->insert(p);
110  }
111  } catch (SQLException& e) {
112  throw(std::runtime_error("MonLaserGreenDat::fetchData(): " + e.getMessage()));
113  }
114 }
115 
116 void MonLaserGreenDat::writeArrayDB(const std::map<EcalLogicID, MonLaserGreenDat>* data,
117  MonRunIOV* iov) noexcept(false) {
118  this->checkConnection();
119  this->checkPrepare();
120 
121  int iovID = iov->fetchID();
122  if (!iovID) {
123  throw(std::runtime_error("MonLaserGreenDat::writeArrayDB: IOV not in DB"));
124  }
125 
126  int nrows = data->size();
127  int* ids = new int[nrows];
128  int* iovid_vec = new int[nrows];
129  float* xx = new float[nrows];
130  float* yy = new float[nrows];
131  float* zz = new float[nrows];
132  float* ww = new float[nrows];
133  int* st = new int[nrows];
134 
135  ub2* ids_len = new ub2[nrows];
136  ub2* iov_len = new ub2[nrows];
137  ub2* x_len = new ub2[nrows];
138  ub2* y_len = new ub2[nrows];
139  ub2* z_len = new ub2[nrows];
140  ub2* w_len = new ub2[nrows];
141  ub2* st_len = new ub2[nrows];
142 
143  const EcalLogicID* channel;
144  const MonLaserGreenDat* dataitem;
145  int count = 0;
146  typedef map<EcalLogicID, MonLaserGreenDat>::const_iterator CI;
147  for (CI p = data->begin(); p != data->end(); ++p) {
148  channel = &(p->first);
149  int logicID = channel->getLogicID();
150  if (!logicID) {
151  throw(std::runtime_error("MonLaserGreenDat::writeArrayDB: Bad EcalLogicID"));
152  }
153  ids[count] = logicID;
154  iovid_vec[count] = iovID;
155 
156  dataitem = &(p->second);
157  // dataIface.writeDB( channel, dataitem, iov);
158  float x = dataitem->getAPDMean();
159  float y = dataitem->getAPDRMS();
160  float z = dataitem->getAPDOverPNMean();
161  float w = dataitem->getAPDOverPNRMS();
162  int statu = dataitem->getTaskStatus();
163 
164  xx[count] = x;
165  yy[count] = y;
166  zz[count] = z;
167  ww[count] = w;
168  st[count] = statu;
169 
170  ids_len[count] = sizeof(ids[count]);
171  iov_len[count] = sizeof(iovid_vec[count]);
172 
173  x_len[count] = sizeof(xx[count]);
174  y_len[count] = sizeof(yy[count]);
175  z_len[count] = sizeof(zz[count]);
176  w_len[count] = sizeof(ww[count]);
177  st_len[count] = sizeof(st[count]);
178 
179  count++;
180  }
181 
182  try {
183  m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT, sizeof(iovid_vec[0]), iov_len);
184  m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len);
185  m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT, sizeof(xx[0]), x_len);
186  m_writeStmt->setDataBuffer(4, (dvoid*)yy, OCCIFLOAT, sizeof(yy[0]), y_len);
187  m_writeStmt->setDataBuffer(5, (dvoid*)zz, OCCIFLOAT, sizeof(zz[0]), z_len);
188  m_writeStmt->setDataBuffer(6, (dvoid*)ww, OCCIFLOAT, sizeof(ww[0]), w_len);
189  m_writeStmt->setDataBuffer(7, (dvoid*)st, OCCIINT, sizeof(st[0]), st_len);
190 
191  m_writeStmt->executeArrayUpdate(nrows);
192 
193  delete[] ids;
194  delete[] iovid_vec;
195  delete[] xx;
196  delete[] yy;
197  delete[] zz;
198  delete[] ww;
199  delete[] st;
200 
201  delete[] ids_len;
202  delete[] iov_len;
203  delete[] x_len;
204  delete[] y_len;
205  delete[] z_len;
206  delete[] w_len;
207  delete[] st_len;
208 
209  } catch (SQLException& e) {
210  throw(std::runtime_error("MonLaserGreenDat::writeArrayDB(): " + e.getMessage()));
211  }
212 }
void prepareWrite() noexcept(false) override
bool getTaskStatus() const
float getAPDOverPNMean() const
~MonLaserGreenDat() override
T w() const
void writeArrayDB(const std::map< EcalLogicID, MonLaserGreenDat > *data, MonRunIOV *iov) noexcept(false)
int getLogicID() const
Definition: EcalLogicID.cc:28
float getAPDOverPNRMS() const
void setTaskStatus(bool status)
void setAPDMean(float mean)
void setAPDRMS(float rms)
void setAPDOverPNRMS(float rms)
void fetchData(std::map< EcalLogicID, MonLaserGreenDat > *fillMap, MonRunIOV *iov) noexcept(false)
void setAPDOverPNMean(float mean)
float getAPDRMS() const
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
void writeDB(const EcalLogicID *ecid, const MonLaserGreenDat *item, MonRunIOV *iov) noexcept(false)
float getAPDMean() const