CMS 3D CMS Logo

Public Member Functions | Private Member Functions | Private Attributes | Friends

ODScanCycle Class Reference

#include <ODScanCycle.h>

Inheritance diagram for ODScanCycle:
IODConfig IDBObject

List of all members.

Public Member Functions

int getId () const
int getScanConfigurationID () const
std::string getTable ()
 ODScanCycle ()
bool operator!= (const ODScanCycle &m) const
bool operator== (const ODScanCycle &m) const
void setId (int id)
void setScanConfigurationID (int x)
 ~ODScanCycle ()

Private Member Functions

void clear ()
void fetchData (ODScanCycle *result) throw (std::runtime_error)
int fetchID () throw (std::runtime_error)
void insertConfig () throw (std::runtime_error)
void prepareWrite () throw (std::runtime_error)
void setByID (int id) throw (std::runtime_error)
void writeDB () throw (std::runtime_error)

Private Attributes

int m_ID
int m_scan_config_id

Friends

class EcalCondDBInterface
class ODEcalCycle

Detailed Description

Definition at line 11 of file ODScanCycle.h.


Constructor & Destructor Documentation

ODScanCycle::ODScanCycle ( )

Definition at line 9 of file ODScanCycle.cc.

References NULL.

ODScanCycle::~ODScanCycle ( )

Definition at line 21 of file ODScanCycle.cc.

{
}

Member Function Documentation

void ODScanCycle::clear ( void  ) [private]

Definition at line 66 of file ODScanCycle.cc.

void ODScanCycle::fetchData ( ODScanCycle result) throw (std::runtime_error) [private]

Definition at line 131 of file ODScanCycle.cc.

References alignCSCRings::e, and query::result.

{
  this->checkConnection();
  result->clear();

  if(result->getId()==0){
    throw(std::runtime_error("ODScanConfig::fetchData(): no Id defined for this ODScanConfig "));
  }

  try {

    m_readStmt->setSQL("SELECT  scan_configuration_id FROM ecal_scan_cycle "
                 "WHERE cycle_id = :1 ");

    m_readStmt->setInt(1, result->getId());
    ResultSet* rset = m_readStmt->executeQuery();

    rset->next();

    result->setScanConfigurationID(       rset->getInt(1) );

  } catch (SQLException &e) {
    throw(std::runtime_error("ODScanCycle::fetchData():  "+e.getMessage()));
  }
}
int ODScanCycle::fetchID ( ) throw (std::runtime_error) [private]

Definition at line 71 of file ODScanCycle.cc.

References alignCSCRings::e.

{
  // Return from memory if available
  if (m_ID) {
    return m_ID;
  }

  this->checkConnection();

  try {
    Statement* stmt = m_conn->createStatement();
    stmt->setSQL("SELECT cycle_id, scan_id FROM ecal_scan_cycle "
                 "WHERE cycle_id = :1 ");
    stmt->setInt(1, m_ID);
    ResultSet* rset = stmt->executeQuery();

    if (rset->next()) {
      m_ID = rset->getInt(1);
      m_scan_config_id = rset->getInt(2);
    } else {
      m_ID = 0;
    }
    m_conn->terminateStatement(stmt);
  } catch (SQLException &e) {
    throw(std::runtime_error("ODScanCycle::fetchID:  "+e.getMessage()));
  }

  return m_ID;
}
int ODScanCycle::getId ( ) const [inline]

Definition at line 23 of file ODScanCycle.h.

References m_ID.

{ return m_ID;} ;
int ODScanCycle::getScanConfigurationID ( ) const [inline]

Definition at line 27 of file ODScanCycle.h.

References m_scan_config_id.

{return m_scan_config_id;}
std::string ODScanCycle::getTable ( ) [inline, virtual]

Implements IODConfig.

Definition at line 20 of file ODScanCycle.h.

{ return "ECAL_Scan_CYCLE"; }
void ODScanCycle::insertConfig ( ) throw (std::runtime_error) [private]

Definition at line 158 of file ODScanCycle.cc.

References alignCSCRings::e.

Referenced by ODEcalCycle::writeDB().

{
  try {

    prepareWrite();
    writeDB();
    m_conn->commit();
    terminateWriteStatement();
  } catch (std::runtime_error &e) {
    m_conn->rollback();
    throw(e);
  } catch (...) {
    m_conn->rollback();
    throw(std::runtime_error("EcalCondDBInterface::insertDataSet:  Unknown exception caught"));
  }
}
bool ODScanCycle::operator!= ( const ODScanCycle m) const [inline]

Definition at line 31 of file ODScanCycle.h.

References m.

{ return !(*this == m); }
bool ODScanCycle::operator== ( const ODScanCycle m) const [inline]

Definition at line 30 of file ODScanCycle.h.

References m_ID.

{ return ( m_ID   == m.m_ID); }
void ODScanCycle::prepareWrite ( ) throw (std::runtime_error) [private, virtual]

Implements IODConfig.

Definition at line 26 of file ODScanCycle.cc.

References alignCSCRings::e.

{
  this->checkConnection();

  try {
    m_writeStmt = m_conn->createStatement();
    m_writeStmt->setSQL("INSERT INTO ECAL_Scan_Cycle (cycle_id, scan_id ) "
                 "VALUES (:1, :2 )");
  } catch (SQLException &e) {
    throw(std::runtime_error("ODScanCycle::prepareWrite():  "+e.getMessage()));
  }
}
void ODScanCycle::setByID ( int  id) throw (std::runtime_error) [private]

Definition at line 104 of file ODScanCycle.cc.

References alignCSCRings::e.

{
   this->checkConnection();


  try {
    Statement* stmt = m_conn->createStatement();
    stmt->setSQL("SELECT cycle_id, scan_configuration_id FROM ecal_scan_cycle "
                 "WHERE cycle_id = :1 ");
    stmt->setInt(1, id);
    ResultSet* rset = stmt->executeQuery();

    if (rset->next()) {
      m_ID = rset->getInt(1);
      m_scan_config_id = rset->getInt(2);
    } else {
      m_ID = 0;
    }
    m_conn->terminateStatement(stmt);
  } catch (SQLException &e) {
    throw(std::runtime_error("ODScanCycle::fetchID:  "+e.getMessage()));
  }
}
void ODScanCycle::setId ( int  id) [inline]

Definition at line 22 of file ODScanCycle.h.

References m_ID.

Referenced by ODEcalCycle::writeDB().

{m_ID=id;}
void ODScanCycle::setScanConfigurationID ( int  x) [inline]

Definition at line 26 of file ODScanCycle.h.

References m_scan_config_id, and x.

Referenced by ODEcalCycle::writeDB().

void ODScanCycle::writeDB ( ) throw (std::runtime_error) [private]

Definition at line 41 of file ODScanCycle.cc.

References alignCSCRings::e, and getId().

{
  this->checkConnection();
  this->checkPrepare();

  try {

    m_writeStmt->setInt(1, this->getId());
    m_writeStmt->setInt(2, this->getScanConfigurationID());

    m_writeStmt->executeUpdate();


  } catch (SQLException &e) {
    throw(std::runtime_error("ODScanCycle::writeDB:  "+e.getMessage()));
  }

  // Now get the ID
  if (!this->fetchID()) {
    throw(std::runtime_error("ODScanCycle::writeDB:  Failed to write"));
  }
  
 
}

Friends And Related Function Documentation

friend class EcalCondDBInterface [friend]

Reimplemented from IDBObject.

Definition at line 13 of file ODScanCycle.h.

friend class ODEcalCycle [friend]

Definition at line 14 of file ODScanCycle.h.


Member Data Documentation

int ODScanCycle::m_ID [private]

Definition at line 35 of file ODScanCycle.h.

Referenced by getId(), operator==(), and setId().

Definition at line 36 of file ODScanCycle.h.

Referenced by getScanConfigurationID(), and setScanConfigurationID().