10 using namespace oracle::occi;
15 m_writeStmt =
nullptr;
24 this->checkConnection();
27 m_writeStmt = m_conn->createStatement();
29 "INSERT INTO dcu_idark_dat (iov_id, logic_id, "
31 "VALUES (:iov_id, :logic_id, "
33 }
catch (SQLException&
e) {
34 throw(std::runtime_error(
"DCUIDarkDat::prepareWrite(): " + e.getMessage()));
39 this->checkConnection();
42 int iovID = iov->fetchID();
44 throw(std::runtime_error(
"DCUIDarkDat::writeDB: IOV not in DB"));
47 int logicID = ecid->getLogicID();
49 throw(std::runtime_error(
"DCUIDarkDat::writeDB: Bad EcalLogicID"));
53 m_writeStmt->setInt(1, iovID);
54 m_writeStmt->setInt(2, logicID);
56 m_writeStmt->setFloat(3,
item->getAPDIDark());
58 m_writeStmt->executeUpdate();
59 }
catch (SQLException&
e) {
60 throw(std::runtime_error(
"DCUIDarkDat::writeDB(): " + e.getMessage()));
65 this->checkConnection();
68 iov->setConnection(m_env, m_conn);
69 int iovID = iov->fetchID();
77 "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
79 "FROM channelview cv JOIN dcu_idark_dat d "
80 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
81 "WHERE d.iov_id = :iov_id");
82 m_readStmt->setInt(1, iovID);
83 ResultSet* rset = m_readStmt->executeQuery();
85 std::pair<EcalLogicID, DCUIDarkDat>
p;
87 while (rset->next()) {
100 }
catch (SQLException&
e) {
101 throw(std::runtime_error(
"DCUIDarkDat::fetchData(): " + e.getMessage()));
105 this->checkConnection();
106 this->checkPrepare();
108 int iovID = iov->fetchID();
110 throw(std::runtime_error(
"DCUIDarkDat::writeArrayDB: IOV not in DB"));
113 int nrows =
data->size();
114 int* ids =
new int[nrows];
115 int* iovid_vec =
new int[nrows];
116 float* xx =
new float[nrows];
118 ub2* ids_len =
new ub2[nrows];
119 ub2* iov_len =
new ub2[nrows];
120 ub2* x_len =
new ub2[nrows];
125 typedef map<EcalLogicID, DCUIDarkDat>::const_iterator CI;
126 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
127 channel = &(
p->first);
130 throw(std::runtime_error(
"DCUIDarkDat::writeArrayDB: Bad EcalLogicID"));
132 ids[
count] = logicID;
133 iovid_vec[
count] = iovID;
135 dataitem = &(
p->second);
150 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]), iov_len);
151 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len);
152 m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT,
sizeof(xx[0]), x_len);
154 m_writeStmt->executeArrayUpdate(nrows);
164 }
catch (SQLException&
e) {
165 throw(std::runtime_error(
"DCUIDarkDat::writeArrayDB(): " + e.getMessage()));
void setAPDIDark(float i)
void writeArrayDB(const std::map< EcalLogicID, DCUIDarkDat > *data, DCUIOV *iov) noexcept(false)
void writeDB(const EcalLogicID *ecid, const DCUIDarkDat *item, DCUIOV *iov) noexcept(false)
void fetchData(std::map< EcalLogicID, DCUIDarkDat > *fillVec, DCUIOV *iov) noexcept(false)
static std::vector< std::string > checklist dat
void prepareWrite() noexcept(false) override
char data[epos_bytes_allocation]
float getAPDIDark() const