The Gaudi Framework  v29r0 (ff2e7097)
DataObject.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_DATAOBJECT_H
2 #define GAUDIKERNEL_DATAOBJECT_H
3 
4 // Framework include files
5 #include "GaudiKernel/ClassID.h"
7 
8 // STL includes
9 #include <ostream>
10 #include <string>
11 
12 // Forward declarations
13 class IOpaqueAddress;
14 class StreamBuffer;
15 class LinkManager;
16 class IRegistry;
17 
18 // Definition of the CLID for this class
19 static const CLID CLID_DataObject = 1;
20 
30 {
31 private:
33  unsigned long m_refCount = 0;
35  unsigned char m_version = 0;
37  IRegistry* m_pRegistry = nullptr;
40 
41 public:
43  DataObject();
45  DataObject( const DataObject& rhs );
47  DataObject& operator=( const DataObject& rhs );
49  DataObject( DataObject&& rhs );
53  virtual ~DataObject();
55  virtual unsigned long addRef();
57  virtual unsigned long release();
59  virtual const CLID& clID() const;
61  static const CLID& classID();
63  const std::string& name() const;
64 
66  virtual StatusCode update();
67 
69  void setRegistry( IRegistry* pRegistry ) { m_pRegistry = pRegistry; }
72  IRegistry* registry() const { return m_pRegistry; }
74  LinkManager* linkMgr() const { return m_pLinkMgr.get(); }
76  unsigned char version() const { return m_version; }
78  void setVersion( unsigned char vsn ) { m_version = vsn; }
80  unsigned long refCount() const { return m_refCount; }
83  {
84  s << "DataObject at " << std::hex << this;
85  return s;
86  }
88  friend std::ostream& operator<<( std::ostream& s, const DataObject& obj ) { return obj.fillStream( s ); }
89 };
90 
91 // Additional functions to support the Serialization of objects in the transient store
92 
93 namespace Gaudi
94 {
95  GAUDI_API void pushCurrentDataObject( DataObject** pobjAddr );
98 }
99 
100 #endif // GAUDIKERNEL_DATAOBJECT_H
GAUDI_API void popCurrentDataObject()
The stream buffer is a small object collecting object data.
Definition: StreamBuffer.h:41
GAUDI_API DataObject * getCurrentDataObject()
IRegistry * registry() const
Get pointer to Registry.
Definition: DataObject.h:72
LinkManager * linkMgr() const
Retrieve Link manager.
Definition: DataObject.h:74
PropertyMgr & operator=(const PropertyMgr &)=delete
STL class.
virtual std::ostream & fillStream(std::ostream &s) const
Fill the output stream (ASCII)
Definition: DataObject.h:82
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
unsigned long refCount() const
Return the refcount.
Definition: DataObject.h:80
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
GAUDI_API void pushCurrentDataObject(DataObject **pobjAddr)
unsigned char version() const
Retrieve version number of this object representation.
Definition: DataObject.h:76
T get(T...args)
friend std::ostream & operator<<(std::ostream &s, const DataObject &obj)
Output operator (ASCII)
Definition: DataObject.h:88
std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
string s
Definition: gaudirun.py:253
T hex(T...args)
Opaque address interface definition.
#define GAUDI_API
Definition: Kernel.h:110
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:29
STL class.
Helper functions to set/get the application return code.
Definition: __init__.py:1
void setVersion(unsigned char vsn)
Set version number of this object representation.
Definition: DataObject.h:78