CMS 3D CMS Logo

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