#include <FEConfigLinInfo.h>
Definition at line 11 of file FEConfigLinInfo.h.
FEConfigLinInfo::FEConfigLinInfo |
( |
| ) |
|
Definition at line 13 of file FEConfigLinInfo.cc.
References clear().
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
FEConfigLinInfo::~FEConfigLinInfo |
( |
| ) |
|
|
override |
void FEConfigLinInfo::clear |
( |
void |
| ) |
|
|
private |
Definition at line 105 of file FEConfigLinInfo.cc.
References DateHandler::dateToTm(), cuy::dh, alignCSCRings::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.
109 throw(std::runtime_error(
"FEConfigLinInfo::fetchData(): no Id defined for this FEConfigLinInfo "));
115 m_readStmt->setSQL(
"SELECT * FROM " +
getTable() +
" where ( lin_conf_id= :1 or (tag=:2 AND version=:3 ) )");
125 result->
setId(rset->getInt(1));
129 Date dbdate = rset->getDate(5);
133 throw(std::runtime_error(
std::string(
"FEConfigLinInfo::fetchData(): ") + e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
void setDBTime(const Tm &x)
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
std::string getConfigTag()
std::string getTable() override
int FEConfigLinInfo::fetchID |
( |
| ) |
|
|
noexcept |
Definition at line 161 of file FEConfigLinInfo.cc.
References alignCSCRings::e, and AlCaHLTBitMon_QueryRunRegistry::string.
171 stmt->setSQL(
"SELECT lin_conf_id FROM " +
getTable() +
" WHERE tag=:1 and version=:2 ");
176 ResultSet* rset = stmt->executeQuery();
179 m_ID = rset->getInt(1);
183 m_conn->terminateStatement(stmt);
185 throw(std::runtime_error(
std::string(
"FEConfigLinInfo::fetchID: ") + e.getMessage()));
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement Statement
oracle::occi::SQLException SQLException
std::string getConfigTag()
std::string getTable() override
int FEConfigLinInfo::fetchNextId |
( |
| ) |
|
|
noexcept |
Tm FEConfigLinInfo::getDBTime |
( |
| ) |
const |
|
inline |
int FEConfigLinInfo::getId |
( |
void |
| ) |
const |
|
inline |
int FEConfigLinInfo::getID |
( |
| ) |
|
|
inline |
int FEConfigLinInfo::getIOVId |
( |
| ) |
const |
|
inline |
std::string FEConfigLinInfo::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
int FEConfigLinInfo::getVersion |
( |
| ) |
const |
|
inline |
void FEConfigLinInfo::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
Implements IODConfig.
Definition at line 48 of file FEConfigLinInfo.cc.
References alignCSCRings::e, getId(), and AlCaHLTBitMon_QueryRunRegistry::string.
59 " ( lin_conf_id, tag, version, iov_id) "
60 " VALUES ( :1, :2, :3 , :4) ");
66 throw(std::runtime_error(
std::string(
"FEConfigLinInfo::prepareWrite(): ") + e.getMessage()));
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
int fetchNextId() noexcept(false)
oracle::occi::SQLException SQLException
std::string getTable() override
void FEConfigLinInfo::setByID |
( |
int |
id | ) |
|
|
noexcept |
Definition at line 191 of file FEConfigLinInfo.cc.
References DateHandler::dateToTm(), cuy::dh, alignCSCRings::e, and AlCaHLTBitMon_QueryRunRegistry::string.
199 stmt->setSQL(
"SELECT * FROM fe_config_lin_info WHERE lin_conf_id = :1");
202 ResultSet* rset = stmt->executeQuery();
204 this->
setId(rset->getInt(1));
208 Date dbdate = rset->getDate(5);
211 throw(std::runtime_error(
"FEConfigLinInfo::setByID: Given config_id is not in the database"));
214 m_conn->terminateStatement(stmt);
216 throw(std::runtime_error(
std::string(
"FEConfigLinInfo::setByID: ") + e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
oracle::occi::Statement Statement
void setDBTime(const Tm &x)
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
void FEConfigLinInfo::setDBTime |
( |
const Tm & |
x | ) |
|
|
inline |
void FEConfigLinInfo::setId |
( |
int |
id | ) |
|
|
inline |
void FEConfigLinInfo::setID |
( |
int |
id | ) |
|
|
inline |
void FEConfigLinInfo::setIOVId |
( |
int |
iov_id | ) |
|
|
inline |
void FEConfigLinInfo::setParameters |
( |
const std::map< std::string, std::string > & |
my_keys_map | ) |
|
Definition at line 70 of file FEConfigLinInfo.cc.
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")
77 if (ci->first ==
"TAG")
79 if (ci->first ==
"IOV_ID")
void setIOVId(int iov_id)
void setConfigTag(std::string x)
void FEConfigLinInfo::setVersion |
( |
int |
id | ) |
|
|
inline |
void FEConfigLinInfo::writeDB |
( |
| ) |
|
|
privatenoexcept |
Definition at line 84 of file FEConfigLinInfo.cc.
References alignCSCRings::e, and AlCaHLTBitMon_QueryRunRegistry::string.
97 throw(std::runtime_error(
std::string(
"FEConfigLinInfo::writeDB(): ") + e.getMessage()));
101 throw(std::runtime_error(
"FEConfigLinInfo::writeDB: Failed to write"));
void checkConnection() const noexcept(false)
int fetchID() noexcept(false)
oracle::occi::SQLException SQLException
std::string getConfigTag()
void checkPrepare() noexcept(false)
Tm FEConfigLinInfo::m_db_time |
|
private |
int FEConfigLinInfo::m_ID |
|
private |
int FEConfigLinInfo::m_iov_id |
|
private |
int FEConfigLinInfo::m_version |
|
private |