8 using namespace oracle::occi;
17 m_processedEvents = 0;
18 m_problematicEvents = 0;
35 throw(std::runtime_error)
37 this->checkConnection();
40 m_writeStmt = m_conn->createStatement();
41 m_writeStmt->setSQL(
"INSERT INTO mon_mem_tt_consistency_dat (iov_id, logic_id, "
42 "processed_events, problematic_events, problems_id, problems_size, problems_LV1, problems_bunch_X, task_status) "
43 "VALUES (:iov_id, :logic_id, "
44 ":3, :4, :5, :6, :7, :8, :9)");
46 throw(std::runtime_error(
"MonMemTTConsistencyDat::prepareWrite(): "+e.getMessage()));
53 throw(std::runtime_error)
55 this->checkConnection();
58 int iovID =
iov->fetchID();
59 if (!iovID) {
throw(std::runtime_error(
"MonMemTTConsistencyDat::writeDB: IOV not in DB")); }
61 int logicID = ecid->getLogicID();
62 if (!logicID) {
throw(std::runtime_error(
"MonMemTTConsistencyDat::writeDB: Bad EcalLogicID")); }
65 m_writeStmt->setInt(1, iovID);
66 m_writeStmt->setInt(2, logicID);
68 m_writeStmt->setInt(3, item->getProcessedEvents() );
69 m_writeStmt->setInt(4, item->getProblematicEvents() );
70 m_writeStmt->setInt(5, item->getProblemsID() );
71 m_writeStmt->setInt(6, item->getProblemsSize() );
72 m_writeStmt->setInt(7, item->getProblemsLV1() );
73 m_writeStmt->setInt(8, item->getProblemsBunchX() );
74 m_writeStmt->setInt(9, item->getTaskStatus() );
75 m_writeStmt->executeUpdate();
77 throw(std::runtime_error(
"MonMemTTConsistencyDat::writeDB(): "+e.getMessage()));
84 throw(std::runtime_error)
86 this->checkConnection();
89 iov->setConnection(m_env, m_conn);
90 int iovID =
iov->fetchID();
98 m_readStmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
99 "d.processed_events, d.problematic_events, d.problems_id, d.problems_size, d.problems_LV1, d.problems_bunch_X, d.task_status "
100 "FROM channelview cv JOIN mon_mem_tt_consistency_dat d "
101 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
102 "WHERE d.iov_id = :iov_id");
103 m_readStmt->setInt(1, iovID);
104 ResultSet* rset = m_readStmt->executeQuery();
106 std::pair< EcalLogicID, MonMemTTConsistencyDat >
p;
108 while(rset->next()) {
128 throw(std::runtime_error(
"MonMemTTConsistencyDat::fetchData(): "+e.getMessage()));
133 throw(std::runtime_error)
135 this->checkConnection();
136 this->checkPrepare();
138 int iovID =
iov->fetchID();
139 if (!iovID) {
throw(std::runtime_error(
"MonMemTTConsistencyDat::writeArrayDB: IOV not in DB")); }
142 int nrows=
data->size();
143 int* ids=
new int[nrows];
144 int* iovid_vec=
new int[nrows];
145 int* xx=
new int[nrows];
146 int* yy=
new int[nrows];
147 int* zz=
new int[nrows];
148 int* ww=
new int[nrows];
149 int* uu=
new int[nrows];
150 int*
tt=
new int[nrows];
151 int* st=
new int[nrows];
153 ub2* ids_len=
new ub2[nrows];
154 ub2* iov_len=
new ub2[nrows];
155 ub2* x_len=
new ub2[nrows];
156 ub2* y_len=
new ub2[nrows];
157 ub2* z_len=
new ub2[nrows];
158 ub2* w_len=
new ub2[nrows];
159 ub2* u_len=
new ub2[nrows];
160 ub2* t_len=
new ub2[nrows];
161 ub2* st_len=
new ub2[nrows];
166 typedef map< EcalLogicID, MonMemTTConsistencyDat >::const_iterator CI;
167 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
168 channel = &(
p->first);
170 if (!logicID) {
throw(std::runtime_error(
"MonMemTTConsistencyDat::writeArrayDB: Bad EcalLogicID")); }
172 iovid_vec[
count]=iovID;
174 dataitem = &(
p->second);
212 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]),iov_len);
213 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len );
214 m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIINT ,
sizeof(xx[0]), x_len );
215 m_writeStmt->setDataBuffer(4, (dvoid*)yy, OCCIINT ,
sizeof(yy[0]), y_len );
216 m_writeStmt->setDataBuffer(5, (dvoid*)zz, OCCIINT ,
sizeof(zz[0]), z_len );
217 m_writeStmt->setDataBuffer(6, (dvoid*)ww, OCCIINT ,
sizeof(ww[0]), w_len );
218 m_writeStmt->setDataBuffer(7, (dvoid*)uu, OCCIINT ,
sizeof(uu[0]), u_len );
219 m_writeStmt->setDataBuffer(8, (dvoid*)tt, OCCIINT ,
sizeof(tt[0]), t_len );
220 m_writeStmt->setDataBuffer(9, (dvoid*)st, OCCIINT ,
sizeof(st[0]), st_len );
223 m_writeStmt->executeArrayUpdate(nrows);
248 throw(std::runtime_error(
"MonMemTTConsistencyDat::writeArrayDB(): "+e.getMessage()));
void setProblemsID(int id)
int getProblematicEvents() const
void writeDB(const EcalLogicID *ecid, const MonMemTTConsistencyDat *item, MonRunIOV *iov)
oracle::occi::SQLException SQLException
int getProcessedEvents() const
void setProblemsBunchX(int bunchX)
~MonMemTTConsistencyDat()
int getProblemsLV1() const
void setProblematicEvents(int prob)
void fetchData(std::map< EcalLogicID, MonMemTTConsistencyDat > *fillVec, MonRunIOV *iov)
int getProblemsBunchX() const
int getProblemsSize() const
oracle::occi::ResultSet ResultSet
void setProcessedEvents(int proc)
void setProblemsLV1(int LV1)
void setTaskStatus(bool status)
char data[epos_bytes_allocation]
void setProblemsSize(int size)
int getProblemsID() const
void writeArrayDB(const std::map< EcalLogicID, MonMemTTConsistencyDat > *data, MonRunIOV *iov)
bool getTaskStatus() const