CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DbConnectionConfiguration.cc
Go to the documentation of this file.
1 //local includes
5 // CMSSW includes
7 //#include "FWCore/MessageLogger/interface/MessageLogger.h"
8 // coral includes
9 #include "RelationalAccess/IConnectionServiceConfiguration.h"
10 #include "CoralKernel/Context.h"
11 #include "CoralKernel/IProperty.h"
12 #include "CoralKernel/IPropertyManager.h"
13 // externals
14 #include <boost/filesystem/operations.hpp>
15 
16 std::vector<cond::DbConnectionConfiguration>&
18  static std::vector<DbConnectionConfiguration> s_defaultConfigurations;
19  // coral default
20  s_defaultConfigurations.push_back( cond::DbConnectionConfiguration() );
21  // cms default
22  s_defaultConfigurations.push_back( cond::DbConnectionConfiguration( false, 0, false, 10, 60, false, "", "", coral::Error, coral::monitor::Off, false ) );
23  // prod default
24  s_defaultConfigurations.push_back( cond::DbConnectionConfiguration( false, 0, false, 10, 60, false, "", "", coral::Error, coral::monitor::Off, false ) );
25  // tool default
26  s_defaultConfigurations.push_back( cond::DbConnectionConfiguration( false, 0, false, 10, 60, false, "", "",coral::Error, coral::monitor::Off, false ) );
27  // web default
28  s_defaultConfigurations.push_back( cond::DbConnectionConfiguration( false, 0, false, 10, 60, false, "", "",coral::Error, coral::monitor::Off, false ) );
29  return s_defaultConfigurations;
30 }
31 
33  m_connectionSharing(false,false),
34  m_connectionTimeOut(false,0),
35  m_readOnlySessionOnUpdateConnections(false,false),
36  m_connectionRetrialPeriod(false,0),
37  m_connectionRetrialTimeOut(false,0),
38  m_poolAutomaticCleanUp(false,false),
39  m_authPath(""),
40  m_authSys(0),
41  m_transactionId(),
42  m_messageLevel(coral::Error),
43  m_monitoringLevel(coral::monitor::Off),
44  m_SQLMonitoring(false),
45  m_pluginManager(new CoralServiceManager){
46 }
47 
49  int connectionTimeOut,
50  bool readOnlySessionOnUpdateConnections,
51  int connectionRetrialPeriod,
52  int connectionRetrialTimeOut,
53  bool poolAutomaticCleanUp,
54  const::std::string& authenticationPath,
55  const::std::string& transactionId,
56  coral::MsgLevel msgLev,
57  coral::monitor::Level monitorLev,
58  bool SQLMonitoring ):
59  m_connectionSharing(true,connectionSharing),
60  m_connectionTimeOut(true,connectionTimeOut),
61  m_readOnlySessionOnUpdateConnections(true,readOnlySessionOnUpdateConnections),
62  m_connectionRetrialPeriod(true,connectionRetrialPeriod),
63  m_connectionRetrialTimeOut(true,connectionRetrialTimeOut),
64  m_poolAutomaticCleanUp(true,poolAutomaticCleanUp),
65  m_authPath(authenticationPath),
66  m_authSys(0),
67  m_transactionId(transactionId),
68  m_messageLevel(msgLev),
69  m_monitoringLevel(monitorLev),
70  m_SQLMonitoring(SQLMonitoring),
71  m_pluginManager(new CoralServiceManager){
72 }
73 
75  m_connectionSharing(rhs.m_connectionSharing),
76  m_connectionTimeOut(rhs.m_connectionTimeOut),
77  m_readOnlySessionOnUpdateConnections(rhs.m_readOnlySessionOnUpdateConnections),
78  m_connectionRetrialPeriod(rhs.m_connectionRetrialPeriod),
79  m_connectionRetrialTimeOut(rhs.m_connectionRetrialTimeOut),
80  m_poolAutomaticCleanUp(rhs.m_poolAutomaticCleanUp),
81  m_authPath(rhs.m_authPath),
82  m_authSys(rhs.m_authSys),
83  m_transactionId(rhs.m_transactionId),
84  m_messageLevel(rhs.m_messageLevel),
85  m_monitoringLevel(rhs.m_monitoringLevel),
86  m_SQLMonitoring(rhs.m_SQLMonitoring),
87  m_pluginManager(new CoralServiceManager){
88 }
89 
91  delete m_pluginManager;
92 }
93 
96  m_connectionSharing = rhs.m_connectionSharing;
97  m_connectionTimeOut = rhs.m_connectionTimeOut;
98  m_readOnlySessionOnUpdateConnections = rhs.m_readOnlySessionOnUpdateConnections;
99  m_connectionRetrialPeriod = rhs.m_connectionRetrialPeriod;
100  m_connectionRetrialTimeOut = rhs.m_connectionRetrialTimeOut;
101  m_poolAutomaticCleanUp = rhs.m_poolAutomaticCleanUp;
102  m_authPath = rhs.m_authPath;
103  m_authSys = rhs.m_authSys;
104  m_transactionId=rhs.m_transactionId;
105  m_messageLevel = rhs.m_messageLevel;
106  m_monitoringLevel = rhs.m_monitoringLevel;
107  m_SQLMonitoring = rhs.m_SQLMonitoring;
108  return *this;
109 }
110 
112  std::string authPath = connectionPset.getUntrackedParameter<std::string>("authenticationPath","");
113  setAuthenticationPath(authPath);
114  int authSysPar = connectionPset.getUntrackedParameter<int>("authenticationSystem",0);
115  setAuthenticationSystem( authSysPar );
116  setTransactionId(connectionPset.getUntrackedParameter<std::string>("transactionId",""));
117  int messageLevel = connectionPset.getUntrackedParameter<int>("messageLevel",0);
118  coral::MsgLevel level = coral::Error;
119  switch (messageLevel) {
120  case 0 :
121  level = coral::Error;
122  break;
123  case 1:
124  level = coral::Warning;
125  break;
126  case 2:
127  level = coral::Info;
128  break;
129  case 3:
130  level = coral::Debug;
131  break;
132  default:
133  level = coral::Error;
134  }
135  setMessageLevel(level);
136  bool enableConnectionSharing = connectionPset.getUntrackedParameter<bool>("enableConnectionSharing",true);
137  setConnectionSharing( enableConnectionSharing );
138  int connectionTimeOut = connectionPset.getUntrackedParameter<int>("connectionTimeOut",600);
139  setConnectionTimeOut( connectionTimeOut );
140  bool enableReadOnlySessionOnUpdateConnection = connectionPset.getUntrackedParameter<bool>("enableReadOnlySessionOnUpdateConnection",true);
141  setReadOnlySessionOnUpdateConnections( enableReadOnlySessionOnUpdateConnection );
142  int connectionRetrialPeriod = connectionPset.getUntrackedParameter<int>("connectionRetrialPeriod",30);
143  setConnectionRetrialPeriod( connectionRetrialPeriod );
144  int connectionRetrialTimeOut = connectionPset.getUntrackedParameter<int>("connectionRetrialTimeOut",180);
145  setConnectionRetrialTimeOut( connectionRetrialTimeOut );
146  bool enablePoolAutomaticCleanUp = connectionPset.getUntrackedParameter<bool>("enablePoolAutomaticCleanUp",false);
147  setPoolAutomaticCleanUp( enablePoolAutomaticCleanUp );
148  //int idleConnectionCleanupPeriod = connectionPset.getUntrackedParameter<int>("idleConnectionCleanupPeriod",300);
149 }
150 
152  m_connectionSharing.first = true;
153  m_connectionSharing.second = flag;
154 }
155 
157  m_connectionTimeOut.first = true;
158  m_connectionTimeOut.second = timeOut;
159 }
160 
162  m_readOnlySessionOnUpdateConnections.first = true;
163  m_readOnlySessionOnUpdateConnections.second = flag;
164 }
165 
167  m_connectionRetrialPeriod.first = true;
168  m_connectionRetrialPeriod.second = period;
169 }
170 
172  m_connectionRetrialTimeOut.first = true;
173  m_connectionRetrialTimeOut.second = timeout;
174 }
175 
177  m_poolAutomaticCleanUp.first = true;
178  m_poolAutomaticCleanUp.second = flag;
179 }
180 
182  m_authPath = p;
183 }
184 
186  m_authSys = authSysCode;
187 }
188 
190  m_transactionId=tid;
191 }
192 
194  m_messageLevel = l;
195 }
196 
198 {
199  m_monitoringLevel = l;
200 }
201 
202 
204  m_SQLMonitoring = flag;
205 }
206 
207 void cond::DbConnectionConfiguration::configure( coral::IConnectionServiceConfiguration& coralConfig) const
208 {
209  // message streaming
210  coral::MessageStream::setMsgVerbosity( m_messageLevel );
211  std::string authServiceName("CORAL/Services/EnvironmentAuthenticationService");
212  std::string authPath = m_authPath;
213  // authentication
214  if( authPath.empty() ){
215  // first try to check the env...
216  const char* authEnv = ::getenv( Auth::COND_AUTH_PATH );
217  if(authEnv){
218  authPath += authEnv;
219  }
220  }
221  int authSys = m_authSys;
222  if( authSys != CondDbKey && authSys != CoralXMLFile ){
223  // first attempt, look at the env...
224  const char* authSysEnv = ::getenv( Auth::COND_AUTH_SYS );
225  if( authSysEnv ){
226  authSys = ::atoi( authSysEnv );
227  }
228  }
229  if( authSys != CondDbKey && authSys != CoralXMLFile ){
230  // take the default
231  authSys = CoralXMLFile;
232  }
233  std::string servName("");
234  if( authSys == CondDbKey ){
235  if( authPath.empty() ){
236  const char* authEnv = ::getenv("HOME");
237  if(authEnv){
238  authPath += authEnv;
239  }
240  }
241  servName = "COND/Services/RelationalAuthenticationService";
242  //edm::LogInfo("DbSessionInfo") << "Authentication using Keys";
243  } else if( authSys == CoralXMLFile ){
244  if( authPath.empty() ){
245  authPath = ".";
246  }
247  servName = "COND/Services/XMLAuthenticationService";
248  //edm::LogInfo("DbSessionInfo") << "Authentication using XML File";
249  }
250  if( !authPath.empty() ){
251  authServiceName = servName;
252  coral::Context::instance().PropertyManager().property(Auth::COND_AUTH_PATH_PROPERTY)->set(authPath);
253  coral::Context::instance().loadComponent( authServiceName, m_pluginManager );
254  }
255  coralConfig.setAuthenticationService( authServiceName );
256  // connection sharing
257  if(m_connectionSharing.first)
258  {
259  if(m_connectionSharing.second) coralConfig.enableConnectionSharing();
260  else coralConfig.disableConnectionSharing();
261  }
262  // connection timeout
263  if(m_connectionTimeOut.first)
264  {
265  coralConfig.setConnectionTimeOut(m_connectionTimeOut.second);
266  }
267  // read only session on update connection
268  if(m_readOnlySessionOnUpdateConnections.first)
269  {
270  if(m_readOnlySessionOnUpdateConnections.second) coralConfig.enableReadOnlySessionOnUpdateConnections();
271  else coralConfig.disableReadOnlySessionOnUpdateConnections();
272  }
273  // pool automatic clean up
274  if(m_poolAutomaticCleanUp.first)
275  {
276  if(m_poolAutomaticCleanUp.second) coralConfig.enablePoolAutomaticCleanUp();
277  else coralConfig.disablePoolAutomaticCleanUp();
278  }
279  // connection retrial period
280  if(m_connectionRetrialPeriod.first)
281  {
282  coralConfig.setConnectionRetrialPeriod( m_connectionRetrialPeriod.second );
283  }
284  // connection retrial timeout
285  if( m_connectionRetrialTimeOut.first)
286  {
287  coralConfig.setConnectionRetrialTimeOut(m_connectionRetrialTimeOut.second );
288  }
289  // monitoring level
290  coralConfig.setMonitoringLevel( m_monitoringLevel );
291  // SQL monitoring
292  if( m_SQLMonitoring )
293  {
294  std::string pluginName("COND/Services/SQLMonitoringService");
295  coral::Context::instance().loadComponent( pluginName, m_pluginManager );
296  coralConfig.setMonitoringLevel(coral::monitor::Trace);
297  }
298 
299 }
300 
302 {
303  return m_connectionSharing.second;
304 }
305 
307  return m_connectionTimeOut.second;
308 }
309 
311  return m_readOnlySessionOnUpdateConnections.second;
312 }
313 
315  return m_connectionRetrialPeriod.second;
316 }
317 
319  return m_connectionRetrialTimeOut.second;
320 }
321 
323  return m_poolAutomaticCleanUp.second;
324 }
325 
327 {
328  return m_authPath;
329 }
330 
332  return m_transactionId;
333 }
334 
335 
337 {
338  return m_messageLevel;
339 }
340 
342 {
343  return m_SQLMonitoring;
344 }
345 
DbConnectionConfiguration & operator=(const DbConnectionConfiguration &rhs)
T getUntrackedParameter(std::string const &, T const &) const
long int flag
Definition: mlp_lapack.h:47
const std::string & transactionId() const
void setTransactionId(std::string const &tid)
static PFTauRenderPlugin instance
std::pair< bool, bool > m_poolAutomaticCleanUp
static const std::string COND_AUTH_PATH_PROPERTY
Definition: Auth.h:27
void setParameters(const edm::ParameterSet &connectionPset)
std::pair< bool, int > m_connectionRetrialTimeOut
static const char * COND_AUTH_SYS
Definition: Auth.h:13
void configure(coral::IConnectionServiceConfiguration &coralConfig) const
std::pair< bool, int > m_connectionRetrialPeriod
std::pair< bool, bool > m_readOnlySessionOnUpdateConnections
std::pair< bool, bool > m_connectionSharing
static const char * COND_AUTH_PATH
Definition: Auth.h:12
void setAuthenticationPath(const std::string &p)
const std::string & authenticationPath() const
static std::vector< DbConnectionConfiguration > & defaultConfigurations()
tuple level
Definition: testEve_cfg.py:34
void setMonitoringLevel(coral::monitor::Level l)
const bool Debug