Go to the documentation of this file.00001 #include <stdexcept>
00002 #include <string>
00003 #include "OnlineDB/Oracle/interface/Oracle.h"
00004
00005 #include "OnlineDB/EcalCondDB/interface/MonLaserStatusDat.h"
00006
00007 using namespace std;
00008 using namespace oracle::occi;
00009
00010 MonLaserStatusDat::MonLaserStatusDat()
00011 {
00012 m_env = NULL;
00013 m_conn = NULL;
00014 m_writeStmt = NULL;
00015 m_readStmt = NULL;
00016
00017 m_laserPower = 0;
00018 m_laserFilter = 0;
00019 m_laserWavelength = 0;
00020 m_laserFanout = 0;
00021 }
00022
00023
00024
00025 MonLaserStatusDat::~MonLaserStatusDat()
00026 {
00027 }
00028
00029
00030
00031 void MonLaserStatusDat::prepareWrite()
00032 throw(std::runtime_error)
00033 {
00034 this->checkConnection();
00035
00036 try {
00037 m_writeStmt = m_conn->createStatement();
00038 m_writeStmt->setSQL("INSERT INTO mon_laser_status_dat (iov_id, logic_id, "
00039 "laser_power, laser_filter, laser_wavelength, laser_fanout) "
00040 "VALUES (:iov_id, :logic_id, "
00041 ":3, :4, :5, :6)");
00042 } catch (SQLException &e) {
00043 throw(std::runtime_error("MonLaserStatusDat::prepareWrite(): "+e.getMessage()));
00044 }
00045 }
00046
00047
00048
00049 void MonLaserStatusDat::writeDB(const EcalLogicID* ecid, const MonLaserStatusDat* item, MonRunIOV* iov)
00050 throw(std::runtime_error)
00051 {
00052 this->checkConnection();
00053 this->checkPrepare();
00054
00055 int iovID = iov->fetchID();
00056 if (!iovID) { throw(std::runtime_error("MonLaserStatusDat::writeDB: IOV not in DB")); }
00057
00058 int logicID = ecid->getLogicID();
00059 if (!logicID) { throw(std::runtime_error("MonLaserStatusDat::writeDB: Bad EcalLogicID")); }
00060
00061 try {
00062 m_writeStmt->setInt(1, iovID);
00063 m_writeStmt->setInt(2, logicID);
00064
00065 m_writeStmt->setFloat(3, item->getLaserPower() );
00066 m_writeStmt->setFloat(4, item->getLaserFilter() );
00067 m_writeStmt->setFloat(5, item->getLaserWavelength() );
00068 m_writeStmt->setFloat(6, item->getLaserFanout() );
00069
00070 m_writeStmt->executeUpdate();
00071 } catch (SQLException &e) {
00072 throw(std::runtime_error("MonLaserStatusDat::writeDB(): "+e.getMessage()));
00073 }
00074 }
00075
00076
00077
00078 void MonLaserStatusDat::fetchData(std::map< EcalLogicID, MonLaserStatusDat >* fillMap, MonRunIOV* iov)
00079 throw(std::runtime_error)
00080 {
00081 this->checkConnection();
00082 fillMap->clear();
00083
00084 iov->setConnection(m_env, m_conn);
00085 int iovID = iov->fetchID();
00086 if (!iovID) {
00087
00088 return;
00089 }
00090
00091 try {
00092
00093 m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
00094 "d.laser_power, d.laser_filter, d.laser_wavelength, d.laser_fanout "
00095 "FROM channelview cv JOIN mon_laser_status_dat d "
00096 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
00097 "WHERE d.iov_id = :iov_id");
00098 m_readStmt->setInt(1, iovID);
00099 ResultSet* rset = m_readStmt->executeQuery();
00100
00101 std::pair< EcalLogicID, MonLaserStatusDat > p;
00102 MonLaserStatusDat dat;
00103 while(rset->next()) {
00104 p.first = EcalLogicID( rset->getString(1),
00105 rset->getInt(2),
00106 rset->getInt(3),
00107 rset->getInt(4),
00108 rset->getInt(5),
00109 rset->getString(6));
00110
00111 dat.setLaserPower( rset->getFloat(7) );
00112 dat.setLaserFilter( rset->getFloat(8) );
00113 dat.setLaserWavelength( rset->getFloat(9) );
00114 dat.setLaserFanout( rset->getFloat(10) );
00115
00116 p.second = dat;
00117 fillMap->insert(p);
00118 }
00119 } catch (SQLException &e) {
00120 throw(std::runtime_error("MonLaserStatusDat::fetchData(): "+e.getMessage()));
00121 }
00122 }