CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DCUVFETempDat.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_vfeTemp = 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_vfe_temp_dat (iov_id, logic_id, "
38  "vfe_temp) "
39  "VALUES (:iov_id, :logic_id, "
40  ":vfe_temp)");
41  } catch (SQLException &e) {
42  throw(std::runtime_error("DCUVFETempDat::prepareWrite(): "+e.getMessage()));
43  }
44 }
45 
46 
47 
48 void DCUVFETempDat::writeDB(const EcalLogicID* ecid, const DCUVFETempDat* 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("DCUVFETempDat::writeDB: IOV not in DB")); }
56 
57  int logicID = ecid->getLogicID();
58  if (!logicID) { throw(std::runtime_error("DCUVFETempDat::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->getVFETemp() );
65 
66  m_writeStmt->executeUpdate();
67  } catch (SQLException &e) {
68  throw(std::runtime_error("DCUVFETempDat::writeDB(): "+e.getMessage()));
69  }
70 }
71 
72 
73 
74 void DCUVFETempDat::fetchData(std::map< EcalLogicID, DCUVFETempDat >* 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("DCUVFETempDat::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.vfe_temp "
91  "FROM channelview cv JOIN dcu_vfe_temp_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, DCUVFETempDat > p;
98  DCUVFETempDat 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.setVFETemp( rset->getFloat(7) );
108 
109  p.second = dat;
110  fillMap->insert(p);
111  }
112  } catch (SQLException &e) {
113  throw(std::runtime_error("DCUVFETempDat::fetchData(): "+e.getMessage()));
114  }
115 }
116 
117 void DCUVFETempDat::writeArrayDB(const std::map< EcalLogicID, DCUVFETempDat >* data, DCUIOV* iov)
118  throw(std::runtime_error)
119 {
120  this->checkConnection();
121  this->checkPrepare();
122 
123  int iovID = iov->fetchID();
124  if (!iovID) { throw(std::runtime_error("DCUVFETempDat::writeArrayDB: IOV not in DB")); }
125 
126 
127  int nrows=data->size();
128  int* ids= new int[nrows];
129  int* iovid_vec= new int[nrows];
130  float* xx= new float[nrows];
131 
132  ub2* ids_len= new ub2[nrows];
133  ub2* iov_len= new ub2[nrows];
134  ub2* x_len= new ub2[nrows];
135 
136  const EcalLogicID* channel;
137  const DCUVFETempDat* dataitem;
138  int count=0;
139  typedef map< EcalLogicID, DCUVFETempDat >::const_iterator CI;
140  for (CI p = data->begin(); p != data->end(); ++p) {
141  channel = &(p->first);
142  int logicID = channel->getLogicID();
143  if (!logicID) { throw(std::runtime_error("DCUVFETempDat::writeArrayDB: Bad EcalLogicID")); }
144  ids[count]=logicID;
145  iovid_vec[count]=iovID;
146 
147  dataitem = &(p->second);
148  // dataIface.writeDB( channel, dataitem, iov);
149  float x=dataitem->getVFETemp();
150 
151  xx[count]=x;
152 
153 
154  ids_len[count]=sizeof(ids[count]);
155  iov_len[count]=sizeof(iovid_vec[count]);
156 
157  x_len[count]=sizeof(xx[count]);
158 
159 
160  count++;
161  }
162 
163 
164  try {
165  m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT, sizeof(iovid_vec[0]),iov_len);
166  m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len );
167  m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT , sizeof(xx[0]), x_len );
168 
169 
170  m_writeStmt->executeArrayUpdate(nrows);
171 
172  delete [] ids;
173  delete [] iovid_vec;
174  delete [] xx;
175 
176  delete [] ids_len;
177  delete [] iov_len;
178  delete [] x_len;
179 
180 
181  } catch (SQLException &e) {
182  throw(std::runtime_error("DCUVFETempDat::writeArrayDB(): "+e.getMessage()));
183  }
184 }
#define NULL
Definition: scimark2.h:8
Definition: DCUIOV.h:13
oracle::occi::SQLException SQLException
Definition: HcalDbOmds.cc:27
void fetchData(std::map< EcalLogicID, DCUVFETempDat > *fillVec, DCUIOV *iov)
tuple iov
Definition: o2o.py:307
void prepareWrite()
void writeArrayDB(const std::map< EcalLogicID, DCUVFETempDat > *data, DCUIOV *iov)
int getLogicID() const
Definition: EcalLogicID.cc:41
void writeDB(const EcalLogicID *ecid, const DCUVFETempDat *item, DCUIOV *iov)
oracle::occi::ResultSet ResultSet
Definition: HcalDbOmds.cc:26
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
void setVFETemp(float temp)
Definition: DCUVFETempDat.h:21
float getVFETemp() const
Definition: DCUVFETempDat.h:22