The Gaudi Framework  v29r0 (ff2e7097)
DataObject Class Reference

A DataObject is the base class of any identifiable object on any data store. More...

#include <GaudiKernel/DataObject.h>

Inheritance diagram for DataObject:
Collaboration diagram for DataObject:

Public Member Functions

 DataObject ()
 Standard Constructor. More...
 
 DataObject (const DataObject &rhs)
 Copy Constructor. More...
 
DataObjectoperator= (const DataObject &rhs)
 Assignment Operator. More...
 
 DataObject (DataObject &&rhs)
 Move Constructor. More...
 
DataObjectoperator= (DataObject &&rhs)
 Move Assignment Operator. More...
 
virtual ~DataObject ()
 Standard Destructor. More...
 
virtual unsigned long addRef ()
 Add reference to object. More...
 
virtual unsigned long release ()
 release reference to object More...
 
virtual const CLIDclID () const
 Retrieve reference to class definition structure. More...
 
const std::stringname () const
 Retreive DataObject name. It is the name when registered in the store. More...
 
virtual StatusCode update ()
 Provide empty placeholder for internal object reconfiguration callback. More...
 

Static Public Member Functions

static const CLIDclassID ()
 Retrieve reference to class definition structure (static access) More...
 

Private Attributes

unsigned long m_refCount = 0
 Reference count. More...
 
unsigned char m_version = 0
 Version number. More...
 
IRegistrym_pRegistry = nullptr
 Pointer to the Registry Object. More...
 
std::unique_ptr< LinkManagerm_pLinkMgr
 Store of symbolic links. More...
 

inline code of class DataObject

void setRegistry (IRegistry *pRegistry)
 Set pointer to Registry. More...
 
IRegistryregistry () const
 Get pointer to Registry. More...
 
LinkManagerlinkMgr () const
 Retrieve Link manager. More...
 
unsigned char version () const
 Retrieve version number of this object representation. More...
 
void setVersion (unsigned char vsn)
 Set version number of this object representation. More...
 
unsigned long refCount () const
 Return the refcount. More...
 
virtual std::ostreamfillStream (std::ostream &s) const
 Fill the output stream (ASCII) More...
 
std::ostreamoperator<< (std::ostream &s, const DataObject &obj)
 Output operator (ASCII) More...
 

Detailed Description

A DataObject is the base class of any identifiable object on any data store.

The base class supplies the implementation of data streaming.

Author
M.Frank

Definition at line 29 of file DataObject.h.

Constructor & Destructor Documentation

DataObject::DataObject ( )

Standard Constructor.

Definition at line 13 of file DataObject.cpp.

std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
DataObject::DataObject ( const DataObject rhs)

Copy Constructor.

Definition at line 16 of file DataObject.cpp.

unsigned char m_version
Version number.
Definition: DataObject.h:35
std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
DataObject::DataObject ( DataObject &&  rhs)

Move Constructor.

Definition at line 27 of file DataObject.cpp.

29 {
30 }
unsigned char m_version
Version number.
Definition: DataObject.h:35
T move(T...args)
std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
DataObject::~DataObject ( )
virtual

Standard Destructor.

Definition at line 41 of file DataObject.cpp.

42 {
43  // Issue a warning if the object is being deleted and the reference
44  // count is non-zero.
45  if ( m_refCount > 0 ) {
46  // Insert warning here
47  }
48 }
unsigned long m_refCount
Reference count.
Definition: DataObject.h:33

Member Function Documentation

unsigned long DataObject::addRef ( )
virtual

Add reference to object.

Definition at line 59 of file DataObject.cpp.

59 { return ++m_refCount; }
unsigned long m_refCount
Reference count.
Definition: DataObject.h:33
const CLID & DataObject::classID ( )
static

Retrieve reference to class definition structure (static access)

Retrieve Pointer to class definition structure.

Definition at line 65 of file DataObject.cpp.

65 { return CLID_DataObject; }
virtual std::ostream& DataObject::fillStream ( std::ostream s) const
inlinevirtual

Fill the output stream (ASCII)

Reimplemented in ObjectVector< TYPE >, and ObjectList< TYPE >.

Definition at line 82 of file DataObject.h.

83  {
84  s << "DataObject at " << std::hex << this;
85  return s;
86  }
string s
Definition: gaudirun.py:253
T hex(T...args)
LinkManager* DataObject::linkMgr ( ) const
inline

Retrieve Link manager.

Definition at line 74 of file DataObject.h.

74 { return m_pLinkMgr.get(); }
T get(T...args)
std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
const std::string & DataObject::name ( ) const

Retreive DataObject name. It is the name when registered in the store.

Retrieve DataObject name. It is the name when included in the store.

Definition at line 68 of file DataObject.cpp.

68 { return m_pRegistry ? m_pRegistry->name() : _sDataObjectCppNotRegistered; }
virtual const name_type & name() const =0
Name of the directory (or key)
IRegistry * m_pRegistry
Pointer to the Registry Object.
Definition: DataObject.h:37
DataObject & DataObject::operator= ( const DataObject rhs)

Assignment Operator.

Definition at line 19 of file DataObject.cpp.

20 {
21  m_version = rhs.m_version;
23  return *this;
24 }
unsigned char m_version
Version number.
Definition: DataObject.h:35
T reset(T...args)
std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
DataObject & DataObject::operator= ( DataObject &&  rhs)

Move Assignment Operator.

Assignment Operator.

Definition at line 33 of file DataObject.cpp.

34 {
35  m_version = std::move( rhs.m_version );
37  return *this;
38 }
unsigned char m_version
Version number.
Definition: DataObject.h:35
T move(T...args)
std::unique_ptr< LinkManager > m_pLinkMgr
Store of symbolic links.
Definition: DataObject.h:39
unsigned long DataObject::refCount ( ) const
inline

Return the refcount.

Definition at line 80 of file DataObject.h.

80 { return m_refCount; }
unsigned long m_refCount
Reference count.
Definition: DataObject.h:33
IRegistry* DataObject::registry ( ) const
inline

Get pointer to Registry.

Definition at line 72 of file DataObject.h.

72 { return m_pRegistry; }
IRegistry * m_pRegistry
Pointer to the Registry Object.
Definition: DataObject.h:37
unsigned long DataObject::release ( )
virtual

release reference to object

Decrease reference count.

Definition at line 51 of file DataObject.cpp.

52 {
53  unsigned long cnt = --m_refCount;
54  if ( 0 == cnt ) delete this;
55  return cnt;
56 }
unsigned long m_refCount
Reference count.
Definition: DataObject.h:33
void DataObject::setRegistry ( IRegistry pRegistry)
inline

Set pointer to Registry.

Definition at line 70 of file DataObject.h.

70 { m_pRegistry = pRegistry; }
IRegistry * m_pRegistry
Pointer to the Registry Object.
Definition: DataObject.h:37
void DataObject::setVersion ( unsigned char  vsn)
inline

Set version number of this object representation.

Definition at line 78 of file DataObject.h.

78 { m_version = vsn; }
unsigned char m_version
Version number.
Definition: DataObject.h:35
StatusCode DataObject::update ( )
virtual

Provide empty placeholder for internal object reconfiguration callback.

Reimplemented in KeyedContainer< DATATYPE, MAPPING >.

Definition at line 71 of file DataObject.cpp.

unsigned char DataObject::version ( ) const
inline

Retrieve version number of this object representation.

Definition at line 76 of file DataObject.h.

76 { return m_version; }
unsigned char m_version
Version number.
Definition: DataObject.h:35

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream s,
const DataObject obj 
)
friend

Output operator (ASCII)

Definition at line 88 of file DataObject.h.

88 { return obj.fillStream( s ); }
virtual std::ostream & fillStream(std::ostream &s) const
Fill the output stream (ASCII)
Definition: DataObject.h:82

Member Data Documentation

std::unique_ptr<LinkManager> DataObject::m_pLinkMgr
private

Store of symbolic links.

Definition at line 39 of file DataObject.h.

IRegistry* DataObject::m_pRegistry = nullptr
private

Pointer to the Registry Object.

Definition at line 37 of file DataObject.h.

unsigned long DataObject::m_refCount = 0
private

Reference count.

Definition at line 33 of file DataObject.h.

unsigned char DataObject::m_version = 0
private

Version number.

Definition at line 35 of file DataObject.h.


The documentation for this class was generated from the following files: