CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
FEConfigTimingInfo Class Reference

#include <FEConfigTimingInfo.h>

Inheritance diagram for FEConfigTimingInfo:
IODConfig IDBObject

Public Member Functions

 FEConfigTimingInfo ()
 
int fetchID () noexcept(false)
 
int fetchNextId () noexcept(false)
 
Tm getDBTime () const
 
int getId () const
 
int getID ()
 
std::string getTable () override
 
int getVersion () const
 
bool operator!= (const FEConfigTimingInfo &r) const
 
bool operator== (const FEConfigTimingInfo &r) const
 
void setByID (int id) noexcept(false)
 
void setDBTime (const Tm &x)
 
void setId (int id)
 
void setID (int id)
 
void setParameters (const std::map< std::string, std::string > &my_keys_map)
 
void setVersion (int id)
 
 ~FEConfigTimingInfo () override
 
- Public Member Functions inherited from IODConfig
std::string getConfigTag ()
 
void setConfigTag (std::string x)
 
- Public Member Functions inherited from IDBObject
oracle::occi::Connection * getConn () const
 
oracle::occi::Environment * getEnv () const
 
void setConnection (oracle::occi::Environment *env, oracle::occi::Connection *conn)
 
virtual ~IDBObject ()
 

Private Member Functions

void clear ()
 
void fetchData (FEConfigTimingInfo *result) noexcept(false)
 
void fetchLastData (FEConfigTimingInfo *result) noexcept(false)
 
void prepareWrite () noexcept(false) override
 
void writeDB () noexcept(false)
 

Private Attributes

Tm m_db_time
 
int m_ID
 
int m_version
 

Friends

class EcalCondDBInterface
 

Additional Inherited Members

- Public Types inherited from IODConfig
typedef oracle::occi::Clob Clob
 
typedef oracle::occi::SQLException SQLException
 
typedef oracle::occi::Statement Statement
 
typedef oracle::occi::Stream Stream
 
- Public Attributes inherited from IODConfig
std::string m_config_tag
 
- Static Public Attributes inherited from IDBObject
static int const ECALDB_NROWS = 1024
 
- Protected Member Functions inherited from IODConfig
void checkPrepare () noexcept(false)
 
void createReadStatement () noexcept(false)
 
void populateClob (Clob &clob, std::string fname, unsigned int bufsize) noexcept(false)
 
unsigned char * readClob (Clob &clob, int size) noexcept(false)
 
void setPrefetchRowCount (int ncount) noexcept(false)
 
void terminateReadStatement () noexcept(false)
 
void terminateWriteStatement () noexcept(false)
 
- Protected Member Functions inherited from IDBObject
void checkConnection () const noexcept(false)
 
- Protected Attributes inherited from IODConfig
Statementm_readStmt
 
Statementm_writeStmt
 
- Protected Attributes inherited from IDBObject
oracle::occi::Connection * m_conn
 
oracle::occi::Environment * m_env
 

Detailed Description

Definition at line 11 of file FEConfigTimingInfo.h.

Constructor & Destructor Documentation

◆ FEConfigTimingInfo()

FEConfigTimingInfo::FEConfigTimingInfo ( )

Definition at line 13 of file FEConfigTimingInfo.cc.

References l1ct::clear().

13  {
14  m_env = nullptr;
15  m_conn = nullptr;
16  m_writeStmt = nullptr;
17  m_readStmt = nullptr;
18  m_config_tag = "";
19  m_version = 0;
20  m_ID = 0;
21  clear();
22 }
oracle::occi::Environment * m_env
Definition: IDBObject.h:33
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
Statement * m_writeStmt
Definition: IODConfig.h:33
std::string m_config_tag
Definition: IODConfig.h:25
Statement * m_readStmt
Definition: IODConfig.h:34

◆ ~FEConfigTimingInfo()

FEConfigTimingInfo::~FEConfigTimingInfo ( )
override

Definition at line 26 of file FEConfigTimingInfo.cc.

26 {}

Member Function Documentation

◆ clear()

void FEConfigTimingInfo::clear ( void  )
private

Definition at line 24 of file FEConfigTimingInfo.cc.

24 {}

◆ fetchData()

void FEConfigTimingInfo::fetchData ( FEConfigTimingInfo result)
privatenoexcept

Definition at line 102 of file FEConfigTimingInfo.cc.

References cuy::dh, MillePedeFileConverter_cfg::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.

102  {
103  this->checkConnection();
104  result->clear();
105  if (result->getId() == 0 && (result->getConfigTag().empty())) {
106  throw(std::runtime_error("FEConfigTimingInfo::fetchData(): no Id defined for this FEConfigTimingInfo "));
107  }
108 
109  try {
111 
112  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where ( tim_conf_id= :1 or (tag=:2 AND version=:3 ) )");
113  m_readStmt->setInt(1, result->getId());
114  m_readStmt->setString(2, result->getConfigTag());
115  m_readStmt->setInt(3, result->getVersion());
116  ResultSet* rset = m_readStmt->executeQuery();
117 
118  rset->next();
119 
120  // 1 is the id and 2 is the config tag and 3 is the version
121 
122  result->setId(rset->getInt(1));
123  result->setConfigTag(rset->getString(2));
124  result->setVersion(rset->getInt(3));
125  Date dbdate = rset->getDate(4);
126  result->setDBTime(dh.dateToTm(dbdate));
127 
128  } catch (SQLException& e) {
129  throw(std::runtime_error(std::string("FEConfigTimingInfo::fetchData(): ") + e.getMessage()));
130  }
131 }
oracle::occi::Environment * m_env
Definition: IDBObject.h:33
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
std::string getTable() override
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
Statement * m_readStmt
Definition: IODConfig.h:34
dh
Definition: cuy.py:354

◆ fetchID()

int FEConfigTimingInfo::fetchID ( )
noexcept

Definition at line 156 of file FEConfigTimingInfo.cc.

References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.

156  {
157  // Return from memory if available
158  if (m_ID != 0) {
159  return m_ID;
160  }
161 
162  this->checkConnection();
163 
164  try {
165  Statement* stmt = m_conn->createStatement();
166  stmt->setSQL("SELECT tim_conf_id FROM " + getTable() + " WHERE tag=:1 and version=:2 ");
167 
168  stmt->setString(1, getConfigTag());
169  stmt->setInt(2, getVersion());
170 
171  ResultSet* rset = stmt->executeQuery();
172 
173  if (rset->next()) {
174  m_ID = rset->getInt(1);
175  } else {
176  m_ID = 0;
177  }
178  m_conn->terminateStatement(stmt);
179  } catch (SQLException& e) {
180  throw(std::runtime_error(std::string("FEConfigTimingInfo::fetchID: ") + e.getMessage()));
181  }
182 
183  return m_ID;
184 }
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
std::string getTable() override
oracle::occi::Statement Statement
Definition: IODConfig.h:21
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
std::string getConfigTag()
Definition: IODConfig.h:30

◆ fetchLastData()

void FEConfigTimingInfo::fetchLastData ( FEConfigTimingInfo result)
privatenoexcept

Definition at line 133 of file FEConfigTimingInfo.cc.

References cuy::dh, MillePedeFileConverter_cfg::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.

133  {
134  this->checkConnection();
135  result->clear();
136  try {
138 
139  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where tim_conf_id = ( select max( tim_conf_id) from " +
140  getTable() + " ) ");
141  ResultSet* rset = m_readStmt->executeQuery();
142 
143  rset->next();
144 
145  result->setId(rset->getInt(1));
146  result->setConfigTag(rset->getString(2));
147  result->setVersion(rset->getInt(3));
148  Date dbdate = rset->getDate(4);
149  result->setDBTime(dh.dateToTm(dbdate));
150 
151  } catch (SQLException& e) {
152  throw(std::runtime_error(std::string("FEConfigTimingInfo::fetchData(): ") + e.getMessage()));
153  }
154 }
oracle::occi::Environment * m_env
Definition: IDBObject.h:33
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
std::string getTable() override
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
Statement * m_readStmt
Definition: IODConfig.h:34
dh
Definition: cuy.py:354

◆ fetchNextId()

int FEConfigTimingInfo::fetchNextId ( )
noexcept

Definition at line 28 of file FEConfigTimingInfo.cc.

References MillePedeFileConverter_cfg::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.

28  {
29  int result = 0;
30  try {
31  this->checkConnection();
32 
33  m_readStmt = m_conn->createStatement();
34  m_readStmt->setSQL("select FE_CONFIG_TIM_SQ.NextVal from DUAL ");
35  ResultSet* rset = m_readStmt->executeQuery();
36  while (rset->next()) {
37  result = rset->getInt(1);
38  }
39  result++;
40  m_conn->terminateStatement(m_readStmt);
41  return result;
42 
43  } catch (SQLException& e) {
44  throw(std::runtime_error(std::string("FEConfigTimingInfo::fetchNextId(): ") + e.getMessage()));
45  }
46 }
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
Statement * m_readStmt
Definition: IODConfig.h:34

◆ getDBTime()

Tm FEConfigTimingInfo::getDBTime ( ) const
inline

Definition at line 30 of file FEConfigTimingInfo.h.

References m_db_time.

30 { return m_db_time; }

◆ getId()

int FEConfigTimingInfo::getId ( void  ) const
inline

Definition at line 22 of file FEConfigTimingInfo.h.

References m_ID.

Referenced by getID(), and EcalTPGDBApp::writeToConfDB_Delay().

22 { return m_ID; }

◆ getID()

int FEConfigTimingInfo::getID ( )
inline

Definition at line 25 of file FEConfigTimingInfo.h.

References getId().

25 { return getId(); }

◆ getTable()

std::string FEConfigTimingInfo::getTable ( )
inlineoverridevirtual

Implements IODConfig.

Definition at line 19 of file FEConfigTimingInfo.h.

19 { return "FE_CONFIG_TIME_INFO"; }

◆ getVersion()

int FEConfigTimingInfo::getVersion ( ) const
inline

Definition at line 28 of file FEConfigTimingInfo.h.

References m_version.

28 { return m_version; }

◆ operator!=()

bool FEConfigTimingInfo::operator!= ( const FEConfigTimingInfo r) const
inline

Definition at line 41 of file FEConfigTimingInfo.h.

References alignCSCRings::r.

41 { return !(*this == r); }

◆ operator==()

bool FEConfigTimingInfo::operator== ( const FEConfigTimingInfo r) const
inline

Definition at line 40 of file FEConfigTimingInfo.h.

References m_ID, and alignCSCRings::r.

40 { return (m_ID == r.m_ID); }

◆ prepareWrite()

void FEConfigTimingInfo::prepareWrite ( )
overrideprivatevirtualnoexcept

Implements IODConfig.

Definition at line 48 of file FEConfigTimingInfo.cc.

References MillePedeFileConverter_cfg::e, getId(), and AlCaHLTBitMon_QueryRunRegistry::string.

48  {
49  this->checkConnection();
50 
51  int next_id = 0;
52  if (getId() == 0) {
53  next_id = fetchNextId();
54  }
55 
56  try {
57  m_writeStmt = m_conn->createStatement();
58  m_writeStmt->setSQL("INSERT INTO " + getTable() +
59  " ( tim_conf_id, tag, version) "
60  " VALUES ( :1, :2, :3 ) ");
61 
62  m_writeStmt->setInt(1, next_id);
63  m_ID = next_id;
64 
65  } catch (SQLException& e) {
66  throw(std::runtime_error(std::string("FEConfigTimingInfo::prepareWrite(): ") + e.getMessage()));
67  }
68 }
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
Statement * m_writeStmt
Definition: IODConfig.h:33
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
std::string getTable() override
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
int fetchNextId() noexcept(false)

◆ setByID()

void FEConfigTimingInfo::setByID ( int  id)
noexcept

Definition at line 186 of file FEConfigTimingInfo.cc.

References cuy::dh, MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.

186  {
187  this->checkConnection();
188 
190 
191  try {
192  Statement* stmt = m_conn->createStatement();
193 
194  stmt->setSQL("SELECT * FROM " + getTable() + " WHERE tim_conf_id = :1");
195  stmt->setInt(1, id);
196 
197  ResultSet* rset = stmt->executeQuery();
198  if (rset->next()) {
199  this->setId(rset->getInt(1));
200  this->setConfigTag(rset->getString(2));
201  this->setVersion(rset->getInt(3));
202  Date dbdate = rset->getDate(4);
203  this->setDBTime(dh.dateToTm(dbdate));
204  } else {
205  throw(std::runtime_error("FEConfigTimingInfo::setByID: Given tim_conf_id is not in the database"));
206  }
207 
208  m_conn->terminateStatement(stmt);
209  } catch (SQLException& e) {
210  throw(std::runtime_error(std::string("FEConfigTimingInfo::setByID: ") + e.getMessage()));
211  }
212 }
oracle::occi::Environment * m_env
Definition: IDBObject.h:33
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
std::string getTable() override
oracle::occi::Statement Statement
Definition: IODConfig.h:21
void setConfigTag(std::string x)
Definition: IODConfig.h:29
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
void setDBTime(const Tm &x)
dh
Definition: cuy.py:354

◆ setDBTime()

void FEConfigTimingInfo::setDBTime ( const Tm x)
inline

Definition at line 31 of file FEConfigTimingInfo.h.

References m_db_time, and x.

◆ setId()

void FEConfigTimingInfo::setId ( int  id)
inline

Definition at line 21 of file FEConfigTimingInfo.h.

References l1ctLayer2EG_cff::id, and m_ID.

Referenced by setID().

◆ setID()

void FEConfigTimingInfo::setID ( int  id)
inline

Definition at line 24 of file FEConfigTimingInfo.h.

References setId().

24 { setId(id); }

◆ setParameters()

void FEConfigTimingInfo::setParameters ( const std::map< std::string, std::string > &  my_keys_map)

Definition at line 70 of file FEConfigTimingInfo.cc.

70  {
71  // parses the result of the XML parser that is a map of
72  // string string with variable name variable value
73 
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")
76  setVersion(atoi(ci->second.c_str()));
77  if (ci->first == "TAG")
78  setConfigTag(ci->second);
79  }
80 }
void setConfigTag(std::string x)
Definition: IODConfig.h:29

◆ setVersion()

void FEConfigTimingInfo::setVersion ( int  id)
inline

◆ writeDB()

void FEConfigTimingInfo::writeDB ( )
privatenoexcept

Definition at line 82 of file FEConfigTimingInfo.cc.

References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.

82  {
83  this->checkConnection();
84  this->checkPrepare();
85 
86  try {
87  // number 1 is the id
88  m_writeStmt->setString(2, this->getConfigTag());
89  m_writeStmt->setInt(3, this->getVersion());
90 
91  m_writeStmt->executeUpdate();
92 
93  } catch (SQLException& e) {
94  throw(std::runtime_error(std::string("FEConfigTimingInfo::writeDB(): ") + e.getMessage()));
95  }
96  // Now get the ID
97  if (!this->fetchID()) {
98  throw(std::runtime_error("FEConfigTimingInfo::writeDB: Failed to write"));
99  }
100 }
Statement * m_writeStmt
Definition: IODConfig.h:33
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
int fetchID() noexcept(false)
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
std::string getConfigTag()
Definition: IODConfig.h:30
void checkPrepare() noexcept(false)
Definition: IODConfig.h:36

Friends And Related Function Documentation

◆ EcalCondDBInterface

friend class EcalCondDBInterface
friend

Definition at line 13 of file FEConfigTimingInfo.h.

Member Data Documentation

◆ m_db_time

Tm FEConfigTimingInfo::m_db_time
private

Definition at line 46 of file FEConfigTimingInfo.h.

Referenced by getDBTime(), and setDBTime().

◆ m_ID

int FEConfigTimingInfo::m_ID
private

Definition at line 45 of file FEConfigTimingInfo.h.

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

◆ m_version

int FEConfigTimingInfo::m_version
private

Definition at line 47 of file FEConfigTimingInfo.h.

Referenced by getVersion(), and setVersion().