12#ifndef ROOT_TFilePrefetch 
   13#define ROOT_TFilePrefetch 
   27#include <condition_variable> 
#define ClassDef(name, id)
 
This class represents the encapsulation of a block request.
 
The prefetching mechanism uses two classes (TFilePrefetch and TFPBlock) to prefetch in advance a bloc...
 
std::condition_variable & GetCondNewBlock()
 
Bool_t BinarySearchReadList(TFPBlock *, Long64_t, Int_t, Int_t *)
Search for a requested element in a block and return the index.
 
void ReadBlock(Long64_t *, Int_t *, Int_t)
Create a TFPBlock object or recycle one and add it to the prefetchBlocks list.
 
static TThread::VoidRtnFunc_t ThreadProc(void *)
Execution loop of the consumer thread.
 
Int_t SumHex(const char *)
Sum up individual hex values to obtain a decimal value.
 
TFilePrefetch(TFile *)
Constructor.
 
TSemaphore * fSemChangeFile
 
void ReadListOfBlocks()
Get blocks specified in prefetchBlocks.
 
TFPBlock * CreateBlockObj(Long64_t *, Int_t *, Int_t)
Create a new block or recycle an old one.
 
std::condition_variable fNewBlockAdded
 
void AddReadBlock(TFPBlock *)
Safe method to add a block to the readList.
 
Bool_t CheckBlockInCache(char *&, TFPBlock *)
Test if the block is in cache.
 
Long64_t GetWaitTime()
Return the time spent wating for buffer to be read in microseconds.
 
Bool_t SetCache(const char *)
Set the path of the cache directory.
 
Int_t ThreadStart()
Used to start the consumer thread.
 
std::atomic< Bool_t > fPrefetchFinished
 
void ReadAsync(TFPBlock *, Bool_t &)
Read one block and insert it in prefetchBuffers list.
 
TFPBlock * GetPendingBlock()
Safe method to remove a block from the pendingList.
 
void AddPendingBlock(TFPBlock *)
Safe method to add a block to the pendingList.
 
Bool_t ReadBuffer(char *, Long64_t, Int_t)
Return a prefetched element.
 
virtual ~TFilePrefetch()
Destructor.
 
std::mutex fMutexReadList
 
std::mutex fMutexPendingList
 
std::condition_variable fReadBlockAdded
 
void WaitFinishPrefetch()
Killing the async prefetching thread.
 
TThread * GetThread() const
Return reference to the consumer thread.
 
void SetFile(TFile *file, TFile::ECacheAction action=TFile::kDisconnect)
Change the file.
 
char * GetBlockFromCache(const char *, Int_t)
Return a buffer from cache.
 
void SaveBlockInCache(TFPBlock *)
Save the block content in cache.
 
Bool_t IsPrefetchFinished() const
 
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
 
ECacheAction
TTreeCache flushing semantics.
 
Mother of all ROOT objects.
 
void *(* VoidRtnFunc_t)(void *)