00001 #include <stdexcept>
00002 #include <string>
00003 #include "OnlineDB/Oracle/interface/Oracle.h"
00004
00005 #include "OnlineDB/EcalCondDB/interface/CaliGainRatioDat.h"
00006 #include "OnlineDB/EcalCondDB/interface/CaliTag.h"
00007 #include "OnlineDB/EcalCondDB/interface/CaliIOV.h"
00008
00009 using namespace std;
00010 using namespace oracle::occi;
00011
00012 CaliGainRatioDat::CaliGainRatioDat()
00013 {
00014 m_env = NULL;
00015 m_conn = NULL;
00016 m_writeStmt = NULL;
00017
00018 m_g1_g12 = 0;
00019 m_g6_g12 = 0;
00020 m_taskStatus = false;
00021 }
00022
00023
00024
00025 CaliGainRatioDat::~CaliGainRatioDat()
00026 {
00027 }
00028
00029
00030
00031 void CaliGainRatioDat::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 cali_gain_ratio_dat (iov_id, logic_id, "
00039 "g1_g6, g6_g12, task_status) "
00040 "VALUES (:iov_id, :logic_id, "
00041 ":3, :4, :5)");
00042 } catch (SQLException &e) {
00043 throw(std::runtime_error("CaliGainRatioDat::prepareWrite(): "+e.getMessage()));
00044 }
00045 }
00046
00047
00048
00049 void CaliGainRatioDat::writeDB(const EcalLogicID* ecid, const CaliGainRatioDat* item, CaliIOV* 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("CaliGainRatioDat::writeDB: IOV not in DB")); }
00057
00058 int logicID = ecid->getLogicID();
00059 if (!logicID) { throw(std::runtime_error("CaliGainRatioDat::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->getG1G12() );
00066 m_writeStmt->setFloat(4, item->getG6G12() );
00067 m_writeStmt->setInt(5, item->getTaskStatus() );
00068
00069 m_writeStmt->executeUpdate();
00070 } catch (SQLException &e) {
00071 throw(std::runtime_error("CaliGainRatioDat::writeDB(): "+e.getMessage()));
00072 }
00073 }
00074
00075
00076
00077 void CaliGainRatioDat::fetchData(std::map< EcalLogicID, CaliGainRatioDat >* fillMap, CaliIOV* iov)
00078 throw(std::runtime_error)
00079 {
00080 this->checkConnection();
00081 fillMap->clear();
00082
00083 iov->setConnection(m_env, m_conn);
00084 int iovID = iov->fetchID();
00085 if (!iovID) {
00086
00087 return;
00088 }
00089
00090 try {
00091
00092 m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
00093 "d.g1_g6, d.g6_g12, d.task_status "
00094 "FROM channelview cv JOIN cali_gain_ratio_dat d "
00095 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
00096 "WHERE d.iov_id = :iov_id");
00097 m_readStmt->setInt(1, iovID);
00098 ResultSet* rset = m_readStmt->executeQuery();
00099
00100 std::pair< EcalLogicID, CaliGainRatioDat > p;
00101 CaliGainRatioDat dat;
00102 while(rset->next()) {
00103 p.first = EcalLogicID( rset->getString(1),
00104 rset->getInt(2),
00105 rset->getInt(3),
00106 rset->getInt(4),
00107 rset->getInt(5),
00108 rset->getString(6));
00109
00110 dat.setG1G12( rset->getFloat(7) );
00111 dat.setG6G12( rset->getFloat(8) );
00112 dat.setTaskStatus( rset->getInt(9) );
00113
00114 p.second = dat;
00115 fillMap->insert(p);
00116 }
00117 } catch (SQLException &e) {
00118 throw(std::runtime_error("CaliGainRatioDat::fetchData(): "+e.getMessage()));
00119 }
00120 }
00121
00122 void CaliGainRatioDat::writeArrayDB(const std::map< EcalLogicID, CaliGainRatioDat >* data, CaliIOV* iov)
00123 throw(std::runtime_error)
00124 {
00125 this->checkConnection();
00126 this->checkPrepare();
00127
00128 int iovID = iov->fetchID();
00129 if (!iovID) { throw(std::runtime_error("CaliGainRatioDat::writeArrayDB: IOV not in DB")); }
00130
00131
00132 int nrows=data->size();
00133 int* ids= new int[nrows];
00134 int* iovid_vec= new int[nrows];
00135 float* xx= new float[nrows];
00136 float* yy= new float[nrows];
00137 int* st= new int[nrows];
00138
00139 ub2* ids_len= new ub2[nrows];
00140 ub2* iov_len= new ub2[nrows];
00141 ub2* x_len= new ub2[nrows];
00142 ub2* y_len= new ub2[nrows];
00143 ub2* st_len= new ub2[nrows];
00144
00145 const EcalLogicID* channel;
00146 const CaliGainRatioDat* dataitem;
00147 int count=0;
00148 typedef map< EcalLogicID, CaliGainRatioDat >::const_iterator CI;
00149 for (CI p = data->begin(); p != data->end(); ++p) {
00150 channel = &(p->first);
00151 int logicID = channel->getLogicID();
00152 if (!logicID) { throw(std::runtime_error("CaliGainRatioDat::writeArrayDB: Bad EcalLogicID")); }
00153 ids[count]=logicID;
00154 iovid_vec[count]=iovID;
00155
00156 dataitem = &(p->second);
00157
00158 float x=dataitem->getG1G12();
00159 float y=dataitem->getG6G12();
00160 int statu=dataitem->getTaskStatus();
00161
00162
00163
00164 xx[count]=x;
00165 yy[count]=y;
00166 st[count]=statu;
00167
00168
00169 ids_len[count]=sizeof(ids[count]);
00170 iov_len[count]=sizeof(iovid_vec[count]);
00171
00172 x_len[count]=sizeof(xx[count]);
00173 y_len[count]=sizeof(yy[count]);
00174 st_len[count]=sizeof(st[count]);
00175
00176 count++;
00177 }
00178
00179
00180 try {
00181 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT, sizeof(iovid_vec[0]),iov_len);
00182 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len );
00183 m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT , sizeof(xx[0]), x_len );
00184 m_writeStmt->setDataBuffer(4, (dvoid*)yy, OCCIFLOAT , sizeof(yy[0]), y_len );
00185 m_writeStmt->setDataBuffer(5, (dvoid*)st, OCCIINT , sizeof(st[0]), st_len );
00186
00187
00188 m_writeStmt->executeArrayUpdate(nrows);
00189
00190 delete [] ids;
00191 delete [] iovid_vec;
00192 delete [] xx;
00193 delete [] yy;
00194 delete [] st;
00195
00196 delete [] ids_len;
00197 delete [] iov_len;
00198 delete [] x_len;
00199 delete [] y_len;
00200 delete [] st_len;
00201
00202
00203
00204 } catch (SQLException &e) {
00205 throw(std::runtime_error("CaliGainRatio::writeArrayDB(): "+e.getMessage()));
00206 }
00207 }