314 fBrNames(new
TList), fTree(
tree), fPrefillType(GetConfiguredPrefillType())
317 Int_t nleaves =
tree->GetListOfLeaves()->GetEntriesFast();
381 const char *bname =
b->GetName();
382 if (
fTree->IsA() == TChain::Class()) {
389 const char *mothername =
b->GetMother()->GetName();
390 if (
b !=
b->GetMother() && mothername[strlen(mothername)-1] !=
'.') {
393 if (bem->GetType() < 3) {
397 if (strncmp(bname,build.
Data(),build.
Length()) != 0) {
399 bname = build.
Data();
406 if (
gDebug > 0) printf(
"Entry: %lld, registering branch: %s\n",
b->GetTree()->GetReadEntry(),
b->GetName());
414 for (
Int_t j = 0; j < nb; j++) {
416 if (!branch)
continue;
441 TLeaf *leaf, *leafcount;
452 if (!strcmp(bname,
"*")) all =
kTRUE;
453 for (i=0;i<nleaves;i++) {
460 if (strcmp(bname,branch->
GetName())
469 if (leafcount && !all) {
476 if (nb==0 && strchr(bname,
'*')==0) {
497 char *subbranch = (
char*)strstr(bname,fe->
GetName());
498 if (subbranch!=bname) subbranch = 0;
500 subbranch += strlen(fe->
GetName());
501 if ( *subbranch !=
'.' ) subbranch = 0;
513 if (!nb && !foundInFriend) {
514 if (
gDebug > 0) printf(
"AddBranch: unknown branch -> %s \n", bname);
515 Error(
"AddBranch",
"unknown branch -> %s", bname);
545 if (
gDebug > 0) printf(
"Entry: %lld, un-registering branch: %s\n",
b->GetTree()->GetReadEntry(),
b->GetName());
554 for (
Int_t j = 0; j < nb; j++) {
556 if (!branch)
continue;
581 TLeaf *leaf, *leafcount;
592 if (!strcmp(bname,
"*")) all =
kTRUE;
593 for (i=0;i<nleaves;i++) {
600 if (strcmp(bname,branch->
GetName())
609 if (leafcount && !all) {
616 if (nb==0 && strchr(bname,
'*')==0) {
637 char *subbranch = (
char*)strstr(bname,fe->
GetName());
638 if (subbranch!=bname) subbranch = 0;
640 subbranch += strlen(fe->
GetName());
641 if ( *subbranch !=
'.' ) subbranch = 0;
653 if (!nb && !foundInFriend) {
654 if (
gDebug > 0) printf(
"DropBranch: unknown branch -> %s \n", bname);
655 Error(
"DropBranch",
"unknown branch -> %s", bname);
722 Int_t *lbaskets =
b.GetBasketBytes();
729 Int_t blistsize =
b.GetWriteBasket();
738 if (basketOffset < 0) {
744 if ((basketOffset < blistsize) &&
b.GetListOfBaskets()->UncheckedAt(basketOffset)) {
750 Long64_t pos =
b.GetBasketSeek(basketOffset);
751 Int_t len = lbaskets[basketOffset];
792 TBranch *resultBranch =
nullptr;
795 std::vector<std::pair<size_t, Int_t>> basketsInfo;
799 for (
int i = 0; i < count; i++) {
804 if (iopos.
fLen == 0) {
807 if (iopos.
fPos == pos && iopos.
fLen == len) {
808 found_request =
kTRUE;
816 Int_t blistsize =
b->GetWriteBasket();
817 Int_t basketNumber = -1;
818 for (
Int_t bn = 0; bn < blistsize; ++bn) {
819 if (iopos.
fPos ==
b->GetBasketSeek(bn)) {
824 if (basketNumber >= 0)
825 basketsInfo.emplace_back((
size_t)i, basketNumber);
834 for (
auto &info : basketsInfo) {
835 perfStats->SetLoadedMiss(info.first, info.second);
886 std::vector<Long64_t> positions;
887 positions.reserve(
fMissCache->fEntries.size());
888 std::vector<Int_t> lengths;
892 positions.push_back(mcentry.fIO.fPos);
893 lengths.push_back(mcentry.fIO.fLen);
894 mcentry.fIndex = cumulative;
895 cumulative += mcentry.fIO.fLen;
927 auto iter = std::lower_bound(
fMissCache->fEntries.begin(),
fMissCache->fEntries.end(), mcentry);
930 if (len > iter->fIO.fLen) {
934 auto offset = iter->fIndex;
935 memcpy(buf, &(
fMissCache->fData[offset]), len);
955 auto offset = iter->fIndex;
957 memcpy(buf, &(
fMissCache->fData[offset]), len);
978 Range() : fMin(-1), fMax(-1) {}
982 if (fMin == -1 || min < fMin)
988 if (fMax == -1 || fMax < max)
992 Bool_t Contains(
Long64_t entry) {
return (fMin <= entry && entry <= fMax); }
995 std::vector<Range> fRanges;
996 std::map<Long64_t,size_t> fMinimums;
997 std::map<Long64_t,size_t> fMaximums;
999 BasketRanges(
size_t nBranches) { fRanges.resize(nBranches); }
1003 Range &range = fRanges.at(branchNumber);
1006 range.UpdateMin(min);
1007 range.UpdateMax(max);
1009 if (old.fMax != range.fMax) {
1010 if (old.fMax != -1) {
1011 auto maxIter = fMaximums.find(old.fMax);
1012 if (maxIter != fMaximums.end()) {
1013 if (maxIter->second == 1) {
1014 fMaximums.erase(maxIter);
1016 --(maxIter->second);
1024 void Update(
size_t branchNumber,
size_t basketNumber,
Long64_t *entries,
size_t nb,
size_t max)
1026 Update(branchNumber, entries[basketNumber],
1027 (basketNumber < (nb - 1)) ? (entries[basketNumber + 1] - 1) : max - 1);
1031 bool CheckAllIncludeRange()
1034 for (
const auto &
r : fRanges) {
1035 if (result.fMin == -1 || result.fMin <
r.fMin) {
1037 result.fMin =
r.fMin;
1039 if (result.fMax == -1 ||
r.fMax < result.fMax) {
1041 result.fMax =
r.fMax;
1048 Range allIncludedRange(AllIncludedRange());
1050 return (result.fMin == allIncludedRange.fMin && result.fMax == allIncludedRange.fMax);
1060 Range AllIncludedRange()
1063 if (!fMinimums.empty())
1064 result.fMin = fMinimums.rbegin()->first;
1065 if (!fMaximums.empty())
1066 result.fMax = fMaximums.begin()->first;
1071 UInt_t BranchesRegistered()
1074 for (
const auto &
r : fRanges) {
1075 if (
r.fMin != -1 &&
r.fMax != -1)
1085 for (
const auto &
r : fRanges) {
1086 if (
r.fMin != -1 &&
r.fMax != -1)
1087 if (
r.fMin <= entry && entry <=
r.fMax)
1095 for (
size_t i = 0; i < fRanges.size(); ++i) {
1096 if (fRanges[i].fMin != -1 || fRanges[i].fMax != -1)
1097 Printf(
"Range #%zu : %lld to %lld", i, fRanges[i].fMin, fRanges[i].fMax);
1156 if (entry < 0) entry = 0;
1162 if (entry < 0)
return kFALSE;
1168 if (entry < 0 && fEntryNext > 0) {
1188 static constexpr bool showMore =
kFALSE;
1190 static const auto PrintAllCacheInfo = [](
TObjArray *branches) {
1191 for (
Int_t i = 0; i < branches->GetEntries(); i++) {
1197 if (showMore ||
gDebug > 6)
1198 Info(
"FillBuffer",
"***** Called for entry %lld", entry);
1206 if (!
b->fCacheInfo.AllUsed()) {
1213 if (showMore ||
gDebug > 5)
1214 Info(
"FillBuffer",
"All baskets used already, so refresh the cache early at entry %lld", entry);
1233 resetBranchInfo =
kTRUE;
1234 if (showMore ||
gDebug > 6)
1235 Info(
"FillBuffer",
"*** Will reset the branch information about baskets");
1236 }
else if (showMore ||
gDebug > 6) {
1237 Info(
"FillBuffer",
"*** Info we have on the set of baskets");
1244 auto entryCurrent = clusterIter();
1260 if (showMore ||
gDebug > 6)
1274 if (resetBranchInfo) {
1277 if (!(fEntryCurrent < fCurrentClusterStart || fEntryCurrent >=
fNextClusterStart)) {
1278 Error(
"FillBuffer",
"Inconsistency: fCurrentClusterStart=%lld fEntryCurrent=%lld fNextClusterStart=%lld "
1279 "but fEntryCurrent should not be in between the two",
1295 if (
fTree->IsA() ==TChain::Class()) {
1303 Int_t ntotCurrentBuf = 0;
1307 ntotCurrentBuf =
fNtot;
1316 ntotCurrentBuf =
fNtot;
1323 Int_t clusterIterations = 0;
1327 Int_t nReadPrefRequest = 0;
1330 struct collectionInfo {
1331 Int_t fClusterStart{-1};
1335 void Rewind() { fCurrent = (fClusterStart >= 0) ? fClusterStart : 0; }
1337 std::vector<collectionInfo> cursor(
fNbranches);
1345 prevNtot = ntotCurrentBuf;
1351 Int_t nDistinctLoad = 0;
1363 auto CollectBaskets = [
this, elist, chainOffset, entry, clusterIterations, resetBranchInfo, perfStats,
1364 &cursor, &lowestMaxEntry, &maxReadEntry, &minEntry,
1365 &reachedEnd, &skippedFirst, &oncePerBranch, &nDistinctLoad, &progress,
1366 &ranges, &memRanges, &reqRanges,
1367 &ntotCurrentBuf, &nReadPrefRequest](EPass pass, ENarrow narrow,
Long64_t maxCollectEntry) {
1371 Int_t nReachedEnd = 0;
1373 auto oldnReadPrefRequest = nReadPrefRequest;
1374 std::vector<Int_t> potentialVetoes;
1376 if (showMore ||
gDebug > 7)
1377 Info(
"CollectBaskets",
"Called with pass=%d narrow=%d maxCollectEntry=%lld", pass, narrow, maxCollectEntry);
1384 if (
b->GetDirectory()->GetFile() !=
fFile)
1386 potentialVetoes.clear();
1387 if (pass == kStart && !cursor[i].fLoadedOnce && resetBranchInfo) {
1391 b->fCacheInfo.GetUnused(potentialVetoes);
1392 if (showMore ||
gDebug > 7) {
1394 for(
auto v : potentialVetoes) {
1398 if (!potentialVetoes.empty())
1399 Info(
"FillBuffer",
"*** Potential Vetos for branch #%d: %s", i, vetolist.
Data());
1401 b->fCacheInfo.Reset();
1403 Int_t nb =
b->GetMaxBaskets();
1404 Int_t *lbaskets =
b->GetBasketBytes();
1405 Long64_t *entries =
b->GetBasketEntry();
1406 if (!lbaskets || !entries)
1410 Int_t blistsize =
b->GetListOfBaskets()->GetSize();
1412 auto maxOfBasket = [
this, nb, entries](
int j) {
1413 return ((j < (nb - 1)) ? (entries[j + 1] - 1) :
fEntryMax - 1);
1416 if (pass == kRewind)
1418 else if (cursor[i].fCurrent == -1) {
1420 cursor[i].fCurrent = (start < 0) ? 0 : start;
1422 for (
auto &j = cursor[i].fCurrent; j < nb; j++) {
1425 if (j < blistsize && b->GetListOfBaskets()->UncheckedAt(j)) {
1427 if (showMore ||
gDebug > 6) {
1428 ranges.Update(i, entries[j], maxOfBasket(j));
1429 memRanges.Update(i, entries[j], maxOfBasket(j));
1431 if (entries[j] <= entry && entry <= maxOfBasket(j)) {
1432 b->fCacheInfo.SetIsInCache(j);
1433 b->fCacheInfo.SetUsed(j);
1447 if (entries[j] >= maxCollectEntry) {
1453 Int_t len = lbaskets[j];
1454 if (pos <= 0 || len <= 0)
1458 if ((showMore ||
gDebug > 7) &&
1459 (!(entries[j] < minEntry && (j < nb - 1 && entries[j + 1] <= minEntry))))
1460 Info(
"FillBuffer",
"Skipping branch %s basket %d is too large for the cache: %d > %d",
1465 if (nReadPrefRequest && entries[j] > (reqRanges.AllIncludedRange().fMax + 1)) {
1475 if (showMore ||
gDebug > 8)
1476 Info(
"FillBuffer",
"Skipping for now due to gap %d/%d with %lld > %lld", i, j, entries[j],
1477 (reqRanges.AllIncludedRange().fMax + 1));
1481 if (entries[j] < minEntry && (j<nb-1 && entries[j+1] <= minEntry))
1485 if (cursor[i].fClusterStart == -1)
1486 cursor[i].fClusterStart = j;
1491 emax = entries[j + 1] - 1;
1492 if (!elist->
ContainsRange(entries[j]+chainOffset,emax+chainOffset))
1496 if (
b->fCacheInfo.HasBeenUsed(j) ||
b->fCacheInfo.IsInCache(j) ||
b->fCacheInfo.IsVetoed(j)) {
1499 if (showMore ||
gDebug > 7)
1500 Info(
"FillBuffer",
"Skipping basket to avoid redo: %d/%d veto: %d", i, j,
b->fCacheInfo.IsVetoed(j));
1504 if (std::find(std::begin(potentialVetoes), std::end(potentialVetoes), j) != std::end(potentialVetoes)) {
1511 b->fCacheInfo.Veto(j);
1512 if (showMore ||
gDebug > 7)
1513 Info(
"FillBuffer",
"Veto-ing cluster %d [%lld,%lld[ in branch %s #%d", j, entries[j],
1514 maxOfBasket(j) + 1,
b->GetName(), i);
1519 if ((((entries[j] > entry)) || (j < nb - 1 && entries[j + 1] <= entry))) {
1521 if (j == cursor[i].fClusterStart && entry > entries[j])
1523 if (entries[j] > entry)
1532 if (clusterIterations > 0 && cursor[i].fLoadedOnce) {
1536 if (showMore ||
gDebug > 5) {
1539 "Breaking early because %d is greater than %d at cluster iteration %d will restart at %lld",
1540 (ntotCurrentBuf + len),
fBufferSizeMin, clusterIterations, minEntry);
1546 if (pass == kStart || !cursor[i].fLoadedOnce) {
1554 if (showMore ||
gDebug > 5) {
1555 Info(
"FillBuffer",
"Breaking early because %d is greater than 4*%d at cluster iteration "
1556 "%d pass %d will restart at %lld",
1568 if (showMore ||
gDebug > 5) {
1569 Info(
"FillBuffer",
"Breaking early because %d is greater than 2*%d at cluster iteration "
1570 "%d pass %d will restart at %lld",
1582 reqRanges.Update(i, j, entries, nb,
fEntryMax);
1583 if (showMore ||
gDebug > 6)
1584 ranges.Update(i, j, entries, nb,
fEntryMax);
1586 b->fCacheInfo.SetIsInCache(j);
1588 if (showMore ||
gDebug > 6)
1589 Info(
"FillBuffer",
"*** Registering branch %d basket %d %s", i, j,
b->GetName());
1591 if (!cursor[i].fLoadedOnce) {
1592 cursor[i].fLoadedOnce =
kTRUE;
1596 perfStats->SetLoaded(i, j);
1603 ntotCurrentBuf =
fNtot;
1612 ntotCurrentBuf =
fNtot;
1615 if ( ( j < (nb-1) ) && entries[j+1] > maxReadEntry ) {
1617 maxReadEntry = entries[j+1];
1621 Warning(
"FillBuffer",
"There is more data in this cluster (starting at entry %lld to %lld, "
1622 "current=%lld) than usual ... with %d %.3f%% of the branches we already have "
1623 "%d bytes (instead of %d)",
1627 if (pass == kStart) {
1629 auto high = maxOfBasket(j);
1630 if (high < lowestMaxEntry)
1631 lowestMaxEntry = high;
1635 }
else if ((j + 1) == nb || entries[j + 1] >= maxReadEntry || entries[j + 1] >= lowestMaxEntry) {
1637 auto high = maxOfBasket(j);
1638 if (high < lowestMaxEntry)
1639 lowestMaxEntry = high;
1646 if (cursor[i].fCurrent == nb) {
1651 Info(
"CollectBaskets",
1652 "Entry: %lld, registering baskets branch %s, fEntryNext=%lld, fNseek=%d, ntotCurrentBuf=%d",
1656 skippedFirst = (nSkipped > 0);
1657 oncePerBranch = (nDistinctLoad ==
fNbranches);
1658 progress = nReadPrefRequest - oldnReadPrefRequest;
1665 full = CollectBaskets(kStart, kNarrow,
fEntryNext);
1669 while (!full && !reachedEnd && progress) {
1670 full = CollectBaskets(kStart, kFull, std::min(maxReadEntry,
fEntryNext));
1673 resetBranchInfo =
kFALSE;
1678 full = CollectBaskets(kRegular, kFull,
fEntryNext);
1679 }
while (!full && !reachedEnd && progress);
1683 if (!full && skippedFirst) {
1684 full = CollectBaskets(kRewind, kFull,
fEntryNext);
1685 while (!full && !reachedEnd && progress) {
1686 full = CollectBaskets(kRegular, kFull,
fEntryNext);
1690 clusterIterations++;
1692 minEntry = clusterIter.
Next();
1710 (prevNtot < ntotCurrentBuf) && (minEntry <
fEntryMax))) {
1711 if (showMore ||
gDebug > 6)
1712 Info(
"FillBuffer",
"Breaking because %d <= %lld || (%d >= %d) || %lld >= %lld",
fBufferSizeMin,
1713 ((
Long64_t)ntotCurrentBuf * (clusterIterations + 1)) / clusterIterations, prevNtot, ntotCurrentBuf,
1722 if (minEntry >= fEntryCurrentMax && fEntryCurrentMax > 0)
1730 if (showMore ||
gDebug > 6) {
1731 Info(
"FillBuffer",
"Mem ranges");
1733 Info(
"FillBuffer",
"Combined ranges");
1735 Info(
"FillBuffer",
"Requested ranges");
1740 if (nReadPrefRequest == 0) {
1744 if (showMore ||
gDebug > 5) {
1745 Info(
"FillBuffer",
"For entry %lld, nothing was added to the cache.", entry);
1747 }
else if (
fEntryNext < firstClusterEnd && !reqRanges.Contains(entry)) {
1759 if (showMore ||
gDebug > 5) {
1760 Error(
"FillBuffer",
"Reset the next entry because the currently loaded range does not contains the request "
1761 "entry: %lld. fEntryNext updated from %lld to %lld. %d",
1762 entry,
fEntryNext, firstClusterEnd, nReadPrefRequest);
1768 if (showMore ||
gDebug > 5) {
1769 Info(
"FillBuffer",
"Complete adding %d baskets from %d branches taking in memory %d out of %d",
1770 nReadPrefRequest, reqRanges.BranchesRegistered(), ntotCurrentBuf,
fBufferSizeMin);
1799 if (!(stcp =
gSystem->
Getenv(
"ROOT_TTREECACHE_PREFILL")) || !*stcp) {
1897 printf(
"Number of branches in the cache ...: %d\n",
fNbranches);
1898 printf(
"Cache Efficiency ..................: %f\n",
GetEfficiency());
1903 if ( opt.
Contains(
"cachedbranches") ) {
1905 printf(
"Cached branches....................:\n");
1908 for (
Int_t i = 0; i < nbranches; ++i) {
1910 printf(
"Branch name........................: %s\n",branch->
GetName());
1929 ::Info(
"TTreeCache::ReadBufferNormal",
"Cache miss after an %s FillBuffer: pos=%lld",
1930 bufferFilled ?
"active" :
"inactive", basketpos);
1931 for (
Int_t i = 0; i < branches->GetEntries(); ++i) {
1933 Int_t blistsize =
b->GetListOfBaskets()->GetSize();
1934 for (
Int_t j = 0; j < blistsize; ++j) {
1935 if (basketpos ==
b->GetBasketSeek(j)) {
1937 ::Info(
"TTreeCache::ReadBufferNormal",
" Missing basket: %d for %s", j,
b->GetName());
1951 else if (res == 0) {
1955 recordMiss(perfStats,
fBranches, bufferFilled, pos);
1968 recordMiss(perfStats,
fBranches, bufferFilled, pos);
2038 if (
b->GetDirectory()->GetFile() !=
fFile)
2040 b->fCacheInfo.Reset();
2072 if (res == 0 && buffersize <= prevsize) {
2107 Info(
"SetEntryRange",
"fEntryMin=%lld, fEntryMax=%lld, fEntryNext=%lld",
2110 if (needLearningStart) {
2258 if (entry < fEntryMin || entry >
fEntryMax)
return;
#define R__unlikely(expr)
unsigned long long ULong64_t
void Printf(const char *fmt,...)
R__EXTERN TSystem * gSystem
A Branch for the case of an object.
A TTree is a list of TBranches.
@ kDoNotProcess
Active bit for branches.
void PrintCacheInfo() const
Print the information we have about which basket is currently cached and whether they have been 'used...
Long64_t fEntries
Number of entries.
A chain is a collection of files containing TTree objects.
virtual Int_t GetTreeNumber() const
Long64_t * GetTreeOffset() const
virtual Int_t GetEntries() const
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
A TEventList object is a list of selected events (entries) in a TTree.
virtual Bool_t ContainsRange(Long64_t entrymin, Long64_t entrymax)
Return TRUE if list contains entries from entrymin to entrymax included.
A cache when reading files over the network.
virtual Int_t SetBufferSize(Int_t buffersize)
Sets the buffer size.
virtual Int_t ReadBuffer(char *buf, Long64_t pos, Int_t len)
Read buffer at position pos.
virtual void SecondPrefetch(Long64_t, Int_t)
virtual void Print(Option_t *option="") const
Print cache statistics.
Bool_t fEnablePrefetching
reading by prefetching asynchronously
Int_t fNtot
Total size of prefetched blocks.
virtual void Prefetch(Long64_t pos, Int_t len)
Add block of length len at position pos in the list of blocks to be prefetched.
Int_t fBufferSizeMin
Original size of fBuffer.
Bool_t fIsTransferred
True when fBuffer contains something valid.
TFile * fFile
Pointer to file.
Int_t fNseek
Number of blocks to be prefetched.
virtual Int_t GetBufferSize() const
virtual void SetFile(TFile *file, TFile::ECacheAction action=TFile::kDisconnect)
Set the file using this cache and reset the current blocks (if any).
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
virtual Bool_t ReadBuffers(char *buf, Long64_t *pos, Int_t *len, Int_t nbuf)
Read the nbuf blocks described in arrays pos and len.
ECacheAction
TTreeCache flushing semantics.
virtual void SetCacheRead(TFileCacheRead *cache, TObject *tree=0, ECacheAction action=kDisconnect)
Set a pointer to the read cache.
A TFriendElement TF describes a TTree object TF in a file.
virtual TTree * GetTree()
Return pointer to friend TTree.
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
virtual TLeaf * GetLeafCount() const
If this leaf stores a variable-sized array or a multi-dimensional array whose last dimension has vari...
TBranch * GetBranch() const
virtual void Add(TObject *obj)
virtual TObject * Remove(TObject *obj)
Remove object from the list.
virtual TObject * FindObject(const char *name) const
Find an object in this list using its name.
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
virtual const char * GetName() const
Returns name of object.
Int_t GetEntriesFast() const
virtual void AddAtAndExpand(TObject *obj, Int_t idx)
Add object at position idx.
TObject * UncheckedAt(Int_t i) const
virtual TObject * Remove(TObject *obj)
Remove object from array.
virtual void AddAt(TObject *obj, Int_t idx)
Add object at position ids.
Collectable string class.
const char * GetName() const
Returns name of object.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Regular expression class.
void ToLower()
Change string to lower-case.
Int_t Atoi() const
Return integer value of string.
const char * Data() const
TString & ReplaceAll(const TString &s1, const TString &s2)
TString & Append(const char *cs)
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
virtual const char * Getenv(const char *env)
Get environment variable.
A cache to speed-up the reading of ROOT datasets.
virtual Int_t AddBranch(TBranch *b, Bool_t subgbranches=kFALSE)
Add a branch to the list of branches to be stored in the cache this function is called by the user vi...
virtual void SetLearnPrefill(EPrefillType type=kNoPrefill)
Set whether the learning period is started with a prefilling of the cache and which type of prefillin...
virtual void UpdateBranches(TTree *tree)
Update pointer to current Tree and recompute pointers to the branches in the cache.
void SetOptimizeMisses(Bool_t opt)
Start of methods for the miss cache.
Double_t GetEfficiencyRel() const
This will indicate a sort of relative efficiency... a ratio of the reads found in the cache to the nu...
Bool_t fReverseRead
! reading in reverse mode
Bool_t fLearnPrefilling
! true if we are in the process of executing LearnPrefill
Long64_t fLastMiss
! set to the event # of the last miss.
Int_t fNMissReadPref
Number of blocks read into the secondary ("miss") cache.
virtual Int_t SetBufferSize(Int_t buffersize)
Change the underlying buffer size of the cache.
Int_t fNMissReadOk
Number of blocks read, not found in the primary cache, and found in the secondary cache.
Bool_t fOneTime
! used in the learning phase
virtual void SetFile(TFile *file, TFile::ECacheAction action=TFile::kDisconnect)
Overload to make sure that the object specific.
Long64_t fEntryMin
! first entry in the cache
virtual Bool_t FillBuffer()
Fill the cache buffer with the branches in the cache.
Bool_t ProcessMiss(Long64_t pos, int len)
! Given a file read not in the miss cache, handle (possibly) loading the data.
static void SetLearnEntries(Int_t n=10)
Static function to set the number of entries to be used in learning mode The default value for n is 1...
Long64_t fEntryNext
! next entry number where cache must be filled
Int_t fNReadMiss
Number of blocks read and not found in the cache.
Double_t GetEfficiency() const
Give the total efficiency of the primary cache... defined as the ratio of blocks found in the cache v...
Bool_t fEnabled
! cache enabled for cached reading
Bool_t fIsLearning
! true if cache is in learning mode
Long64_t fNextClusterStart
! End+1 of the cluster(s) where the current content was picked out
const TObjArray * GetCachedBranches() const
virtual ~TTreeCache()
Destructor. (in general called by the TFile destructor)
Bool_t CheckMissCache(char *buf, Long64_t pos, int len)
Check the miss cache for a particular buffer, fetching if deemed necessary.
Int_t fNMissReadMiss
Number of blocks read and not found in either cache.
IOPos FindBranchBasketPos(TBranch &, Long64_t entry)
Given a branch and an entry, determine the file location (offset / size) of the corresponding basket.
virtual void SetEntryRange(Long64_t emin, Long64_t emax)
Set the minimum and maximum entry number to be processed this information helps to optimize the numbe...
TTreeCache()
Default Constructor.
std::unique_ptr< MissCache > fMissCache
! Cache contents for misses
Bool_t fFirstTime
! save the fact that we processes the first entry
void StartLearningPhase()
The name should be enough to explain the method.
virtual Int_t LearnBranch(TBranch *b, Bool_t subgbranches=kFALSE)
Add a branch discovered by actual usage to the list of branches to be stored in the cache this functi...
Bool_t fReadDirectionSet
! read direction established
TBranch * CalculateMissEntries(Long64_t, int, bool)
Given an file read, try to determine the corresponding branch.
Long64_t fCurrentClusterStart
! Start of the cluster(s) where the current content was picked out
Double_t GetMissEfficiency() const
The total efficiency of the 'miss cache' - defined as the ratio of blocks found in the cache versus t...
virtual Int_t ReadBufferNormal(char *buf, Long64_t pos, Int_t len)
Old method ReadBuffer before the addition of the prefetch mechanism.
virtual void ResetCache()
This will simply clear the cache.
Bool_t fIsManual
! true if cache is StopLearningPhase was used
EPrefillType fPrefillType
Whether a pre-filling is enabled (and if applicable which type)
virtual void LearnPrefill()
Perform an initial prefetch, attempting to read as much of the learning phase baskets for all branche...
virtual Int_t ReadBuffer(char *buf, Long64_t pos, Int_t len)
Read buffer at position pos if the request is in the list of prefetched blocks read from fBuffer.
Long64_t fEntryMax
! last entry in the cache
static Int_t fgLearnEntries
number of entries used for learning mode
virtual Int_t DropBranch(TBranch *b, Bool_t subbranches=kFALSE)
Remove a branch to the list of branches to be stored in the cache this function is called by TBranch:...
virtual Int_t ReadBufferPrefetch(char *buf, Long64_t pos, Int_t len)
Used to read a chunk from a block previously fetched.
Long64_t fEntryCurrent
! current lowest entry number in the cache
void ResetMissCache()
Reset all the miss cache training.
Long64_t fFirstMiss
! set to the event # of the first miss.
Double_t GetMissEfficiencyRel() const
Relative efficiency of the 'miss cache' - ratio of the reads found in cache to the number of reads so...
Long64_t fFirstEntry
! save the value of the first entry
Int_t fFillTimes
! how many times we can fill the current buffer
Int_t fNReadPref
Number of blocks that were prefetched.
TTree * fTree
! pointer to the current Tree
EPrefillType GetConfiguredPrefillType() const
Return the desired prefill type from the environment or resource variable.
Bool_t fFirstBuffer
! true if first buffer is used for prefetching
static Int_t GetLearnEntries()
Static function returning the number of entries used to train the cache see SetLearnEntries.
virtual void StopLearningPhase()
This is the counterpart of StartLearningPhase() and can be used to stop the learning phase.
Bool_t fOptimizeMisses
! true if we should optimize cache misses.
Int_t fNbranches
! Number of branches in the cache
Int_t fNReadOk
Number of blocks read and found in the cache.
virtual void Print(Option_t *option="") const
Print cache statistics.
TObjArray * fBranches
! List of branches to be stored in the cache
TList * fBrNames
! list of branch names in the cache
Helper class to iterate over cluster of baskets.
Long64_t Next()
Move on to the next cluster and return the starting entry of this next cluster.
A TTree represents a columnar dataset.
virtual TVirtualPerfStats * GetPerfStats() const
virtual TBranch * GetBranch(const char *name)
Return pointer to the branch with the given name in this tree or its friends.
virtual TObjArray * GetListOfLeaves()
virtual Long64_t GetEntries() const
virtual Long64_t GetReadEntry() const
virtual TTree * GetTree() const
TEventList * GetEventList() const
virtual TList * GetListOfFriends() const
Provides the interface for the PROOF internal performance measurement and event tracing.
virtual void SetMissed(TBranch *b, size_t basketNumber)=0
virtual void UpdateBranchIndices(TObjArray *branches)=0
void Print(std::ostream &os, const OptionType &opt)
Long64_t BinarySearch(Long64_t n, const T *array, T value)
Int_t fLen
Position in file of cache entry.