33 #define TMemFile_TRACE 34 #ifndef TMemFile_TRACE 36 Debug("TMemFile", "%s", x); 83 const char *ftitle,
Int_t compress) :
84 TFile(path,
"WEB", ftitle, compress),
94 if (!create && !recreate && !update && !read) {
99 if (!(create || recreate)) {
100 Error(
"TMemFile",
"Reading a TMemFile requires a memory buffer\n");
103 if (create || update || recreate) {
104 Int_t mode = O_RDWR | O_CREAT;
105 if (recreate) mode |= O_TRUNC;
107 fD =
SysOpen(path, O_RDWR | O_CREAT, 0644);
109 SysError(
"TMemFile",
"file %s can not be opened", path);
116 SysError(
"TMemFile",
"file %s can not be opened for reading", path);
122 Init(create || recreate);
136 const char *ftitle,
Int_t compress):
146 if (!create && !recreate && !update && !read) {
151 if (create || update || recreate) {
152 Int_t mode = O_RDWR | O_CREAT;
153 if (recreate) mode |= O_TRUNC;
155 fD =
SysOpen(path, O_RDWR | O_CREAT, 0644);
157 SysError(
"TMemFile",
"file %s can not be opened", path);
165 SysError(
"TMemFile",
"file %s can not be opened for reading", path);
174 Init(create || recreate);
197 if (!create && !recreate && !update && !read) {
208 Init(create || recreate);
256 current = current->
fNext;
274 if (strcmp(option,
"blocks")==0) {
278 Printf(
"TMemBlock: %d size=%lld addr=%p curr=%p prev=%p next=%p",
281 current = current->
fNext;
336 gROOT->GetListOfFiles()->Remove(
this);
347 while ((idcur = next())) {
365 while( (key = (
TKey*)next()) ) {
367 Warning(
"ResetObjects",
"Key/Object %s is not attached to the directory %s and can not be ResetAfterMerge correctly",
368 key->GetName(),directory->
GetName());
375 listHargs.
Form(
"(TFileMergeInfo*)0x%lx",(
ULong_t)info);
379 while ((idcur = next())) {
380 TClass *objcl = idcur->IsA();
385 }
else if (idcur->IsA()->GetMethodWithPrototype(
"ResetAfterMerge",
"TFileMergeInfo*") ) {
387 idcur->Execute(
"ResetAfterMerge", listHargs.
Data(), &error);
389 Error(
"ResetObjects",
"calling ResetAfterMerge() on '%s' failed.",
431 buf = (
char*)buf + sublen;
432 Int_t len_left = len - sublen;
473 if (whence == SEEK_SET) {
483 }
else if (whence == SEEK_CUR) {
487 }
else if (offset > 0) {
507 SysError(
"TMemFile",
"Unable to seek past the beginning of file");
526 }
else if (whence == SEEK_END) {
528 SysError(
"TMemFile",
"Unable to seek past end of file");
532 SysError(
"TMemFile",
"Unable to seek to end of file");
537 SysError(
"TMemFile",
"Unknown whence!");
594 buf = (
char*)buf + sublen;
595 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.
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).
static void update(gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2)
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
Colletion of memory blocks of size fBlockSize.
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
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.
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