Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RootDatabase.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 //====================================================================
6 //
7 // Package : RootStorageSvc (The POOL project)
8 //
9 // Author : M.Frank
10 //====================================================================
11 #ifndef POOL_ROOTSTORAGESVC_ROOTDBASE_H
12 #define POOL_ROOTSTORAGESVC_ROOTDBASE_H 1
13 
14 // Framework include files
15 #include "GaudiKernel/SmartIF.h"
16 #include "StorageSvc/IDbDatabase.h"
17 #include "StorageSvc/DbDatabase.h"
18 
19 #include <set>
20 #include <map>
21 #include <mutex>
22 #include <unordered_map>
23 
24 // Forward declarations
25 namespace ROOT { namespace Experimental {
26  class RNTupleReader;
27 } }
28 
29 
30 class TFile;
31 class TTree;
32 class TBranch;
33 class IFileMgr;
34 namespace RootAuxDynIO {
35  class IRootAuxDynReader;
36 }
37 namespace RootStorageSvc {
38  class RNTupleWriterHelper;
39 }
40 
41 /*
42  * POOL namespace declaration
43  */
44 namespace pool {
46 
47  class RootTreeContainer;
48 
58  class RootDatabase : public IDbDatabase
59  {
60  public:
61  enum { READ_COUNTER = 0, WRITE_COUNTER = 1, OTHER_COUNTER = 2 };
62 
63  private:
67  TFile* m_file;
69  std::string m_version;
71  long long int m_counters[3];
91  std::string m_treeNameWithCache;
100 
102  std::string m_indexMaster;
105 
107  std::map<TBranch*, uint64_t> m_indexSizeMap;
108 
110  std::set< std::string > m_indexRebuilt;
111 
112  /* --- variables used with TREE_AUTO_FLUSH option for
113  managing combined TTree::Fill for branch containers
114  */
115  // TTree names with requested AUTO_FLUSH value
116  std::map< std::string, int > m_autoFlushTrees;
117 
118  // mapping of opened (for update) branch containers, to their TTree
119  typedef std::set< RootTreeContainer* > ContainerSet_t;
120  std::map< TTree*, ContainerSet_t > m_containersInTree;
121 
122  std::map< std::string, int > m_customSplitLevel;
123 
124  SmartIF<IFileMgr> m_fileMgr;
125 
126  // mutex to prevent concurrent read I/O from AuxDynReader
127  std::recursive_mutex m_iomutex;
128 
129  std::map<std::string, std::unique_ptr<RootStorageSvc::RNTupleWriterHelper> > m_ntupleWriterMap;
130  std::map<std::string, std::unique_ptr<RNTupleReader> > m_ntupleReaderMap;
131 
132  using indexLookup_t = std::unordered_map<uint64_t, uint64_t>;
133  std::map<void*, indexLookup_t> m_ntupleIndexMap;
134 
135  public:
138 
140  virtual ~RootDatabase();
141 
143  TFile* file() { return m_file; }
144 
146  TTree* getTree(const std::string& name);
147 
149  const std::string& fmtVersion() const { return m_version; }
150 
152 
156  static bool exists(const std::string& nam);
157 
159  virtual long long int size() const;
160 
162  void addByteCount(int which, long long int num_bytes);
163 
165  long long int byteCount(int which) const;
166 
167 
169 
171 
173 
176 
179 
180 
182  bool wasIndexRebuilt(const std::string& treeName) { return m_indexRebuilt.count(treeName)!=0; }
184  void markIndexRebuilt(const std::string& treeName) { m_indexRebuilt.insert(treeName); };
185 
187  std::recursive_mutex& ioMutex() { return m_iomutex; }
188 
190 
195 
197 
201  virtual DbStatus setOption(const DbOption& opt);
202 
205 
207 
214  virtual DbStatus open(const DbDomain& domH,
215  const std::string& nam,
217 
219 
224 
226 
232 
234 
239 
242 
244  RNTupleReader* getNTupleReader(const std::string& ntuple_name);
245 
246  // translate index value to row# for a given RNTuple
248 
251  RootStorageSvc::RNTupleWriterHelper* getNTupleWriter(const std::string& ntuple_name, bool create=false);
252 
253  protected:
254  // Execute any pending Fills before commit or flush
256 
257  // Reduce branches' baskets' size to m_maxBufferSize for a give TTree
258  void reduceBasketsSize(TTree* tree);
259 
260  void increaseBasketsSize(TTree* tree);
261 
263  };
264 
265 } // End namespace pool
266 #endif /* POOL_ROOTSTORAGESVC_ROOTDBASE_H */
pool::RootDatabase::RootDatabase
RootDatabase()
Standard Constructor.
pool::RootDatabase::increaseBasketsSize
void increaseBasketsSize(TTree *tree)
pool::DbAccessMode
int DbAccessMode
Definition: Database/APR/StorageSvc/StorageSvc/pool.h:47
pool::RootDatabase::setOption
virtual DbStatus setOption(const DbOption &opt)
Set options.
pool::RootDatabase::transAct
virtual DbStatus transAct(Transaction::Action action)
Execute Database Transaction action.
pool::RootDatabase::close
virtual DbStatus close(DbAccessMode mode)
Close database access.
pool::RootDatabase::m_customSplitLevel
std::map< std::string, int > m_customSplitLevel
Definition: RootDatabase.h:122
pool::DbStatus
Definition: DbStatus.h:67
pool::RootDatabase::currentIndexMasterID
uint64_t currentIndexMasterID() const
Definition: RootDatabase.h:172
pool::RootDatabase::m_branchOffsetTabLen
int m_branchOffsetTabLen
Offset table length for branches.
Definition: RootDatabase.h:89
make_coralServer_rep.opt
opt
Definition: make_coralServer_rep.py:19
IDbDatabase.h
pool::RootDatabase::m_defTreeCacheLearnEvents
int m_defTreeCacheLearnEvents
Default tree cache learn events.
Definition: RootDatabase.h:93
pool::RootDatabase::m_ntupleReaderMap
std::map< std::string, std::unique_ptr< RNTupleReader > > m_ntupleReaderMap
Definition: RootDatabase.h:130
pool::RootDatabase::m_maxBufferSize
int m_maxBufferSize
Maximum buffer size parameter for Branches.
Definition: RootDatabase.h:83
pool::RootDatabase::m_indexRebuilt
std::set< std::string > m_indexRebuilt
marks if the index (for index Containers) was rebuilt for given TTree
Definition: RootDatabase.h:110
pool::RootDatabase::size
virtual long long int size() const
Access the size of the database: May be undefined for some technologies.
pool::RootDatabase::m_defSplitLevel
int m_defSplitLevel
Default split level.
Definition: RootDatabase.h:77
pool::RootDatabase::m_indexMasterID
uint64_t m_indexMasterID
nextID of the master index
Definition: RootDatabase.h:104
pool::RootDatabase::m_indexSizeMap
std::map< TBranch *, uint64_t > m_indexSizeMap
Keep index sizes here, because Branches are emptied when fast merged by SharedWriter.
Definition: RootDatabase.h:107
pool::RootDatabase::m_ntupleWriterMap
std::map< std::string, std::unique_ptr< RootStorageSvc::RNTupleWriterHelper > > m_ntupleWriterMap
Definition: RootDatabase.h:129
pool::RootDatabase::fillBranchContainerTrees
DbStatus fillBranchContainerTrees()
pool::RootDatabase::m_fileMgr
SmartIF< IFileMgr > m_fileMgr
Definition: RootDatabase.h:124
tree
TChain * tree
Definition: tile_monitor.h:30
pool
pool namespace
Definition: libname.h:15
pool::RootDatabase::m_containersInTree
std::map< TTree *, ContainerSet_t > m_containersInTree
Definition: RootDatabase.h:120
pool::RootDatabase::m_dbH
DbDatabase m_dbH
Parent Database handle.
Definition: RootDatabase.h:65
pool::RootDatabase::m_defCompressionAlg
int m_defCompressionAlg
Default compression algorithm.
Definition: RootDatabase.h:75
pool::RootDatabase::m_rntReaderMetricsEnabled
int m_rntReaderMetricsEnabled
Flag to enable/disable RNTupleReader metrics.
Definition: RootDatabase.h:97
pool::RootDatabase::m_indexMaster
std::string m_indexMaster
name of the container with master index ('*' means use the biggest)
Definition: RootDatabase.h:102
pool::RootDatabase::getNTupleReader
RNTupleReader * getNTupleReader(const std::string &ntuple_name)
return RNTupleReader for a given ntuple_name
pool::RootDatabase::close
DbStatus close()
pool::RootDatabase::WRITE_COUNTER
@ WRITE_COUNTER
Definition: RootDatabase.h:61
pool::RootDatabase::m_defWritePolicy
int m_defWritePolicy
Default policy mode for keyed objects.
Definition: RootDatabase.h:87
DbDatabase.h
pool::RootDatabase::m_ntupleIndexMap
std::map< void *, indexLookup_t > m_ntupleIndexMap
Definition: RootDatabase.h:133
pool::RootDatabase::wasIndexRebuilt
bool wasIndexRebuilt(const std::string &treeName)
Check if a given TTree had its index rebuilt.
Definition: RootDatabase.h:182
pool::RootDatabase::m_counters
long long int m_counters[3]
Counter statistics.
Definition: RootDatabase.h:71
pool::RootDatabase::m_rntWriterMetricsEnabled
int m_rntWriterMetricsEnabled
Flag to enable/disable RNTupleWriter metrics.
Definition: RootDatabase.h:99
pool::IDbDatabase
Definition: IDbDatabase.h:41
pool::RootDatabase::ioMutex
std::recursive_mutex & ioMutex()
provide access to the I/O mutex for AuxDynReader and Containers
Definition: RootDatabase.h:187
pool::DbOption
Definition: DbOption.h:36
pool::RootDatabase::registerBranchContainer
void registerBranchContainer(RootTreeContainer *)
pool::RootDatabase::getNTupleWriter
RootStorageSvc::RNTupleWriterHelper * getNTupleWriter(const std::string &ntuple_name, bool create=false)
Return RNTupleWriterHelper for a given ntuple_name create a new one if needed when create==true.
pool::RootDatabase::byteCount
long long int byteCount(int which) const
Do some statistics: retrieve number of bytes read/written/other.
pool::RootDatabase::m_defBufferSize
int m_defBufferSize
Default buffer size parameter for Branches.
Definition: RootDatabase.h:81
pool::RootDatabase::m_iomutex
std::recursive_mutex m_iomutex
Definition: RootDatabase.h:127
pool::RootDatabase::file
TFile * file()
Access to the actual implemented file.
Definition: RootDatabase.h:143
dumpFileToPlots.treeName
string treeName
Definition: dumpFileToPlots.py:20
pool::RootDatabase::READ_COUNTER
@ READ_COUNTER
Definition: RootDatabase.h:61
xAOD::uint64_t
uint64_t
Definition: EventInfo_v1.cxx:123
Preparation.mode
mode
Definition: Preparation.py:107
pool::RootDatabase::reopen
virtual DbStatus reopen(DbAccessMode mode)
Re-open database with changing access permissions.
python.Utils.unixtools.which
def which(filename, env=os.environ)
UNIX-style which ---------------------------------------------------------—.
Definition: unixtools.py:39
pool::RootTreeContainer
Definition: RootTreeContainer.h:60
pool::RootDatabase::addByteCount
void addByteCount(int which, long long int num_bytes)
Do some statistics: add number of bytes read/written/other.
pool::RootDatabase::indexSize
uint64_t indexSize(TBranch *branch)
get index size for indexed containers
Definition: RootDatabase.h:175
pool::RootDatabase::~RootDatabase
virtual ~RootDatabase()
Standard destructor.
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
pool::RootDatabase::indexLookup_t
std::unordered_map< uint64_t, uint64_t > indexLookup_t
Definition: RootDatabase.h:132
pool::Transaction::Action
Action
Definition: Transaction.h:34
pool::RootDatabase::OTHER_COUNTER
@ OTHER_COUNTER
Definition: RootDatabase.h:61
pool::RootDatabase::m_minBufferEntries
int m_minBufferEntries
Minimum buffer entries parameter for Branches.
Definition: RootDatabase.h:85
pool::RootDatabase::markBranchContainerForFill
DbStatus markBranchContainerForFill(RootTreeContainer *)
RootAuxDynIO
Specialization of RootAuxDynStore for reading Aux Dynamic attributes from RNTuple.
Definition: RNTupleContainer.h:26
pool::RootDatabase::reduceBasketsSize
void reduceBasketsSize(TTree *tree)
pool::RootDatabase::open
virtual DbStatus open(const DbDomain &domH, const std::string &nam, DbAccessMode mode)
Open Database object.
pool::DbDomain
Definition: DbDomain.h:47
pool::RootDatabase::getTree
TTree * getTree(const std::string &name)
Get TTree by name from the TFile.
RTTAlgmain.branch
branch
Definition: RTTAlgmain.py:61
pool::RootDatabase::m_rntBufferedWriteEnabled
int m_rntBufferedWriteEnabled
Flag to enable/disable buffered RNTuple writing.
Definition: RootDatabase.h:95
pool::RootDatabase::m_file
TFile * m_file
Reference to the actual implemented file.
Definition: RootDatabase.h:67
pool::RootDatabase::onOpen
virtual DbStatus onOpen(DbDatabase &dbH, DbAccessMode mode)
Callback after successful open of a database object.
RootStorageSvc::RNTupleWriterHelper
Definition: RNTupleWriterHelper.h:31
pool::RootDatabase::fmtVersion
const std::string & fmtVersion() const
Access to the version string.
Definition: RootDatabase.h:149
pool::RootDatabase
Definition: RootDatabase.h:59
pool::RootDatabase::m_defAutoSave
int m_defAutoSave
Default Autosave parameter for trees.
Definition: RootDatabase.h:79
python.CaloScaleNoiseConfig.action
action
Definition: CaloScaleNoiseConfig.py:77
pool::RootDatabase::indexLookup
uint64_t indexLookup(RNTupleReader *ps, uint64_t idx_val)
pool::RootDatabase::m_autoFlushTrees
std::map< std::string, int > m_autoFlushTrees
Definition: RootDatabase.h:116
pool::RootDatabase::getOption
virtual DbStatus getOption(DbOption &opt)
Access options.
RNTupleReader
ROOT::Experimental::RNTupleReader RNTupleReader
Definition: RNTupleAuxDynStore.h:19
pool::RootDatabase::m_defCompression
int m_defCompression
Default compression level.
Definition: RootDatabase.h:73
pool::RootDatabase::markIndexRebuilt
void markIndexRebuilt(const std::string &treeName)
Mark that a given TTree had its index rebuilt.
Definition: RootDatabase.h:184
pool::RootDatabase::m_version
std::string m_version
Persistency format version.
Definition: RootDatabase.h:69
pool::RootDatabase::exists
static bool exists(const std::string &nam)
Check for file-existence.
pool::DbDatabase
Definition: DbDatabase.h:53
pool::RootDatabase::setAutoFlush
virtual DbStatus setAutoFlush(const DbOption &opt)
implementation of TREE_AUTO_FLUSH option - called from setOption()
pool::RootDatabase::indexSizeInc
uint64_t indexSizeInc(TBranch *branch)
increase index size counter for indexed containers (by 1)
Definition: RootDatabase.h:178
pool::RootDatabase::ContainerSet_t
std::set< RootTreeContainer * > ContainerSet_t
Definition: RootDatabase.h:119
RootStorageSvc
Definition: RNTupleContainer.h:27
ROOT
Selection rules: declare transient members.
Definition: DataVector.h:580
pool::RootDatabase::m_treeNameWithCache
std::string m_treeNameWithCache
Name of tree with cache.
Definition: RootDatabase.h:91