#include <FEConfigSlidingInfo.h>
Definition at line 11 of file FEConfigSlidingInfo.h.
FEConfigSlidingInfo::FEConfigSlidingInfo |
( |
| ) |
|
FEConfigSlidingInfo::~FEConfigSlidingInfo |
( |
| ) |
|
|
override |
void FEConfigSlidingInfo::clear |
( |
void |
| ) |
|
|
private |
Definition at line 128 of file FEConfigSlidingInfo.cc.
References DateHandler::dateToTm(), cuy::dh, MillePedeFileConverter_cfg::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.
134 throw(std::runtime_error(
"FEConfigSlidingInfo::fetchData(): no Id defined for this FEConfigSlidingInfo "));
141 " where ( sli_conf_id= :1 or (tag=:2 AND version=:3 ) )" );
151 result->
setId(rset->getInt(1));
155 Date dbdate = rset->getDate(5);
159 throw(std::runtime_error(
std::string(
"FEConfigSlidingInfo::fetchData(): ")+getOraMessage(&e)));
oracle::occi::Environment * m_env
std::string getTable() override
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
std::string getConfigTag()
void setDBTime(const Tm &x)
int FEConfigSlidingInfo::fetchID |
( |
| ) |
|
|
noexcept |
Definition at line 189 of file FEConfigSlidingInfo.cc.
References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by setDBTime().
200 stmt->setSQL(
"SELECT sli_conf_id FROM "+
getTable()+
201 " WHERE tag=:1 and version=:2 " );
206 ResultSet* rset = stmt->executeQuery();
209 m_ID = rset->getInt(1);
213 m_conn->terminateStatement(stmt);
215 throw(std::runtime_error(
std::string(
"FEConfigSlidingInfo::fetchID: ")+getOraMessage(&e)));
std::string getTable() override
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement Statement
oracle::occi::SQLException SQLException
std::string getConfigTag()
int FEConfigSlidingInfo::fetchNextId |
( |
| ) |
|
|
noexcept |
Tm FEConfigSlidingInfo::getDBTime |
( |
| ) |
const |
|
inline |
int FEConfigSlidingInfo::getId |
( |
void |
| ) |
const |
|
inline |
int FEConfigSlidingInfo::getID |
( |
| ) |
|
|
inline |
int FEConfigSlidingInfo::getIOVId |
( |
| ) |
const |
|
inline |
std::string FEConfigSlidingInfo::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
int FEConfigSlidingInfo::getVersion |
( |
| ) |
const |
|
inline |
void FEConfigSlidingInfo::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
void FEConfigSlidingInfo::setByID |
( |
int |
id | ) |
|
|
noexcept |
Definition at line 223 of file FEConfigSlidingInfo.cc.
References DateHandler::dateToTm(), cuy::dh, MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by setDBTime().
233 stmt->setSQL(
"SELECT * FROM " +
getTable() +
" WHERE sli_conf_id = :1");
236 ResultSet* rset = stmt->executeQuery();
238 this->
setId(rset->getInt(1));
242 Date dbdate = rset->getDate(5);
245 throw(std::runtime_error(
"FEConfigSlidingInfo::setByID: Given config_id is not in the database"));
248 m_conn->terminateStatement(stmt);
250 throw(std::runtime_error(
std::string(
"FEConfigSlidingInfo::setByID: ")+getOraMessage(&e)));
oracle::occi::Environment * m_env
std::string getTable() override
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
oracle::occi::Statement Statement
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
void setDBTime(const Tm &x)
void FEConfigSlidingInfo::setDBTime |
( |
const Tm & |
x | ) |
|
|
inline |
void FEConfigSlidingInfo::setId |
( |
int |
id | ) |
|
|
inline |
void FEConfigSlidingInfo::setID |
( |
int |
id | ) |
|
|
inline |
void FEConfigSlidingInfo::setIOVId |
( |
int |
iov_id | ) |
|
|
inline |
void FEConfigSlidingInfo::setParameters |
( |
const std::map< std::string, std::string > & |
my_keys_map | ) |
|
Definition at line 84 of file FEConfigSlidingInfo.cc.
Referenced by setDBTime().
89 for( std::map<std::string, std::string >::const_iterator ci=
90 my_keys_map.begin(); ci!=my_keys_map.end(); ci++ ) {
92 if(ci->first==
"VERSION")
setVersion(atoi(ci->second.c_str()) );
94 if(ci->first==
"IOV_ID")
setIOVId(atoi(ci->second.c_str()) );
void setIOVId(int iov_id)
void setConfigTag(std::string x)
void FEConfigSlidingInfo::setVersion |
( |
int |
id | ) |
|
|
inline |
void FEConfigSlidingInfo::writeDB |
( |
| ) |
|
|
privatenoexcept |
Tm FEConfigSlidingInfo::m_db_time |
|
private |
int FEConfigSlidingInfo::m_ID |
|
private |
int FEConfigSlidingInfo::m_iov_id |
|
private |
int FEConfigSlidingInfo::m_version |
|
private |