AlgTool.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_ALGTOOL_H
2 #define GAUDIKERNEL_ALGTOOL_H
3 // ============================================================================
4 // Include files
6 #include "GaudiKernel/IAlgTool.h"
11 #include "GaudiKernel/IProperty.h"
12 #include "GaudiKernel/IService.h"
13 #include "GaudiKernel/IStateful.h"
15 #include "GaudiKernel/IToolSvc.h"
17 #include "GaudiKernel/ToolHandle.h"
18 #include <Gaudi/PluginService.h>
19 
21 
22 #include "GaudiKernel/DataHandle.h"
25 
26 template <class T>
28 
29 class ToolHandleInfo;
30 
31 #include <list>
32 #include <vector>
33 
34 // Forward declarations
35 
49  : public DataHandleHolderBase<PropertyHolder<CommonMessaging<implements<IAlgTool, IDataHandleHolder, IProperty, IStateful>>>>
50 {
51 public:
52 #ifndef __REFLEX__
54 #endif
55 
57  StatusCode queryInterface( const InterfaceID& riid, void** ppvUnknown ) override;
58 
60  const std::string& name() const override;
61 
63  const std::string& type() const override;
64 
66  const IInterface* parent() const override;
67 
68  // State machine implementation
69  StatusCode configure() override { return StatusCode::SUCCESS; }
70  StatusCode initialize() override;
71  StatusCode start() override;
72  StatusCode stop() override;
73  StatusCode finalize() override;
74  StatusCode terminate() override { return StatusCode::SUCCESS; }
75  StatusCode reinitialize() override;
76  StatusCode restart() override;
77  Gaudi::StateMachine::State FSMState() const override { return m_state; }
78  Gaudi::StateMachine::State targetFSMState() const override { return m_targetState; }
79 
81  StatusCode sysInitialize() override;
82 
84  StatusCode sysStart() override;
85 
87  StatusCode sysStop() override;
88 
90  StatusCode sysFinalize() override;
91 
93  StatusCode sysReinitialize() override;
94 
96  StatusCode sysRestart() override;
97 
98 public:
104  AlgTool( const std::string& type, const std::string& name, const IInterface* parent );
105 
107  SmartIF<ISvcLocator>& serviceLocator() const override;
108 
110  ISvcLocator* svcLoc() const { return serviceLocator(); }
111 
115  IDataProviderSvc* evtSvc() const;
116 
118  IToolSvc* toolSvc() const;
119 
125  StatusCode setProperties();
126 
130  template <class T>
131  StatusCode service( const std::string& name, T*& svc, bool createIf = true ) const
132  {
133  return service_i( name, createIf, T::interfaceID(), (void**)&svc );
134  }
135 
138  template <class T>
139  StatusCode service( const std::string& type, const std::string& name, T*& svc ) const
140  {
141  return service_i( type, name, T::interfaceID(), (void**)&svc );
142  }
143 
145  SmartIF<IService> service( const std::string& name, const bool createIf = true, const bool quiet = false ) const;
146 
147  template <typename T>
148  SmartIF<T> service( const std::string& name, const bool createIf = true, const bool quiet = false ) const
149  {
150  return SmartIF<T>( service( name, createIf, quiet ) );
151  }
152 
153 protected:
154  template <typename I>
155  void declareInterface( I* i )
156  {
157  m_interfaceList.emplace_back( I::interfaceID(), i );
158  }
159 
160 public:
162 
163  template <class T>
165  const std::string& doc = "none" )
166  {
167  this->declareTool( hndl ).ignore();
168  return PropertyHolderImpl::declareProperty( name, hndl, doc );
169  }
170 
171  template <class T>
172  StatusCode declareTool( ToolHandle<T>& handle, std::string toolTypeAndName = "", bool createIf = true )
173  {
174  if ( handle.isPublic() ) {
175  return declarePublicTool( handle, toolTypeAndName, createIf );
176  } else {
177  return declarePrivateTool( handle, toolTypeAndName, createIf );
178  }
179  }
180 
181  // ==========================================================================
182  // declare ToolHandleArrays to the AlgTool
183  template <class T>
185  const std::string& doc = "none" )
186  {
187  m_toolHandleArrays.push_back( &hndlArr );
188  return PropertyHolderImpl::declareProperty( name, hndlArr, doc );
189  }
190 
191 public:
192 
193  virtual void acceptDHVisitor( IDataHandleVisitor* ) const override;
194 
195  void commitHandles() override;
196 
197  const DataObjIDColl& inputDataObjs() const override { return m_inputDataObjs; }
198  const DataObjIDColl& outputDataObjs() const override { return m_outputDataObjs; }
199 
200 private:
201  DataObjIDColl m_inputDataObjs, m_outputDataObjs;
202 
203 public:
204  void registerTool( IAlgTool* tool ) const
205  {
206  if ( UNLIKELY( msgLevel( MSG::DEBUG ) ) ) debug() << "Registering tool " << tool->name() << endmsg;
207  m_tools.push_back( tool );
208  }
209 
210  void deregisterTool( IAlgTool* tool ) const
211  {
212  auto it = std::find( m_tools.begin(), m_tools.end(), tool );
213  if ( it != m_tools.end() ) {
214  if ( UNLIKELY( msgLevel( MSG::DEBUG ) ) ) debug() << "De-Registering tool " << tool->name() << endmsg;
215  m_tools.erase( it );
216  } else {
217  if ( UNLIKELY( msgLevel( MSG::DEBUG ) ) ) debug() << "Could not de-register tool " << tool->name() << endmsg;
218  }
219  }
220 
228  template <class T>
229  StatusCode declarePublicTool( ToolHandle<T>& handle, std::string toolTypeAndName = "", bool createIf = true )
230  {
231 
232  if ( toolTypeAndName == "" ) toolTypeAndName = handle.typeAndName();
233 
234  StatusCode sc = handle.initialize( toolTypeAndName, 0, createIf );
235  if ( UNLIKELY( !sc ) ) {
236  throw GaudiException{"Cannot create handle for public tool " + toolTypeAndName, name(), sc};
237  }
238 
239  m_toolHandles.push_back( &handle );
240 
241  return sc;
242  }
243 
251  template <class T>
252  StatusCode declarePrivateTool( ToolHandle<T>& handle, std::string toolTypeAndName = "", bool createIf = true )
253  {
254 
255  if ( toolTypeAndName == "" ) toolTypeAndName = handle.typeAndName();
256 
257  StatusCode sc = handle.initialize( toolTypeAndName, this, createIf );
258  if ( UNLIKELY( !sc ) ) {
259  throw GaudiException{"Cannot create handle for private tool " + toolTypeAndName, name(), sc};
260  }
261 
262  m_toolHandles.push_back( &handle );
263 
264  return sc;
265  }
266 
267  const std::vector<IAlgTool*>& tools() const;
268 
269 protected:
270  std::vector<IAlgTool*>& tools();
271 
274 
275 private:
276  // place IAlgTools defined via ToolHandles in m_tools
277  void initToolHandles() const;
278 
279 public:
280  // ==========================================================================
282  IAuditorSvc* auditorSvc() const;
283 
293  inline IMonitorSvc* monitorSvc() const
294  {
295  // If not already located try to locate it without forcing a creation
296  if ( !m_pMonitorSvc ) m_pMonitorSvc = service( m_monitorSvcName, false, true );
297  return m_pMonitorSvc.get();
298  }
299 
305  template <class T>
306  void declareInfo( const std::string& name, const T& var, const std::string& desc ) const
307  {
308  IMonitorSvc* mS = monitorSvc();
309  if ( mS ) mS->declareInfo( name, var, desc, this );
310  }
311 
319  void declareInfo( const std::string& name, const std::string& format, const void* var, int size,
320  const std::string& desc ) const
321  {
322  IMonitorSvc* mS = monitorSvc();
323  if ( mS ) mS->declareInfo( name, format, var, size, desc, this );
324  }
325 
326  // Standard destructor.
327  ~AlgTool() override;
328 
329 private:
331 
334  const IInterface* m_parent = nullptr;
335 
341 
342  InterfaceList m_interfaceList;
343 
344  // Properties
345  Gaudi::Property<int> m_outputLevel{this, "OutputLevel", MSG::NIL, "output level"};
346 
347  Gaudi::Property<std::string> m_monitorSvcName{this, "MonitorService", "MonitorSvc",
348  "name to use for Monitor Service"};
349 
350  Gaudi::Property<bool> m_auditInit{this, "AuditTools", false, "[[deprecated]] unused"};
351  Gaudi::Property<bool> m_auditorInitialize{this, "AuditInitialize", false, "trigger auditor on initialize()"};
352  Gaudi::Property<bool> m_auditorStart{this, "AuditStart", false, "trigger auditor on start()"};
353  Gaudi::Property<bool> m_auditorStop{this, "AuditStop", false, "trigger auditor on stop()"};
354  Gaudi::Property<bool> m_auditorFinalize{this, "AuditFinalize", false, "trigger auditor on finalize()"};
355  Gaudi::Property<bool> m_auditorReinitialize{this, "AuditReinitialize", false, "trigger auditor on reinitialize()"};
356  Gaudi::Property<bool> m_auditorRestart{this, "AuditRestart", false, "trigger auditor on restart()"};
357 
359 
360  // tools used by tool
364  mutable bool m_toolHandlesInit = false;
365 
367  StatusCode service_i( const std::string& algName, bool createIf, const InterfaceID& iid, void** ppSvc ) const;
368  StatusCode service_i( const std::string& svcType, const std::string& svcName, const InterfaceID& iid,
369  void** ppS ) const;
370 
373 };
374 
375 #ifndef GAUDI_NEW_PLUGIN_SERVICE
376 template <class T>
377 struct ToolFactory {
378  template <typename S, typename... Args>
379  static typename S::ReturnType create( Args&&... args )
380  {
381  return new T( std::forward<Args>( args )... );
382  }
383 };
384 
385 // Macros to declare component factories
386 #define DECLARE_TOOL_FACTORY( x ) DECLARE_FACTORY_WITH_CREATOR( x, ToolFactory<x>, AlgTool::Factory )
387 #define DECLARE_NAMESPACE_TOOL_FACTORY( n, x ) DECLARE_TOOL_FACTORY( n::x )
388 
389 #else
390 
391 // Macros to declare component factories
392 #define DECLARE_TOOL_FACTORY( x ) DECLARE_COMPONENT( x )
393 #define DECLARE_NAMESPACE_TOOL_FACTORY( n, x ) DECLARE_COMPONENT( n::x )
394 
395 #endif
396 
397 #endif // GAUDIKERNEL_ALGTOOL_H
The interface implemented by the IToolSvc base class.
Definition: IToolSvc.h:19
Gaudi::StateMachine::State targetFSMState() const override
Definition: AlgTool.h:78
SmartIF< IMonitorSvc > m_pMonitorSvc
Online Monitoring Service.
Definition: AlgTool.h:339
Define general base for Gaudi exception.
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
GAUDI_API std::string format(const char *,...)
MsgStream format utility "a la sprintf(...)".
Definition: MsgStream.cpp:119
std::string m_type
AlgTool type (concrete class name)
Definition: AlgTool.h:332
const DataObjIDColl & outputDataObjs() const override
Definition: AlgTool.h:198
Implementation of property with value of concrete type.
Definition: Property.h:314
StatusCode declarePrivateTool(ToolHandle< T > &handle, std::string toolTypeAndName="", bool createIf=true)
Declare used private tool.
Definition: AlgTool.h:252
bool isPublic() const noexcept
Definition: ToolHandle.h:38
void deregisterTool(IAlgTool *tool) const
Definition: AlgTool.h:210
std::list< std::pair< InterfaceID, void * > > InterfaceList
Definition: AlgTool.h:330
#define UNLIKELY(x)
Definition: Kernel.h:126
Array of Handles to be used in lieu of vector of naked pointers to tools.
Gaudi::Details::PropertyBase * declareProperty(const std::string &name, ToolHandle< T > &hndl, const std::string &doc="none")
Definition: AlgTool.h:164
State
Allowed states for classes implementing the state machine (ApplicationMgr, Algorithm, Service, AlgTool).
Definition: StateMachine.h:12
void registerTool(IAlgTool *tool) const
Definition: AlgTool.h:204
Data provider interface definition.
std::vector< IAlgTool * > m_tools
Definition: AlgTool.h:361
STL class.
const std::string m_name
AlgTool full name.
Definition: AlgTool.h:333
DataObjectHandle.h GaudiKernel/DataObjectHandle.h.
Definition: AlgTool.h:27
Gaudi::StateMachine::State FSMState() const override
Definition: AlgTool.h:77
Interface ID class.
Definition: IInterface.h:30
IMonitorSvc * monitorSvc() const
Access the monitor service.
Definition: AlgTool.h:293
StatusCode queryInterface(const InterfaceID &ti, void **pp) override
Implementation of IInterface::queryInterface.
Definition: extends.h:28
static S::ReturnType create(Args &&...args)
Definition: AlgTool.h:379
ISvcLocator * svcLoc() const
shortcut for the method service locator
Definition: AlgTool.h:110
Definition of the IMonitorSvc interface, which publishes Gaudi variables to outside monitoring proces...
Definition: IMonitorSvc.h:21
void declareInfo(const std::string &name, const std::string &format, const void *var, int size, const std::string &desc) const
Declare monitoring information (special case)
Definition: AlgTool.h:319
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
const DataObjIDColl & inputDataObjs() const override
Definition: AlgTool.h:197
Gaudi::Details::PropertyBase * declareProperty(const std::string &name, TYPE &value, const std::string &doc="none")
Declare a property (templated)
std::string typeAndName() const override
Definition: ToolHandle.h:227
Definition of the basic interface.
Definition: IInterface.h:234
StatusCode configure() override
Definition: AlgTool.h:69
std::string m_threadID
Thread Id for Alg Tool.
Definition: AlgTool.h:358
StatusCode service(const std::string &name, T *&svc, bool createIf=true) const
Access a service by name, creating it if it doesn&#39;t already exist.
Definition: AlgTool.h:131
start
Definition: IOTest.py:88
PropertyBase base class allowing PropertyBase* collections to be "homogeneous".
Definition: Property.h:32
SmartIF< IToolSvc > m_ptoolSvc
Tool service.
Definition: AlgTool.h:338
STL class.
SmartIF< IAuditorSvc > m_pAuditorSvc
Auditor Service.
Definition: AlgTool.h:340
void declareInfo(const std::string &name, const T &var, const std::string &desc) const
Declare monitoring information.
Definition: AlgTool.h:306
Handle to be used in lieu of naked pointers to tools.
StatusCode initialize(const std::string &toolTypeAndName, const IInterface *parent=nullptr, bool createIf=true)
Definition: ToolHandle.h:188
T find(T...args)
StatusCode declareTool(ToolHandle< T > &handle, std::string toolTypeAndName="", bool createIf=true)
Definition: AlgTool.h:172
virtual void declareInfo(const std::string &name, const bool &var, const std::string &desc, const IInterface *owner)=0
Declare monitoring information.
std::vector< BaseToolHandle * > m_toolHandles
Definition: AlgTool.h:362
DataObjIDColl m_outputDataObjs
Definition: AlgTool.h:201
Class wrapping the signature for a factory with any number of arguments.
Definition: PluginService.h:47
StatusCode service(const std::string &type, const std::string &name, T *&svc) const
Access a service by name, type creating it if it doesn&#39;t already exist.
Definition: AlgTool.h:139
void declareInterface(I *i)
Definition: AlgTool.h:155
StatusCode declarePublicTool(ToolHandle< T > &handle, std::string toolTypeAndName="", bool createIf=true)
Declare used public tool.
Definition: AlgTool.h:229
SmartIF< T > service(const std::string &name, const bool createIf=true, const bool quiet=false) const
Definition: AlgTool.h:148
Base class from which all the concrete tool classes should be derived.
Definition: AlgTool.h:48
The interface implemented by the AlgTool base class.
Definition: IAlgTool.h:23
SmartIF< ISvcLocator > m_svcLocator
Pointer to Service Locator service.
Definition: AlgTool.h:336
SmartIF< IDataProviderSvc > m_evtSvc
Event data service.
Definition: AlgTool.h:337
InterfaceList m_interfaceList
Interface list.
Definition: AlgTool.h:342
StatusCode terminate() override
Definition: AlgTool.h:74
The interface implemented by the IAuditorSvc base class.
Definition: IAuditorSvc.h:15
#define GAUDI_API
Definition: Kernel.h:107
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:244
virtual const std::string & name() const =0
Retrieve the name of the instance.
General info and helper functions for toolhandles and arrays.
Definition: ToolHandle.h:25
Gaudi::PluginService::Factory< IAlgTool *, const std::string &, const std::string &, const IInterface * > Factory
Definition: AlgTool.h:53
std::vector< GaudiHandleArrayBase * > m_toolHandleArrays
Definition: AlgTool.h:363
std::unique_ptr< IDataHandleVisitor > m_updateDataHandles
Hook for for derived classes to provide a custom visitor for data handles.
Definition: AlgTool.h:273
Gaudi::Details::PropertyBase * declareProperty(const std::string &name, ToolHandleArray< T > &hndlArr, const std::string &doc="none")
Definition: AlgTool.h:184