10 #include <openssl/sha.h>
14 #include "RelationalAccess/ITransaction.h"
15 #include "RelationalAccess/ISessionProxy.h"
16 #include "RelationalAccess/ISchema.h"
17 #include "RelationalAccess/ITable.h"
18 #include "RelationalAccess/IQuery.h"
19 #include "RelationalAccess/ICursor.h"
20 #include "RelationalAccess/ITableDataEditor.h"
21 #include "RelationalAccess/TableDescription.h"
22 #include "CoralBase/Attribute.h"
23 #include "CoralBase/AttributeList.h"
24 #include "CoralBase/TimeStamp.h"
28 template <
typename SiStripPayload>
56 template <
typename SiStripPayload>
59 m_cfgMapSchemaName(iConfig.getUntrackedParameter<std::
string>(
"cfgMapSchemaName",
"CMS_COND_O2O")),
60 m_cfgMapTableName(iConfig.getUntrackedParameter<std::
string>(
"cfgMapTableName",
"STRIP_CONFIG_TO_PAYLOAD_MAP")),
61 m_condDb(iConfig.getParameter<std::
string>(
"conditionDatabase")),
62 m_localCondDbFile(iConfig.getParameter<std::
string>(
"condDbFile")),
63 m_targetTag(iConfig.getParameter<std::
string>(
"targetTag")),
64 m_since(iConfig.getParameter<uint32_t>(
"since")),
65 p_type(cond::demangledName(typeid(SiStripPayload))) {
68 if (iConfig.
exists(
"configMapDatabase"))
70 if (iConfig.
exists(
"cfgMapDbFile"))
76 template <
typename SiStripPayload>
79 template <
typename SiStripPayload>
89 std::shared_ptr<SiStripPayload> payloadToUpload;
93 std::string mappedPayloadHash = queryConfigMap(configHash);
94 bool mapUpToDate =
false;
96 if (!mappedPayloadHash.empty()) {
100 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
101 <<
"Try retrieving payload from " << m_condDb;
102 payloadToUpload = condDbSession.
fetchPayload<SiStripPayload>(mappedPayloadHash);
103 std::cout <<
"@@@[FastO2O:true]@@@" << std::endl;
104 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
105 <<
" ... Payload is copied from offline condition database.";
108 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
109 <<
"NO mapping payload hash found. Will run the long O2O. ";
110 SiStripPayload*
obj =
nullptr;
117 payloadToUpload = std::shared_ptr<SiStripPayload>(
obj);
118 std::cout <<
"@@@[FastO2O:false]@@@" << std::endl;
119 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
120 <<
" ... New payload has been created.";
125 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
126 <<
"Write payload to local sqlite file: " << m_localCondDbFile;
134 iovEditor.
insert(m_since, thePayloadHash);
137 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
138 <<
"Payload " << thePayloadHash <<
" inserted to sqlite with IOV " << m_since;
142 updateConfigMap(configHash, thePayloadHash);
146 if (last_hash == thePayloadHash) {
147 std::cout <<
"@@@[PayloadChange:false]@@@" << last_hash << std::endl;
149 std::cout <<
"@@@[PayloadChange:true]@@@" << last_hash <<
" -> " << thePayloadHash << std::endl;
153 template <
typename SiStripPayload>
156 template <
typename SiStripPayload>
158 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
159 <<
"Convert config string to SHA-1 hash for " << p_type
160 <<
"\n... config: " << p_cfgstr;
165 if (!SHA1_Init(&ctx)) {
168 if (!SHA1_Update(&ctx, p_type.c_str(), p_type.size())) {
171 if (!SHA1_Update(&ctx, p_cfgstr.c_str(), p_cfgstr.size())) {
174 unsigned char hash[SHA_DIGEST_LENGTH];
175 if (!SHA1_Final(hash, &ctx)) {
179 char tmp[SHA_DIGEST_LENGTH * 2 + 1];
181 for (
unsigned int i = 0;
i < SHA_DIGEST_LENGTH;
i++) {
182 ::sprintf(&tmp[
i * 2],
"%02x", hash[i]);
184 tmp[SHA_DIGEST_LENGTH * 2] = 0;
186 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__
193 template <
typename SiStripPayload>
195 if (m_configMapDb.empty())
198 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
199 <<
"Query " << m_configMapDb <<
" to see if the payload is already in DB.";
201 auto cmDbSession = m_connectionPool.createCoralSession(m_configMapDb);
203 cmDbSession->transaction().start(
true);
204 coral::ITable& cmTable = cmDbSession->schema(m_cfgMapSchemaName).tableHandle(m_cfgMapTableName);
205 std::unique_ptr<coral::IQuery>
query(cmTable.newQuery());
206 query->addToOutputList(
"PAYLOAD_HASH");
207 query->defineOutputType(
"PAYLOAD_HASH", coral::AttributeSpecification::typeNameForType<std::string>());
209 query->addToOutputList(
"PAYLOAD_TYPE");
210 query->addToOutputList(
"CONFIG_STRING");
211 query->addToOutputList(
"INSERTION_TIME");
212 std::string whereClause(
"CONFIG_HASH = :CONFIG_HASH");
213 coral::AttributeList whereData;
215 whereData.begin()->data<
std::string>() = configHash;
216 query->setCondition(whereClause, whereData);
217 coral::ICursor& cursor =
query->execute();
221 p_hash = cursor.currentRow()[
"PAYLOAD_HASH"].data<
std::string>();
223 <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
224 <<
"Found associated payload hash " << p_hash
225 <<
"\n... type=" << cursor.currentRow()[
"PAYLOAD_TYPE"].data<
std::string>()
226 <<
"\n... config=" << cursor.currentRow()[
"CONFIG_STRING"].data<
std::string>()
227 <<
"\n... insertion_time=" << cursor.currentRow()[
"INSERTION_TIME"].data<coral::TimeStamp>().
toString();
229 cmDbSession->transaction().commit();
234 template <
typename SiStripPayload>
236 if (m_cfgMapDbFile.empty())
239 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
240 <<
"Updating the config to payload hash map to " << m_cfgMapDbFile;
243 auto cmSQLiteSession = m_connectionPool.createCoralSession(m_cfgMapDbFile,
true);
244 cmSQLiteSession->transaction().start(
false);
246 if (!cmSQLiteSession->nominalSchema().existsTable(m_cfgMapTableName)) {
248 coral::TableDescription mapTable;
249 mapTable.setName(m_cfgMapTableName);
250 mapTable.insertColumn(
"CONFIG_HASH", coral::AttributeSpecification::typeNameForType<std::string>());
251 mapTable.insertColumn(
"PAYLOAD_HASH", coral::AttributeSpecification::typeNameForType<std::string>());
252 mapTable.insertColumn(
"PAYLOAD_TYPE", coral::AttributeSpecification::typeNameForType<std::string>());
253 mapTable.insertColumn(
"CONFIG_STRING", coral::AttributeSpecification::typeNameForType<std::string>());
254 mapTable.insertColumn(
"INSERTION_TIME", coral::AttributeSpecification::typeNameForType<coral::TimeStamp>());
255 mapTable.setPrimaryKey(
"CONFIG_HASH");
256 mapTable.setNotNullConstraint(
"CONFIG_HASH");
257 mapTable.setNotNullConstraint(
"PAYLOAD_HASH");
258 mapTable.setNotNullConstraint(
"PAYLOAD_TYPE");
259 mapTable.setNotNullConstraint(
"CONFIG_STRING");
260 mapTable.setNotNullConstraint(
"INSERTION_TIME");
261 cmSQLiteSession->nominalSchema().createTable(mapTable);
264 coral::ITable& cmTable = cmSQLiteSession->nominalSchema().tableHandle(m_cfgMapTableName);
265 coral::AttributeList insertData;
271 insertData.extend<coral::TimeStamp>(
"INSERTION_TIME");
272 insertData[
"CONFIG_HASH"].data<
std::string>() = configHash;
273 insertData[
"PAYLOAD_HASH"].data<
std::string>() = payloadHash;
274 insertData[
"PAYLOAD_TYPE"].data<
std::string>() = p_type;
275 insertData[
"CONFIG_STRING"].data<
std::string>() = p_cfgstr;
277 cmTable.dataEditor().insertRow(insertData);
278 cmSQLiteSession->transaction().commit();
279 edm::LogInfo(
"SiStripPayloadHandler") <<
"[SiStripPayloadHandler::" << __func__ <<
"] "
280 <<
"Updated with mapping (configHash : payloadHash)" << configHash <<
" : "
SiStripPayloadHandler< SiStripNoises > SiStripO2ONoises
SiStripPayloadHandler< SiStripFedCabling > SiStripO2OFedCabling
std::string queryConfigMap(std::string configHash)
#define DEFINE_FWK_MODULE(type)
std::string m_cfgMapTableName
void start(bool readOnly=true)
bool exists(std::string const ¶meterName) const
checks if a parameter exists
void updateConfigMap(std::string configHash, std::string payloadHash)
IOVEditor createIov(const std::string &tag, cond::TimeType timeType, cond::SynchronizationType synchronizationType=cond::SYNCH_ANY)
std::unique_ptr< T > fetchPayload(const cond::Hash &payloadHash)
~SiStripPayloadHandler() override
void setDescription(const std::string &description)
void analyze(const edm::Event &evt, const edm::EventSetup &evtSetup) override
Transaction & transaction()
SiStripPayloadHandler< SiStripPedestals > SiStripO2OPedestals
void setParameters(const edm::ParameterSet &connectionPset)
SiStripPayloadHandler< SiStripBadStrip > SiStripO2OBadStrip
unsigned long long Time_t
SiStripPayloadHandler< SiStripApvGain > SiStripO2OApvGain
void getValue(SiStripFedCabling *&val)
std::string m_cfgMapSchemaName
void setLastIovGain(std::shared_ptr< SiStripApvGain > gain)
std::string m_cfgMapDbFile
IOVProxy readIov(const std::string &tag)
cond::persistency::ConnectionPool m_connectionPool
Log< level::Info, false > LogInfo
void insert(cond::Time_t since, const cond::Hash &payloadHash, bool checkType=false)
SiStripPayloadHandler(const edm::ParameterSet &iConfig)
T getParameter(std::string const &) const
std::string getConfigString(const std::type_info &typeInfo)
cond::Hash storePayload(const T &payload, const boost::posix_time::ptime &creationTime=boost::posix_time::microsec_clock::universal_time())
std::string m_localCondDbFile
std::string m_configMapDb
SiStripPayloadHandler< SiStripThreshold > SiStripO2OThreshold
SiStripPayloadHandler< SiStripLatency > SiStripO2OLatency
std::string makeConfigHash()