The Gaudi Framework  v30r3 (a5ef0a68)
DataSvcHelpers::RegistryEntry Class Referencefinal

Definition of an entry in the transient data store. More...

#include <GaudiKernel/RegistryEntry.h>

Inheritance diagram for DataSvcHelpers::RegistryEntry:
Collaboration diagram for DataSvcHelpers::RegistryEntry:

Public Types

typedef Store::const_iterator Iterator
 Iterator definition. More...
 
- Public Types inherited from IRegistry
typedef std::string name_type
 Type definitions Name type. More...
 
typedef std::string id_type
 Identifier Key type. More...
 

Public Member Functions

 RegistryEntry (std::string path, RegistryEntry *parent=nullptr)
 Standard Constructor. More...
 
 ~RegistryEntry () override
 Standard Destructor. More...
 
unsigned long release () override
 IInterface implementation: Reference the object. More...
 
unsigned long addRef () override
 IInterface implementation: Dereference the object. More...
 
const std::stringname () const override
 Retrieve name of the entry. More...
 
const std::stringidentifier () const override
 Full identifier (or key) More...
 
IDataProviderSvcdataSvc () const override
 Retrieve pointer to Transient Store. More...
 
DataObjectobject () const override
 Retrive object behind the link. More...
 
IOpaqueAddressaddress () const override
 Retrieve opaque storage address. More...
 
IRegistryparent () const
 Pointer to parent directory entry. More...
 
bool isSoft () const
 Is the link soft or hard. More...
 
const Storeleaves () const
 Access the leaves of the object. More...
 
int size () const
 Return the size of the container(=number of objects) More...
 
bool isEmpty () const
 Simple check if the Container is empty. More...
 
Iterator begin () const
 Return starting point for container iteration. More...
 
Iterator end () const
 Return end elemtn if the container. More...
 
IRegistryfind (const IRegistry *obj) const
 Try to find an object identified by its pointer. More...
 
IRegistryfind (boost::string_ref path) const
 Try to find an object identified by its relative name to the directory. More...
 
void setAddress (IOpaqueAddress *pAddress) override
 Set/Update Opaque address. More...
 
void setObject (DataObject *obj)
 Set/Update object address. More...
 
StatusCode add (std::string name, DataObject *pObject, bool is_soft=false)
 Add entry to data store. More...
 
StatusCode add (std::string name, IOpaqueAddress *pAddress, bool is_soft=false)
 Add entry to data store. More...
 
StatusCode remove (boost::string_ref name)
 Remove an entry from the store. More...
 
long add (IRegistry *obj)
 Add object to the container. More...
 
long remove (IRegistry *obj)
 Remove an object from the container. More...
 
long deleteElements ()
 Delete all contained elements. More...
 
StatusCode traverseTree (IDataStoreAgent *pAgent, int level=0)
 traverse data tree More...
 
- Public Member Functions inherited from IRegistry
virtual ~IRegistry ()=default
 destructor More...
 

Private Types

typedef std::vector< IRegistry * > Store
 Definition of datastore type. More...
 

Private Member Functions

void assemblePath (std::string &buffer) const
 The following entries serve two aspects: 1) They are faster for recursive calls, because they are non-virtual 2) They can be re-used for the non-const entry points using a const_cast of the result. More...
 
IRegistryi_find (const IRegistry *pDirectory) const
 Internal method to retrieve data directory. More...
 
RegistryEntryi_find (boost::string_ref path) const
 Internal method to retrieve data directory. More...
 
RegistryEntryi_find (const DataObject *pObject) const
 Internal method to locate object entry. More...
 
RegistryEntryi_create (std::string name)
 Internal method to create entries. More...
 
long i_add (RegistryEntry *entry)
 Internal method to add entries. More...
 
void setParent (RegistryEntry *pParent)
 Set new parent pointer. More...
 
void setDataSvc (IDataProviderSvc *s)
 Set the transient data store. More...
 
RegistryEntryparentEntry ()
 Pointer to parent registry entry. More...
 
RegistryEntryfindLeaf (boost::string_ref path) const
 Find identified leaf in this registry node. More...
 
RegistryEntryfindLeaf (const DataObject *key) const
 Find identified leaf in this registry node. More...
 
void makeHard (DataObject *pObject)
 Initialize link as hard link. More...
 
void makeHard (IOpaqueAddress *pAddress)
 Initialize link as hard link. More...
 
void makeSoft (DataObject *pObject)
 Initialize link as soft link. More...
 
void makeSoft (IOpaqueAddress *pAddress)
 Initialize link as soft link. More...
 

Private Attributes

unsigned long m_refCount = 0
 Reference counter. More...
 
bool m_isSoft = false
 Is the link soft or hard? More...
 
std::string m_fullpath
 String containing full path of the object (volatile) More...
 
std::string m_path
 Path name. More...
 
RegistryEntrym_pParent = nullptr
 Pointer to parent. More...
 
IOpaqueAddressm_pAddress = nullptr
 Pointer to opaque address (load info) More...
 
DataObjectm_pObject = nullptr
 Pointer to object. More...
 
IDataProviderSvcm_pDataProviderSvc = nullptr
 Pointer to hosting transient store. More...
 
Store m_store
 Store of leaves. More...
 

Friends

class ::DataSvc
 
class ::TsDataSvc
 

Detailed Description

Definition of an entry in the transient data store.

The RegistryEntry represents an entry of the transient data store. The object holds the recipe how to retrieve objects from the persistent world (member IOpaqueAddress) as well as the backward link to the parent entry and the leaves.

Author
Markus Frank
Sebastien Ponce

Definition at line 37 of file RegistryEntry.h.

Member Typedef Documentation

typedef Store::const_iterator DataSvcHelpers::RegistryEntry::Iterator

Iterator definition.

Definition at line 48 of file RegistryEntry.h.

Definition of datastore type.

Definition at line 41 of file RegistryEntry.h.

Constructor & Destructor Documentation

DataSvcHelpers::RegistryEntry::RegistryEntry ( std::string  path,
RegistryEntry parent = nullptr 
)

Standard Constructor.

Definition at line 43 of file RegistryEntry.cpp.

44  : m_path( std::move( path ) ), m_pParent( parent )
45 {
46  std::string::size_type sep = m_path.rfind( SEPARATOR );
47  if ( m_path.front() != SEPARATOR ) m_path.insert( 0, 1, SEPARATOR );
48  if ( sep != std::string::npos ) m_path.erase( 0, sep );
50  addRef();
51 }
constexpr char SEPARATOR
T front(T...args)
unsigned long addRef() override
IInterface implementation: Dereference the object.
T rfind(T...args)
RegistryEntry * m_pParent
Pointer to parent.
Definition: RegistryEntry.h:60
std::string m_fullpath
String containing full path of the object (volatile)
Definition: RegistryEntry.h:56
void assemblePath(std::string &buffer) const
The following entries serve two aspects: 1) They are faster for recursive calls, because they are non...
IRegistry * parent() const
Pointer to parent directory entry.
T erase(T...args)
T move(T...args)
T insert(T...args)
std::string m_path
Path name.
Definition: RegistryEntry.h:58
DataSvcHelpers::RegistryEntry::~RegistryEntry ( )
override

Standard Destructor.

Standard destructor.

Definition at line 54 of file RegistryEntry.cpp.

55 {
57  if ( m_pObject ) {
58  if ( !m_isSoft ) m_pObject->setRegistry( nullptr );
59  m_pObject->release();
60  }
61  if ( m_pAddress ) {
62  if ( !m_isSoft ) m_pAddress->setRegistry( nullptr );
64  }
65 }
long deleteElements()
Delete all contained elements.
void setRegistry(IRegistry *pRegistry)
Set pointer to Registry.
Definition: DataObject.h:71
virtual unsigned long release()=0
release reference to object
IOpaqueAddress * m_pAddress
Pointer to opaque address (load info)
Definition: RegistryEntry.h:62
bool m_isSoft
Is the link soft or hard?
Definition: RegistryEntry.h:54
virtual unsigned long release()
release reference to object
Definition: DataObject.cpp:51
DataObject * m_pObject
Pointer to object.
Definition: RegistryEntry.h:64
virtual void setRegistry(IRegistry *r)=0
Update directory pointer.

Member Function Documentation

StatusCode DataSvcHelpers::RegistryEntry::add ( std::string  name,
DataObject pObject,
bool  is_soft = false 
)

Add entry to data store.

Add entry to the current data store item.

Definition at line 207 of file RegistryEntry.cpp.

208 {
209  RegistryEntry* entry = i_create( std::move( name ) );
210  if ( !entry ) return StatusCode::FAILURE;
211  ( is_soft ) ? entry->makeSoft( pObject ) : entry->makeHard( pObject );
212  i_add( entry );
213  return StatusCode::SUCCESS;
214 }
constexpr static const auto FAILURE
Definition: StatusCode.h:88
long i_add(RegistryEntry *entry)
Internal method to add entries.
RegistryEntry * i_create(std::string name)
Internal method to create entries.
T move(T...args)
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
StatusCode DataSvcHelpers::RegistryEntry::add ( std::string  name,
IOpaqueAddress pAddress,
bool  is_soft = false 
)

Add entry to data store.

Add entry to the current data store item.

Definition at line 217 of file RegistryEntry.cpp.

218 {
219  RegistryEntry* entry = i_create( std::move( name ) );
220  if ( !entry ) return StatusCode::FAILURE;
221  ( is_soft ) ? entry->makeSoft( pAddress ) : entry->makeHard( pAddress );
222  i_add( entry );
223  return StatusCode::SUCCESS;
224 }
constexpr static const auto FAILURE
Definition: StatusCode.h:88
long i_add(RegistryEntry *entry)
Internal method to add entries.
RegistryEntry * i_create(std::string name)
Internal method to create entries.
T move(T...args)
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
long DataSvcHelpers::RegistryEntry::add ( IRegistry obj)

Add object to the container.

Definition at line 178 of file RegistryEntry.cpp.

179 {
180  RegistryEntry* pEntry = CAST_REGENTRY( RegistryEntry*, obj );
181  return i_add( pEntry );
182 }
#define CAST_REGENTRY(x, y)
long i_add(RegistryEntry *entry)
Internal method to add entries.
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
unsigned long DataSvcHelpers::RegistryEntry::addRef ( )
inlineoverridevirtual

IInterface implementation: Dereference the object.

Implements IRegistry.

Definition at line 115 of file RegistryEntry.h.

115 { return ++m_refCount; }
unsigned long m_refCount
Reference counter.
Definition: RegistryEntry.h:52
IOpaqueAddress* DataSvcHelpers::RegistryEntry::address ( ) const
inlineoverridevirtual

Retrieve opaque storage address.

Implements IRegistry.

Definition at line 125 of file RegistryEntry.h.

125 { return m_pAddress; }
IOpaqueAddress * m_pAddress
Pointer to opaque address (load info)
Definition: RegistryEntry.h:62
void DataSvcHelpers::RegistryEntry::assemblePath ( std::string buffer) const
private

The following entries serve two aspects: 1) They are faster for recursive calls, because they are non-virtual 2) They can be re-used for the non-const entry points using a const_cast of the result.

Recursive helper to assemble the full path name of the entry

Definition at line 315 of file RegistryEntry.cpp.

316 {
317  if ( m_pParent ) m_pParent->assemblePath( buffer );
318  buffer += m_path;
319 }
RegistryEntry * m_pParent
Pointer to parent.
Definition: RegistryEntry.h:60
void assemblePath(std::string &buffer) const
The following entries serve two aspects: 1) They are faster for recursive calls, because they are non...
std::string m_path
Path name.
Definition: RegistryEntry.h:58
Iterator DataSvcHelpers::RegistryEntry::begin ( ) const
inline

Return starting point for container iteration.

Definition at line 137 of file RegistryEntry.h.

137 { return m_store.begin(); }
T begin(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
IDataProviderSvc* DataSvcHelpers::RegistryEntry::dataSvc ( ) const
inlineoverridevirtual

Retrieve pointer to Transient Store.

Implements IRegistry.

Definition at line 121 of file RegistryEntry.h.

121 { return m_pDataProviderSvc; }
IDataProviderSvc * m_pDataProviderSvc
Pointer to hosting transient store.
Definition: RegistryEntry.h:66
long DataSvcHelpers::RegistryEntry::deleteElements ( )

Delete all contained elements.

Delete recursively all elements pending from the current store item.

Definition at line 227 of file RegistryEntry.cpp.

228 {
229  for ( auto& i : m_store ) {
230  RegistryEntry* entry = CAST_REGENTRY( RegistryEntry*, i );
231  if ( entry ) {
232  entry->deleteElements();
233  entry->release();
234  }
235  }
236  m_store.erase( m_store.begin(), m_store.end() );
237  return 0;
238 }
#define CAST_REGENTRY(x, y)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
Iterator DataSvcHelpers::RegistryEntry::end ( ) const
inline

Return end elemtn if the container.

Definition at line 139 of file RegistryEntry.h.

139 { return m_store.end(); }
T end(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
IRegistry* DataSvcHelpers::RegistryEntry::find ( const IRegistry obj) const
inline

Try to find an object identified by its pointer.

Definition at line 141 of file RegistryEntry.h.

141 { return i_find( obj ); }
IRegistry * i_find(const IRegistry *pDirectory) const
Internal method to retrieve data directory.
IRegistry* DataSvcHelpers::RegistryEntry::find ( boost::string_ref  path) const
inline

Try to find an object identified by its relative name to the directory.

Definition at line 143 of file RegistryEntry.h.

143 { return i_find( path ); }
IRegistry * i_find(const IRegistry *pDirectory) const
Internal method to retrieve data directory.
RegistryEntry* DataSvcHelpers::RegistryEntry::findLeaf ( boost::string_ref  path) const
inlineprivate

Find identified leaf in this registry node.

Definition at line 95 of file RegistryEntry.h.

95 { return i_find( path ); }
IRegistry * i_find(const IRegistry *pDirectory) const
Internal method to retrieve data directory.
RegistryEntry* DataSvcHelpers::RegistryEntry::findLeaf ( const DataObject key) const
inlineprivate

Find identified leaf in this registry node.

Definition at line 97 of file RegistryEntry.h.

97 { return i_find( key ); }
IRegistry * i_find(const IRegistry *pDirectory) const
Internal method to retrieve data directory.
long DataSvcHelpers::RegistryEntry::i_add ( RegistryEntry entry)
private

Internal method to add entries.

Add object to the container.

Definition at line 185 of file RegistryEntry.cpp.

186 {
187  // TODO: if this is the sole place where items are added to m_store,
188  // and we know here that they must be RegisteryEntry, can we
189  // drop the dynamic_cast every where else???
190  // TODO: if so, can we also change m_store to be std::vector<RegistryEntry*>
191  // instead
192  // TODO: if so, can we not make it std::vector<RegistryEntry> instead?
193  // TODO: if so, should make sure that a RegistryEntry can be std::move'ed
194  try {
195  pEntry->setDataSvc( m_pDataProviderSvc );
196  m_store.push_back( pEntry );
197  pEntry->setParent( this );
198  if ( !pEntry->isSoft() && pEntry->address() ) {
199  pEntry->address()->setRegistry( pEntry );
200  }
201  } catch ( ... ) {
202  }
203  return m_store.size();
204 }
T push_back(T...args)
IDataProviderSvc * m_pDataProviderSvc
Pointer to hosting transient store.
Definition: RegistryEntry.h:66
T size(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
virtual void setRegistry(IRegistry *r)=0
Update directory pointer.
virtual IOpaqueAddress * address() const =0
Retrieve opaque storage address.
DataSvcHelpers::RegistryEntry * DataSvcHelpers::RegistryEntry::i_create ( std::string  name)
private

Internal method to create entries.

Internal method to add entries.

Definition at line 168 of file RegistryEntry.cpp.

169 {
170  if ( nam.front() != SEPARATOR ) nam.insert( 0, 1, SEPARATOR );
171  // if this object is already present, this is an error....
172  auto not_present =
173  std::none_of( std::begin( m_store ), std::end( m_store ), [&]( IRegistry* i ) { return nam == i->name(); } );
174  return not_present ? new RegistryEntry( std::move( nam ), this ) : nullptr;
175 }
constexpr char SEPARATOR
virtual const name_type & name() const =0
Name of the directory (or key)
T end(T...args)
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
T move(T...args)
T begin(T...args)
T none_of(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
IRegistry * DataSvcHelpers::RegistryEntry::i_find ( const IRegistry pDirectory) const
private

Internal method to retrieve data directory.

Try to find an object identified by its pointer.

Definition at line 241 of file RegistryEntry.cpp.

242 {
243  auto i = std::find( m_store.begin(), m_store.end(), obj );
244  return ( i != m_store.end() ) ? ( *i ) : nullptr;
245 }
T end(T...args)
T find(T...args)
T begin(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
DataSvcHelpers::RegistryEntry * DataSvcHelpers::RegistryEntry::i_find ( boost::string_ref  path) const
private

Internal method to retrieve data directory.

Find identified leaf in this registry node.

Definition at line 248 of file RegistryEntry.cpp.

249 {
250  if ( path.front() == SEPARATOR ) path.remove_prefix( 1 ); // strip leading '/', if present
251  while ( !path.empty() ) {
252  // check that the chars of path prior to / are the same as regEnt->name()
253  // (i.e. match { nam:"/Ab" path:"/Ab/C"}
254  // but not { nam:"/Abc" path:"/Ab/C"})
255  auto loc1 = path.find( SEPARATOR );
256  auto cpath = path.substr( 0, loc1 );
257  if ( loc1 != boost::string_ref::npos ) {
258  path.remove_prefix( loc1 + 1 );
259  } else {
260  path.clear();
261  }
263  [&]( const auto& reg ) { return cpath == boost::string_ref{reg->name()}.substr( 1 ); } );
264  if ( i != std::end( m_store ) ) {
265  RegistryEntry* regEnt = CAST_REGENTRY( RegistryEntry*, *i );
266  return path.empty() ? regEnt : regEnt->i_find( path );
267  }
268  // If this node is "/NodeA", this part allows to find "/NodeA/NodeB" as
269  // our "/NodeB" child.
270  if ( cpath != boost::string_ref{m_path}.substr( 1 ) ) break;
271  }
272  return nullptr;
273 }
constexpr char SEPARATOR
#define CAST_REGENTRY(x, y)
T end(T...args)
T find_if(T...args)
T begin(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
std::string m_path
Path name.
Definition: RegistryEntry.h:58
T substr(T...args)
DataSvcHelpers::RegistryEntry * DataSvcHelpers::RegistryEntry::i_find ( const DataObject pObject) const
private

Internal method to locate object entry.

Find identified leaf in this registry node.

Definition at line 276 of file RegistryEntry.cpp.

277 {
278  if ( key ) {
279  if ( key == m_pObject ) return const_cast<RegistryEntry*>( this );
280  // Look in the immediate level:
281  RegistryEntry* result = CAST_REGENTRY( RegistryEntry*, i_find( key->registry() ) );
282  if ( result ) return result;
283  // Go levels down
284  for ( const auto& i : m_store ) {
285  try {
286  const RegistryEntry* entry = CAST_REGENTRY( RegistryEntry*, i );
287  result = entry->i_find( key );
288  if ( result ) return result;
289  } catch ( ... ) {
290  }
291  }
292  }
293  return nullptr;
294 }
#define CAST_REGENTRY(x, y)
DataObject * m_pObject
Pointer to object.
Definition: RegistryEntry.h:64
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
IRegistry * i_find(const IRegistry *pDirectory) const
Internal method to retrieve data directory.
const std::string& DataSvcHelpers::RegistryEntry::identifier ( ) const
inlineoverridevirtual

Full identifier (or key)

Implements IRegistry.

Definition at line 119 of file RegistryEntry.h.

119 { return m_fullpath; }
std::string m_fullpath
String containing full path of the object (volatile)
Definition: RegistryEntry.h:56
bool DataSvcHelpers::RegistryEntry::isEmpty ( ) const
inline

Simple check if the Container is empty.

Definition at line 135 of file RegistryEntry.h.

135 { return m_store.size() == 0; }
T size(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
bool DataSvcHelpers::RegistryEntry::isSoft ( ) const
inline

Is the link soft or hard.

Definition at line 129 of file RegistryEntry.h.

129 { return m_isSoft; }
bool m_isSoft
Is the link soft or hard?
Definition: RegistryEntry.h:54
const Store& DataSvcHelpers::RegistryEntry::leaves ( ) const
inline

Access the leaves of the object.

Definition at line 131 of file RegistryEntry.h.

131 { return m_store; }
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
void DataSvcHelpers::RegistryEntry::makeHard ( DataObject pObject)
private

Initialize link as hard link.

Create hard link.

Definition at line 101 of file RegistryEntry.cpp.

102 {
103  makeSoft( pObject );
104  m_isSoft = false;
105  if ( m_pObject ) m_pObject->setRegistry( this );
106  if ( m_pAddress ) m_pAddress->setRegistry( this );
107 }
void setRegistry(IRegistry *pRegistry)
Set pointer to Registry.
Definition: DataObject.h:71
IOpaqueAddress * m_pAddress
Pointer to opaque address (load info)
Definition: RegistryEntry.h:62
void makeSoft(DataObject *pObject)
Initialize link as soft link.
bool m_isSoft
Is the link soft or hard?
Definition: RegistryEntry.h:54
DataObject * m_pObject
Pointer to object.
Definition: RegistryEntry.h:64
virtual void setRegistry(IRegistry *r)=0
Update directory pointer.
void DataSvcHelpers::RegistryEntry::makeHard ( IOpaqueAddress pAddress)
private

Initialize link as hard link.

Create hard link.

Definition at line 110 of file RegistryEntry.cpp.

111 {
112  m_isSoft = false;
113  setAddress( pAddress );
114 }
void setAddress(IOpaqueAddress *pAddress) override
Set/Update Opaque address.
bool m_isSoft
Is the link soft or hard?
Definition: RegistryEntry.h:54
void DataSvcHelpers::RegistryEntry::makeSoft ( DataObject pObject)
private

Initialize link as soft link.

Create soft link.

Definition at line 84 of file RegistryEntry.cpp.

85 {
86  m_isSoft = true;
87  setObject( pObject );
88  // if ( 0 != m_pObject ) { // Useless: This justs sets my own address again...
89  // setAddress(m_pObject->address());
90  // }
91 }
void setObject(DataObject *obj)
Set/Update object address.
bool m_isSoft
Is the link soft or hard?
Definition: RegistryEntry.h:54
void DataSvcHelpers::RegistryEntry::makeSoft ( IOpaqueAddress pAddress)
private

Initialize link as soft link.

Create soft link.

Definition at line 94 of file RegistryEntry.cpp.

95 {
96  m_isSoft = true;
97  setAddress( pAddress );
98 }
void setAddress(IOpaqueAddress *pAddress) override
Set/Update Opaque address.
bool m_isSoft
Is the link soft or hard?
Definition: RegistryEntry.h:54
const std::string& DataSvcHelpers::RegistryEntry::name ( ) const
inlineoverridevirtual

Retrieve name of the entry.

Implements IRegistry.

Definition at line 117 of file RegistryEntry.h.

117 { return m_path; }
std::string m_path
Path name.
Definition: RegistryEntry.h:58
DataObject* DataSvcHelpers::RegistryEntry::object ( ) const
inlineoverridevirtual

Retrive object behind the link.

Implements IRegistry.

Definition at line 123 of file RegistryEntry.h.

123 { return m_pObject; }
DataObject * m_pObject
Pointer to object.
Definition: RegistryEntry.h:64
IRegistry* DataSvcHelpers::RegistryEntry::parent ( ) const
inline

Pointer to parent directory entry.

Definition at line 127 of file RegistryEntry.h.

127 { return m_pParent; }
RegistryEntry * m_pParent
Pointer to parent.
Definition: RegistryEntry.h:60
RegistryEntry* DataSvcHelpers::RegistryEntry::parentEntry ( )
inlineprivate

Pointer to parent registry entry.

Definition at line 93 of file RegistryEntry.h.

93 { return m_pParent; }
RegistryEntry * m_pParent
Pointer to parent.
Definition: RegistryEntry.h:60
unsigned long DataSvcHelpers::RegistryEntry::release ( )
overridevirtual

IInterface implementation: Reference the object.

Release entry.

Implements IRegistry.

Definition at line 68 of file RegistryEntry.cpp.

69 {
70  unsigned long cnt = --m_refCount;
71  if ( !m_refCount ) delete this;
72  return cnt;
73 }
unsigned long m_refCount
Reference counter.
Definition: RegistryEntry.h:52
StatusCode DataSvcHelpers::RegistryEntry::remove ( boost::string_ref  name)

Remove an entry from the store.

Remove entry from data store.

Definition at line 154 of file RegistryEntry.cpp.

155 {
156  if ( nam.front() == SEPARATOR ) nam.remove_prefix( 1 );
157  auto i = std::find_if( m_store.begin(), m_store.end(), [&]( const auto* entry ) {
158  // skip leading SEPARATOR
159  return entry->name().compare( 1, std::string::npos, nam.data(), nam.size() ) == 0;
160  } );
161  // if the requested object is not present, this is an error....
162  if ( i == m_store.end() ) return StatusCode::FAILURE;
163  remove( *i );
164  return StatusCode::SUCCESS;
165 }
constexpr static const auto FAILURE
Definition: StatusCode.h:88
constexpr char SEPARATOR
virtual const name_type & name() const =0
Name of the directory (or key)
T end(T...args)
constexpr static const auto SUCCESS
Definition: StatusCode.h:87
T find_if(T...args)
T begin(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
T compare(T...args)
long DataSvcHelpers::RegistryEntry::remove ( IRegistry obj)

Remove an object from the container.

Definition at line 139 of file RegistryEntry.cpp.

140 {
141  try {
142  RegistryEntry* pEntry = dynamic_cast<RegistryEntry*>( obj );
143  auto i = std::remove( std::begin( m_store ), std::end( m_store ), pEntry );
144  if ( i != std::end( m_store ) ) {
145  pEntry->release();
146  m_store.erase( i, std::end( m_store ) );
147  }
148  } catch ( ... ) {
149  }
150  return m_store.size();
151 }
T end(T...args)
T remove(T...args)
T erase(T...args)
T size(T...args)
T begin(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.
void DataSvcHelpers::RegistryEntry::setAddress ( IOpaqueAddress pAddress)
overridevirtual

Set/Update Opaque address.

Update Opaque address of registry entry.

Implements IRegistry.

Definition at line 117 of file RegistryEntry.cpp.

118 {
119  if ( pAddress ) {
120  pAddress->addRef();
121  pAddress->setRegistry( this );
122  }
123  if ( m_pAddress ) m_pAddress->release();
124  m_pAddress = pAddress;
125 }
virtual unsigned long release()=0
release reference to object
IOpaqueAddress * m_pAddress
Pointer to opaque address (load info)
Definition: RegistryEntry.h:62
virtual void setRegistry(IRegistry *r)=0
Update directory pointer.
virtual unsigned long addRef()=0
Add reference to object.
void DataSvcHelpers::RegistryEntry::setDataSvc ( IDataProviderSvc s)
inlineprivate

Set the transient data store.

Definition at line 91 of file RegistryEntry.h.

91 { m_pDataProviderSvc = s; }
IDataProviderSvc * m_pDataProviderSvc
Pointer to hosting transient store.
Definition: RegistryEntry.h:66
string s
Definition: gaudirun.py:253
void DataSvcHelpers::RegistryEntry::setObject ( DataObject obj)

Set/Update object address.

Set object pointer of data store item.

Definition at line 128 of file RegistryEntry.cpp.

129 {
130  if ( pObject ) {
131  pObject->addRef();
132  if ( !isSoft() ) pObject->setRegistry( this );
133  }
134  if ( m_pObject ) m_pObject->release();
135  m_pObject = pObject;
136 }
bool isSoft() const
Is the link soft or hard.
virtual unsigned long release()
release reference to object
Definition: DataObject.cpp:51
DataObject * m_pObject
Pointer to object.
Definition: RegistryEntry.h:64
void DataSvcHelpers::RegistryEntry::setParent ( RegistryEntry pParent)
private

Set new parent pointer.

Definition at line 76 of file RegistryEntry.cpp.

77 {
78  m_pParent = pParent;
79  m_fullpath.clear();
81 }
RegistryEntry * m_pParent
Pointer to parent.
Definition: RegistryEntry.h:60
std::string m_fullpath
String containing full path of the object (volatile)
Definition: RegistryEntry.h:56
void assemblePath(std::string &buffer) const
The following entries serve two aspects: 1) They are faster for recursive calls, because they are non...
T clear(T...args)
int DataSvcHelpers::RegistryEntry::size ( ) const
inline

Return the size of the container(=number of objects)

Definition at line 133 of file RegistryEntry.h.

133 { return m_store.size(); }
T size(T...args)
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
StatusCode DataSvcHelpers::RegistryEntry::traverseTree ( IDataStoreAgent pAgent,
int  level = 0 
)

traverse data tree

Definition at line 297 of file RegistryEntry.cpp.

298 {
299  bool go_down = pAgent->analyse( this, level );
300  StatusCode status;
301  if ( go_down ) {
302  for ( auto& i : m_store ) {
303  try {
304  RegistryEntry* entry = CAST_REGENTRY( RegistryEntry*, i );
305  entry->traverseTree( pAgent, level + 1 ).ignore();
306  } catch ( ... ) {
307  status = StatusCode::FAILURE;
308  }
309  }
310  }
311  return status;
312 }
constexpr static const auto FAILURE
Definition: StatusCode.h:88
virtual bool analyse(IRegistry *pObject, int level)=0
Analyse the data object.
#define CAST_REGENTRY(x, y)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
Store m_store
Store of leaves.
Definition: RegistryEntry.h:68
RegistryEntry(std::string path, RegistryEntry *parent=nullptr)
Standard Constructor.

Friends And Related Function Documentation

friend class ::DataSvc
friend

Definition at line 44 of file RegistryEntry.h.

friend class ::TsDataSvc
friend

Definition at line 46 of file RegistryEntry.h.

Member Data Documentation

std::string DataSvcHelpers::RegistryEntry::m_fullpath
private

String containing full path of the object (volatile)

Definition at line 56 of file RegistryEntry.h.

bool DataSvcHelpers::RegistryEntry::m_isSoft = false
private

Is the link soft or hard?

Definition at line 54 of file RegistryEntry.h.

IOpaqueAddress* DataSvcHelpers::RegistryEntry::m_pAddress = nullptr
private

Pointer to opaque address (load info)

Definition at line 62 of file RegistryEntry.h.

std::string DataSvcHelpers::RegistryEntry::m_path
private

Path name.

Definition at line 58 of file RegistryEntry.h.

IDataProviderSvc* DataSvcHelpers::RegistryEntry::m_pDataProviderSvc = nullptr
private

Pointer to hosting transient store.

Definition at line 66 of file RegistryEntry.h.

DataObject* DataSvcHelpers::RegistryEntry::m_pObject = nullptr
private

Pointer to object.

Definition at line 64 of file RegistryEntry.h.

RegistryEntry* DataSvcHelpers::RegistryEntry::m_pParent = nullptr
private

Pointer to parent.

Definition at line 60 of file RegistryEntry.h.

unsigned long DataSvcHelpers::RegistryEntry::m_refCount = 0
private

Reference counter.

Definition at line 52 of file RegistryEntry.h.

Store DataSvcHelpers::RegistryEntry::m_store
private

Store of leaves.

Definition at line 68 of file RegistryEntry.h.


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