CMS 3D CMS Logo

ODFEPedestalOffsetInfo.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <cstdlib>
3 #include <string>
4 #include <cstring>
6 
8 
9 using namespace std;
10 using namespace oracle::occi;
11 
13  m_env = nullptr;
14  m_conn = nullptr;
15  m_writeStmt = nullptr;
16  m_readStmt = nullptr;
17  m_config_tag = "";
18  m_ID = 0;
19  m_version = 0;
20  clear();
21 }
22 
24 
26 
28  int result = 0;
29  try {
30  this->checkConnection();
31 
32  m_readStmt = m_conn->createStatement();
33  m_readStmt->setSQL("select COND2CONF_INFO_SQ.NextVal from DUAL ");
34  ResultSet* rset = m_readStmt->executeQuery();
35  while (rset->next()) {
36  result = rset->getInt(1);
37  }
38  result++;
39  m_conn->terminateStatement(m_readStmt);
40  return result;
41 
42  } catch (SQLException& e) {
43  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchNextId(): ") + e.getMessage()));
44  }
45 }
46 
48  this->checkConnection();
49 
50  int next_id = 0;
51  if (getId() == 0) {
52  next_id = fetchNextId();
53  }
54 
55  try {
56  m_writeStmt = m_conn->createStatement();
57  m_writeStmt->setSQL("INSERT INTO " + getTable() +
58  " ( rec_id, tag, version) "
59  " VALUES ( :1, :2, :3 ) ");
60 
61  m_writeStmt->setInt(1, next_id);
62  m_ID = next_id;
63 
64  } catch (SQLException& e) {
65  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::prepareWrite(): ") + e.getMessage()));
66  }
67 }
68 
69 void ODFEPedestalOffsetInfo::setParameters(const std::map<string, string>& my_keys_map) {
70  // parses the result of the XML parser that is a map of
71  // string string with variable name variable value
72 
73  for (std::map<std::string, std::string>::const_iterator ci = my_keys_map.begin(); ci != my_keys_map.end(); ci++) {
74  if (ci->first == "VERSION")
75  setVersion(atoi(ci->second.c_str()));
76  if (ci->first == "TAG")
77  setConfigTag(ci->second);
78  }
79 }
80 
82  this->checkConnection();
83  this->checkPrepare();
84 
85  try {
86  // number 1 is the id
87  m_writeStmt->setString(2, this->getConfigTag());
88  m_writeStmt->setInt(3, this->getVersion());
89 
90  m_writeStmt->executeUpdate();
91 
92  } catch (SQLException& e) {
93  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::writeDB(): ") + e.getMessage()));
94  }
95 
96  // Now get the ID
97  if (!this->fetchID()) {
98  throw(std::runtime_error("ODFEPedestalOffsetInfo::writeDB: Failed to write"));
99  } else {
100  int old_version = this->getVersion();
101  m_readStmt = m_conn->createStatement();
102  this->fetchData(this);
103  m_conn->terminateStatement(m_readStmt);
104  if (this->getVersion() != old_version)
105  std::cout << "ODFEPedestalOffsetInfo>>WARNING version is " << getVersion() << endl;
106  }
107 }
108 
110  this->checkConnection();
111  result->clear();
112  if (result->getId() == 0 && (result->getConfigTag().empty())) {
113  throw(std::runtime_error("ODFEPedestalOffsetInfo::fetchData(): no Id defined for this ODFEPedestalOffsetInfo "));
114  }
115 
116  try {
117  if (result->getId() != 0) {
118  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where rec_id = :1 ");
119  m_readStmt->setInt(1, result->getId());
120  } else if (!result->getConfigTag().empty()) {
121  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where tag=:1 AND version=:2 ");
122  m_readStmt->setString(1, result->getConfigTag());
123  m_readStmt->setInt(2, result->getVersion());
124  } else {
125  // we should never pass here
126  throw(std::runtime_error("ODFEPedestalOffsetInfo::fetchData(): no Id defined for this record "));
127  }
128 
129  ResultSet* rset = m_readStmt->executeQuery();
130 
131  rset->next();
132 
133  // 1 is the id and 2 is the config tag and 3 is the version
134 
135  result->setId(rset->getInt(1));
136  result->setConfigTag(rset->getString(2));
137  result->setVersion(rset->getInt(3));
138 
139  } catch (SQLException& e) {
140  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchData(): ") + e.getMessage()));
141  }
142 }
143 
145  this->checkConnection();
146  result->clear();
147  try {
148  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where rec_id = ( select max(rec_id) from " + getTable() +
149  " ) ");
150  ResultSet* rset = m_readStmt->executeQuery();
151 
152  rset->next();
153 
154  result->setId(rset->getInt(1));
155  result->setConfigTag(rset->getString(2));
156  result->setVersion(rset->getInt(3));
157 
158  } catch (SQLException& e) {
159  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchData(): ") + e.getMessage()));
160  }
161 }
162 
164  // Return from memory if available
165  if (m_ID != 0) {
166  return m_ID;
167  }
168 
169  this->checkConnection();
170 
171  try {
172  Statement* stmt = m_conn->createStatement();
173  stmt->setSQL("SELECT rec_id FROM " + getTable() + "WHERE tag=:1 and version=:2 ");
174 
175  stmt->setString(1, getConfigTag());
176  stmt->setInt(2, getVersion());
177 
178  ResultSet* rset = stmt->executeQuery();
179 
180  if (rset->next()) {
181  m_ID = rset->getInt(1);
182  } else {
183  m_ID = 0;
184  }
185  m_conn->terminateStatement(stmt);
186  } catch (SQLException& e) {
187  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchID: ") + e.getMessage()));
188  }
189 
190  return m_ID;
191 }
funct::false
false
Definition: Factorize.h:34
IODConfig::Statement
oracle::occi::Statement Statement
Definition: IODConfig.h:21
gather_cfg.cout
cout
Definition: gather_cfg.py:144
ODFEPedestalOffsetInfo::fetchID
int fetchID() noexcept(false)
Definition: ODFEPedestalOffsetInfo.cc:163
ODFEPedestalOffsetInfo::setParameters
void setParameters(const std::map< std::string, std::string > &my_keys_map)
Definition: ODFEPedestalOffsetInfo.cc:69
ODFEPedestalOffsetInfo::prepareWrite
void prepareWrite() noexcept(false) override
Definition: ODFEPedestalOffsetInfo.cc:47
IODConfig::SQLException
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
ODFEPedestalOffsetInfo::fetchNextId
int fetchNextId() noexcept(false)
Definition: ODFEPedestalOffsetInfo.cc:27
ODFEPedestalOffsetInfo::clear
void clear()
Definition: ODFEPedestalOffsetInfo.cc:23
ODFEPedestalOffsetInfo::ODFEPedestalOffsetInfo
ODFEPedestalOffsetInfo()
Definition: ODFEPedestalOffsetInfo.cc:12
ODFEPedestalOffsetInfo
Definition: ODFEPedestalOffsetInfo.h:9
oracle::occi
Definition: ConnectionManager.h:7
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
clear
void clear(HadCaloObj &c)
Definition: data.h:124
ODFEPedestalOffsetInfo::fetchLastData
void fetchLastData(ODFEPedestalOffsetInfo *result) noexcept(false)
Definition: ODFEPedestalOffsetInfo.cc:144
ODFEPedestalOffsetInfo.h
ODFEPedestalOffsetInfo::writeDB
void writeDB() noexcept(false)
Definition: ODFEPedestalOffsetInfo.cc:81
ODFEPedestalOffsetInfo::fetchData
void fetchData(ODFEPedestalOffsetInfo *result) noexcept(false)
Definition: ODFEPedestalOffsetInfo.cc:109
std
Definition: JetResolutionObject.h:76
ODFEPedestalOffsetInfo::~ODFEPedestalOffsetInfo
~ODFEPedestalOffsetInfo() override
Definition: ODFEPedestalOffsetInfo.cc:25
Oracle.h
mps_fire.result
result
Definition: mps_fire.py:303
getId
static unsigned int getId()
Definition: DQMStoreStats.h:129
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37