CMS 3D CMS Logo

ODLaserCycle.cc
Go to the documentation of this file.
1 #include <stdexcept>
3 
5 
6 using namespace std;
7 using namespace oracle::occi;
8 
10  m_env = nullptr;
11  m_conn = nullptr;
12  m_writeStmt = nullptr;
13  m_readStmt = nullptr;
14  //
15  m_ID = 0;
16  m_laser_config_id = 0;
17 }
18 
20 
22  this->checkConnection();
23 
24  try {
25  m_writeStmt = m_conn->createStatement();
26  m_writeStmt->setSQL(
27  "INSERT INTO ECAL_Laser_Cycle (cycle_id, laser_configuration_id ) "
28  "VALUES (:1, :2 )");
29  } catch (SQLException &e) {
30  throw(std::runtime_error("ODLaserCycle::prepareWrite(): " + e.getMessage()));
31  }
32 }
33 
34 void ODLaserCycle::writeDB() noexcept(false) {
35  this->checkConnection();
36  this->checkPrepare();
37 
38  try {
39  m_writeStmt->setInt(1, this->getId());
40  m_writeStmt->setInt(2, this->getLaserConfigurationID());
41 
42  m_writeStmt->executeUpdate();
43 
44  } catch (SQLException &e) {
45  throw(std::runtime_error("ODLaserCycle::writeDB: " + e.getMessage()));
46  }
47 
48  // Now get the ID
49  if (!this->fetchID()) {
50  throw(std::runtime_error("ODLaserCycle::writeDB: Failed to write"));
51  }
52 }
53 
54 void ODLaserCycle::clear() { m_laser_config_id = 0; }
55 
56 int ODLaserCycle::fetchID() noexcept(false) {
57  // Return from memory if available
58  if (m_ID) {
59  return m_ID;
60  }
61 
62  this->checkConnection();
63 
64  try {
65  Statement *stmt = m_conn->createStatement();
66  stmt->setSQL(
67  "SELECT cycle_id, laser_configuration_id FROM ecal_laser_cycle "
68  "WHERE cycle_id = :1 ");
69  stmt->setInt(1, m_ID);
70  ResultSet *rset = stmt->executeQuery();
71 
72  if (rset->next()) {
73  m_ID = rset->getInt(1);
74  m_laser_config_id = rset->getInt(2);
75  } else {
76  m_ID = 0;
77  }
78  m_conn->terminateStatement(stmt);
79  } catch (SQLException &e) {
80  throw(std::runtime_error("ODLaserCycle::fetchID: " + e.getMessage()));
81  }
82 
83  return m_ID;
84 }
85 
86 void ODLaserCycle::setByID(int id) noexcept(false) {
87  this->checkConnection();
88 
89  try {
90  Statement *stmt = m_conn->createStatement();
91  stmt->setSQL(
92  "SELECT cycle_id, laser_configuration_id FROM ecal_laser_cycle "
93  "WHERE cycle_id = :1 ");
94  stmt->setInt(1, id);
95  ResultSet *rset = stmt->executeQuery();
96 
97  if (rset->next()) {
98  m_ID = rset->getInt(1);
99  m_laser_config_id = rset->getInt(2);
100  } else {
101  m_ID = 0;
102  }
103  m_conn->terminateStatement(stmt);
104  } catch (SQLException &e) {
105  throw(std::runtime_error("ODLaserCycle::fetchID: " + e.getMessage()));
106  }
107 }
108 
110  this->checkConnection();
111  result->clear();
112 
113  if (result->getId() == 0) {
114  throw(std::runtime_error("ODLaserConfig::fetchData(): no Id defined for this ODLaserConfig "));
115  }
116 
117  try {
118  m_readStmt->setSQL(
119  "SELECT laser_configuration_id FROM ecal_laser_cycle "
120  "WHERE cycle_id = :1 ");
121 
122  m_readStmt->setInt(1, result->getId());
123  ResultSet *rset = m_readStmt->executeQuery();
124 
125  rset->next();
126 
127  result->setLaserConfigurationID(rset->getInt(1));
128 
129  } catch (SQLException &e) {
130  throw(std::runtime_error("ODLaserCycle::fetchData(): " + e.getMessage()));
131  }
132 }
133 
135  try {
136  prepareWrite();
137  writeDB();
138  m_conn->commit();
139  terminateWriteStatement();
140  } catch (std::runtime_error &e) {
141  m_conn->rollback();
142  throw(e);
143  } catch (...) {
144  m_conn->rollback();
145  throw(std::runtime_error("EcalCondDBInterface::insertDataSet: Unknown exception caught"));
146  }
147 }
int fetchID() noexcept(false)
Definition: ODLaserCycle.cc:56
void fetchData(ODLaserCycle *result) noexcept(false)
~ODLaserCycle() override
Definition: ODLaserCycle.cc:19
void setByID(int id) noexcept(false)
Definition: ODLaserCycle.cc:86
oracle::occi::Statement Statement
Definition: IODConfig.h:21
static unsigned int getId()
void writeDB() noexcept(false)
Definition: ODLaserCycle.cc:34
void prepareWrite() noexcept(false) override
Definition: ODLaserCycle.cc:21
oracle::occi::SQLException SQLException
Definition: IODConfig.h:20
void insertConfig() noexcept(false)