CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FEConfigLUTInfo.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
3 #include <string.h>
5 #include <cstdlib>
9 
10 using namespace std;
11 using namespace oracle::occi;
12 
14 {
15  m_env = NULL;
16  m_conn = NULL;
17  m_writeStmt = NULL;
18  m_readStmt = NULL;
19  m_config_tag="";
20  m_version=0;
21  m_ID=0;
22  clear();
23 }
24 
25 
27  m_iov_id=0;
28 }
29 
30 
31 
33 {
34 }
35 
36 
37 
38 int FEConfigLUTInfo::fetchNextId() throw(std::runtime_error) {
39 
40  int result=0;
41  try {
42  this->checkConnection();
43 
44  m_readStmt = m_conn->createStatement();
45  m_readStmt->setSQL("select FE_CONFIG_LUT_SQ.NextVal from DUAL ");
46  ResultSet* rset = m_readStmt->executeQuery();
47  while (rset->next ()){
48  result= rset->getInt(1);
49  }
50  result++;
51  m_conn->terminateStatement(m_readStmt);
52  return result;
53 
54  } catch (SQLException &e) {
55  throw(std::runtime_error("FEConfigLUTInfo::fetchNextId(): "+e.getMessage()));
56  }
57 
58 }
59 
61  throw(std::runtime_error)
62 {
63  this->checkConnection();
64 
65  int next_id=0;
66  if(getId()==0){
67  next_id=fetchNextId();
68  }
69 
70  try {
71  m_writeStmt = m_conn->createStatement();
72  m_writeStmt->setSQL("INSERT INTO "+getTable()+" ( lut_conf_id, tag, version, number_of_groups) "
73  " VALUES ( :1, :2, :3 , :4) " );
74 
75  m_writeStmt->setInt(1, next_id);
76  m_ID=next_id;
77 
78  } catch (SQLException &e) {
79  throw(std::runtime_error("FEConfigLUTInfo::prepareWrite(): "+e.getMessage()));
80  }
81 
82 }
83 
84 void FEConfigLUTInfo::setParameters(const std::map<string,string>& my_keys_map){
85 
86  // parses the result of the XML parser that is a map of
87  // string string with variable name variable value
88 
89  for( std::map<std::string, std::string >::const_iterator ci=
90  my_keys_map.begin(); ci!=my_keys_map.end(); ci++ ) {
91 
92  if(ci->first== "VERSION") setVersion(atoi(ci->second.c_str()) );
93  if(ci->first== "TAG") setConfigTag(ci->second);
94  if(ci->first== "NUMBER_OF_GROUPS") setNumberOfGroups(atoi(ci->second.c_str()) );
95 
96  }
97 
98 }
99 
101  throw(std::runtime_error)
102 {
103  this->checkConnection();
104  this->checkPrepare();
105 
106  try {
107 
108  // number 1 is the id
109  m_writeStmt->setString(2, this->getConfigTag());
110  m_writeStmt->setInt(3, this->getVersion());
111  m_writeStmt->setInt(4, this->getNumberOfGroups());
112 
113  m_writeStmt->executeUpdate();
114 
115 
116  } catch (SQLException &e) {
117  throw(std::runtime_error("FEConfigLUTInfo::writeDB(): "+e.getMessage()));
118  }
119  // Now get the ID
120  if (!this->fetchID()) {
121  throw(std::runtime_error("FEConfigLUTInfo::writeDB: Failed to write"));
122  }
123 
124 
125 }
126 
127 
129  throw(std::runtime_error)
130 {
131  this->checkConnection();
132  result->clear();
133  if(result->getId()==0 && (result->getConfigTag()=="") ){
134  throw(std::runtime_error("FEConfigLUTInfo::fetchData(): no Id defined for this FEConfigLUTInfo "));
135  }
136 
137  try {
138  DateHandler dh(m_env, m_conn);
139 
140  m_readStmt->setSQL("SELECT * FROM " + getTable() +
141  " where ( lut_conf_id= :1 or (tag=:2 AND version=:3 ) )" );
142  m_readStmt->setInt(1, result->getId());
143  m_readStmt->setString(2, result->getConfigTag());
144  m_readStmt->setInt(3, result->getVersion());
145  ResultSet* rset = m_readStmt->executeQuery();
146 
147  rset->next();
148 
149  // 1 is the id and 2 is the config tag and 3 is the version
150 
151  result->setId(rset->getInt(1));
152  result->setConfigTag(rset->getString(2));
153  result->setVersion(rset->getInt(3));
154  result->setNumberOfGroups(rset->getInt(4));
155  Date dbdate = rset->getDate(5);
156  result->setDBTime( dh.dateToTm( dbdate ));
157 
158  } catch (SQLException &e) {
159  throw(std::runtime_error("FEConfigLUTInfo::fetchData(): "+e.getMessage()));
160  }
161 }
162 
164  throw(std::runtime_error)
165 {
166  this->checkConnection();
167  result->clear();
168  try {
169  DateHandler dh(m_env, m_conn);
170 
171  m_readStmt->setSQL("SELECT * FROM " + getTable() +
172  " where lut_conf_id = ( select max( lut_conf_id) from "+ getTable() +" ) " );
173  ResultSet* rset = m_readStmt->executeQuery();
174 
175  rset->next();
176 
177  result->setId(rset->getInt(1));
178  result->setConfigTag(rset->getString(2));
179  result->setVersion(rset->getInt(3));
180  result->setNumberOfGroups(rset->getInt(4));
181  Date dbdate = rset->getDate(5);
182  result->setDBTime( dh.dateToTm( dbdate ));
183 
184  } catch (SQLException &e) {
185  throw(std::runtime_error("FEConfigLUTInfo::fetchData(): "+e.getMessage()));
186  }
187 }
188 
189 int FEConfigLUTInfo::fetchID() throw(std::runtime_error)
190 {
191  // Return from memory if available
192  if (m_ID!=0) {
193  return m_ID;
194  }
195 
196  this->checkConnection();
197 
198  try {
199  Statement* stmt = m_conn->createStatement();
200  stmt->setSQL("SELECT lut_conf_id FROM "+ getTable()+
201  " WHERE tag=:1 and version=:2 " );
202 
203  stmt->setString(1, getConfigTag() );
204  stmt->setInt(2, getVersion() );
205 
206  ResultSet* rset = stmt->executeQuery();
207 
208  if (rset->next()) {
209  m_ID = rset->getInt(1);
210  } else {
211  m_ID = 0;
212  }
213  m_conn->terminateStatement(stmt);
214  } catch (SQLException &e) {
215  throw(std::runtime_error("FEConfigLUTInfo::fetchID: "+e.getMessage()));
216  }
217 
218  return m_ID;
219 }
220 
221 
222 
224  throw(std::runtime_error)
225 {
226  this->checkConnection();
227 
228  DateHandler dh(m_env, m_conn);
229 
230  try {
231  Statement* stmt = m_conn->createStatement();
232 
233  stmt->setSQL("SELECT * FROM fe_config_lut_info WHERE lut_conf_id = :1");
234  stmt->setInt(1, id);
235 
236  ResultSet* rset = stmt->executeQuery();
237  if (rset->next()) {
238  this->setId(rset->getInt(1));
239  this->setConfigTag(rset->getString(2));
240  this->setVersion(rset->getInt(3));
241  this->setNumberOfGroups(rset->getInt(4));
242  Date dbdate = rset->getDate(5);
243  this->setDBTime( dh.dateToTm( dbdate ));
244  } else {
245  throw(std::runtime_error("FEConfigLUTInfo::setByID: Given config_id is not in the database"));
246  }
247 
248  m_conn->terminateStatement(stmt);
249  } catch (SQLException &e) {
250  throw(std::runtime_error("FEConfigLUTInfo::setByID: "+e.getMessage()));
251  }
252 }
253 
254 
255 
static unsigned int getId(void)
#define NULL
Definition: scimark2.h:8
void setByID(int id)
void fetchData(FEConfigLUTInfo *result)
void clear(CLHEP::HepGenMatrix &m)
Helper function: Reset all elements of a matrix to 0.
Definition: matutil.cc:167
tuple result
Definition: query.py:137
void setParameters(const std::map< std::string, std::string > &my_keys_map)
oracle::occi::Statement Statement
Definition: IODConfig.h:23
oracle::occi::ResultSet ResultSet
Definition: HcalDbOmds.cc:26
oracle::occi::SQLException SQLException
Definition: IODConfig.h:22
Tm dateToTm(oracle::occi::Date &date) const
Definition: DateHandler.cc:31
tuple dh
Definition: cuy.py:353
void fetchLastData(FEConfigLUTInfo *result)