ATLAS Offline Software
|
#include <IProxyDict.h>
Public Types | |
typedef SG::sgkey_t | sgkey_t |
Type of the keys. More... | |
Public Member Functions | |
DeclareInterfaceID (IProxyDict, 2, 0) | |
virtual | ~IProxyDict () override |
virtual SG::DataProxy * | proxy_exact (SG::sgkey_t sgkey) const =0 |
Get proxy given a hashed key+clid. More... | |
virtual SG::DataProxy * | proxy (const CLID &id, const std::string &key) const =0 |
Get proxy with given id and key. More... | |
virtual SG::DataProxy * | proxy (const void *const pTransient) const =0 |
Get a proxy referencing a given transient object. More... | |
virtual std::vector< const SG::DataProxy * > | proxies () const =0 |
Return the list of all current proxies in store. More... | |
virtual StatusCode | addToStore (CLID id, SG::DataProxy *proxy)=0 |
Add a new proxy to the store. More... | |
virtual SG::DataProxy * | recordObject (SG::DataObjectSharedPtr< DataObject > obj, const std::string &key, bool allowMods, bool returnExisting)=0 |
Record an object in the store. More... | |
virtual void | boundHandle (IResetable *handle) |
Tell the store that a handle has been bound to a proxy. More... | |
virtual void | unboundHandle (IResetable *handle) |
Tell the store that a handle has been unbound from a proxy. More... | |
virtual bool | tryELRemap (sgkey_t sgkey_in, size_t index_in, sgkey_t &sgkey_out, size_t &index_out) |
Test to see if the target of an ElementLink has moved. More... | |
virtual StatusCode | createObj (IConverter *cvt, IOpaqueAddress *addr, DataObject *&refpObject) |
Call converter to create an object, possibly with locking. More... | |
virtual IProxyDict * | hiveProxyDict () override |
Return the current event-slot-specific store. More... | |
virtual SG::SourceID | sourceID (const std::string &key="EventSelector") const |
Return the metadata source ID for the current event slot. More... | |
virtual sgkey_t | stringToKey (const std::string &str, CLID clid)=0 |
Find the key for a string/CLID pair. More... | |
virtual const std::string * | keyToString (sgkey_t key) const =0 |
Find the string corresponding to a given key. More... | |
virtual const std::string * | keyToString (sgkey_t key, CLID &clid) const =0 |
Find the string and CLID corresponding to a given key. More... | |
virtual void | registerKey (sgkey_t key, const std::string &str, CLID clid)=0 |
Remember an additional mapping from key to string/CLID. More... | |
A proxy dictionary.
This is the internal interface used by StoreGateSvc and similar. It provides interfaces for taking a set of DataProxy
objects and looking them up by either CLID+key or by a pointer to the transient objects.
Objects can be identified by either a CLID+key pair or by a hash of this data. This interface also provides methods for converting between the two representations.
Definition at line 45 of file AthenaKernel/AthenaKernel/IProxyDict.h.
|
inherited |
Type of the keys.
Definition at line 34 of file IStringPool.h.
|
inlineoverridevirtual |
Definition at line 50 of file AthenaKernel/AthenaKernel/IProxyDict.h.
|
pure virtual |
Add a new proxy to the store.
id | CLID as which the proxy should be added. |
proxy | The proxy to add. |
Simple addition of a proxy to the store. The key is taken as the primary key of the proxy. Does not handle things like overwrite, history, symlinks, etc. Should return failure if there is already an entry for this clid/key.
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
virtual |
Tell the store that a handle has been bound to a proxy.
handle | The handle that was bound. The default implementation does nothing. |
Reimplemented in SGImplSvc.
Definition at line 23 of file IProxyDict.cxx.
|
virtual |
Call converter to create an object, possibly with locking.
cvt | The converter to call. |
addr | Opaque address information for the object to create. |
refpObject | Reference to location of the pointer of the created object. |
This calls the createObj
method on cvt
to create the referenced transient object.
This will also lock the store, if that is required.
The default implementation just forwards the method call, with no locking.
Reimplemented in StoreGateSvc, and SGImplSvc.
Definition at line 70 of file IProxyDict.cxx.
IProxyDict::DeclareInterfaceID | ( | IProxyDict | , |
2 | , | ||
0 | |||
) |
|
overridevirtual |
Return the current event-slot-specific store.
The default version just returns this.
Reimplemented in StoreGateSvc, and SGImplSvc.
Definition at line 83 of file IProxyDict.cxx.
Find the string corresponding to a given key.
key | The key to look up. |
stringToKey()
or registerKey()
. Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtualinherited |
Find the string and CLID corresponding to a given key.
key | The key to look up. |
clid[out] | The found CLID. |
stringToKey()
or registerKey()
. Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtual |
Return the list of all current proxies in store.
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtual |
Get proxy with given id and key.
id | The CLID of the desired object. |
key | The key of the desired object. |
If the key is a null string, then it is a default key. Finding a proxy via the default key should succeed only if there is exactly one object with the given CLID
in the store. Finding a proxy via a default key is considered deprecated for the case of the event store.
Returns 0 to flag failure
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtual |
Get a proxy referencing a given transient object.
pTransient | The object to find. |
Returns 0 to flag failure
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtual |
Get proxy given a hashed key+clid.
sgkey | Hashed key to look up. |
Find an exact match; no handling of aliases, etc. Returns 0 to flag failure.
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtual |
Record an object in the store.
obj | The data object to store. |
key | The key as which it should be stored. |
allowMods | If false, the object will be recorded as const. |
returnExisting | If true, return proxy if this key already exists. If the object has been recorded under a different key, then make an alias. If the object has been recorded under a different clid, then make a link. |
Full-blown record. obj
should usually be something deriving from SG::DataBucket
.
Returns the proxy for the recorded object; nullptr on failure. If the requested CLID/key combination already exists in the store, the behavior is controlled by returnExisting
. If true, then the existing proxy is returned; otherwise, nullptr is returned. In either case, obj
is destroyed.
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
pure virtualinherited |
Remember an additional mapping from key to string/CLID.
key | The key to enter. |
str | The string to enter. |
clid | The CLID associated with the string. |
key
already corresponds to a different string.This registers an additional mapping from a key to a string; it can be found later through lookup()
on the string. Logs an error if key
already corresponds to a different string.
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
virtual |
Return the metadata source ID for the current event slot.
key | SG key of the DataHeader to query. Returns an empty string if no source has been set. |
The default version always returns an empty string.
Reimplemented in StoreGateSvc, and SGImplSvc.
Definition at line 97 of file IProxyDict.cxx.
|
pure virtualinherited |
Find the key for a string/CLID pair.
str | The string to look up. |
clid | The CLID associated with the string. |
Implemented in StoreGateSvc, SGImplSvc, and ActiveStoreSvc.
|
virtual |
Test to see if the target of an ElementLink has moved.
sgkey_in | Original hashed key of the EL. |
index_in | Original index of the EL. |
sgkey_out[out] | New hashed key for the EL. |
index_out[out] | New index for the EL. |
The default implementation here always returns false.
Reimplemented in StoreGateSvc, and SGImplSvc.
Definition at line 48 of file IProxyDict.cxx.
|
virtual |
Tell the store that a handle has been unbound from a proxy.
handle | The handle that was unbound. The default implementation does nothing. |
Reimplemented in SGImplSvc.
Definition at line 33 of file IProxyDict.cxx.