Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Converter.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_CONVERTER_H
2 #define GAUDIKERNEL_CONVERTER_H
3 
4 // generic experiment headers
9 #include "GaudiKernel/IService.h"
11 
12 // Forward declarations
13 class IMessageSvc;
14 class IRegistry;
15 
24 class GAUDI_API Converter : public implements<IConverter> {
25 public:
26  using Factory = Gaudi::PluginService::Factory<IConverter*( ISvcLocator* )>;
27 
29  StatusCode initialize() override;
30 
32  StatusCode finalize() override;
33 
35  StatusCode setDataProvider( IDataProviderSvc* svc ) override;
36 
38  SmartIF<IDataProviderSvc>& dataProvider() const override;
39 
41  StatusCode setConversionSvc( IConversionSvc* svc ) override;
42 
44  SmartIF<IConversionSvc>& conversionSvc() const override;
45 
47  StatusCode setAddressCreator( IAddressCreator* creator ) override;
48 
50  SmartIF<IAddressCreator>& addressCreator() const override;
51 
53  const CLID& objType() const override;
54 
56  // MSF: Masked to generate compiler error due to interface change
57  virtual long i_repSvcType() const;
58 
60  StatusCode createObj( IOpaqueAddress* pAddress, DataObject*& refpObject ) override;
61 
63  StatusCode fillObjRefs( IOpaqueAddress* pAddress, DataObject* pObject ) override;
64 
66  StatusCode updateObj( IOpaqueAddress* pAddress, DataObject* refpObject ) override;
67 
69  StatusCode updateObjRefs( IOpaqueAddress* pAddress, DataObject* pObject ) override;
70 
72  StatusCode createRep( DataObject* pObject, IOpaqueAddress*& refpAddress ) override;
73 
75  StatusCode fillRepRefs( IOpaqueAddress* pAddress, DataObject* pObject ) override;
76 
78  StatusCode updateRep( IOpaqueAddress* pAddress, DataObject* pObject ) override;
79 
81  StatusCode updateRepRefs( IOpaqueAddress* pAddress, DataObject* pObject ) override;
82 
84  Converter( long storage_type, const CLID& class_type, ISvcLocator* svc = 0 );
85 
87  template <class T>
88  StatusCode service( const std::string& name, T*& psvc, bool createIf = false ) const {
89  return service_i( name, createIf, T::interfaceID(), (void**)&psvc );
90  }
91 
93  template <class T>
94  StatusCode service( const std::string& type, const std::string& name, T*& psvc ) const {
95  return service_i( type, name, T::interfaceID(), reinterpret_cast<void**>( &psvc ) );
96  }
97 
99  SmartIF<IService> service( const std::string& name, const bool createIf = true ) const;
100 
101 protected:
103  SmartIF<ISvcLocator>& serviceLocator() const;
105  SmartIF<IMessageSvc>& msgSvc() const;
107  SmartIF<IDataManagerSvc>& dataManager() const;
108 
109 private:
126 
128  StatusCode service_i( const std::string& svcName, bool createIf, const InterfaceID& iid, void** ppSvc ) const;
129  StatusCode service_i( const std::string& svcType, const std::string& svcName, const InterfaceID& iid,
130  void** ppSvc ) const;
131 };
132 
133 // Identified class for converters' factories
134 class GAUDI_API ConverterID final {
135 public:
136  ConverterID( long stype, CLID clid ) : m_stype( stype ), m_clid( clid ) {}
137  inline bool operator==( const ConverterID& id ) const { return m_stype == id.m_stype && m_clid == id.m_clid; }
138 
139 private:
140  friend std::ostream& operator<<( std::ostream&, const ConverterID& );
141  long m_stype;
143 };
144 
146  return s << "CNV_" << id.m_stype << "_" << id.m_clid;
147 }
148 
149 // Macro to declare component factories
150 #define DECLARE_CONVERTER( x ) DECLARE_COMPONENT_WITH_ID( x, ConverterID( x::storageType(), x::classID() ) )
151 
152 #endif // GAUDIKERNEL_CONVERTER_H
SmartIF< IAddressCreator > m_addressCreator
Pointer to the address creation service interface.
Definition: Converter.h:115
SmartIF< ISvcLocator > m_svcLocator
Service Locator reference.
Definition: Converter.h:123
Base class used to implement the interfaces.
Definition: implements.h:9
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
CLID m_clid
Definition: Converter.h:142
SmartIF< IDataManagerSvc > m_dataManager
Pointer to data manager service.
Definition: Converter.h:119
IAddressCreator interface definition.
std::ostream & operator<<(std::ostream &s, const ConverterID &id)
Definition: Converter.h:145
Gaudi::PluginService::Factory< IConverter *(ISvcLocator *)> Factory
Definition: Converter.h:26
SmartIF< IMessageSvc > m_messageSvc
MessageSvc reference.
Definition: Converter.h:125
long m_stype
Definition: Converter.h:141
Data provider interface definition.
STL class.
SmartIF< IConversionSvc > m_conversionSvc
Pointer to the connected conversion service.
Definition: Converter.h:121
Interface ID class.
Definition: IInterface.h:29
long m_storageType
Storage type.
Definition: Converter.h:111
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
StatusCode service(const std::string &name, T *&psvc, bool createIf=false) const
Access a service by name, creating it if it doesn&#39;t already exist.
Definition: Converter.h:88
The IMessage is the interface implemented by the message service.
Definition: IMessageSvc.h:37
const CLID m_classType
Class type the converter can handle.
Definition: Converter.h:113
bool operator==(const ConverterID &id) const
Definition: Converter.h:137
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
ConverterID(long stype, CLID clid)
Definition: Converter.h:136
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
Converter base class.
Definition: Converter.h:24
string s
Definition: gaudirun.py:312
StatusCode service(const std::string &type, const std::string &name, T *&psvc) const
Access a service by name, type creating it if it doesn&#39;t already exist.
Definition: Converter.h:94
Opaque address interface definition.
#define GAUDI_API
Definition: Kernel.h:71
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30
STL class.
SmartIF< IDataProviderSvc > m_dataProvider
Pointer to data provider service.
Definition: Converter.h:117