CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MODCCSFEDat.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 = NULL;
14  m_conn = NULL;
15  m_writeStmt = NULL;
16  m_readStmt = NULL;
17 
18  m_word = 0;
19 }
20 
21 
22 
24 {
25 }
26 
27 
28 
30  throw(std::runtime_error)
31 {
32  this->checkConnection();
33 
34  try {
35  m_writeStmt = m_conn->createStatement();
36  m_writeStmt->setSQL("INSERT INTO OD_CCS_FE_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("MODCCSFEDat::prepareWrite(): "+e.getMessage()));
42  }
43 }
44 
45 
46 
47 void MODCCSFEDat::writeDB(const EcalLogicID* ecid, const MODCCSFEDat* item, MODRunIOV* iov )
48  throw(std::runtime_error)
49 {
50  this->checkConnection();
51  this->checkPrepare();
52 
53  int iovID = iov->fetchID();
54  if (!iovID) { throw(std::runtime_error("MODCCSFEDat::writeDB: IOV not in DB")); }
55 
56  int logicID = ecid->getLogicID();
57  if (!logicID) { throw(std::runtime_error("MODCCSFEDat::writeDB: Bad EcalLogicID")); }
58 
59  try {
60  m_writeStmt->setInt(1, iovID);
61  m_writeStmt->setInt(2, logicID);
62  m_writeStmt->setInt(3, item->getWord() );
63 
64  m_writeStmt->executeUpdate();
65  } catch (SQLException &e) {
66  throw(std::runtime_error("MODCCSFEDat::writeDB(): "+e.getMessage()));
67  }
68 }
69 
70 
71 
72 void MODCCSFEDat::fetchData(std::map< EcalLogicID, MODCCSFEDat >* fillMap, MODRunIOV* iov)
73  throw(std::runtime_error)
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("MODCCSFEDat::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_FE_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, MODCCSFEDat > p;
96  MODCCSFEDat 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("MODCCSFEDat::fetchData(): "+e.getMessage()));
112  }
113 }
114 
115 void MODCCSFEDat::writeArrayDB(const std::map< EcalLogicID, MODCCSFEDat >* data, MODRunIOV* iov)
116  throw(std::runtime_error)
117 {
118  this->checkConnection();
119  this->checkPrepare();
120 
121  int iovID = iov->fetchID();
122  if (!iovID) { throw(std::runtime_error("MODCCSFEDat::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 MODCCSFEDat* dataitem;
136  int count=0;
137  typedef map< EcalLogicID, MODCCSFEDat >::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("MODCCSFEDat::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: MODCCSFEDat.h:20
int getWord() const
Definition: MODCCSFEDat.h:21
void writeArrayDB(const std::map< EcalLogicID, MODCCSFEDat > *data, MODRunIOV *iov)
Definition: MODCCSFEDat.cc:115
#define NULL
Definition: scimark2.h:8
oracle::occi::SQLException SQLException
Definition: HcalDbOmds.cc:27
tuple iov
Definition: o2o.py:307
int getLogicID() const
Definition: EcalLogicID.cc:41
oracle::occi::ResultSet ResultSet
Definition: HcalDbOmds.cc:26
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
void writeDB(const EcalLogicID *ecid, const MODCCSFEDat *item, MODRunIOV *iov)
Definition: MODCCSFEDat.cc:47
void prepareWrite()
Definition: MODCCSFEDat.cc:29
void fetchData(std::map< EcalLogicID, MODCCSFEDat > *fillMap, MODRunIOV *iov)
Definition: MODCCSFEDat.cc:72