CMS 3D CMS Logo

ODWeightsSamplesDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 
6 
7 using namespace std;
8 using namespace oracle::occi;
9 
11  m_env = nullptr;
12  m_conn = nullptr;
13  m_writeStmt = nullptr;
14  m_readStmt = nullptr;
15 
16  m_fed = 0;
17 }
18 
20 
22  m_fed = 0;
23  m_ss = 0;
24  m_sn = 0;
25 }
26 
28  this->checkConnection();
29 
30  try {
31  m_writeStmt = m_conn->createStatement();
32  m_writeStmt->setSQL("INSERT INTO " + getTable() +
33  " (rec_id, fed_id, sample_id, weight_number ) "
34  "VALUES (:1, :2, :3, :4 )");
35  } catch (SQLException& e) {
36  throw(std::runtime_error("ODWeightsSamplesDat::prepareWrite(): " + e.getMessage()));
37  }
38 }
39 
41  this->checkConnection();
42 
43  try {
44  m_writeStmt->setInt(1, item->getId());
45  m_writeStmt->setInt(2, item->getFedId());
46  m_writeStmt->setInt(3, item->getSampleId());
47  m_writeStmt->setInt(4, item->getWeightNumber());
48 
49  m_writeStmt->executeUpdate();
50  } catch (SQLException& e) {
51  throw(std::runtime_error("ODWeightsSamplesDat::writeDB(): " + e.getMessage()));
52  }
53 }
54 
55 void ODWeightsSamplesDat::fetchData(std::vector<ODWeightsSamplesDat>* p, ODFEWeightsInfo* iov) noexcept(false) {
56  this->checkConnection();
57 
58  iov->setConnection(m_env, m_conn);
59  int iovID = iov->fetchID();
60  if (!iovID) {
61  std::cout << "ID not in the DB" << endl;
62  return;
63  }
64 
65  try {
66  m_readStmt->setSQL("SELECT * FROM " + getTable() + " WHERE rec_id = :rec_id order by fed_id, sample_id");
67  m_readStmt->setInt(1, iovID);
68  ResultSet* rset = m_readStmt->executeQuery();
69 
70  // std::vector< ODWeightsSamplesDat > p;
72  while (rset->next()) {
73  // dat.setId( rset->getInt(1) );
74  dat.setFedId(rset->getInt(2));
75  dat.setSampleId(rset->getInt(3));
76  dat.setWeightNumber(rset->getInt(4));
77 
78  p->push_back(dat);
79  }
80 
81  } catch (SQLException& e) {
82  throw(std::runtime_error("ODWeightsSamplesDat::fetchData(): " + e.getMessage()));
83  }
84 }
85 
87  this->checkConnection();
88 
89  try {
90  m_readStmt->setSQL("SELECT * FROM " + getTable() + " WHERE rec_id = :1 order by fed_id, sample_id");
91  m_readStmt->setInt(1, p->getId());
92  ResultSet* rset = m_readStmt->executeQuery();
93 
94  while (rset->next()) {
95  p->setFedId(rset->getInt(2));
96  p->setSampleId(rset->getInt(3));
97  p->setWeightNumber(rset->getInt(4));
98  }
99 
100  } catch (SQLException& e) {
101  throw(std::runtime_error("ODWeightsSamplesDat::fetchData(): " + e.getMessage()));
102  }
103 }
104 
105 // ************************************************************************ //
106 
107 void ODWeightsSamplesDat::writeArrayDB(const std::vector<ODWeightsSamplesDat>& data,
108  ODFEWeightsInfo* iov) noexcept(false) {
109  this->checkConnection();
110 
111  int iovID = iov->fetchID();
112  if (!iovID) {
113  throw(std::runtime_error("ODDelays::writeArrayDB: ODFEDelaysInfo not in DB"));
114  }
115 
116  int nrows = data.size();
117  int* ids = new int[nrows];
118  int* xx = new int[nrows];
119  int* yy = new int[nrows];
120  int* zz = new int[nrows];
121 
122  ub2* ids_len = new ub2[nrows];
123  ub2* x_len = new ub2[nrows];
124  ub2* y_len = new ub2[nrows];
125  ub2* z_len = new ub2[nrows];
126 
127  ODWeightsSamplesDat dataitem;
128 
129  int n_data = (int)data.size();
130  for (int count = 0; count < n_data; count++) {
131  dataitem = data[count];
132  ids[count] = iovID;
133  xx[count] = dataitem.getFedId();
134  yy[count] = dataitem.getSampleId();
135  zz[count] = dataitem.getWeightNumber();
136 
137  ids_len[count] = sizeof(ids[count]);
138  x_len[count] = sizeof(xx[count]);
139  y_len[count] = sizeof(yy[count]);
140  z_len[count] = sizeof(zz[count]);
141  }
142 
143  try {
144  m_writeStmt->setDataBuffer(1, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len);
145  m_writeStmt->setDataBuffer(2, (dvoid*)xx, OCCIINT, sizeof(xx[0]), x_len);
146  m_writeStmt->setDataBuffer(3, (dvoid*)yy, OCCIINT, sizeof(yy[0]), y_len);
147  m_writeStmt->setDataBuffer(4, (dvoid*)zz, OCCIINT, sizeof(zz[0]), z_len);
148 
149  m_writeStmt->executeArrayUpdate(nrows);
150 
151  delete[] ids;
152  delete[] xx;
153  delete[] yy;
154  delete[] zz;
155 
156  delete[] ids_len;
157  delete[] x_len;
158  delete[] y_len;
159  delete[] z_len;
160 
161  } catch (SQLException& e) {
162  throw(std::runtime_error("ODWeightsSamplesDat::writeArrayDB(): " + e.getMessage()));
163  }
164 }
ODWeightsSamplesDat
Definition: ODWeightsSamplesDat.h:12
geometryCSVtoXML.zz
zz
Definition: geometryCSVtoXML.py:19
funct::false
false
Definition: Factorize.h:29
ODWeightsSamplesDat::getFedId
int getFedId() const
Definition: ODWeightsSamplesDat.h:25
ODWeightsSamplesDat::writeArrayDB
void writeArrayDB(const std::vector< ODWeightsSamplesDat > &data, ODFEWeightsInfo *iov) noexcept(false)
Definition: ODWeightsSamplesDat.cc:107
ODWeightsSamplesDat::setWeightNumber
void setWeightNumber(int dac)
Definition: ODWeightsSamplesDat.h:30
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
gather_cfg.cout
cout
Definition: gather_cfg.py:144
ODWeightsSamplesDat::getWeightNumber
int getWeightNumber() const
Definition: ODWeightsSamplesDat.h:31
ODWeightsSamplesDat::setFedId
void setFedId(int dac)
Definition: ODWeightsSamplesDat.h:24
ODWeightsSamplesDat::prepareWrite
void prepareWrite() noexcept(false) override
Definition: ODWeightsSamplesDat.cc:27
IODConfig::SQLException
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
oracle::occi
Definition: ConnectionManager.h:7
ODWeightsSamplesDat::fetchData
void fetchData(std::vector< ODWeightsSamplesDat > *fillMap, ODFEWeightsInfo *iov) noexcept(false)
Definition: ODWeightsSamplesDat.cc:55
ODWeightsSamplesDat.h
ODFEWeightsInfo
Definition: ODFEWeightsInfo.h:9
submitPVResolutionJobs.count
count
Definition: submitPVResolutionJobs.py:352
ODWeightsSamplesDat::getSampleId
int getSampleId() const
Definition: ODWeightsSamplesDat.h:28
geometryCSVtoXML.yy
yy
Definition: geometryCSVtoXML.py:19
createfilelist.int
int
Definition: createfilelist.py:10
ODWeightsSamplesDat::writeDB
void writeDB(const ODWeightsSamplesDat *item, ODFEWeightsInfo *iov) noexcept(false)
Definition: ODWeightsSamplesDat.cc:40
B2GTnPMonitor_cfi.item
item
Definition: B2GTnPMonitor_cfi.py:147
ODWeightsSamplesDat::~ODWeightsSamplesDat
~ODWeightsSamplesDat() override
Definition: ODWeightsSamplesDat.cc:19
std
Definition: JetResolutionObject.h:76
ODWeightsSamplesDat::ODWeightsSamplesDat
ODWeightsSamplesDat()
Definition: ODWeightsSamplesDat.cc:10
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
Oracle.h
ODWeightsSamplesDat::clear
void clear()
Definition: ODWeightsSamplesDat.cc:21
ODWeightsSamplesDat::setSampleId
void setSampleId(int dac)
Definition: ODWeightsSamplesDat.h:27
geometryCSVtoXML.xx
xx
Definition: geometryCSVtoXML.py:19
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37