CMS 3D CMS Logo

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