CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PopCon.cc
Go to the documentation of this file.
6 #include <iostream>
7 
8 namespace popcon {
9 
11  m_targetSession(),
12  m_targetConnectionString(pset.getUntrackedParameter< std::string >("targetDBConnectionString","")),
13  m_authPath( pset.getUntrackedParameter<std::string>("authenticationPath","")),
14  m_authSys( pset.getUntrackedParameter<int>("authenticationSystem",1)),
15  m_record(pset.getParameter<std::string> ("record")),
16  m_payload_name(pset.getUntrackedParameter<std::string> ("name","")),
17  m_LoggingOn(pset.getUntrackedParameter< bool > ("loggingOn",true)),
18  m_IsDestDbCheckedInQueryLog( pset.getUntrackedParameter< bool >("IsDestDbCheckedInQueryLog",true)),
19  m_close(pset.getUntrackedParameter< bool > ("closeIOV",false)),
20  m_lastTill(pset.getUntrackedParameter< bool > ("lastTill",0))
21  {
22  //TODO set the policy (cfg or global configuration?)
23  //Policy if corrupted data found
24 
25  edm::LogInfo ("PopCon") << "This is PopCon (Populator of Condition) V4.0\n"
26  << "Please report any problem and feature request through the savannah portal under the category conditions\n" ;
27  }
28 
30  if( !m_targetConnectionString.empty() ) {
32  }
33  }
34 
35 
37  edm::LogInfo ("PopCon")<<"payload name "<<m_payload_name<<std::endl;
38  if(!m_dbService.isAvailable() ) throw Exception("DBService not available");
39  const std::string & connectionStr = m_dbService->session().connectionString();
43  else {
47  connPool.configure();
50  }
54  m_tagInfo.size = iov.sequenceSize();
55  if( m_tagInfo.size>0 ){
56  cond::Iov_t last = iov.getLast();
59  }
60 
61  //if( m_IsDestDbCheckedInQueryLog ) {
62  //m_dbService->queryLog().LookupLastEntryByTag( m_tag, connectionStr, m_logDBEntry );
63  //std::cout <<" ------ log info searched in the same db: "<< connectionStr << "------" <<std::endl;
64  //} else {
65  //m_dbService->queryLog().LookupLastEntryByTag( m_tag, m_logDBEntry );
66  //std::cout <<" ------ log info found in another db "<< "------" <<std::endl;
67  //}
68 
69  edm::LogInfo ("PopCon") << "DB: " << connectionStr << "\n"
70  << "TAG: " << m_tag
71  << ", last since/till: " << m_tagInfo.lastInterval.first
72  << "/" << m_tagInfo.lastInterval.second
73  << ", , size: " << m_tagInfo.size << "\n"
74  << "Last writer: " << m_logDBEntry.provenance
75  << ", size: " << m_logDBEntry.payloadIdx+1 << std::endl;
76  } else {
77  edm::LogInfo ("PopCon") << "DB: " << connectionStr << "\n"
78  << "TAG: " << m_tag
79  << "; First writer to this new tag." << std::endl;
80  }
81  return m_targetSession;
82  }
83 
84 
85  void PopCon::finalize(Time_t lastTill) {
86 
87  if (m_close) {
88  // avoid to close it before lastSince
89  if (m_lastTill>lastTill) lastTill=m_lastTill;
90  m_dbService->closeIOV(lastTill,m_record);
91  }
92  if( !m_targetConnectionString.empty() ) {
94  }
95  }
96 
97 }
cond::LogDBEntry_t m_logDBEntry
Definition: PopCon.h:81
void closeIOV(Time_t lastTill, const std::string &recordName, bool withlogging=false)
void finalize(Time_t lastTill)
Definition: PopCon.cc:85
Time_t m_lastTill
Definition: PopCon.h:84
std::string provenance
Definition: Types.h:92
void start(bool readOnly=true)
Definition: Session.cc:22
cond::persistency::Session session() const
bool m_close
Definition: PopCon.h:83
Time_t since
Definition: Types.h:54
cond::Time_t Time_t
Definition: PopCon.h:36
size_t size
Definition: Types.h:75
std::pair< Time_t, Time_t > ValidityInterval
Definition: Time.h:19
std::string m_tag
Definition: PopCon.h:77
std::string m_record
Definition: PopCon.h:69
Transaction & transaction()
Definition: Session.cc:66
std::string tag(const std::string &recordName)
cond::persistency::Session m_targetSession
Definition: PopCon.h:61
std::string name
Definition: Types.h:71
cond::ValidityInterval lastInterval
Definition: Types.h:73
IOVProxy readIov(const std::string &tag, bool full=false)
Definition: Session.cc:81
tuple iov
Definition: o2o.py:307
void setAuthenticationSystem(int authSysCode)
bool isAvailable() const
Definition: Service.h:46
Hash payloadId
Definition: Types.h:56
Session createSession(const std::string &connectionString, bool writeCapable=false)
std::string m_targetConnectionString
Definition: PopCon.h:63
cond::TagInfo_t m_tagInfo
Definition: PopCon.h:79
std::string connectionString()
Definition: Session.cc:203
PopCon(const edm::ParameterSet &pset)
Definition: PopCon.cc:10
int m_authSys
Definition: PopCon.h:67
cond::persistency::Session initialize()
Definition: PopCon.cc:36
std::string lastPayloadToken
Definition: Types.h:74
bool existsIov(const std::string &tag)
Definition: Session.cc:97
std::string m_authPath
Definition: PopCon.h:65
virtual ~PopCon()
Definition: PopCon.cc:29
unsigned int payloadIdx
Definition: Types.h:96
volatile std::atomic< bool > shutdown_flag false
void setAuthenticationPath(const std::string &p)
std::string m_payload_name
Definition: PopCon.h:71
edm::Service< cond::service::PoolDBOutputService > m_dbService
Definition: PopCon.h:59
Time_t till
Definition: Types.h:55