#include <FEConfigLUTInfo.h>
Definition at line 11 of file FEConfigLUTInfo.h.
FEConfigLUTInfo::FEConfigLUTInfo |
( |
| ) |
|
Definition at line 13 of file FEConfigLUTInfo.cc.
References clear().
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
FEConfigLUTInfo::~FEConfigLUTInfo |
( |
| ) |
|
|
override |
void FEConfigLUTInfo::clear |
( |
void |
| ) |
|
|
private |
Definition at line 105 of file FEConfigLUTInfo.cc.
References DateHandler::dateToTm(), cuy::dh, alignCSCRings::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.
109 throw(std::runtime_error(
"FEConfigLUTInfo::fetchData(): no Id defined for this FEConfigLUTInfo "));
115 m_readStmt->setSQL(
"SELECT * FROM " +
getTable() +
" where ( lut_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(
"FEConfigLUTInfo::fetchData(): ") + e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setNumberOfGroups(int iov_id)
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
std::string getTable() override
std::string getConfigTag()
void setDBTime(const Tm &x)
int FEConfigLUTInfo::fetchID |
( |
| ) |
|
|
noexcept |
Definition at line 161 of file FEConfigLUTInfo.cc.
References alignCSCRings::e, and AlCaHLTBitMon_QueryRunRegistry::string.
171 stmt->setSQL(
"SELECT lut_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(
"FEConfigLUTInfo::fetchID: ") + e.getMessage()));
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement Statement
oracle::occi::SQLException SQLException
std::string getTable() override
std::string getConfigTag()
int FEConfigLUTInfo::fetchNextId |
( |
| ) |
|
|
noexcept |
Tm FEConfigLUTInfo::getDBTime |
( |
| ) |
const |
|
inline |
int FEConfigLUTInfo::getId |
( |
void |
| ) |
const |
|
inline |
int FEConfigLUTInfo::getID |
( |
| ) |
|
|
inline |
int FEConfigLUTInfo::getNumberOfGroups |
( |
| ) |
const |
|
inline |
std::string FEConfigLUTInfo::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
int FEConfigLUTInfo::getVersion |
( |
| ) |
const |
|
inline |
void FEConfigLUTInfo::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
Implements IODConfig.
Definition at line 48 of file FEConfigLUTInfo.cc.
References alignCSCRings::e, getId(), and AlCaHLTBitMon_QueryRunRegistry::string.
59 " ( lut_conf_id, tag, version, number_of_groups) "
60 " VALUES ( :1, :2, :3 , :4) ");
66 throw(std::runtime_error(
std::string(
"FEConfigLUTInfo::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 FEConfigLUTInfo::setByID |
( |
int |
id | ) |
|
|
noexcept |
Definition at line 191 of file FEConfigLUTInfo.cc.
References DateHandler::dateToTm(), cuy::dh, alignCSCRings::e, and AlCaHLTBitMon_QueryRunRegistry::string.
199 stmt->setSQL(
"SELECT * FROM fe_config_lut_info WHERE lut_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(
"FEConfigLUTInfo::setByID: Given config_id is not in the database"));
214 m_conn->terminateStatement(stmt);
216 throw(std::runtime_error(
std::string(
"FEConfigLUTInfo::setByID: ") + e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
void setNumberOfGroups(int iov_id)
oracle::occi::Statement Statement
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
void setDBTime(const Tm &x)
void FEConfigLUTInfo::setDBTime |
( |
const Tm & |
x | ) |
|
|
inline |
void FEConfigLUTInfo::setId |
( |
int |
id | ) |
|
|
inline |
void FEConfigLUTInfo::setID |
( |
int |
id | ) |
|
|
inline |
void FEConfigLUTInfo::setNumberOfGroups |
( |
int |
iov_id | ) |
|
|
inline |
void FEConfigLUTInfo::setParameters |
( |
const std::map< std::string, std::string > & |
my_keys_map | ) |
|
Definition at line 70 of file FEConfigLUTInfo.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 ==
"NUMBER_OF_GROUPS")
void setNumberOfGroups(int iov_id)
void setConfigTag(std::string x)
void FEConfigLUTInfo::setVersion |
( |
int |
id | ) |
|
|
inline |
void FEConfigLUTInfo::writeDB |
( |
| ) |
|
|
privatenoexcept |
Definition at line 84 of file FEConfigLUTInfo.cc.
References alignCSCRings::e, and AlCaHLTBitMon_QueryRunRegistry::string.
97 throw(std::runtime_error(
std::string(
"FEConfigLUTInfo::writeDB(): ") + e.getMessage()));
101 throw(std::runtime_error(
"FEConfigLUTInfo::writeDB: Failed to write"));
void checkConnection() const noexcept(false)
int fetchID() noexcept(false)
oracle::occi::SQLException SQLException
std::string getConfigTag()
int getNumberOfGroups() const
void checkPrepare() noexcept(false)
Tm FEConfigLUTInfo::m_db_time |
|
private |
int FEConfigLUTInfo::m_ID |
|
private |
int FEConfigLUTInfo::m_iov_id |
|
private |
int FEConfigLUTInfo::m_version |
|
private |