33 #define TMemFile_TRACE 34 #ifndef TMemFile_TRACE 36 Debug("TMemFile", "%s", x); 105 else if (
fOption ==
"RECREATE")
120 TFile(path,
"WEB",
"read-only memfile", 0 ),
121 fBlockList(reinterpret_cast<
UChar_t*>(const_cast<char*>(data->data())), data->size()),
126 SysError(
"TMemFile",
"file %s can not be opened", path);
143 const char *ftitle,
Int_t compress) :
144 TMemFile(path, nullptr, -1, option, ftitle, compress) {}
150 const char *ftitle,
Int_t compress):
157 Int_t mode = O_RDWR | O_CREAT;
160 fD =
SysOpen(path, O_RDWR | O_CREAT, 0644);
162 SysError(
"TMemFile",
"file %s can not be opened", path);
170 SysError(
"TMemFile",
"file %s can not be opened for reading", path);
261 current = current->
fNext;
279 if (strcmp(option,
"blocks")==0) {
283 Printf(
"TMemBlock: %d size=%lld addr=%p curr=%p prev=%p next=%p",
286 current = current->
fNext;
341 gROOT->GetListOfFiles()->Remove(
this);
352 while ((idcur = next())) {
370 while( (key = (
TKey*)next()) ) {
372 Warning(
"ResetObjects",
"Key/Object %s is not attached to the directory %s and can not be ResetAfterMerge correctly",
373 key->GetName(),directory->
GetName());
380 listHargs.
Form(
"(TFileMergeInfo*)0x%lx",(
ULong_t)info);
384 while ((idcur = next())) {
385 TClass *objcl = idcur->IsA();
390 }
else if (idcur->IsA()->GetMethodWithPrototype(
"ResetAfterMerge",
"TFileMergeInfo*") ) {
392 idcur->Execute(
"ResetAfterMerge", listHargs.
Data(), &error);
394 Error(
"ResetObjects",
"calling ResetAfterMerge() on '%s' failed.",
436 buf = (
char*)buf + sublen;
437 Int_t len_left = len - sublen;
478 if (whence == SEEK_SET) {
488 }
else if (whence == SEEK_CUR) {
492 }
else if (offset > 0) {
512 SysError(
"TMemFile",
"Unable to seek past the beginning of file");
531 }
else if (whence == SEEK_END) {
533 SysError(
"TMemFile",
"Unable to seek past end of file");
537 SysError(
"TMemFile",
"Unable to seek to end of file");
542 SysError(
"TMemFile",
"Unknown whence!");
604 buf = (
char*)buf + sublen;
605 Int_t len_left = len - sublen;
void ResetAfterMerge(TFileMergeInfo *)
Wipe all the data from the permanent buffer but keep, the in-memory object alive. ...
~TMemBlock()
Usual destructors. Delete the block memory.
virtual const char * GetName() const
Returns name of object.
virtual void SysError(const char *method, const char *msgfmt,...) const
Issue system error message.
Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode)
Open a file in 'MemFile'.
Long64_t fSysOffset
Seek offset in file.
Long64_t fSize
Total file size (sum of the size of the chunks)
TFileCacheRead * fCacheRead
!Pointer to the read cache (if any)
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
Long64_t fBytesWrite
Number of bytes written to this file.
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
Long64_t fSeekKeys
Location of Keys record on file.
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
Int_t SysClose(Int_t fd)
Close the mem file.
Long64_t fBlockOffset
Seek offset within the block.
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
void ToUpper()
Change string to upper case.
Buffer base class used for serializing objects.
Int_t SysWrite(Int_t fd, const void *buf, Int_t len)
Write a buffer into the file.
R__EXTERN TVirtualMutex * gROOTMutex
Long64_t fBytesReadExtra
Number of extra bytes (overhead) read by the readahead buffer.
virtual void Print(Option_t *option="") const
Print all objects in the file.
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
Int_t fReadCalls
Number of read calls ( not counting the cache calls )
virtual TObject * FindObject(const char *name) const
Delete a TObjLink object.
A TMemFile is like a normal TFile except that it reads and writes only from memory.
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
void ResetErrno() const
Simply calls TSystem::ResetErrno().
TMemBlock()
Default constructor.
Int_t SysSync(Int_t fd)
Sync remaining data to disk.
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 TList * GetList() const
void tobuf(char *&buf, Bool_t x)
Book space in a file, create I/O buffers, to fill them, (un)compress them.
const ExternalDataPtr_t fExternalData
shared file data / content
bool NeedsToWrite(EMode mode) const
virtual Long64_t GetSize() const
Return the current size of the memory file.
Int_t SysRead(Int_t fd, void *buf, Int_t len)
Read specified number of bytes from current offset into the buffer.
R__EXTERN TSystem * gSystem
A ROOT file is structured in Directories (like a file system).
std::shared_ptr< const std::vector< char > > ExternalDataPtr_t
TMemBlock * fBlockSeek
Pointer to the block we seeked to.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime)
Perform a stat on the HDFS file; see TFile::SysStat().
TMemBlock fBlockList
Collection of memory blocks of size fgDefaultBlockSize.
virtual ~TMemFile()
Close and clean-up file.
The ROOT global object gROOT contains a list of all defined classes.
virtual void Init(Bool_t create)
Initialize a TFile object.
virtual void WriteFastArray(const Bool_t *b, Int_t n)=0
void ResetObjects(TDirectoryFile *, TFileMergeInfo *) const
Wipe all the data from the permanent buffer but keep, the in-memory object alive. ...
Bool_t fWritable
True if directory is writable.
Option_t * GetOption() const
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
Long64_t SysSeek(Int_t fd, Long64_t offset, Int_t whence)
Seek to a specified position in the file.
TList * fFree
Free segments linked list table.
static Long64_t fgDefaultBlockSize
void CreateNext(Long64_t size)
ROOT::ResetAfterMergeFunc_t GetResetAfterMerge() const
#define R__LOCKGUARD(mutex)
TString fOption
File options.
Bool_t fMustFlush
!True if the file buffers must be flushed
EMode ParseOption(Option_t *option)
Parse option strings and set fOption.
Mother of all ROOT objects.
virtual Long64_t GetEND() const
virtual const TUrl * GetEndpointUrl() const
Int_t SysReadImpl(Int_t fd, void *buf, Long64_t len)
Read specified number of bytes from current offset into the buffer.
bool NeedsExistingFile(EMode mode) const
TMemFile(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=1)
Usual Constructor. See the TFile constructor for details.
virtual TList * GetListOfKeys() const
Int_t fNProcessIDs
Number of TProcessID written to this file.
static void ResetErrno()
Static function resetting system error number.
Int_t fWritten
Number of objects written so far.
Long64_t fOffset
!Seek offset cache
void SetErrorStr(const char *errstr)
Set the system error string.
Bool_t fInitDone
!True if the file has been initialized
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...
Long64_t fBytesRead
Number of bytes read from this file.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
Int_t GetCompressionSettings() const
virtual const char * GetTitle() const
Returns title of object.
Int_t fNbytesKeys
Number of bytes for the keys.
TFileCacheWrite * fCacheWrite
!Pointer to the write cache (if any)
virtual void Close(Option_t *option="")
Close a file.
Int_t SysWriteImpl(Int_t fd, const void *buf, Long64_t len)
Write a buffer into the file.
const char * Data() const