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/FEConfigLinParamDat.h"
00006 #include "OnlineDB/EcalCondDB/interface/FEConfigLinInfo.h"
00007
00008 using namespace std;
00009 using namespace oracle::occi;
00010
00011 FEConfigLinParamDat::FEConfigLinParamDat()
00012 {
00013 m_env = NULL;
00014 m_conn = NULL;
00015 m_writeStmt = NULL;
00016 m_readStmt = NULL;
00017
00018 m_etsat = 0;
00019 }
00020
00021
00022
00023 FEConfigLinParamDat::~FEConfigLinParamDat()
00024 {
00025 }
00026
00027
00028
00029 void FEConfigLinParamDat::prepareWrite()
00030 throw(std::runtime_error)
00031 {
00032 this->checkConnection();
00033
00034 try {
00035 m_writeStmt = m_conn->createStatement();
00036 m_writeStmt->setSQL("INSERT INTO "+getTable()+" (lin_conf_id, logic_id, "
00037 " etsat ) "
00038 "VALUES (:lin_conf_id, :logic_id, "
00039 ":etsat )" );
00040 } catch (SQLException &e) {
00041 throw(std::runtime_error("FEConfigLinParamDat::prepareWrite(): "+e.getMessage()));
00042 }
00043 }
00044
00045
00046
00047 void FEConfigLinParamDat::writeDB(const EcalLogicID* ecid, const FEConfigLinParamDat* item, FEConfigLinInfo* iconf)
00048 throw(std::runtime_error)
00049 {
00050 this->checkConnection();
00051 this->checkPrepare();
00052
00053 int iconfID = iconf->fetchID();
00054 if (!iconfID) { throw(std::runtime_error("FEConfigLinParamDat::writeDB: ICONF not in DB")); }
00055
00056 int logicID = ecid->getLogicID();
00057 if (!logicID) { throw(std::runtime_error("FEConfigLinParamDat::writeDB: Bad EcalLogicID")); }
00058
00059 try {
00060 m_writeStmt->setInt(1, iconfID);
00061 m_writeStmt->setInt(2, logicID);
00062 m_writeStmt->setFloat(3, item->getETSat());
00063
00064 m_writeStmt->executeUpdate();
00065 } catch (SQLException &e) {
00066 throw(std::runtime_error("FEConfigLinParamDat::writeDB(): "+e.getMessage()));
00067 }
00068 }
00069
00070
00071
00072 void FEConfigLinParamDat::fetchData(map< EcalLogicID, FEConfigLinParamDat >* fillMap, FEConfigLinInfo* iconf)
00073 throw(std::runtime_error)
00074 {
00075 this->checkConnection();
00076 fillMap->clear();
00077
00078 iconf->setConnection(m_env, m_conn);
00079 int iconfID = iconf->fetchID();
00080 if (!iconfID) {
00081
00082 return;
00083 }
00084
00085 try {
00086
00087 m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
00088 " d.etsat "
00089 "FROM channelview cv JOIN "+getTable()+" d "
00090 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
00091 "WHERE lin_conf_id = :lin_conf_id");
00092 m_readStmt->setInt(1, iconfID);
00093 ResultSet* rset = m_readStmt->executeQuery();
00094
00095 std::pair< EcalLogicID, FEConfigLinParamDat > p;
00096 FEConfigLinParamDat dat;
00097 while(rset->next()) {
00098 p.first = EcalLogicID( rset->getString(1),
00099 rset->getInt(2),
00100 rset->getInt(3),
00101 rset->getInt(4),
00102 rset->getInt(5),
00103 rset->getString(6));
00104
00105
00106
00107 dat.setETSat( rset->getFloat(7) );
00108
00109 p.second = dat;
00110 fillMap->insert(p);
00111 }
00112 } catch (SQLException &e) {
00113 throw(std::runtime_error("FEConfigLinParamDat::fetchData: "+e.getMessage()));
00114 }
00115 }
00116
00117 void FEConfigLinParamDat::writeArrayDB(const std::map< EcalLogicID, FEConfigLinParamDat >* data, FEConfigLinInfo* iconf)
00118 throw(std::runtime_error)
00119 {
00120 this->checkConnection();
00121 this->checkPrepare();
00122
00123 int iconfID = iconf->fetchID();
00124 if (!iconfID) { throw(std::runtime_error("FEConfigLinParamDat::writeArrayDB: ICONF not in DB")); }
00125
00126
00127 int nrows=data->size();
00128 int* ids= new int[nrows];
00129 int* iov_vec= new int[nrows];
00130 float* xx= new float[nrows];
00131
00132
00133 ub2* ids_len= new ub2[nrows];
00134 ub2* iov_len= new ub2[nrows];
00135 ub2* x_len= new ub2[nrows];
00136
00137 const EcalLogicID* channel;
00138 const FEConfigLinParamDat* dataitem;
00139 int count=0;
00140 typedef map< EcalLogicID, FEConfigLinParamDat >::const_iterator CI;
00141 for (CI p = data->begin(); p != data->end(); ++p) {
00142 channel = &(p->first);
00143 int logicID = channel->getLogicID();
00144 if (!logicID) { throw(std::runtime_error("FEConfigLinParamDat::writeArrayDB: Bad EcalLogicID")); }
00145 ids[count]=logicID;
00146 iov_vec[count]=iconfID;
00147
00148 dataitem = &(p->second);
00149 float x=dataitem->getETSat();
00150
00151 xx[count]=x;
00152
00153 ids_len[count]=sizeof(ids[count]);
00154 iov_len[count]=sizeof(iov_vec[count]);
00155 x_len[count]=sizeof(xx[count]);
00156
00157 count++;
00158 }
00159
00160
00161 try {
00162 m_writeStmt->setDataBuffer(1, (dvoid*)iov_vec, OCCIINT, sizeof(iov_vec[0]),iov_len);
00163 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len );
00164 m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT , sizeof(xx[0]), x_len );
00165
00166 m_writeStmt->executeArrayUpdate(nrows);
00167
00168 delete [] ids;
00169 delete [] iov_vec;
00170 delete [] xx;
00171
00172 delete [] ids_len;
00173 delete [] iov_len;
00174 delete [] x_len;
00175
00176 } catch (SQLException &e) {
00177 throw(std::runtime_error("FEConfigLinParamDat::writeArrayDB(): "+e.getMessage()));
00178 }
00179 }