#include <DCUIOV.h>
Public Member Functions | |
DCUIOV () | |
int | fetchID () throw (std::runtime_error) |
DCUTag | getDCUTag () const |
int | getID () |
Tm | getSince () const |
Tm | getTill () const |
bool | operator!= (const DCUIOV &m) const |
bool | operator== (const DCUIOV &m) const |
void | setByID (int id) throw (std::runtime_error) |
void | setDCUTag (DCUTag tag) |
void | setSince (Tm since) |
void | setTill (Tm till) |
~DCUIOV () | |
Private Member Functions | |
void | setByTm (DCUTag *tag, Tm time) throw (std::runtime_error) |
int | writeDB () throw (std::runtime_error) |
Private Attributes | |
DCUTag | m_dcuTag |
Tm | m_since |
Tm | m_till |
Friends | |
class | EcalCondDBInterface |
DCUIOV::DCUIOV | ( | ) |
int DCUIOV::fetchID | ( | ) | throw (std::runtime_error) [virtual] |
Implements IUniqueDBObject.
Definition at line 79 of file DCUIOV.cc.
References ExpressReco_HICollisions_FallBack::e, DateHandler::getPlusInfTm(), and DateHandler::tmToDate().
{ // Return from memory if available if (m_ID) { return m_ID; } this->checkConnection(); m_dcuTag.setConnection(m_env, m_conn); int tagID = m_dcuTag.fetchID(); if (!tagID) { return 0; } DateHandler dh(m_env, m_conn); if (m_till.isNull()) { m_till = dh.getPlusInfTm(); } try { Statement* stmt = m_conn->createStatement(); stmt->setSQL("SELECT iov_id FROM dcu_iov " "WHERE tag_id = :tag_id AND " "since = :since "); stmt->setInt(1, tagID); stmt->setDate(2, dh.tmToDate(m_since)); // stmt->setDate(3, dh.tmToDate(m_till)); 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("DCUIOV::fetchID: "+e.getMessage())); } return m_ID; }
int DCUIOV::getID | ( | ) | [inline] |
bool DCUIOV::operator!= | ( | const DCUIOV & | m | ) | const [inline] |
bool DCUIOV::operator== | ( | const DCUIOV & | m | ) | const [inline] |
void DCUIOV::setByID | ( | int | id | ) | throw (std::runtime_error) [virtual] |
Implements IUniqueDBObject.
Definition at line 127 of file DCUIOV.cc.
References DateHandler::dateToTm(), ExpressReco_HICollisions_FallBack::e, and ExpressReco_HICollisions_FallBack::id.
{ this->checkConnection(); DateHandler dh(m_env, m_conn); try { Statement* stmt = m_conn->createStatement(); stmt->setSQL("SELECT tag_id, since, till FROM dcu_iov WHERE iov_id = :1"); stmt->setInt(1, id); ResultSet* rset = stmt->executeQuery(); if (rset->next()) { int tagID = rset->getInt(1); Date since = rset->getDate(2); Date till = rset->getDate(3); m_since = dh.dateToTm( since ); m_till = dh.dateToTm( till ); m_dcuTag.setConnection(m_env, m_conn); m_dcuTag.setByID(tagID); m_ID = id; } else { throw(std::runtime_error("DCUTag::setByID: Given tag_id is not in the database")); } m_conn->terminateStatement(stmt); } catch (SQLException &e) { throw(std::runtime_error("DCUTag::setByID: "+e.getMessage())); } }
Definition at line 214 of file DCUIOV.cc.
References DateHandler::dateToTm(), ExpressReco_HICollisions_FallBack::e, GlobalPosition_Frontier_DevDB_cff::tag, and DateHandler::tmToDate().
Referenced by EcalCondDBInterface::fetchDCUIOV().
{ this->checkConnection(); tag->setConnection(m_env, m_conn); int tagID = tag->fetchID(); if (!tagID) { throw(std::runtime_error("DCUIOV::setByTm: Given DCUTag does not exist in the DB")); } DateHandler dh(m_env, m_conn); Date eventDate = dh.tmToDate(eventTm); try { Statement* stmt = m_conn->createStatement(); stmt->setSQL("SELECT iov_id, since, till FROM dcu_iov " "WHERE tag_id = :1 AND since <= :2 AND till > :3"); stmt->setInt(1, tagID); stmt->setDate(2, eventDate); stmt->setDate(3, eventDate); ResultSet* rset = stmt->executeQuery(); if (rset->next()) { m_dcuTag = *tag; m_ID = rset->getInt(1); Date sinceDate = rset->getDate(2); Date tillDate = rset->getDate(3); m_since = dh.dateToTm( sinceDate ); m_till = dh.dateToTm( tillDate ); } else { throw(std::runtime_error("DCUIOV::setByTm: Given subrun is not in the database")); } m_conn->terminateStatement(stmt); } catch (SQLException &e) { throw(std::runtime_error("DCUIOV::setByTm: "+e.getMessage())); } }
void DCUIOV::setDCUTag | ( | DCUTag | tag | ) |
void DCUIOV::setSince | ( | Tm | since | ) |
void DCUIOV::setTill | ( | Tm | till | ) |
int DCUIOV::writeDB | ( | ) | throw (std::runtime_error) [private] |
Definition at line 164 of file DCUIOV.cc.
References ExpressReco_HICollisions_FallBack::e, DateHandler::getPlusInfTm(), and DateHandler::tmToDate().
{ this->checkConnection(); // Check if this IOV has already been written if (this->fetchID()) { return m_ID; } m_dcuTag.setConnection(m_env, m_conn); int tagID = m_dcuTag.writeDB(); // Validate the data, use infinity-till convention DateHandler dh(m_env, m_conn); if (m_since.isNull()) { throw(std::runtime_error("DCUIOV::writeDB: Must setSince before writing")); } if (m_till.isNull()) { m_till = dh.getPlusInfTm(); } try { Statement* stmt = m_conn->createStatement(); stmt->setSQL("INSERT INTO dcu_iov (iov_id, tag_id, since, till) " "VALUES (dcu_iov_sq.NextVal, :1, :2, :3)"); stmt->setInt(1, tagID); stmt->setDate(2, dh.tmToDate(m_since)); stmt->setDate(3, dh.tmToDate(m_till)); stmt->executeUpdate(); m_conn->terminateStatement(stmt); } catch (SQLException &e) { throw(std::runtime_error("DCUIOV::writeDB: "+e.getMessage())); } // Now get the ID if (!this->fetchID()) { throw(std::runtime_error("DCUIOV::writeDB: Failed to write")); } return m_ID; }
friend class EcalCondDBInterface [friend] |
DCUTag DCUIOV::m_dcuTag [private] |
Definition at line 48 of file DCUIOV.h.
Referenced by operator==().
Tm DCUIOV::m_since [private] |
Definition at line 46 of file DCUIOV.h.
Referenced by operator==().
Tm DCUIOV::m_till [private] |
Definition at line 47 of file DCUIOV.h.
Referenced by operator==().