CMS 3D CMS Logo

MODCCSTRDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 
7 
8 using namespace std;
9 using namespace oracle::occi;
10 
12 {
13  m_env = nullptr;
14  m_conn = nullptr;
15  m_writeStmt = nullptr;
16  m_readStmt = nullptr;
17 
18  m_word = 0;
19 }
20 
21 
22 
24 {
25 }
26 
27 
28 
31 {
32  this->checkConnection();
33 
34  try {
35  m_writeStmt = m_conn->createStatement();
36  m_writeStmt->setSQL("INSERT INTO OD_CCS_TR_dat (iov_id, logic_id, "
37  "ccs_word) "
38  "VALUES (:iov_id, :logic_id, "
39  ":ccs_word)");
40  } catch (SQLException &e) {
41  throw(std::runtime_error("MODCCSTRDat::prepareWrite(): "+e.getMessage()));
42  }
43 }
44 
45 
46 
47 void MODCCSTRDat::writeDB(const EcalLogicID* ecid, const MODCCSTRDat* item, MODRunIOV* iov )
48  noexcept(false)
49 {
50  this->checkConnection();
51  this->checkPrepare();
52 
53  int iovID = iov->fetchID();
54  if (!iovID) { throw(std::runtime_error("MODCCSTRDat::writeDB: IOV not in DB")); }
55 
56  int logicID = ecid->getLogicID();
57  if (!logicID) { throw(std::runtime_error("MODCCSTRDat::writeDB: Bad EcalLogicID")); }
58 
59  try {
60  m_writeStmt->setInt(1, iovID);
61  m_writeStmt->setInt(2, logicID);
62  m_writeStmt->setFloat(3, item->getWord() );
63 
64  m_writeStmt->executeUpdate();
65  } catch (SQLException &e) {
66  throw(std::runtime_error("MODCCSTRDat::writeDB(): "+e.getMessage()));
67  }
68 }
69 
70 
71 
72 void MODCCSTRDat::fetchData(std::map< EcalLogicID, MODCCSTRDat >* fillMap, MODRunIOV* iov)
73  noexcept(false)
74 {
75  this->checkConnection();
76  fillMap->clear();
77 
78  iov->setConnection(m_env, m_conn);
79  int iovID = iov->fetchID();
80  if (!iovID) {
81  // throw(std::runtime_error("MODCCSTRDat::writeDB: IOV not in DB"));
82  return;
83  }
84 
85  try {
86 
87  m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
88  " d.ccs_word "
89  "FROM channelview cv JOIN OD_CCS_TR_dat d "
90  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
91  "WHERE d.iov_id = :iov_id");
92  m_readStmt->setInt(1, iovID);
93  ResultSet* rset = m_readStmt->executeQuery();
94 
95  std::pair< EcalLogicID, MODCCSTRDat > p;
96  MODCCSTRDat dat;
97  while(rset->next()) {
98  p.first = EcalLogicID( rset->getString(1), // name
99  rset->getInt(2), // logic_id
100  rset->getInt(3), // id1
101  rset->getInt(4), // id2
102  rset->getInt(5), // id3
103  rset->getString(6)); // maps_to
104 
105  dat.setWord( rset->getInt(7) );
106 
107  p.second = dat;
108  fillMap->insert(p);
109  }
110  } catch (SQLException &e) {
111  throw(std::runtime_error("MODCCSTRDat::fetchData(): "+e.getMessage()));
112  }
113 }
114 
115 void MODCCSTRDat::writeArrayDB(const std::map< EcalLogicID, MODCCSTRDat >* data, MODRunIOV* iov)
116  noexcept(false)
117 {
118  this->checkConnection();
119  this->checkPrepare();
120 
121  int iovID = iov->fetchID();
122  if (!iovID) { throw(std::runtime_error("MODCCSTRDat::writeArrayDB: IOV not in DB")); }
123 
124 
125  int nrows=data->size();
126  int* ids= new int[nrows];
127  int* iovid_vec= new int[nrows];
128  int* xx= new int[nrows];
129 
130  ub2* ids_len= new ub2[nrows];
131  ub2* iov_len= new ub2[nrows];
132  ub2* x_len= new ub2[nrows];
133 
134  const EcalLogicID* channel;
135  const MODCCSTRDat* dataitem;
136  int count=0;
137  typedef map< EcalLogicID, MODCCSTRDat >::const_iterator CI;
138  for (CI p = data->begin(); p != data->end(); ++p) {
139  channel = &(p->first);
140  int logicID = channel->getLogicID();
141  if (!logicID) { throw(std::runtime_error("MODCCSTRDat::writeArrayDB: Bad EcalLogicID")); }
142  ids[count]=logicID;
143  iovid_vec[count]=iovID;
144 
145  dataitem = &(p->second);
146  // dataIface.writeDB( channel, dataitem, iov);
147  int x=dataitem->getWord();
148 
149  xx[count]=x;
150 
151  ids_len[count]=sizeof(ids[count]);
152  iov_len[count]=sizeof(iovid_vec[count]);
153 
154  x_len[count]=sizeof(xx[count]);
155 
156  count++;
157  }
158 
159 
160  try {
161  m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT, sizeof(iovid_vec[0]),iov_len);
162  m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len );
163  m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIINT , sizeof(xx[0]), x_len );
164 
165  m_writeStmt->executeArrayUpdate(nrows);
166 
167  delete [] ids;
168  delete [] iovid_vec;
169  delete [] xx;
170 
171 
172  delete [] ids_len;
173  delete [] iov_len;
174  delete [] x_len;
175 
176 
177 
178  } catch (SQLException &e) {
179  throw(std::runtime_error("MonPedestalsDat::writeArrayDB(): "+e.getMessage()));
180  }
181 }
void setWord(int x)
Definition: MODCCSTRDat.h:20
void prepareWrite() noexcept(false) override
Definition: MODCCSTRDat.cc:29
void fetchData(std::map< EcalLogicID, MODCCSTRDat > *fillMap, MODRunIOV *iov) noexcept(false)
Definition: MODCCSTRDat.cc:72
int getWord() const
Definition: MODCCSTRDat.h:21
void writeDB(const EcalLogicID *ecid, const MODCCSTRDat *item, MODRunIOV *iov) noexcept(false)
Definition: MODCCSTRDat.cc:47
~MODCCSTRDat() override
Definition: MODCCSTRDat.cc:23
void writeArrayDB(const std::map< EcalLogicID, MODCCSTRDat > *data, MODRunIOV *iov) noexcept(false)
Definition: MODCCSTRDat.cc:115
int getLogicID() const
Definition: EcalLogicID.cc:41
#define noexcept
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82