CMS 3D CMS Logo

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

#include <FEConfigWeightInfo.h>

Inheritance diagram for FEConfigWeightInfo:
IODConfig IDBObject

Public Member Functions

 FEConfigWeightInfo ()
 
int fetchID () noexcept(false)
 
int fetchNextId () noexcept(false)
 
Tm getDBTime () const
 
int getID ()
 
int getId () const
 
int getNumberOfGroups () const
 
std::string getTable () override
 
int getVersion () const
 
bool operator!= (const FEConfigWeightInfo &r) const
 
bool operator== (const FEConfigWeightInfo &r) const
 
void setByID (int id) noexcept(false)
 
void setDBTime (const Tm &x)
 
void setId (int id)
 
void setID (int id)
 
void setNumberOfGroups (int n)
 
void setParameters (const std::map< std::string, std::string > &my_keys_map)
 
void setVersion (int id)
 
 ~FEConfigWeightInfo () 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 (FEConfigWeightInfo *result) noexcept(false)
 
void fetchLastData (FEConfigWeightInfo *result) noexcept(false)
 
void prepareWrite () noexcept(false) override
 
void writeDB () noexcept(false)
 

Private Attributes

Tm m_db_time
 
int m_ID
 
int m_ngr
 
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 const int 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 FEConfigWeightInfo.h.

Constructor & Destructor Documentation

◆ FEConfigWeightInfo()

FEConfigWeightInfo::FEConfigWeightInfo ( )

Definition at line 13 of file FEConfigWeightInfo.cc.

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 }

References clear().

◆ ~FEConfigWeightInfo()

FEConfigWeightInfo::~FEConfigWeightInfo ( )
override

Definition at line 26 of file FEConfigWeightInfo.cc.

26 {}

Member Function Documentation

◆ clear()

void FEConfigWeightInfo::clear ( void  )
private

Definition at line 24 of file FEConfigWeightInfo.cc.

24 { m_ngr = 0; }

◆ fetchData()

void FEConfigWeightInfo::fetchData ( FEConfigWeightInfo result)
privatenoexcept

Definition at line 105 of file FEConfigWeightInfo.cc.

105  {
106  this->checkConnection();
107  result->clear();
108  if (result->getId() == 0 && (result->getConfigTag().empty())) {
109  throw(std::runtime_error("FEConfigWeightInfo::fetchData(): no Id defined for this FEConfigWeightInfo "));
110  }
111 
112  try {
114 
115  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where ( wei_conf_id= :1 or (tag=:2 AND version=:3 ) )");
116  m_readStmt->setInt(1, result->getId());
117  m_readStmt->setString(2, result->getConfigTag());
118  m_readStmt->setInt(3, result->getVersion());
119  ResultSet* rset = m_readStmt->executeQuery();
120 
121  rset->next();
122 
123  // 1 is the id and 2 is the config tag and 3 is the version
124 
125  result->setId(rset->getInt(1));
126  result->setConfigTag(rset->getString(2));
127  result->setVersion(rset->getInt(3));
128  result->setNumberOfGroups(rset->getInt(4));
129  Date dbdate = rset->getDate(5);
130  result->setDBTime(dh.dateToTm(dbdate));
131 
132  } catch (SQLException& e) {
133  throw(std::runtime_error(std::string("FEConfigWeightInfo::fetchData(): ") + e.getMessage()));
134  }
135 }

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

◆ fetchID()

int FEConfigWeightInfo::fetchID ( )
noexcept

Definition at line 161 of file FEConfigWeightInfo.cc.

161  {
162  // Return from memory if available
163  if (m_ID != 0) {
164  return m_ID;
165  }
166 
167  this->checkConnection();
168 
169  try {
170  Statement* stmt = m_conn->createStatement();
171  stmt->setSQL("SELECT wei_conf_id FROM " + getTable() + " WHERE tag=:1 and version=:2 ");
172 
173  stmt->setString(1, getConfigTag());
174  stmt->setInt(2, getVersion());
175 
176  ResultSet* rset = stmt->executeQuery();
177 
178  if (rset->next()) {
179  m_ID = rset->getInt(1);
180  } else {
181  m_ID = 0;
182  }
183  m_conn->terminateStatement(stmt);
184  } catch (SQLException& e) {
185  throw(std::runtime_error(std::string("FEConfigWeightInfo::fetchID: ") + e.getMessage()));
186  }
187 
188  return m_ID;
189 }

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

◆ fetchLastData()

void FEConfigWeightInfo::fetchLastData ( FEConfigWeightInfo result)
privatenoexcept

Definition at line 137 of file FEConfigWeightInfo.cc.

137  {
138  this->checkConnection();
139  result->clear();
140  try {
142 
143  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where wei_conf_id = ( select max( wei_conf_id) from " +
144  getTable() + " ) ");
145  ResultSet* rset = m_readStmt->executeQuery();
146 
147  rset->next();
148 
149  result->setId(rset->getInt(1));
150  result->setConfigTag(rset->getString(2));
151  result->setVersion(rset->getInt(3));
152  result->setNumberOfGroups(rset->getInt(4));
153  Date dbdate = rset->getDate(5);
154  result->setDBTime(dh.dateToTm(dbdate));
155 
156  } catch (SQLException& e) {
157  throw(std::runtime_error(std::string("FEConfigWeightInfo::fetchData(): ") + e.getMessage()));
158  }
159 }

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

◆ fetchNextId()

int FEConfigWeightInfo::fetchNextId ( )
noexcept

Definition at line 28 of file FEConfigWeightInfo.cc.

28  {
29  int result = 0;
30  try {
31  this->checkConnection();
32 
33  m_readStmt = m_conn->createStatement();
34  m_readStmt->setSQL("select FE_CONFIG_WEIGHT_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("FEConfigWeightInfo::fetchNextId(): ") + e.getMessage()));
45  }
46 }

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

◆ getDBTime()

Tm FEConfigWeightInfo::getDBTime ( ) const
inline

Definition at line 33 of file FEConfigWeightInfo.h.

33 { return m_db_time; }

References m_db_time.

◆ getID()

int FEConfigWeightInfo::getID ( )
inline

Definition at line 28 of file FEConfigWeightInfo.h.

28 { return getId(); }

References getId().

◆ getId()

int FEConfigWeightInfo::getId ( void  ) const
inline

Definition at line 25 of file FEConfigWeightInfo.h.

25 { return m_ID; }

References m_ID.

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

◆ getNumberOfGroups()

int FEConfigWeightInfo::getNumberOfGroups ( ) const
inline

Definition at line 22 of file FEConfigWeightInfo.h.

22 { return m_ngr; }

References m_ngr.

◆ getTable()

std::string FEConfigWeightInfo::getTable ( )
inlineoverridevirtual

Implements IODConfig.

Definition at line 19 of file FEConfigWeightInfo.h.

19 { return "FE_CONFIG_WEIGHT_INFO"; }

◆ getVersion()

int FEConfigWeightInfo::getVersion ( ) const
inline

Definition at line 31 of file FEConfigWeightInfo.h.

31 { return m_version; }

References m_version.

◆ operator!=()

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

Definition at line 44 of file FEConfigWeightInfo.h.

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

References alignCSCRings::r.

◆ operator==()

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

Definition at line 43 of file FEConfigWeightInfo.h.

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

References m_ID, and alignCSCRings::r.

◆ prepareWrite()

void FEConfigWeightInfo::prepareWrite ( )
overrideprivatevirtualnoexcept

Implements IODConfig.

Definition at line 48 of file FEConfigWeightInfo.cc.

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  " ( wei_conf_id, tag, version, number_of_groups) "
60  " VALUES ( :1, :2, :3 , :4) ");
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("FEConfigWeightInfo::prepareWrite(): ") + e.getMessage()));
67  }
68 }

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

◆ setByID()

void FEConfigWeightInfo::setByID ( int  id)
noexcept

Definition at line 191 of file FEConfigWeightInfo.cc.

191  {
192  this->checkConnection();
193 
195 
196  try {
197  Statement* stmt = m_conn->createStatement();
198 
199  stmt->setSQL("SELECT * FROM fe_config_weight_info WHERE wei_conf_id = :1");
200  stmt->setInt(1, id);
201 
202  ResultSet* rset = stmt->executeQuery();
203  if (rset->next()) {
204  this->setId(rset->getInt(1));
205  this->setConfigTag(rset->getString(2));
206  this->setVersion(rset->getInt(3));
207  this->setNumberOfGroups(rset->getInt(4));
208  Date dbdate = rset->getDate(5);
209  this->setDBTime(dh.dateToTm(dbdate));
210  } else {
211  throw(std::runtime_error("FEConfigWeightInfo::setByID: Given config_id is not in the database"));
212  }
213 
214  m_conn->terminateStatement(stmt);
215  } catch (SQLException& e) {
216  throw(std::runtime_error(std::string("FEConfigWeightInfo::setByID: ") + e.getMessage()));
217  }
218 }

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

◆ setDBTime()

void FEConfigWeightInfo::setDBTime ( const Tm x)
inline

Definition at line 34 of file FEConfigWeightInfo.h.

34 { m_db_time = x; }

References m_db_time, and x.

◆ setId()

void FEConfigWeightInfo::setId ( int  id)
inline

◆ setID()

void FEConfigWeightInfo::setID ( int  id)
inline

Definition at line 27 of file FEConfigWeightInfo.h.

27 { setId(id); }

References setId().

◆ setNumberOfGroups()

void FEConfigWeightInfo::setNumberOfGroups ( int  n)
inline

Definition at line 21 of file FEConfigWeightInfo.h.

21 { m_ngr = n; }

References m_ngr, and dqmiodumpmetadata::n.

Referenced by EcalTPGDBApp::writeToConfDB_TPGWeight().

◆ setParameters()

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

Definition at line 70 of file FEConfigWeightInfo.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  if (ci->first == "NUMBER_OF_GROUPS")
80  setNumberOfGroups(atoi(ci->second.c_str()));
81  }
82 }

◆ setVersion()

void FEConfigWeightInfo::setVersion ( int  id)
inline

Definition at line 30 of file FEConfigWeightInfo.h.

30 { m_version = id; }

References triggerObjects_cff::id, and m_version.

◆ writeDB()

void FEConfigWeightInfo::writeDB ( )
privatenoexcept

Definition at line 84 of file FEConfigWeightInfo.cc.

84  {
85  this->checkConnection();
86  this->checkPrepare();
87 
88  try {
89  // number 1 is the id
90  m_writeStmt->setString(2, this->getConfigTag());
91  m_writeStmt->setInt(3, this->getVersion());
92  m_writeStmt->setInt(4, this->getNumberOfGroups());
93 
94  m_writeStmt->executeUpdate();
95 
96  } catch (SQLException& e) {
97  throw(std::runtime_error(std::string("FEConfigWeightInfo::writeDB(): ") + e.getMessage()));
98  }
99  // Now get the ID
100  if (!this->fetchID()) {
101  throw(std::runtime_error("FEConfigWeightInfo::writeDB: Failed to write"));
102  }
103 }

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

Friends And Related Function Documentation

◆ EcalCondDBInterface

friend class EcalCondDBInterface
friend

Definition at line 13 of file FEConfigWeightInfo.h.

Member Data Documentation

◆ m_db_time

Tm FEConfigWeightInfo::m_db_time
private

Definition at line 50 of file FEConfigWeightInfo.h.

Referenced by getDBTime(), and setDBTime().

◆ m_ID

int FEConfigWeightInfo::m_ID
private

Definition at line 49 of file FEConfigWeightInfo.h.

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

◆ m_ngr

int FEConfigWeightInfo::m_ngr
private

Definition at line 48 of file FEConfigWeightInfo.h.

Referenced by getNumberOfGroups(), and setNumberOfGroups().

◆ m_version

int FEConfigWeightInfo::m_version
private

Definition at line 51 of file FEConfigWeightInfo.h.

Referenced by getVersion(), and setVersion().

FEConfigWeightInfo::setId
void setId(int id)
Definition: FEConfigWeightInfo.h:24
FEConfigWeightInfo::m_db_time
Tm m_db_time
Definition: FEConfigWeightInfo.h:50
FEConfigWeightInfo::m_ngr
int m_ngr
Definition: FEConfigWeightInfo.h:48
FEConfigWeightInfo::getId
int getId() const
Definition: FEConfigWeightInfo.h:25
dqmiodumpmetadata.n
n
Definition: dqmiodumpmetadata.py:28
FEConfigWeightInfo::m_ID
int m_ID
Definition: FEConfigWeightInfo.h:49
FEConfigWeightInfo::setDBTime
void setDBTime(const Tm &x)
Definition: FEConfigWeightInfo.h:34
FEConfigWeightInfo::setVersion
void setVersion(int id)
Definition: FEConfigWeightInfo.h:30
IODConfig::Statement
oracle::occi::Statement Statement
Definition: IODConfig.h:21
DDAxes::x
FEConfigWeightInfo::setNumberOfGroups
void setNumberOfGroups(int n)
Definition: FEConfigWeightInfo.h:21
IODConfig::SQLException
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
IDBObject::m_conn
oracle::occi::Connection * m_conn
Definition: IDBObject.h:34
FEConfigWeightInfo::getTable
std::string getTable() override
Definition: FEConfigWeightInfo.h:19
IODConfig::checkPrepare
void checkPrepare() noexcept(false)
Definition: IODConfig.h:36
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
IODConfig::getConfigTag
std::string getConfigTag()
Definition: IODConfig.h:30
IDBObject::checkConnection
void checkConnection() const noexcept(false)
Definition: IDBObject.h:36
FEConfigWeightInfo::getVersion
int getVersion() const
Definition: FEConfigWeightInfo.h:31
IODConfig::m_readStmt
Statement * m_readStmt
Definition: IODConfig.h:34
FEConfigWeightInfo::fetchNextId
int fetchNextId() noexcept(false)
Definition: FEConfigWeightInfo.cc:28
alignCSCRings.r
r
Definition: alignCSCRings.py:93
FEConfigWeightInfo::m_version
int m_version
Definition: FEConfigWeightInfo.h:51
IODConfig::m_writeStmt
Statement * m_writeStmt
Definition: IODConfig.h:33
FEConfigWeightInfo::fetchID
int fetchID() noexcept(false)
Definition: FEConfigWeightInfo.cc:161
FEConfigWeightInfo::getNumberOfGroups
int getNumberOfGroups() const
Definition: FEConfigWeightInfo.h:22
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
IODConfig::m_config_tag
std::string m_config_tag
Definition: IODConfig.h:25
FEConfigWeightInfo::clear
void clear()
Definition: FEConfigWeightInfo.cc:24
IDBObject::m_env
oracle::occi::Environment * m_env
Definition: IDBObject.h:33
mps_fire.result
result
Definition: mps_fire.py:303
IODConfig::setConfigTag
void setConfigTag(std::string x)
Definition: IODConfig.h:29
DateHandler
Definition: DateHandler.h:7
cuy.dh
dh
Definition: cuy.py:355
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37