#include <ODBadTTInfo.h>
Public Member Functions | |
int | fetchID () throw (std::runtime_error) |
int | fetchNextId () throw (std::runtime_error) |
int | getId () const |
std::string | getTable () |
int | getVersion () const |
ODBadTTInfo () | |
void | setId (int id) |
void | setParameters (std::map< std::string, std::string > my_keys_map) |
void | setVersion (int id) |
~ODBadTTInfo () | |
Private Member Functions | |
void | clear () |
void | fetchData (ODBadTTInfo *result) throw (std::runtime_error) |
void | prepareWrite () throw (std::runtime_error) |
void | writeDB () throw (std::runtime_error) |
Private Attributes | |
int | m_ID |
int | m_version |
Friends | |
class | EcalCondDBInterface |
Definition at line 9 of file ODBadTTInfo.h.
ODBadTTInfo::ODBadTTInfo | ( | ) |
Definition at line 11 of file ODBadTTInfo.cc.
References hitfit::clear(), and NULL.
{ m_env = NULL; m_conn = NULL; m_writeStmt = NULL; m_readStmt = NULL; m_config_tag=""; m_ID=0; m_version=0; clear(); }
ODBadTTInfo::~ODBadTTInfo | ( | ) |
Definition at line 30 of file ODBadTTInfo.cc.
{ }
void ODBadTTInfo::clear | ( | void | ) | [private] |
Definition at line 24 of file ODBadTTInfo.cc.
{ }
void ODBadTTInfo::fetchData | ( | ODBadTTInfo * | result | ) | throw (std::runtime_error) [private] |
Definition at line 130 of file ODBadTTInfo.cc.
References alignCSCRings::e, and query::result.
{ this->checkConnection(); result->clear(); if(result->getId()==0 && (result->getConfigTag()=="") ){ throw(std::runtime_error("ODBadTTInfo::fetchData(): no Id defined for this ODBadTTInfo ")); } try { if(result->getId()!=0) { m_readStmt->setSQL("SELECT * FROM " + getTable() + " where rec_id = :1 "); m_readStmt->setInt(1, result->getId()); } else if (result->getConfigTag()!="") { m_readStmt->setSQL("SELECT * FROM " + getTable() + " where tag=:1 AND version=:2 " ); m_readStmt->setString(1, result->getConfigTag()); m_readStmt->setInt(2, result->getVersion()); } else { // we should never pass here throw(std::runtime_error("ODBadTTInfo::fetchData(): no Id defined for this record ")); } ResultSet* rset = m_readStmt->executeQuery(); rset->next(); // 1 is the id and 2 is the config tag and 3 is the version result->setId(rset->getInt(1)); result->setConfigTag(rset->getString(2)); result->setVersion(rset->getInt(3)); } catch (SQLException &e) { throw(std::runtime_error("ODBadTTInfo::fetchData(): "+e.getMessage())); } }
int ODBadTTInfo::fetchID | ( | ) | throw (std::runtime_error) |
Definition at line 172 of file ODBadTTInfo.cc.
References alignCSCRings::e.
{ // Return from memory if available if (m_ID!=0) { return m_ID; } this->checkConnection(); try { Statement* stmt = m_conn->createStatement(); stmt->setSQL("SELECT rec_id FROM "+ getTable()+ "WHERE tag=:1 and version=:2 " ); stmt->setString(1, getConfigTag() ); stmt->setInt(2, getVersion() ); ResultSet* rset = stmt->executeQuery(); if (rset->next()) { m_ID = rset->getInt(1); } else { m_ID = 0; } m_conn->terminateStatement(stmt); } catch (SQLException &e) { throw(std::runtime_error("ODBadTTInfo::fetchID: "+e.getMessage())); } return m_ID; }
int ODBadTTInfo::fetchNextId | ( | ) | throw (std::runtime_error) |
Definition at line 36 of file ODBadTTInfo.cc.
References alignCSCRings::e, and query::result.
{ int result=0; try { this->checkConnection(); m_readStmt = m_conn->createStatement(); m_readStmt->setSQL("select COND2CONF_INFO_SQ.NextVal from DUAL "); ResultSet* rset = m_readStmt->executeQuery(); while (rset->next ()){ result= rset->getInt(1); } result++; m_conn->terminateStatement(m_readStmt); return result; } catch (SQLException &e) { throw(std::runtime_error("ODBadTTInfo::fetchNextId(): "+e.getMessage())); } }
int ODBadTTInfo::getId | ( | ) | const [inline] |
std::string ODBadTTInfo::getTable | ( | ) | [inline, virtual] |
int ODBadTTInfo::getVersion | ( | ) | const [inline] |
void ODBadTTInfo::prepareWrite | ( | ) | throw (std::runtime_error) [private, virtual] |
Implements IODConfig.
Definition at line 58 of file ODBadTTInfo.cc.
References alignCSCRings::e, and getId().
{ this->checkConnection(); int next_id=0; if(getId()==0){ next_id=fetchNextId(); } try { m_writeStmt = m_conn->createStatement(); m_writeStmt->setSQL("INSERT INTO "+getTable()+" ( rec_id, tag, version) " " VALUES ( :1, :2, :3 ) " ); m_writeStmt->setInt(1, next_id); m_ID=next_id; } catch (SQLException &e) { throw(std::runtime_error("ODBadTTInfo::prepareWrite(): "+e.getMessage())); } }
void ODBadTTInfo::setId | ( | int | id | ) | [inline] |
Definition at line 18 of file ODBadTTInfo.h.
References m_ID.
Referenced by popcon::EcalChannelStatusHandler::daqOut(), and popcon::EcalDAQHandler::getNewObjects().
{ m_ID = id; }
void ODBadTTInfo::setParameters | ( | std::map< std::string, std::string > | my_keys_map | ) |
void ODBadTTInfo::setVersion | ( | int | id | ) | [inline] |
void ODBadTTInfo::writeDB | ( | ) | throw (std::runtime_error) [private] |
Definition at line 97 of file ODBadTTInfo.cc.
References gather_cfg::cout, and alignCSCRings::e.
{ this->checkConnection(); this->checkPrepare(); try { // number 1 is the id m_writeStmt->setString(2, this->getConfigTag()); m_writeStmt->setInt(3, this->getVersion()); m_writeStmt->executeUpdate(); } catch (SQLException &e) { throw(std::runtime_error("ODBadTTInfo::writeDB(): "+e.getMessage())); } // Now get the ID if (!this->fetchID()) { throw(std::runtime_error("ODBadTTInfo::writeDB: Failed to write")); } else { int old_version=this->getVersion(); m_readStmt = m_conn->createStatement(); this->fetchData (this); m_conn->terminateStatement(m_readStmt); if(this->getVersion()!=old_version) std::cout << "ODBadTTInfo>>WARNING version is "<< getVersion()<< endl; } }
friend class EcalCondDBInterface [friend] |
Reimplemented from IDBObject.
Definition at line 11 of file ODBadTTInfo.h.
int ODBadTTInfo::m_ID [private] |
Definition at line 42 of file ODBadTTInfo.h.
int ODBadTTInfo::m_version [private] |
Definition at line 43 of file ODBadTTInfo.h.
Referenced by getVersion(), and setVersion().