CMS 3D CMS Logo

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

#include <ODFEPedestalOffsetInfo.h>

Inheritance diagram for ODFEPedestalOffsetInfo:
IODConfig IDBObject

Public Member Functions

int fetchID () noexcept(false)
 
int fetchNextId () noexcept(false)
 
int getId () const
 
std::string getTable () override
 
int getVersion () const
 
 ODFEPedestalOffsetInfo ()
 
void setId (int id)
 
void setParameters (const std::map< std::string, std::string > &my_keys_map)
 
void setVersion (int id)
 
 ~ODFEPedestalOffsetInfo () 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 (ODFEPedestalOffsetInfo *result) noexcept(false)
 
void fetchLastData (ODFEPedestalOffsetInfo *result) noexcept(false)
 
void prepareWrite () noexcept(false) override
 
void writeDB () noexcept(false)
 

Private Attributes

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 9 of file ODFEPedestalOffsetInfo.h.

Constructor & Destructor Documentation

◆ ODFEPedestalOffsetInfo()

ODFEPedestalOffsetInfo::ODFEPedestalOffsetInfo ( )

Definition at line 12 of file ODFEPedestalOffsetInfo.cc.

References l1ct::clear().

12  {
13  m_env = nullptr;
14  m_conn = nullptr;
15  m_writeStmt = nullptr;
16  m_readStmt = nullptr;
17  m_config_tag = "";
18  m_ID = 0;
19  m_version = 0;
20  clear();
21 }
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

◆ ~ODFEPedestalOffsetInfo()

ODFEPedestalOffsetInfo::~ODFEPedestalOffsetInfo ( )
override

Definition at line 25 of file ODFEPedestalOffsetInfo.cc.

25 {}

Member Function Documentation

◆ clear()

void ODFEPedestalOffsetInfo::clear ( void  )
private

Definition at line 23 of file ODFEPedestalOffsetInfo.cc.

23 {}

◆ fetchData()

void ODFEPedestalOffsetInfo::fetchData ( ODFEPedestalOffsetInfo result)
privatenoexcept

Definition at line 109 of file ODFEPedestalOffsetInfo.cc.

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

109  {
110  this->checkConnection();
111  result->clear();
112  if (result->getId() == 0 && (result->getConfigTag().empty())) {
113  throw(std::runtime_error("ODFEPedestalOffsetInfo::fetchData(): no Id defined for this ODFEPedestalOffsetInfo "));
114  }
115 
116  try {
117  if (result->getId() != 0) {
118  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where rec_id = :1 ");
119  m_readStmt->setInt(1, result->getId());
120  } else if (!result->getConfigTag().empty()) {
121  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where tag=:1 AND version=:2 ");
122  m_readStmt->setString(1, result->getConfigTag());
123  m_readStmt->setInt(2, result->getVersion());
124  } else {
125  // we should never pass here
126  throw(std::runtime_error("ODFEPedestalOffsetInfo::fetchData(): no Id defined for this record "));
127  }
128 
129  ResultSet* rset = m_readStmt->executeQuery();
130 
131  rset->next();
132 
133  // 1 is the id and 2 is the config tag and 3 is the version
134 
135  result->setId(rset->getInt(1));
136  result->setConfigTag(rset->getString(2));
137  result->setVersion(rset->getInt(3));
138 
139  } catch (SQLException& e) {
140  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchData(): ") + e.getMessage()));
141  }
142 }
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

◆ fetchID()

int ODFEPedestalOffsetInfo::fetchID ( )
noexcept

Definition at line 163 of file ODFEPedestalOffsetInfo.cc.

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

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

Definition at line 144 of file ODFEPedestalOffsetInfo.cc.

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

144  {
145  this->checkConnection();
146  result->clear();
147  try {
148  m_readStmt->setSQL("SELECT * FROM " + getTable() + " where rec_id = ( select max(rec_id) from " + getTable() +
149  " ) ");
150  ResultSet* rset = m_readStmt->executeQuery();
151 
152  rset->next();
153 
154  result->setId(rset->getInt(1));
155  result->setConfigTag(rset->getString(2));
156  result->setVersion(rset->getInt(3));
157 
158  } catch (SQLException& e) {
159  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchData(): ") + e.getMessage()));
160  }
161 }
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

◆ fetchNextId()

int ODFEPedestalOffsetInfo::fetchNextId ( )
noexcept

Definition at line 27 of file ODFEPedestalOffsetInfo.cc.

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

27  {
28  int result = 0;
29  try {
30  this->checkConnection();
31 
32  m_readStmt = m_conn->createStatement();
33  m_readStmt->setSQL("select COND2CONF_INFO_SQ.NextVal from DUAL ");
34  ResultSet* rset = m_readStmt->executeQuery();
35  while (rset->next()) {
36  result = rset->getInt(1);
37  }
38  result++;
39  m_conn->terminateStatement(m_readStmt);
40  return result;
41 
42  } catch (SQLException& e) {
43  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::fetchNextId(): ") + e.getMessage()));
44  }
45 }
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

◆ getId()

int ODFEPedestalOffsetInfo::getId ( void  ) const
inline

Definition at line 19 of file ODFEPedestalOffsetInfo.h.

References m_ID.

◆ getTable()

std::string ODFEPedestalOffsetInfo::getTable ( )
inlineoverridevirtual

Implements IODConfig.

Definition at line 16 of file ODFEPedestalOffsetInfo.h.

16 { return "PEDESTAL_OFFSETS_INFO"; }

◆ getVersion()

int ODFEPedestalOffsetInfo::getVersion ( ) const
inline

Definition at line 24 of file ODFEPedestalOffsetInfo.h.

References m_version.

◆ prepareWrite()

void ODFEPedestalOffsetInfo::prepareWrite ( )
overrideprivatevirtualnoexcept

Implements IODConfig.

Definition at line 47 of file ODFEPedestalOffsetInfo.cc.

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

47  {
48  this->checkConnection();
49 
50  int next_id = 0;
51  if (getId() == 0) {
52  next_id = fetchNextId();
53  }
54 
55  try {
56  m_writeStmt = m_conn->createStatement();
57  m_writeStmt->setSQL("INSERT INTO " + getTable() +
58  " ( rec_id, tag, version) "
59  " VALUES ( :1, :2, :3 ) ");
60 
61  m_writeStmt->setInt(1, next_id);
62  m_ID = next_id;
63 
64  } catch (SQLException& e) {
65  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::prepareWrite(): ") + e.getMessage()));
66  }
67 }
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
int fetchNextId() noexcept(false)
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20

◆ setId()

void ODFEPedestalOffsetInfo::setId ( int  id)
inline

◆ setParameters()

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

Definition at line 69 of file ODFEPedestalOffsetInfo.cc.

69  {
70  // parses the result of the XML parser that is a map of
71  // string string with variable name variable value
72 
73  for (std::map<std::string, std::string>::const_iterator ci = my_keys_map.begin(); ci != my_keys_map.end(); ci++) {
74  if (ci->first == "VERSION")
75  setVersion(atoi(ci->second.c_str()));
76  if (ci->first == "TAG")
77  setConfigTag(ci->second);
78  }
79 }
void setConfigTag(std::string x)
Definition: IODConfig.h:29

◆ setVersion()

void ODFEPedestalOffsetInfo::setVersion ( int  id)
inline

◆ writeDB()

void ODFEPedestalOffsetInfo::writeDB ( )
privatenoexcept

Definition at line 81 of file ODFEPedestalOffsetInfo.cc.

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

81  {
82  this->checkConnection();
83  this->checkPrepare();
84 
85  try {
86  // number 1 is the id
87  m_writeStmt->setString(2, this->getConfigTag());
88  m_writeStmt->setInt(3, this->getVersion());
89 
90  m_writeStmt->executeUpdate();
91 
92  } catch (SQLException& e) {
93  throw(std::runtime_error(std::string("ODFEPedestalOffsetInfo::writeDB(): ") + e.getMessage()));
94  }
95 
96  // Now get the ID
97  if (!this->fetchID()) {
98  throw(std::runtime_error("ODFEPedestalOffsetInfo::writeDB: Failed to write"));
99  } else {
100  int old_version = this->getVersion();
101  m_readStmt = m_conn->createStatement();
102  this->fetchData(this);
103  m_conn->terminateStatement(m_readStmt);
104  if (this->getVersion() != old_version)
105  std::cout << "ODFEPedestalOffsetInfo>>WARNING version is " << getVersion() << endl;
106  }
107 }
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
int fetchID() noexcept(false)
void fetchData(ODFEPedestalOffsetInfo *result) noexcept(false)
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
Statement * m_readStmt
Definition: IODConfig.h:34
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 11 of file ODFEPedestalOffsetInfo.h.

Member Data Documentation

◆ m_ID

int ODFEPedestalOffsetInfo::m_ID
private

Definition at line 41 of file ODFEPedestalOffsetInfo.h.

Referenced by getId(), and setId().

◆ m_version

int ODFEPedestalOffsetInfo::m_version
private

Definition at line 42 of file ODFEPedestalOffsetInfo.h.

Referenced by getVersion(), and setVersion().