38 Debug("TMemFile", "%s", x);
112 :
TFile(path,
"WEB",
"read-only TMemFile", 0 ),
163 :
TMemFile(path, nullptr, -1, option, ftitle, compress, defBlockSize)
172 :
TFile(path,
"WEB", ftitle, compress), fBlockList(size), fIsOwnedByROOT(
kTRUE),
fSize(size),
173 fBlockSeek(&(fBlockList))
180 Int_t mode = O_RDWR | O_CREAT;
185 SysError(
"TMemFile",
"file %s can not be opened", path);
193 SysError(
"TMemFile",
"file %s can not be opened for reading", path);
215 :
TFile(orig.GetEndpointUrl()->GetUrl(),
"WEB", orig.GetTitle(), orig.GetCompressionSettings()),
216 fBlockList(orig.GetEND()), fExternalData(orig.fExternalData), fIsOwnedByROOT(orig.fIsOwnedByROOT),
217 fSize(orig.GetEND()), fBlockSeek(&(fBlockList))
283 current = current->
fNext;
301 if (strcmp(option,
"blocks")==0) {
305 Printf(
"TMemBlock: %d size=%lld addr=%p curr=%p prev=%p next=%p",
308 current = current->
fNext;
363 gROOT->GetListOfFiles()->Remove(
this);
374 while ((idcur = next())) {
392 while( (key = (
TKey*)next()) ) {
394 Warning(
"ResetObjects",
"Key/Object %s is not attached to the directory %s and can not be ResetAfterMerge correctly",
402 listHargs.
Form(
"(TFileMergeInfo*)0x%lx",(
ULong_t)info);
406 while ((idcur = next())) {
407 TClass *objcl = idcur->IsA();
412 }
else if (idcur->IsA()->GetMethodWithPrototype(
"ResetAfterMerge",
"TFileMergeInfo*") ) {
414 idcur->
Execute(
"ResetAfterMerge", listHargs.
Data(), &error);
416 Error(
"ResetObjects",
"calling ResetAfterMerge() on '%s' failed.",
458 buf = (
char*)buf + sublen;
459 Int_t len_left = len - sublen;
500 if (whence == SEEK_SET) {
510 }
else if (whence == SEEK_CUR) {
514 }
else if (offset > 0) {
534 SysError(
"TMemFile",
"Unable to seek past the beginning of file");
553 }
else if (whence == SEEK_END) {
555 SysError(
"TMemFile",
"Unable to seek past end of file");
559 SysError(
"TMemFile",
"Unable to seek to end of file");
564 SysError(
"TMemFile",
"Unknown whence!");
626 buf = (
char*)buf + sublen;
627 Int_t len_left = len - sublen;
void tobuf(char *&buf, Bool_t x)
R__EXTERN TVirtualMutex * gROOTMutex
void Printf(const char *fmt,...)
R__EXTERN TSystem * gSystem
#define R__LOCKGUARD(mutex)
Buffer base class used for serializing objects.
TClass instances represent classes, structs and namespaces in the ROOT type system.
ROOT::ResetAfterMergeFunc_t GetResetAfterMerge() const
A ROOT file is structured in Directories (like a file system).
Int_t fNbytesKeys
Number of bytes for the keys.
TList * GetListOfKeys() const override
Long64_t fSeekKeys
Location of Keys record on file.
Bool_t fWritable
True if directory is writable.
Small helper to keep current directory context.
virtual TList * GetList() const
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Int_t fReadCalls
Number of read calls ( not counting the cache calls )
Long64_t fBytesRead
Number of bytes read from this file.
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
Bool_t fMustFlush
!True if the file buffers must be flushed
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
virtual void Init(Bool_t create)
Initialize a TFile object.
TString fOption
File options.
TFileCacheRead * fCacheRead
!Pointer to the read cache (if any)
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
Long64_t fBytesReadExtra
Number of extra bytes (overhead) read by the readahead buffer.
Long64_t fBytesWrite
Number of bytes written to this file.
TList * fFree
Free segments linked list table.
Bool_t fInitDone
!True if the file has been initialized
TFileCacheWrite * fCacheWrite
!Pointer to the write cache (if any)
Long64_t fOffset
!Seek offset cache
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
void Close(Option_t *option="") override
Close a file.
Int_t fNProcessIDs
Number of TProcessID written to this file.
Int_t fWritten
Number of objects written so far.
Option_t * GetOption() const override
Book space in a file, create I/O buffers, to fill them, (un)compress them.
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.
A TMemFile is like a normal TFile except that it reads and writes only from memory.
Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode) override
Open a file in 'MemFile'.
ExternalDataPtr_t fExternalData
shared file data / content
bool NeedsExistingFile(EMode mode) const
Long64_t fDefaultBlockSize
Bool_t fIsOwnedByROOT
if this is a C-style memory region
TMemFile(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Long64_t defBlockSize=0LL)
Usual Constructor.
Long64_t GetSize() const override
Return the current size of the memory file.
Long64_t fBlockOffset
Seek offset within the block.
Int_t SysWrite(Int_t fd, const void *buf, Int_t len) override
Write a buffer into the file.
EMode ParseOption(Option_t *option)
Parse option strings and set fOption.
TMemBlock * fBlockSeek
Pointer to the block we seeked to.
static constexpr Long64_t fgDefaultBlockSize
Long64_t fSize
Total file size (sum of the size of the chunks)
TMemBlock fBlockList
Collection of memory blocks of size fgDefaultBlockSize.
void Print(Option_t *option="") const override
Print all objects in the file.
Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime) override
Perform a stat on the file; see TFile::SysStat().
std::shared_ptr< const std::vector< char > > ExternalDataPtr_t
Long64_t fSysOffset
Seek offset in file.
Bool_t IsExternalData() const
bool NeedsToWrite(EMode mode) const
Int_t SysRead(Int_t fd, void *buf, Int_t len) override
Read specified number of bytes from current offset into the buffer.
Int_t SysClose(Int_t fd) override
Close the mem file.
Int_t SysWriteImpl(Int_t fd, const void *buf, Long64_t len)
Write a buffer into the file.
void ResetObjects(TDirectoryFile *, TFileMergeInfo *) const
Wipe all the data from the permanent buffer but keep, the in-memory object alive.
void ResetErrno() const override
Simply calls TSystem::ResetErrno().
virtual ~TMemFile()
Close and clean-up file.
Int_t SysReadImpl(Int_t fd, void *buf, Long64_t len)
Read specified number of bytes from current offset into the buffer.
virtual Long64_t CopyTo(void *to, Long64_t maxsize) const
Copy the binary representation of the TMemFile into the memory area starting at 'to' and of length at...
Int_t SysSync(Int_t fd) override
Sync remaining data to disk.
void ResetAfterMerge(TFileMergeInfo *) override
Wipe all the data from the permanent buffer but keep, the in-memory object alive.
Long64_t SysSeek(Int_t fd, Long64_t offset, Int_t whence) override
Seek to a specified position in the file.
virtual const char * GetTitle() const
Returns title of object.
virtual const char * GetName() const
Returns name of object.
Mother of all ROOT objects.
virtual const char * GetName() const
Returns name of object.
virtual void Execute(const char *method, const char *params, Int_t *error=0)
Execute method on this object with the given parameter string, e.g.
virtual void SysError(const char *method, const char *msgfmt,...) const
Issue system error message.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
void MayNotUse(const char *method) const
Use this method to signal that a method (defined in a base class) may not be called in a derived clas...
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
const char * Data() const
void ToUpper()
Change string to upper case.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
static void ResetErrno()
Static function resetting system error number.
void SetErrorStr(const char *errstr)
Set the system error string.
~TMemBlock()
Usual destructors. Delete the block memory.
void CreateNext(Long64_t size)
A read-only memory range which we do not control.