Belle II Software development
DataStore Class Reference

In the store you can park objects that have to be accessed by various modules. More...

#include <DataStore.h>

Classes

class  SwitchableDataStoreContents
 Encapsulates DataStoreContents, but allows transparently switching between different versions ('DataStore IDs'). More...
 

Public Types

enum  EDurability {
  c_Event ,
  c_Persistent
}
 Durability types. More...
 
enum  EStoreFlags {
  c_WriteOut = 0 ,
  c_DontWriteOut = 1 ,
  c_ErrorIfAlreadyRegistered = 2
}
 Flags describing behaviours of objects etc. More...
 
enum  ESearchSide {
  c_FromSide ,
  c_ToSide ,
  c_BothSides
}
 Which side of relations should be returned? More...
 
typedef Belle2::StoreEntry StoreEntry
 Wraps a stored array/object, stored under unique (name, durability) key.
 
typedef std::map< std::string, StoreEntryStoreEntryMap
 Map for StoreEntries.
 
typedef StoreEntryMap::iterator StoreEntryIter
 Iterator for a StoreEntry map.
 
typedef StoreEntryMap::const_iterator StoreEntryConstIter
 const_iterator for a StoreEntry map.
 
typedef std::array< StoreEntryMap, c_NDurabilityTypesDataStoreContents
 StoreEntry maps for each durability.
 

Public Member Functions

bool registerEntry (const std::string &name, EDurability durability, TClass *objClass, bool array, EStoreFlags storeFlags)
 Register an entry in the DataStore map.
 
bool registerRelation (const StoreAccessorBase &fromArray, const StoreAccessorBase &toArray, EDurability durability, EStoreFlags storeFlags, const std::string &namedRelation)
 Register a relation in the DataStore map.
 
bool hasRelation (const StoreAccessorBase &fromArray, const StoreAccessorBase &toArray, EDurability durability, const std::string &namedRelation)
 Check for the existence of a relation in the DataStore map.
 
bool requireInput (const StoreAccessorBase &accessor)
 Produce ERROR message if no entry of the given type is registered in the DataStore.
 
bool requireRelation (const StoreAccessorBase &fromArray, const StoreAccessorBase &toArray, EDurability durability, std::string const &namedRelation)
 Produce ERROR message if no relation of given durability exists between fromArray and toArray (in that direction).
 
bool optionalInput (const StoreAccessorBase &accessor)
 Register the given object/array as an optional input.
 
bool optionalRelation (const StoreAccessorBase &fromArray, const StoreAccessorBase &toArray, EDurability durability, std::string const &namedRelation)
 Register the given relation as an optional input.
 
StoreEntrygetEntry (const StoreAccessorBase &accessor)
 Check whether an entry with the correct type is registered in the DataStore map and return it.
 
TObject ** getObject (const StoreAccessorBase &accessor)
 Get a pointer to a pointer of an object in the DataStore.
 
bool createObject (TObject *object, bool replace, const StoreAccessorBase &accessor)
 Create a new object/array in the DataStore or add an existing one.
 
void replaceData (const StoreAccessorBase &from, const StoreAccessorBase &to)
 For two StoreAccessors of same type, move all data in 'from' into 'to', discarding previous contents of 'to' and leaving 'from' empty.
 
StoreEntryMapgetStoreEntryMap (EDurability durability)
 Get a reference to the object/array map.
 
void addRelation (const TObject *fromObject, StoreEntry *&fromEntry, int &fromIndex, const TObject *toObject, StoreEntry *&toEntry, int &toIndex, float weight, const std::string &namedRelation)
 Add a relation from an object in a store array to another object in a store array.
 
RelationVectorBase getRelationsWith (ESearchSide searchSide, const TObject *object, StoreEntry *&entry, int &index, const TClass *withClass, const std::string &withName, const std::string &namedRelation)
 Get the relations between an object and other objects in a store array.
 
Belle2::RelationEntry getRelationWith (ESearchSide searchSide, const TObject *object, StoreEntry *&entry, int &index, const TClass *withClass, const std::string &withName, const std::string &namedRelation)
 Get the first relation between an object and another object in a store array.
 
bool findStoreEntry (const TObject *object, StoreEntry *&entry, int &index)
 Find an object in an array in the data store.
 
std::vector< std::string > getListOfRelatedArrays (const StoreAccessorBase &array) const
 Returns a list of names of arrays which have registered relations that point to or from 'array'.
 
std::vector< std::string > getListOfArrays (const TClass *arrayClass, EDurability durability) const
 Returns a list of names of arrays which are of type (or inherit from) arrayClass.
 
std::vector< std::string > getListOfObjects (const TClass *objClass, EDurability durability) const
 Returns a list of names of StoreObjPtr-objects whose class is (or inherits from) objClass.
 
std::vector< std::string > getListOfRelations (EDurability durability) const
 Returns a list of names of StoreObjPtr-objects whose class is (or inherits from) RelationContainer.
 
std::vector< std::string > getSortedListOfDataStore (EDurability durability) const
 Returns a (sorted) list of all the content of the DataStore (Objs-Arrays-Relations).
 
void setInitializeActive (bool active)
 Setter for m_initializeActive.
 
bool getInitializeActive () const
 Are we currently initializing modules?
 
void invalidateData (EDurability durability)
 Clears all registered StoreEntry objects of a specified durability, invalidating all objects.
 
void reset (EDurability durability)
 Frees memory occupied by data store items and removes all objects from the map.
 
void reset ()
 Clears contents of the datastore (all durabilities)
 
DependencyMapgetDependencyMap ()
 Return map of dependencies between modules.
 
void createNewDataStoreID (const std::string &id)
 creates new datastore with given id, copying the registered objects/arrays from the current one.
 
void createEmptyDataStoreID (const std::string &id)
 creates empty datastore with given id.
 
std::string currentID () const
 returns ID of current DataStore.
 
void switchID (const std::string &id)
 switch to DataStore with given ID.
 
void copyEntriesTo (const std::string &id, const std::vector< std::string > &entrylist_event={}, bool mergeEntries=false)
 copy entries (not contents) of current DataStore to the DataStore with given ID.
 
void copyContentsTo (const std::string &id, const std::vector< std::string > &entrylist_event={})
 copy contents (actual array / object contents) of current DataStore to the DataStore with given ID.
 
void mergeContentsTo (const std::string &id, const std::vector< std::string > &entrylist_event={})
 merge contents (actual array / object contents) of current DataStore to the DataStore with given ID.
 

Static Public Member Functions

static DataStoreInstance ()
 Instance of singleton Store.
 
static TClass * getTClassFromDefaultObjectName (const std::string &objectName)
 Tries to deduce the TClass from a default object name, which is generally the name of the C++ class.
 
static TClass * getTClassFromDefaultArrayName (const std::string &arrayName)
 Tries to deduce the TClass from a default array name, which is generally the name of the C++ class with an appended 's'.
 
static std::string defaultObjectName (const std::string &classname)
 Return the default storage name for given class name.
 
static std::string defaultObjectName (const TClass *t)
 Return the default storage name for an object of the given TClass.
 
template<class T >
static std::string defaultObjectName ()
 Return the default storage name for an object of the given type.
 
static std::string objectName (const TClass *t, const std::string &name)
 Return the storage name for an object of the given TClass and name.
 
template<class T >
static std::string objectName (const std::string &name)
 Return the storage name for an object of the given type and name.
 
static std::string defaultArrayName (const std::string &classname)
 Return the default storage name for an given class name.
 
static std::string defaultArrayName (const TClass *t)
 Return the default storage name for an array of the given TClass.
 
template<class T >
static std::string defaultArrayName ()
 Return the default storage name for an array of the given type.
 
static std::string arrayName (const TClass *t, const std::string &name)
 Return the storage name for an object of the given TClass and name.
 
template<class T >
static std::string arrayName (const std::string &name)
 Return the storage name for an object of the given type and name.
 
template<class FROM , class TO >
static std::string defaultRelationName ()
 Return the default storage name for a relation between the given types.
 
static std::string relationName (const std::string &fromName, const std::string &toName, std::string const &namedRelation="")
 Return storage name for a relation between two arrays of the given names.
 
static void addRelationFromTo (const TObject *fromObject, const TObject *toObject, float weight=1.0, const std::string &namedRelation="")
 Add a relation from an object in a store array to another object in a store array.
 
template<class T >
static RelationVector< T > getRelationsWithObj (const TObject *object, const std::string &name="", const std::string &namedRelation="")
 Get the relations between an object and other objects in a store array.
 
template<class T >
static T * getRelated (const TObject *object, const std::string &name="", const std::string &namedRelation="")
 Get the object to or from which another object has a relation.
 

Static Public Attributes

static const int c_NDurabilityTypes = 2
 Number of Durability Types.
 
static bool s_DoCleanup = false
 Global flag to to decide if we can do normal cleanup.
 

Private Member Functions

 DataStore ()
 Hidden constructor, as it is a singleton.
 
 DataStore (const DataStore &)=delete
 no copy constructor
 
DataStoreoperator= (const DataStore &)=delete
 no assignment operator
 
 ~DataStore ()
 Destructor.
 
bool checkType (const StoreEntry &entry, const StoreAccessorBase &accessor) const
 Check whether the given entry and the requested class match.
 
const std::vector< std::string > & getArrayNames (const std::string &arrayName, const TClass *arrayClass, EDurability durability=c_Event) const
 Returns a vector with the names of store arrays matching the given name and class.
 

Static Private Member Functions

static void updateRelationsObjectCache (StoreEntry &entry)
 For an array containing RelationsObjects, update index and entry cache for entire contents.
 

Private Attributes

SwitchableDataStoreContents m_storeEntryMap
 Maps (name, durability) key to StoreEntry objects.
 
bool m_initializeActive
 True if modules are currently being initialized.
 
const std::regex m_regexNamedRelationCheck = std::regex("^[a-zA-Z]*$")
 Regular expression to check that no special characters and no white spaces are in the string given for namedRelations.
 
DependencyMapm_dependencyMap
 Collect information about the dependencies between modules.
 

Detailed Description

In the store you can park objects that have to be accessed by various modules.

Normal users should access the store via StoreAccessorBase-derived classes like StoreObjPtr or StoreArray.

Nomenclature:

See also
EDurability StoreObjPtr StoreArray RelationsObject

Definition at line 51 of file DataStore.h.

Member Typedef Documentation

◆ DataStoreContents

StoreEntry maps for each durability.

Definition at line 90 of file DataStore.h.

◆ StoreEntry

Wraps a stored array/object, stored under unique (name, durability) key.

Definition at line 84 of file DataStore.h.

◆ StoreEntryConstIter

typedef StoreEntryMap::const_iterator StoreEntryConstIter

const_iterator for a StoreEntry map.

Definition at line 89 of file DataStore.h.

◆ StoreEntryIter

typedef StoreEntryMap::iterator StoreEntryIter

Iterator for a StoreEntry map.

Definition at line 88 of file DataStore.h.

◆ StoreEntryMap

typedef std::map<std::string, StoreEntry> StoreEntryMap

Map for StoreEntries.

Definition at line 87 of file DataStore.h.

Member Enumeration Documentation

◆ EDurability

Durability types.

Defines how long an object should be valid.

Enumerator
c_Event 

Different object in each event, all objects/arrays are invalidated after event() function has been called on last module in path.


c_Persistent 

Object is available during entire execution time.

Objects are never invalidated and are accessible even after process(Path) returns.

Definition at line 58 of file DataStore.h.

58 {
59 c_Event,
61 };
@ c_Persistent
Object is available during entire execution time.
Definition: DataStore.h:60
@ c_Event
Different object in each event, all objects/arrays are invalidated after event() function has been ca...
Definition: DataStore.h:59

◆ ESearchSide

Which side of relations should be returned?

Enumerator
c_FromSide 

Return relations/objects pointed from (to a given object).

c_ToSide 

Return relations/objects pointed to (from a given object).

c_BothSides 

Combination of c_FromSide and c_ToSide.

Definition at line 76 of file DataStore.h.

76 {
78 c_ToSide,
80 };
@ c_BothSides
Combination of c_FromSide and c_ToSide.
Definition: DataStore.h:79
@ c_FromSide
Return relations/objects pointed from (to a given object).
Definition: DataStore.h:77
@ c_ToSide
Return relations/objects pointed to (from a given object).
Definition: DataStore.h:78

◆ EStoreFlags

Flags describing behaviours of objects etc.

Bitwise operators (|, &, etc.) are provided via ADD_BITMASK_OPERATORS.

Enumerator
c_WriteOut 

Object/array should be saved by output modules.

(default)

c_DontWriteOut 

Object/array should be NOT saved by output modules.

Can be overridden using the 'branchNames' parameter of RootOutput.

c_ErrorIfAlreadyRegistered 

If the object/array was already registered, produce an error (aborting initialisation).

Definition at line 69 of file DataStore.h.

69 {
70 c_WriteOut = 0,
71 c_DontWriteOut = 1,
73 };
@ c_WriteOut
Object/array should be saved by output modules.
Definition: DataStore.h:70
@ c_DontWriteOut
Object/array should be NOT saved by output modules.
Definition: DataStore.h:71
@ c_ErrorIfAlreadyRegistered
If the object/array was already registered, produce an error (aborting initialisation).
Definition: DataStore.h:72

Constructor & Destructor Documentation

◆ DataStore()

DataStore ( )
explicitprivate

Hidden constructor, as it is a singleton.

Definition at line 60 of file DataStore.cc.

61{
62}
DependencyMap * m_dependencyMap
Collect information about the dependencies between modules.
Definition: DataStore.h:637
bool m_initializeActive
True if modules are currently being initialized.
Definition: DataStore.h:628
Collect information about the dependencies between modules.
Definition: DependencyMap.h:29

◆ ~DataStore()

~DataStore ( )
private

Destructor.

Definition at line 64 of file DataStore.cc.

65{
66 if (s_DoCleanup) {
67 //release all memory in data store
68 reset();
69 }
70 delete m_dependencyMap;
71}
static bool s_DoCleanup
Global flag to to decide if we can do normal cleanup.
Definition: DataStore.h:100
void reset()
Clears contents of the datastore (all durabilities)
Definition: DataStore.cc:73

Member Function Documentation

◆ addRelation()

void addRelation ( const TObject *  fromObject,
StoreEntry *&  fromEntry,
int &  fromIndex,
const TObject *  toObject,
StoreEntry *&  toEntry,
int &  toIndex,
float  weight,
const std::string &  namedRelation 
)

Add a relation from an object in a store array to another object in a store array.

Parameters
fromObjectPointer to the object from which the relation points.
fromEntryData store entry that contains the fromObject. Used for caching. Will be set if NULL.
fromIndexIndex in TClonesArray that contains the fromObject. Used for caching. Will be set if < 0.
toObjectPointer to the object to which the relation points.
toEntryData store entry that contains the toObject. Used for caching. Will be set if NULL.
toIndexIndex in TClonesArray that contains the toObject. Used for caching. Will be set if < 0.
weightWeight of the relation.
namedRelationAdditional name for the relation, or "" for the default naming

Definition at line 491 of file DataStore.cc.

493{
494 if (!fromObject or !toObject)
495 return;
496
497 // get entry from which the relation points
498 if (!findStoreEntry(fromObject, fromEntry, fromIndex)) {
499 B2FATAL("Couldn't find from-side entry for relation between " << fromObject->ClassName() << " and " << toObject->ClassName() <<
500 ". Please make sure the object is part of a StoreArray before adding a relation.");
501 }
502
503 // get entry to which the relation points
504 if (!findStoreEntry(toObject, toEntry, toIndex)) {
505 B2FATAL("Couldn't find to-side entry for relation between " << fromObject->ClassName() << " and " << toObject->ClassName() <<
506 ". Please make sure the object is part of a StoreArray before adding a relation.");
507 }
508
509 // get the relations from -> to
510 const string& relationsName = relationName(fromEntry->name, toEntry->name, namedRelation);
511 const StoreEntryIter& it = m_storeEntryMap[c_Event].find(relationsName);
512 if (it == m_storeEntryMap[c_Event].end()) {
513 B2FATAL("No relation '" << relationsName <<
514 "' found. Please register it (using StoreArray::registerRelationTo()) before trying to add relations.");
515 }
516 StoreEntry* entry = &(it->second);
517
518 // auto create relations if needed (both if null pointer, or uninitialised object read from TTree)
519 if (!entry->ptr)
520 entry->recreate();
521 auto* relContainer = static_cast<RelationContainer*>(entry->ptr);
522 if (relContainer->isDefaultConstructed()) {
523 relContainer->setFromName(fromEntry->name);
524 relContainer->setFromDurability(c_Event);
525 relContainer->setToName(toEntry->name);
526 relContainer->setToDurability(c_Event);
527 }
528
529 // add relation
530 TClonesArray& relations = relContainer->elements();
531 new (relations.AddrAt(relations.GetLast() + 1)) RelationElement(fromIndex, toIndex, weight);
532
533 std::shared_ptr<RelationIndexContainer<TObject, TObject>> relIndex =
534 RelationIndexManager::Instance().getIndexIfExists<TObject, TObject>(relationsName, c_Event);
535 if (relIndex) {
536 // add it to index (so we avoid expensive rebuilding later)
537 relIndex->index().emplace(fromIndex, toIndex, fromObject, toObject, weight);
538 } else {
539 //mark for rebuilding later on
540 relContainer->setModified(true);
541 }
542}
bool findStoreEntry(const TObject *object, StoreEntry *&entry, int &index)
Find an object in an array in the data store.
Definition: DataStore.cc:397
StoreEntryMap::iterator StoreEntryIter
Iterator for a StoreEntry map.
Definition: DataStore.h:88
static std::string relationName(const std::string &fromName, const std::string &toName, std::string const &namedRelation="")
Return storage name for a relation between two arrays of the given names.
Definition: DataStore.h:180
SwitchableDataStoreContents m_storeEntryMap
Maps (name, durability) key to StoreEntry objects.
Definition: DataStore.h:621
Class to store relations between StoreArrays in the DataStore.
void setFromName(const std::string &name)
Set name of the StoreArray we relate from.
Class to store a single element of a relation.
std::shared_ptr< RelationIndexContainer< FROM, TO > > getIndexIfExists(const std::string &name, DataStore::EDurability durability) const
if the index exists in the cache, it is returned; otherwise NULL.
static RelationIndexManager & Instance()
Returns the singleton instance.
Wraps a stored array/object, stored under unique (name, durability) key.
Definition: StoreEntry.h:22
TObject * ptr
The pointer to the returned object, either equal to 'object' or null, depending on whether the object...
Definition: StoreEntry.h:51
std::string name
Name of the entry.
Definition: StoreEntry.h:53
void recreate()
Reset stored object to defaults, set ptr to new object.
Definition: StoreEntry.cc:68

◆ addRelationFromTo()

static void addRelationFromTo ( const TObject *  fromObject,
const TObject *  toObject,
float  weight = 1.0,
const std::string &  namedRelation = "" 
)
inlinestatic

Add a relation from an object in a store array to another object in a store array.

Note
If possible, use RelationsObject members instead, as they allow more efficient caching. Currently this should only be necessary if fromObject is of type genfit::...
See also
RelationsObject::addRelationTo
Parameters
fromObjectPointer to the object from which the relation points.
toObjectPointer to the object to which the relation points.
weightWeight of the relation.
namedRelationAdditional name for the relation, or "" for the default naming

Definition at line 387 of file DataStore.h.

389 {
390 DataStore::StoreEntry* fromEntry = nullptr;
391 int fromIndex = -1;
392 StoreEntry* toEntry = nullptr;
393 int toIndex = -1;
394 Instance().addRelation(fromObject, fromEntry, fromIndex, toObject, toEntry, toIndex, weight, namedRelation);
395 }
void addRelation(const TObject *fromObject, StoreEntry *&fromEntry, int &fromIndex, const TObject *toObject, StoreEntry *&toEntry, int &toIndex, float weight, const std::string &namedRelation)
Add a relation from an object in a store array to another object in a store array.
Definition: DataStore.cc:491
Belle2::StoreEntry StoreEntry
Wraps a stored array/object, stored under unique (name, durability) key.
Definition: DataStore.h:84
static DataStore & Instance()
Instance of singleton Store.
Definition: DataStore.cc:53

◆ arrayName() [1/2]

static std::string arrayName ( const std::string &  name)
inlinestatic

Return the storage name for an object of the given type and name.

Definition at line 167 of file DataStore.h.

168 {
169 return ((name.empty()) ? defaultArrayName<T>() : name);
170 }

◆ arrayName() [2/2]

std::string arrayName ( const TClass *  t,
const std::string &  name 
)
static

Return the storage name for an object of the given TClass and name.

Definition at line 163 of file DataStore.cc.

164{
165 return ((name.empty()) ? defaultArrayName(t) : name);
166}
static std::string defaultArrayName()
Return the default storage name for an array of the given type.
Definition: DataStore.h:157

◆ checkType()

bool checkType ( const StoreEntry entry,
const StoreAccessorBase accessor 
) const
private

Check whether the given entry and the requested class match.

Name and durability are not checked.

Parameters
entryThe existing DataStore entry.
accessorEncapsulates name, durability, and type
Returns
True if both types match.

Definition at line 169 of file DataStore.cc.

170{
171 // Check whether the existing entry and the requested object are both arrays or both single objects
172 const char* entryType = (entry.isArray) ? "array" : "object";
173 if (entry.isArray != accessor.isArray()) {
174 B2FATAL("Existing entry '" << entry.name << "' is an " << entryType << " and the requested one an " << ((
175 accessor.isArray()) ? "array" : "object"));
176 }
177
178 // Check whether the existing entry has the same type
179 const TClass* entryClass = entry.objClass;
180 if (!entryClass->InheritsFrom(accessor.getClass())) {
181 B2FATAL("Existing " << accessor.readableName() << " of type " << entryClass->GetName() << " doesn't match requested type " <<
182 accessor.getClass()->GetName());
183 }
184
185 return true;
186}
std::string readableName() const
Convert this accessor into a readable string (for messages).
TClass * getClass() const
The underlying object's type.
bool isArray() const
Is this an accessor for an array?
bool isArray
Flag that indicates whether the object is a TClonesArray.
Definition: StoreEntry.h:39
TClass * objClass
class of object.
Definition: StoreEntry.h:41

◆ copyContentsTo()

void copyContentsTo ( const std::string &  id,
const std::vector< std::string > &  entrylist_event = {} 
)

copy contents (actual array / object contents) of current DataStore to the DataStore with given ID.

Definition at line 809 of file DataStore.cc.

810{
811 m_storeEntryMap.copyContentsTo(id, entrylist_event);
812}
void copyContentsTo(const std::string &id, const std::vector< std::string > &entrylist_event={})
copy contents (actual array / object contents) of current DataStore to the DataStore with given ID.
Definition: DataStore.cc:945

◆ copyEntriesTo()

void copyEntriesTo ( const std::string &  id,
const std::vector< std::string > &  entrylist_event = {},
bool  mergeEntries = false 
)

copy entries (not contents) of current DataStore to the DataStore with given ID.

Definition at line 804 of file DataStore.cc.

805{
806 m_storeEntryMap.copyEntriesTo(id, entrylist_event, mergeEntries);
807}
void copyEntriesTo(const std::string &id, const std::vector< std::string > &entrylist_event={}, bool mergeEntries=false)
copy entries (not contents) of current DataStore to the DataStore with given ID.
Definition: DataStore.cc:849

◆ createEmptyDataStoreID()

void createEmptyDataStoreID ( const std::string &  id)

creates empty datastore with given id.

Definition at line 783 of file DataStore.cc.

784{
786}
void createEmptyDataStoreID(const std::string &id)
creates empty datastore with given id.
Definition: DataStore.cc:837

◆ createNewDataStoreID()

void createNewDataStoreID ( const std::string &  id)

creates new datastore with given id, copying the registered objects/arrays from the current one.

Definition at line 778 of file DataStore.cc.

779{
781}
void createNewDataStoreID(const std::string &id)
creates new datastore with given id, copying the registered objects/arrays from the current one.
Definition: DataStore.cc:826

◆ createObject()

bool createObject ( TObject *  object,
bool  replace,
const StoreAccessorBase accessor 
)

Create a new object/array in the DataStore or add an existing one.

A matching map entry must already exist. Otherwise an error will be generated.

Parameters
objectPointer to the object that should be stored. If 0, a new default object is created.
replaceIf an object already exists, it will be replaced if this is true. If false, an error will be printed.
accessorEncapsulates name, durability, and type
Returns
Whether the object was successfully inserted/created

Definition at line 315 of file DataStore.cc.

316{
317 StoreEntry* entry = getEntry(accessor);
318 if (!entry) {
319 B2ERROR("No " << accessor.readableName() <<
320 " exists in the DataStore, did you forget to register it in your Module's initialize() function? Note: direct accesses to it will crash!");
321 return false;
322 }
323
324 if (entry->ptr && !replace && object != entry->object) {
325 B2ERROR("An " << accessor.readableName() << " was already created in the DataStore.");
326 return false;
327 }
328
329 if (object) {
330 if (object != entry->object) {
331 delete entry->object;
332 entry->object = object;
333 }
334 entry->ptr = entry->object;
335 } else {
336 entry->recreate();
337 }
338
339 return true;
340}
StoreEntry * getEntry(const StoreAccessorBase &accessor)
Check whether an entry with the correct type is registered in the DataStore map and return it.
Definition: DataStore.cc:293
TObject * object
The pointer to the actual object.
Definition: StoreEntry.h:48

◆ currentID()

std::string currentID ( ) const

returns ID of current DataStore.

Definition at line 788 of file DataStore.cc.

789{
790 return m_storeEntryMap.currentID();
791}
const std::string & currentID() const
returns ID of current DataStore.
Definition: DataStore.h:603

◆ defaultArrayName() [1/3]

static std::string defaultArrayName ( )
inlinestatic

Return the default storage name for an array of the given type.

Definition at line 157 of file DataStore.h.

158 {
159 const static std::string s = defaultArrayName(defaultObjectName<T>());
160 return s;
161 }

◆ defaultArrayName() [2/3]

static std::string defaultArrayName ( const std::string &  classname)
inlinestatic

Return the default storage name for an given class name.

Definition at line 143 of file DataStore.h.

144 {
145 const std::string& objName = defaultObjectName(classname);
146 std::string s;
147 s.reserve(objName.length() + 1);
148 s += objName;
149 s += 's';
150 return s;
151 }
static std::string defaultObjectName()
Return the default storage name for an object of the given type.
Definition: DataStore.h:127

◆ defaultArrayName() [3/3]

std::string defaultArrayName ( const TClass *  t)
static

Return the default storage name for an array of the given TClass.

Definition at line 156 of file DataStore.cc.

157{
158 const std::string s = defaultArrayName(defaultObjectName(t));
159 return s;
160}

◆ defaultObjectName() [1/3]

static std::string defaultObjectName ( )
inlinestatic

Return the default storage name for an object of the given type.

Definition at line 127 of file DataStore.h.

128 {
129 const static std::string s = defaultObjectName(T::Class_Name());
130 return s;
131 }

◆ defaultObjectName() [2/3]

std::string defaultObjectName ( const std::string &  classname)
static

Return the default storage name for given class name.

Definition at line 127 of file DataStore.cc.

128{
129 const static string gfclass = "genfit::Track";
130 const static string gfobjectname = "GF2Track";
131 if (classname == gfclass)
132 return gfobjectname;
133 //Strip qualifiers like namespaces
134 size_t colon = classname.rfind(':');
135 if (colon != std::string::npos) {
136 return classname.substr(colon + 1);
137 }
138 return classname;
139}

◆ defaultObjectName() [3/3]

std::string defaultObjectName ( const TClass *  t)
static

Return the default storage name for an object of the given TClass.

Definition at line 142 of file DataStore.cc.

143{
144 B2ASSERT("Cannot deduce default object name from null pointer TClass", t);
145 const std::string s = defaultObjectName(t->GetName());
146 return s;
147}

◆ defaultRelationName()

static std::string defaultRelationName ( )
inlinestatic

Return the default storage name for a relation between the given types.

Definition at line 173 of file DataStore.h.

174 {
175 const static std::string s = relationName(defaultArrayName<FROM>(), defaultArrayName<TO>());
176 return s;
177 }

◆ findStoreEntry()

bool findStoreEntry ( const TObject *  object,
DataStore::StoreEntry *&  entry,
int &  index 
)

Find an object in an array in the data store.

entry/index are used to return the found array and index, should be set to NULL and -1, or some cached values (will be checked).

Given non-NULL entry and index>=0, this function returns immediately if the object is found at the given position.

Parameters
objectPointer to the object.
entryThe DataStore entry that contains the object.
indexThe index of the object in the array.
Returns
True if the object was found in the data store

Definition at line 397 of file DataStore.cc.

398{
399 if (!entry or index < 0) {
400 //usually entry/index should be passed for RelationsObject,
401 //but there are exceptions -> let's check again
402 const auto* relObj = dynamic_cast<const RelationsObject*>(object);
403 if (relObj) {
404 entry = relObj->m_cacheDataStoreEntry;
405 index = relObj->m_cacheArrayIndex;
406 }
407 }
408 // check whether the cached information is (still) valid
409 if (entry && entry->ptr && (index >= 0)) {
410 const TClonesArray* array = static_cast<TClonesArray*>(entry->ptr);
411 if (array->At(index) == object) return true;
412 B2INFO("findStoreEntry: cached index invalid, probably harmless but odd : " << entry->name << " idx " << index);
413 index = array->IndexOf(object);
414 if (index >= 0) return true;
415 B2INFO("findStoreEntry: cached entry was also wrong");
416 }
417 entry = nullptr;
418 index = -1;
419
420 //searching for nullptr should be safe
421 if (!object)
422 return false;
423
424 // search for the object and set the entry and index
425 const TClass* objectClass = object->IsA();
426 for (auto& mapEntry : m_storeEntryMap[c_Event]) {
427 if (mapEntry.second.ptr && mapEntry.second.isArray) {
428 const TClass* arrayClass = mapEntry.second.objClass;
429 if (arrayClass != objectClass)
430 continue;
431
432 const TClonesArray* array = static_cast<TClonesArray*>(mapEntry.second.ptr);
433 if (object == array->Last()) {
434 //quickly find entry if it's at the end of the array
435 index = array->GetLast();
436 } else {
437 if (arrayClass->InheritsFrom(RelationsObject::Class())) {
438 //update cache for entire array
439 updateRelationsObjectCache(mapEntry.second);
440
441 //if found, m_cacheArrayIndex is now correct, otherwise still -1
442 StoreEntry* objEntry = static_cast<const RelationsObject*>(object)->m_cacheDataStoreEntry;
443 index = static_cast<const RelationsObject*>(object)->m_cacheArrayIndex;
444 if (index >= 0 and objEntry) {
445 //if the cache of 'object' is filled, make sure to also set entry!
446 entry = objEntry;
447 return true;
448 }
449 } else {
450 //not a RelationsObject, so no caching
451 index = array->IndexOf(object);
452 }
453 }
454
455 if (index >= 0) {
456 entry = &mapEntry.second;
457 return true;
458 }
459 }
460 }
461 return false;
462}
static void updateRelationsObjectCache(StoreEntry &entry)
For an array containing RelationsObjects, update index and entry cache for entire contents.
Definition: DataStore.cc:386
Defines interface for accessing relations of objects in StoreArray.

◆ getArrayNames()

const std::vector< std::string > & getArrayNames ( const std::string &  arrayName,
const TClass *  arrayClass,
EDurability  durability = c_Event 
) const
private

Returns a vector with the names of store arrays matching the given name and class.

Note that the returned reference is only valid until the next call.

Parameters
arrayNameA given array name, the special string "ALL" for all arrays deriving from the given class, or an empty string for the default array name.
arrayClassThe class of the array(s).
durabilityDecide with which durability map you want to perform the requested action.

Definition at line 464 of file DataStore.cc.

466{
467 static vector<string> arrayNames;
468 arrayNames.clear();
469 if (name.empty()) {
470 static std::unordered_map<const TClass*, string> classToArrayName;
471 const auto& it = classToArrayName.find(arrayClass);
472 if (it != classToArrayName.end()) {
473 arrayNames.emplace_back(it->second);
474 } else {
475 const std::string& result = defaultArrayName(arrayClass->GetName());
476 classToArrayName[arrayClass] = result;
477 arrayNames.emplace_back(result);
478 }
479 } else if (name == "ALL") {
480 for (auto& mapEntry : m_storeEntryMap[durability]) {
481 if (mapEntry.second.object and mapEntry.second.isArray and mapEntry.second.objClass->InheritsFrom(arrayClass)) {
482 arrayNames.emplace_back(mapEntry.second.name);
483 }
484 }
485 } else {
486 arrayNames.emplace_back(name);
487 }
488 return arrayNames;
489}

◆ getDependencyMap()

DependencyMap & getDependencyMap ( )
inline

Return map of dependencies between modules.

Definition at line 524 of file DataStore.h.

524{ return *m_dependencyMap; }

◆ getEntry()

DataStore::StoreEntry * getEntry ( const StoreAccessorBase accessor)

Check whether an entry with the correct type is registered in the DataStore map and return it.

If the map of requested durability already contains an object under the key name with a DIFFERENT type than the given type one, an error will be reported.

Parameters
accessorEncapsulates name, durability, and type
Returns
StoreEntry, or NULL if not found

Definition at line 293 of file DataStore.cc.

294{
295 const auto& it = m_storeEntryMap[accessor.getDurability()].find(accessor.getName());
296
297 if (it != m_storeEntryMap[accessor.getDurability()].end() and checkType((it->second), accessor)) {
298 return &(it->second);
299 } else {
300 return nullptr;
301 }
302}
bool checkType(const StoreEntry &entry, const StoreAccessorBase &accessor) const
Check whether the given entry and the requested class match.
Definition: DataStore.cc:169
DataStore::EDurability getDurability() const
Return durability with which the object is saved in the DataStore.
const std::string & getName() const
Return name under which the object is saved in the DataStore.

◆ getInitializeActive()

bool getInitializeActive ( ) const
inline

Are we currently initializing modules?

Definition at line 502 of file DataStore.h.

502{ return m_initializeActive; }

◆ getListOfArrays()

std::vector< std::string > getListOfArrays ( const TClass *  arrayClass,
EDurability  durability 
) const

Returns a list of names of arrays which are of type (or inherit from) arrayClass.

Definition at line 665 of file DataStore.cc.

666{
667 return getArrayNames("ALL", arrayClass, durability);
668}
const std::vector< std::string > & getArrayNames(const std::string &arrayName, const TClass *arrayClass, EDurability durability=c_Event) const
Returns a vector with the names of store arrays matching the given name and class.
Definition: DataStore.cc:464

◆ getListOfObjects()

std::vector< std::string > getListOfObjects ( const TClass *  objClass,
EDurability  durability 
) const

Returns a list of names of StoreObjPtr-objects whose class is (or inherits from) objClass.

(this does NOT include the internal RelationContainer objects.)

Definition at line 670 of file DataStore.cc.

671{
672 vector<string> list;
674 for (const auto& entrypair : map) {
675 if (!entrypair.second.isArray) {
676 const TObject* obj = entrypair.second.object;
677 if (dynamic_cast<const RelationContainer*>(obj))
678 continue; //ignore relations in list
679
680 if (obj and obj->IsA()->InheritsFrom(objClass))
681 list.emplace_back(entrypair.first);
682 }
683 }
684 return list;
685}
StoreEntryMap & getStoreEntryMap(EDurability durability)
Get a reference to the object/array map.
Definition: DataStore.h:325
EDurability
Durability types.
Definition: DataStore.h:58
std::map< std::string, StoreEntry > StoreEntryMap
Map for StoreEntries.
Definition: DataStore.h:87

◆ getListOfRelatedArrays()

std::vector< std::string > getListOfRelatedArrays ( const StoreAccessorBase array) const

Returns a list of names of arrays which have registered relations that point to or from 'array'.

This may be useful for internal purposes when modifying array contents.

Definition at line 639 of file DataStore.cc.

640{
641 std::vector<std::string> arrays;
642 if (!array.isArray()) {
643 B2ERROR("getListOfRelatedArrays(): " << array.readableName() << " is not an array!");
644 return arrays;
645 }
646
647 //loop over all arrays
648 EDurability durability = array.getDurability();
649 for (auto& mapEntry : m_storeEntryMap[durability]) {
650 if (mapEntry.second.isArray) {
651 const std::string& name = mapEntry.second.name;
652
653 //check both from & to 'array'
654 for (int searchSide = 0; searchSide < c_BothSides; searchSide++) {
655 const string& relationsName = (searchSide == c_ToSide) ? relationName(array.getName(), name) : relationName(name, array.getName());
656 const StoreEntryConstIter& it = m_storeEntryMap[durability].find(relationsName);
657 if (it != m_storeEntryMap[durability].end())
658 arrays.emplace_back(name);
659 }
660 }
661 }
662
663 return arrays;
664}
StoreEntryMap::const_iterator StoreEntryConstIter
const_iterator for a StoreEntry map.
Definition: DataStore.h:89

◆ getListOfRelations()

std::vector< std::string > getListOfRelations ( EDurability  durability) const

Returns a list of names of StoreObjPtr-objects whose class is (or inherits from) RelationContainer.

Definition at line 687 of file DataStore.cc.

688{
689 vector<string> list;
691 for (const auto& entrypair : map) {
692 if (!entrypair.second.isArray) {
693 const TObject* obj = entrypair.second.object;
694 if (dynamic_cast<const RelationContainer*>(obj))
695 list.emplace_back(entrypair.first);
696
697 }
698 }
699 return list;
700}

◆ getObject()

TObject ** getObject ( const StoreAccessorBase accessor)

Get a pointer to a pointer of an object in the DataStore.

If the map of requested durability already contains an object under the key name with a DIFFERENT type than the given type one, an error will be reported.

Parameters
accessorEncapsulates name, durability, and type
Returns
Pointer to pointer to object, NULL if none exists

Definition at line 305 of file DataStore.cc.

306{
307 StoreEntry* entry = getEntry(accessor);
308 if (!entry) {
309 return nullptr;
310 }
311 return &(entry->ptr);
312}

◆ getRelated()

static T * getRelated ( const TObject *  object,
const std::string &  name = "",
const std::string &  namedRelation = "" 
)
inlinestatic

Get the object to or from which another object has a relation.

Note
If possible, use RelationsObject members instead, as they allow more efficient caching. Currently this should only be necessary if type(object) == genfit::..
Parameters
objectPointer to the object to or from which the relation points.
Template Parameters
TThe class of objects to or from which the relation points.
Parameters
nameThe name of the store array to or from which the relation points. If empty the default store array name for class T will be used. If the special name "ALL" is given all store arrays containing objects of type T are considered.
namedRelationAdditional name for the relation, or "" for the default naming
Returns
The related object or a null pointer.

Definition at line 432 of file DataStore.h.

433 {
434 if (!object) return nullptr;
435 StoreEntry* storeEntry = nullptr;
436 int index = -1;
437 return static_cast<T*>(DataStore::Instance().getRelationWith(c_BothSides, object, storeEntry, index, T::Class(), name,
438 namedRelation).object);
439 }
Belle2::RelationEntry getRelationWith(ESearchSide searchSide, const TObject *object, StoreEntry *&entry, int &index, const TClass *withClass, const std::string &withName, const std::string &namedRelation)
Get the first relation between an object and another object in a store array.
Definition: DataStore.cc:596
TObject * object
Pointer to the object.
Definition: RelationEntry.h:32

◆ getRelationsWith()

RelationVectorBase getRelationsWith ( ESearchSide  searchSide,
const TObject *  object,
DataStore::StoreEntry *&  entry,
int &  index,
const TClass *  withClass,
const std::string &  withName,
const std::string &  namedRelation 
)

Get the relations between an object and other objects in a store array.

Parameters
searchSideSearch objects of type withClass on this side of relations (with 'object' on the other side).
objectPointer to the object from or to which the relations point.
entryData store entry that contains the object. Used for caching. Will be set if 0.
indexIndex in TClonesArray that contains the object. Used for caching. Will be set if < 0.
withClassClass of the objects to or from which the relations point.
withNameThe name of the store array to or from which the relations point. If empty the default store array name for withClass will be used. If the special name "ALL" is given all store arrays containing object of type withClass are considered.
namedRelationAdditional name for the relation, or "" for the default naming. If withName is "ALL", the namedRelation parameter is ignored and all related objects are returned.
Returns
Vector of relation entry objects (not type-safe).

Definition at line 544 of file DataStore.cc.

546{
547 if (searchSide == c_BothSides) {
548 auto result = getRelationsWith(c_ToSide, object, entry, index, withClass, withName, namedRelation);
549 const auto& fromResult = getRelationsWith(c_FromSide, object, entry, index, withClass, withName, namedRelation);
550 result.add(fromResult);
551 return result;
552 }
553
554 std::vector<RelationEntry> result;
555
556 // get StoreEntry for 'object'
557 if (!findStoreEntry(object, entry, index)) return RelationVectorBase();
558
559 // get names of store arrays to search
560 const std::vector<string>& names = getArrayNames(withName, withClass);
561 vector<string> relationNames;
562
563 // loop over found store arrays
564 for (const std::string& name : names) {
565 // get the relations from -> to
566 const string& relationsName = (searchSide == c_ToSide) ? relationName(entry->name, name, namedRelation) : relationName(name,
567 entry->name, namedRelation);
568 RelationIndex<TObject, TObject> relIndex(relationsName, c_Event);
569 if (!relIndex)
570 continue;
571
572 const size_t prevsize = result.size();
573
574 //get relations with object
575 if (searchSide == c_ToSide) {
576 for (const auto& rel : relIndex.getElementsFrom(object)) {
577 auto* const toObject = const_cast<TObject*>(rel.to);
578 if (toObject)
579 result.emplace_back(toObject, rel.weight);
580 }
581 } else {
582 for (const auto& rel : relIndex.getElementsTo(object)) {
583 auto* const fromObject = const_cast<TObject*>(rel.from);
584 if (fromObject)
585 result.emplace_back(fromObject, rel.weight);
586 }
587 }
588
589 if (result.size() != prevsize)
590 relationNames.push_back(relationsName);
591 }
592
593 return RelationVectorBase(entry->name, index, result, relationNames);
594}
RelationVectorBase getRelationsWith(ESearchSide searchSide, const TObject *object, StoreEntry *&entry, int &index, const TClass *withClass, const std::string &withName, const std::string &namedRelation)
Get the relations between an object and other objects in a store array.
Definition: DataStore.cc:544
Provides access to fast ( O(log n) ) bi-directional lookups on a specified relation.
Definition: RelationIndex.h:76
base class for RelationVector<T>

◆ getRelationsWithObj()

static RelationVector< T > getRelationsWithObj ( const TObject *  object,
const std::string &  name = "",
const std::string &  namedRelation = "" 
)
inlinestatic

Get the relations between an object and other objects in a store array.

Relations in both directions are returned.

Note
Using this function should only be necessary if type(object) == genfit::.... If possible, use RelationsObject members instead, as they allow more efficient caching.
See also
RelationsObject::getRelationsWith
Parameters
objectPointer to the object from or to which the relations point.
Template Parameters
TClass of the objects to or from which the relations point.
Parameters
nameThe name of the store array to or from which the relations point. If empty the default store array name for withClass will be used. If the special name "ALL" is given all store arrays containing objects of type T are considered.
namedRelationAdditional name for the relation, or "" for the default naming
Returns
Vector of relation entry objects.

Definition at line 412 of file DataStore.h.

414 {
415 StoreEntry* storeEntry = nullptr;
416 int index = -1;
417 return RelationVector<T>(Instance().getRelationsWith(c_BothSides, object, storeEntry, index, T::Class(), name, namedRelation));
418 }

◆ getRelationWith()

RelationEntry getRelationWith ( ESearchSide  searchSide,
const TObject *  object,
DataStore::StoreEntry *&  entry,
int &  index,
const TClass *  withClass,
const std::string &  withName,
const std::string &  namedRelation 
)

Get the first relation between an object and another object in a store array.

Parameters
searchSideSearch objects of type withClass on this side of relations (with 'object' on the other side).
objectPointer to the object from or to which the relation points.
entryData store entry that contains the object. Used for caching. Will be set if 0.
indexIndex in TClonesArray that contains the object. Used for caching. Will be set if < 0.
withClassClass of the objects to or from which the relation points.
withNameThe name of the store array to or from which the relation points. If empty the default store array name for withClass will be used. If the special name "ALL" is given all store arrays containing object of type withClass are considered.
namedRelationAdditional name for the relation, or "" for the default naming. If withName is "ALL", the namedRelation parameter is ignored and all related objects are returned.
Returns
The entry of the first related object.

Definition at line 596 of file DataStore.cc.

598{
599 if (searchSide == c_BothSides) {
600 RelationEntry result = getRelationWith(c_ToSide, object, entry, index, withClass, withName, namedRelation);
601 if (!result.object) {
602 result = getRelationWith(c_FromSide, object, entry, index, withClass, withName, namedRelation);
603 }
604 return result;
605 }
606
607 // get StoreEntry for 'object'
608 if (!findStoreEntry(object, entry, index)) return RelationEntry(nullptr);
609
610 // get names of store arrays to search
611 const std::vector<string>& names = getArrayNames(withName, withClass);
612
613 // loop over found store arrays
614 for (const std::string& name : names) {
615 // get the relations from -> to
616 const string& relationsName = (searchSide == c_ToSide) ? relationName(entry->name, name, namedRelation) : relationName(name,
617 entry->name, namedRelation);
618 RelationIndex<TObject, TObject> relIndex(relationsName, c_Event);
619 if (!relIndex)
620 continue;
621
622 // get first element
623 if (searchSide == c_ToSide) {
624 const RelationIndex<TObject, TObject>::Element* element = relIndex.getFirstElementFrom(object);
625 if (element && element->to) {
626 return RelationEntry(const_cast<TObject*>(element->to), element->weight);
627 }
628 } else {
629 const RelationIndex<TObject, TObject>::Element* element = relIndex.getFirstElementTo(object);
630 if (element && element->from) {
631 return RelationEntry(const_cast<TObject*>(element->from), element->weight);
632 }
633 }
634 }
635
636 return RelationEntry(nullptr);
637}
Struct for relations.
Definition: RelationEntry.h:24

◆ getSortedListOfDataStore()

std::vector< std::string > getSortedListOfDataStore ( EDurability  durability) const

Returns a (sorted) list of all the content of the DataStore (Objs-Arrays-Relations).

Definition at line 702 of file DataStore.cc.

703{
704 std::vector<string> list;
705 std::vector<std::string> mergeContent = getListOfObjects(TObject::Class(), durability);
706 list.insert(std::end(list), std::begin(mergeContent), std::end(mergeContent));
707 mergeContent = getListOfArrays(TObject::Class(), durability);
708 list.insert(std::end(list), std::begin(mergeContent), std::end(mergeContent));
709 mergeContent = getListOfRelations(durability);
710 list.insert(std::end(list), std::begin(mergeContent), std::end(mergeContent));
711 return list;
712}
std::vector< std::string > getListOfRelations(EDurability durability) const
Returns a list of names of StoreObjPtr-objects whose class is (or inherits from) RelationContainer.
Definition: DataStore.cc:687
std::vector< std::string > getListOfArrays(const TClass *arrayClass, EDurability durability) const
Returns a list of names of arrays which are of type (or inherit from) arrayClass.
Definition: DataStore.cc:665
std::vector< std::string > getListOfObjects(const TClass *objClass, EDurability durability) const
Returns a list of names of StoreObjPtr-objects whose class is (or inherits from) objClass.
Definition: DataStore.cc:670

◆ getStoreEntryMap()

StoreEntryMap & getStoreEntryMap ( EDurability  durability)
inline

Get a reference to the object/array map.

This is intended to be used for input/output or other framework-internal modules.

Definition at line 325 of file DataStore.h.

325{ return m_storeEntryMap[durability]; }

◆ getTClassFromDefaultArrayName()

TClass * getTClassFromDefaultArrayName ( const std::string &  arrayName)
static

Tries to deduce the TClass from a default array name, which is generally the name of the C++ class with an appended 's'.

The namespace qualification Belle2:: can be omitted

Definition at line 115 of file DataStore.cc.

116{
117 if (arrayName.empty()) {
118 return nullptr;
119 } else if ('s' == arrayName.back()) {
120 std::string objectName = arrayName.substr(0, arrayName.size() - 1);
122 } else {
123 return nullptr;
124 }
125}
static std::string objectName(const TClass *t, const std::string &name)
Return the storage name for an object of the given TClass and name.
Definition: DataStore.cc:150
static TClass * getTClassFromDefaultObjectName(const std::string &objectName)
Tries to deduce the TClass from a default object name, which is generally the name of the C++ class.
Definition: DataStore.cc:104
static std::string arrayName(const TClass *t, const std::string &name)
Return the storage name for an object of the given TClass and name.
Definition: DataStore.cc:163

◆ getTClassFromDefaultObjectName()

TClass * getTClassFromDefaultObjectName ( const std::string &  objectName)
static

Tries to deduce the TClass from a default object name, which is generally the name of the C++ class.

The namespace qualification Belle2:: can be omitted.

Definition at line 104 of file DataStore.cc.

105{
106 // First look for an name without the namespace Belle2::
107 TClass* cl = TClass::GetClass(("Belle2::" + objectName).c_str());
108 if (not cl) {
109 // If this fails look for a name that already has the full namespace.
110 cl = TClass::GetClass(objectName.c_str());
111 }
112 return cl;
113}

◆ hasRelation()

bool hasRelation ( const StoreAccessorBase fromArray,
const StoreAccessorBase toArray,
EDurability  durability,
const std::string &  namedRelation 
)

Check for the existence of a relation in the DataStore map.

Parameters
fromArrayOrigin of the relation
toArrayTarget of the relation
durabilityDecide with which durability map you want to perform the requested action.
namedRelationAdditional name for the relation, or "" for the default naming.
Returns
True if there is a registered relation.
See also
DependencyMap

Definition at line 270 of file DataStore.cc.

272{
273 // check that the input makes sense
274 if (!fromArray.isArray())
275 B2FATAL(fromArray.readableName() << " is not an array!");
276 if (!toArray.isArray())
277 B2FATAL(toArray.readableName() << " is not an array!");
278
279 // check the the namedRelation only contains regular characters
280 if (!std::regex_match(namedRelation, m_regexNamedRelationCheck))
281 B2FATAL("Named Relations can only contain alphabetic characters, given was: " << namedRelation);
282
283 // get the internal relation name from the name provided
284 const std::string& realname = relationName(fromArray.getName(), toArray.getName(), namedRelation);
285
286 // check whether the map entry exists
287 const auto& it = m_storeEntryMap[durability].find(realname);
288 if (it != m_storeEntryMap[durability].end()) return true;
289
290 return false;
291}
const std::regex m_regexNamedRelationCheck
Regular expression to check that no special characters and no white spaces are in the string given fo...
Definition: DataStore.h:634

◆ Instance()

DataStore & Instance ( )
static

Instance of singleton Store.

This method is used to access the DataStore directly. It is used internally in the Store accessor classes.

Definition at line 53 of file DataStore.cc.

54{
55 static DataStore instance;
56 return instance;
57}
In the store you can park objects that have to be accessed by various modules.
Definition: DataStore.h:51

◆ invalidateData()

void invalidateData ( EDurability  durability)

Clears all registered StoreEntry objects of a specified durability, invalidating all objects.

Called by the framework once the given durability is over. Users should usually not use this function without a good reason.

Definition at line 714 of file DataStore.cc.

715{
716 B2DEBUG(100, "Invalidating objects for durability " << durability);
719}
void invalidateData(EDurability durability)
Clears all registered StoreEntry objects of a specified durability, invalidating all objects.
Definition: DataStore.cc:1176
void clear(DataStore::EDurability durability=DataStore::c_Event)
Clear the cache of RelationIndexContainers with the given durability.

◆ mergeContentsTo()

void mergeContentsTo ( const std::string &  id,
const std::vector< std::string > &  entrylist_event = {} 
)

merge contents (actual array / object contents) of current DataStore to the DataStore with given ID.

Definition at line 814 of file DataStore.cc.

815{
816 m_storeEntryMap.mergeContentsTo(id, entrylist_event);
817}
void mergeContentsTo(const std::string &id, const std::vector< std::string > &entrylist_event={})
merge contents (actual array / object contents) of current DataStore to the DataStore with given ID.
Definition: DataStore.cc:986

◆ objectName() [1/2]

static std::string objectName ( const std::string &  name)
inlinestatic

Return the storage name for an object of the given type and name.

Definition at line 137 of file DataStore.h.

138 {
139 return ((name.empty()) ? defaultObjectName<T>() : name);
140 }

◆ objectName() [2/2]

std::string objectName ( const TClass *  t,
const std::string &  name 
)
static

Return the storage name for an object of the given TClass and name.

Definition at line 150 of file DataStore.cc.

151{
152 return ((name.empty()) ? defaultObjectName(t) : name);
153}

◆ optionalInput()

bool optionalInput ( const StoreAccessorBase accessor)

Register the given object/array as an optional input.

Mainly useful for creating diagrams of module inputs and outputs.

Parameters
accessorEncapsulates name, durability, and type
Returns
True if the requested object exists.
See also
DependencyMap

Definition at line 738 of file DataStore.cc.

739{
740 if (m_initializeActive) {
742 (accessor.getClass() == RelationContainer::Class()));
743 }
744
745 return (getEntry(accessor) != nullptr);
746}
@ c_OptionalInput
optional input.
Definition: DependencyMap.h:34
ModuleInfo & getCurrentModuleInfo()
Get info for current module.
Definition: DependencyMap.h:63
void addEntry(const std::string &name, EEntryType type, bool isRelation)
Adds given entry/relation.

◆ optionalRelation()

bool optionalRelation ( const StoreAccessorBase fromArray,
const StoreAccessorBase toArray,
EDurability  durability,
std::string const &  namedRelation 
)

Register the given relation as an optional input.

Mainly useful for creating diagrams of module inputs and outputs.

Parameters
fromArrayOrigin of the relation
toArrayTarget of the relation
durabilityDecide with which durability map you want to perform the requested action.
namedRelationAdditional name for the relation, or "" for the default naming1
Returns
True if the requested object exists.
See also
DependencyMap

Definition at line 765 of file DataStore.cc.

767{
768 if (!fromArray.isArray())
769 B2FATAL(fromArray.readableName() << " is not an array!");
770 if (!toArray.isArray())
771 B2FATAL(toArray.readableName() << " is not an array!");
772
773 const std::string& relName = relationName(fromArray.getName(), toArray.getName(), namedRelation);
774 return DataStore::Instance().optionalInput(StoreAccessorBase(relName, durability, RelationContainer::Class(), false));
775}
bool optionalInput(const StoreAccessorBase &accessor)
Register the given object/array as an optional input.
Definition: DataStore.cc:738
Base class for StoreObjPtr and StoreArray for easier common treatment.

◆ registerEntry()

bool registerEntry ( const std::string &  name,
EDurability  durability,
TClass *  objClass,
bool  array,
EStoreFlags  storeFlags 
)

Register an entry in the DataStore map.

If the map of requested durability already contains an object under the key name with a DIFFERENT type than the given type, an error will be reported.
Otherwise a new map slot is created. This must be called in the initialization phase. Otherwise an error is returned.

Parameters
nameName under which you want to save the object in the DataStore.
durabilityDecide with which durability map you want to perform the requested action.
objClassThe class of the object.
arrayWhether it is a TClonesArray or not.
storeFlagsORed combination of DataStore::EStoreFlags.
Returns
True if the registration succeeded.
See also
DependencyMap

Definition at line 189 of file DataStore.cc.

191{
192 const StoreAccessorBase accessor(name, durability, objClass, array);
193 // Check whether this method is called in the initialization phase
194 if (!m_initializeActive) {
195 B2ERROR("Attempt to register " << accessor.readableName() <<
196 " outside of the initialization phase. Please move calls to registerInDataStore() into your Module's initialize() function.");
197 return false;
198 }
199 const bool dontwriteout = storeFlags & c_DontWriteOut;
200
201 //add to current module's outputs
202 m_dependencyMap->getCurrentModuleInfo().addEntry(name, DependencyMap::c_Output, (objClass == RelationContainer::Class()));
203
204 // Check whether the map entry already exists
205 const auto& it = m_storeEntryMap[durability].find(name);
206 if (it != m_storeEntryMap[durability].end()) {
207 StoreEntry& entry = it->second;
208
209 // Complain about existing entry
210 if (storeFlags & c_ErrorIfAlreadyRegistered) {
211 B2ERROR("An " << accessor.readableName() << " of type " << entry.object->ClassName() <<
212 " was already registered before. (Multiple calls to registerInDataStore() are fine if the c_ErrorIfAlreadyRegistered flag is not set. For objects you will want to make sure that you don't discard existing data from other modules in that case.");
213 return false;
214 }
215
216 // Check whether the types match
217 if (!checkType(entry, accessor)) return false;
218
219 // Check whether the persistency type matches
220 if (entry.dontWriteOut != dontwriteout) {
221 B2WARNING("Existing " << accessor.readableName() << " has different persistency type than requested. Changing to " <<
222 (dontwriteout ? "c_DontWriteOut" : "c_WriteOut") << ".");
223 entry.dontWriteOut = dontwriteout;
224 }
225
226 B2DEBUG(100, "An " << accessor.readableName() << " was registered once more.");
227 return true;
228 }
229
230 // check reserved names
231 if (array and name == "ALL") {
232 B2ERROR("Creating an array with the reserved name 'ALL' is not allowed!");
233 return false;
234 }
235
236 // Add the DataStore entry
237 m_storeEntryMap[durability][name] = StoreEntry(array, objClass, name, dontwriteout);
238
239 B2DEBUG(100, "Successfully registered " << accessor.readableName());
240 return true;
241}
@ c_Output
registered output.
Definition: DependencyMap.h:35
bool dontWriteOut
Flag that indicates whether the object should be written to the output by default.
Definition: StoreEntry.h:40

◆ registerRelation()

bool registerRelation ( const StoreAccessorBase fromArray,
const StoreAccessorBase toArray,
EDurability  durability,
EStoreFlags  storeFlags,
const std::string &  namedRelation 
)

Register a relation in the DataStore map.

This must be called in the initialization phase. Otherwise an error is returned.

Parameters
fromArrayOrigin of the relation
toArrayTarget of the relation
durabilityDecide with which durability map you want to perform the requested action.
storeFlagsORed combination of DataStore::EStoreFlags.
namedRelationAdditional name for the relation, or "" for the default naming
Returns
True if the registration succeeded.
See also
DependencyMap

Definition at line 243 of file DataStore.cc.

245{
246 if (!fromArray.isArray())
247 B2FATAL(fromArray.readableName() << " is not an array!");
248 if (!toArray.isArray())
249 B2FATAL(toArray.readableName() << " is not an array!");
250
251 // check the the namedRelation only contains regular characters
252 if (!std::regex_match(namedRelation, m_regexNamedRelationCheck))
253 B2FATAL("Named Relations can only contain alphabetic characters, given was: " << namedRelation);
254
255 const std::string& relName = relationName(fromArray.getName(), toArray.getName(), namedRelation);
256 /*
257 if ((fromArray.notWrittenOut() or toArray.notWrittenOut()) and !(storeFlags & c_DontWriteOut)) {
258 B2WARNING("You're trying to register a persistent relation " << relName << " from/to an array which is not written out (DataStore::c_DontWriteOut flag)! Relation will also not be saved!");
259 storeFlags |= c_DontWriteOut;
260 }
261 */
262
263 if (fromArray.getDurability() > durability or toArray.getDurability() > durability) {
264 B2FATAL("Tried to create a relation '" << relName << "' with a durability larger than the StoreArrays it relates");
265 }
266
267 return DataStore::Instance().registerEntry(relName, durability, RelationContainer::Class(), false, storeFlags);
268}
bool registerEntry(const std::string &name, EDurability durability, TClass *objClass, bool array, EStoreFlags storeFlags)
Register an entry in the DataStore map.
Definition: DataStore.cc:189

◆ relationName()

static std::string relationName ( const std::string &  fromName,
const std::string &  toName,
std::string const &  namedRelation = "" 
)
inlinestatic

Return storage name for a relation between two arrays of the given names.

Definition at line 180 of file DataStore.h.

182 {
183 std::string s;
184 s.reserve(fromName.length() + toName.length() + 2);
185 s += fromName;
186 s += "To";
187 s += toName;
188 if (namedRelation.length() > 0) {
189 s += "Named";
190 // Characters are not escaped here, because in registerRelation, the namedRelation
191 // given is checked to contain no special characters or white spaces
192 s += namedRelation;
193 }
194 return s;
195 }

◆ replaceData()

void replaceData ( const StoreAccessorBase from,
const StoreAccessorBase to 
)

For two StoreAccessors of same type, move all data in 'from' into 'to', discarding previous contents of 'to' and leaving 'from' empty.

Meta-data like c_DontWriteOut flags or info about associated arrays for RelationContainers is not replaced.

Definition at line 342 of file DataStore.cc.

343{
344 StoreEntry* fromEntry = getEntry(from);
345 StoreEntry* toEntry = getEntry(to);
346 if (!fromEntry)
347 B2FATAL("No " << from.readableName() << " exists in the DataStore!");
348 if (!toEntry)
349 B2FATAL("No " << to.readableName() << " exists in the DataStore!");
350 if (from.isArray() != to.isArray() or from.getClass() != to.getClass())
351 B2FATAL("cannot replace " << to.readableName() << " with " << from.readableName() << " (incompatible types)!");
352
353 if (!fromEntry->ptr) {
354 //since we don't need to move any data, just invalidate toEntry instead.
355 toEntry->ptr = nullptr;
356 } else if (fromEntry->isArray) {
357 if (!toEntry->ptr)
358 toEntry->ptr = toEntry->object;
359 toEntry->getPtrAsArray()->Delete();
360
361 fixAbsorbObjects(fromEntry->getPtrAsArray(), toEntry->getPtrAsArray());
363 } else if (fromEntry->objClass == RelationContainer::Class()) {
364 if (!toEntry->ptr)
365 toEntry->ptr = toEntry->object;
366 auto* fromRel = static_cast<RelationContainer*>(fromEntry->ptr);
367 auto* toRel = static_cast<RelationContainer*>(toEntry->ptr);
368
369 toRel->elements().Delete();
370
371 fixAbsorbObjects(&fromRel->elements(), &toRel->elements());
372
373 //indices need a rebuild
374 fromRel->setModified(true);
375 toRel->setModified(true);
376 } else {
377 delete toEntry->object;
378
379 toEntry->object = fromEntry->ptr->Clone();
380 toEntry->ptr = toEntry->object;
381
382 fromEntry->ptr = nullptr;
383 }
384}
TClonesArray & elements()
Get reference to the elements.
TClonesArray * getPtrAsArray() const
Return ptr cast to TClonesArray.
Definition: StoreEntry.cc:83

◆ requireInput()

bool requireInput ( const StoreAccessorBase accessor)

Produce ERROR message if no entry of the given type is registered in the DataStore.

Note
can only be used in initialize() function
Parameters
accessorEncapsulates name, durability, and type
Returns
True if the requested object exists.
See also
DependencyMap

Definition at line 721 of file DataStore.cc.

722{
723 if (m_initializeActive) {
725 (accessor.getClass() == RelationContainer::Class()));
726 } else {
727 B2FATAL("Attempt to require input " << accessor.readableName() <<
728 " outside of the initialization phase. Please move isRequired() calls into your Module's initialize() function.");
729 }
730
731 if (!getEntry(accessor)) {
732 B2ERROR("The required " << accessor.readableName() << " does not exist. Maybe you forgot the module that registers it?");
733 return false;
734 }
735 return true;
736}
@ c_Input
required input.
Definition: DependencyMap.h:33

◆ requireRelation()

bool requireRelation ( const StoreAccessorBase fromArray,
const StoreAccessorBase toArray,
EDurability  durability,
std::string const &  namedRelation 
)

Produce ERROR message if no relation of given durability exists between fromArray and toArray (in that direction).

Note
can only be used in initialize() function
Parameters
fromArrayOrigin of the relation
toArrayTarget of the relation
durabilityDecide with which durability map you want to perform the requested action.
namedRelationAdditional name for the relation, or "" for the default naming
Returns
True if the requested object exists.
See also
DependencyMap

Definition at line 748 of file DataStore.cc.

750{
751 if (!m_initializeActive) {
752 B2FATAL("Attempt to require relation " << fromArray.readableName() << " -> " << toArray.readableName() <<
753 " outside of the initialization phase. Please move requireRelationTo() calls into your Module's initialize() function.");
754 }
755
756 if (!fromArray.isArray())
757 B2FATAL(fromArray.readableName() << " is not an array!");
758 if (!toArray.isArray())
759 B2FATAL(toArray.readableName() << " is not an array!");
760
761 const std::string& relName = relationName(fromArray.getName(), toArray.getName(), namedRelation);
762 return DataStore::Instance().requireInput(StoreAccessorBase(relName, durability, RelationContainer::Class(), false));
763}
bool requireInput(const StoreAccessorBase &accessor)
Produce ERROR message if no entry of the given type is registered in the DataStore.
Definition: DataStore.cc:721

◆ reset() [1/2]

void reset ( )

Clears contents of the datastore (all durabilities)

Called by the framework. Users should usually not use this function without good reason.

Definition at line 73 of file DataStore.cc.

74{
75 B2DEBUG(31, "DataStore::reset(): Removing all elements from DataStore");
76 m_initializeActive = true;
78
79 for (int i = 0; i < c_NDurabilityTypes; i++)
81
83}
void clear()
same as calling reset() for all durabilities + all non-default datastore IDs are removed.
Definition: DataStore.cc:1153
static const int c_NDurabilityTypes
Number of Durability Types.
Definition: DataStore.h:63
void clear()
Reset all collected data.
Definition: DependencyMap.h:69

◆ reset() [2/2]

void reset ( EDurability  durability)

Frees memory occupied by data store items and removes all objects from the map.

Afterwards, m_storeEntryMap[durability] is empty. Called by the framework. Users should usually not use this function without good reason.

Definition at line 85 of file DataStore.cc.

86{
87 m_storeEntryMap.reset(durability);
88
89 //invalidate any cached relations (expect RelationArrays to remain valid)
91}
void reset(EDurability durability)
Frees memory occupied by data store items and removes all objects from the map.
Definition: DataStore.cc:1166
void reset()
Reset the cache completely, that is clear all caches and don't even keep the Index objects around.

◆ setInitializeActive()

void setInitializeActive ( bool  active)

Setter for m_initializeActive.

This should only be called by EventProcessor.

Definition at line 93 of file DataStore.cc.

94{
95 m_initializeActive = active;
96
97 static bool firstCall = true;
98 if (firstCall) {
99 atexit(cleanDataStore);
100 firstCall = false;
101 }
102}

◆ switchID()

void switchID ( const std::string &  id)

switch to DataStore with given ID.

Definition at line 793 of file DataStore.cc.

794{
795 if (id == m_storeEntryMap.currentID())
796 return;
797
798 //remember to clear caches
800
802}
void switchID(const std::string &id)
switch to DataStore with given ID.
Definition: DataStore.cc:1143

◆ updateRelationsObjectCache()

void updateRelationsObjectCache ( StoreEntry entry)
staticprivate

For an array containing RelationsObjects, update index and entry cache for entire contents.

You must ensure the array actually contains objects inheriting from RelationsObject!

Definition at line 386 of file DataStore.cc.

387{
388 const TClonesArray* array = static_cast<TClonesArray*>(entry.ptr);
389 const int nEntries = array->GetEntriesFast();
390 for (int i = 0; i < nEntries; i++) {
391 auto* relobj = static_cast<RelationsObject*>(array->At(i));
392 relobj->m_cacheArrayIndex = i;
393 relobj->m_cacheDataStoreEntry = &entry;
394 }
395}
int m_cacheArrayIndex
Cache of the index in the TClonesArray to which this object belongs.

Member Data Documentation

◆ c_NDurabilityTypes

const int c_NDurabilityTypes = 2
static

Number of Durability Types.


Definition at line 63 of file DataStore.h.

◆ m_dependencyMap

DependencyMap* m_dependencyMap
private

Collect information about the dependencies between modules.

Definition at line 637 of file DataStore.h.

◆ m_initializeActive

bool m_initializeActive
private

True if modules are currently being initialized.

Creating new map slots is only allowed in a Module's initialize() function.

Definition at line 628 of file DataStore.h.

◆ m_regexNamedRelationCheck

const std::regex m_regexNamedRelationCheck = std::regex("^[a-zA-Z]*$")
private

Regular expression to check that no special characters and no white spaces are in the string given for namedRelations.

Definition at line 634 of file DataStore.h.

◆ m_storeEntryMap

SwitchableDataStoreContents m_storeEntryMap
private

Maps (name, durability) key to StoreEntry objects.

Definition at line 621 of file DataStore.h.

◆ s_DoCleanup

bool s_DoCleanup = false
static

Global flag to to decide if we can do normal cleanup.

If the normal basf2 execution is bypassed, e.g. in tests or separate binaries, we cannot guarantee that exit handlers are called in the correct order. Since this may lead to double deletion of objects through ROOT and misleading error stack traces, we will skip cleanup in these exceptional cases.

Definition at line 100 of file DataStore.h.


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