Logo ROOT  
Reference Guide
TFile.h
Go to the documentation of this file.
1// @(#)root/io:$Id$
2// Author: Rene Brun 28/11/94
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TFile
13#define ROOT_TFile
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TFile //
19// //
20// ROOT file. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24#include <atomic>
25
26#include "Compression.h"
27#include "TDirectoryFile.h"
28#include "TUrl.h"
30
31// Not a part of TFile interface; provide a forward declaration instead of #include.
32// #ifndef R__LESS_INCLUDES
33// #include "TMap.h"
34// #endif
35
36#ifdef R__USE_IMT
37#include "ROOT/TRWSpinLock.hxx"
38#include <mutex>
39#endif
40
41
42class TMap;
43class TFree;
44class TArrayC;
45class TArchiveFile;
46class TFileOpenHandle;
47class TFileCacheRead;
48class TFileCacheWrite;
49class TProcessID;
50class TStopwatch;
51class TFilePrefetch;
52
53class TFile : public TDirectoryFile {
54 friend class TDirectoryFile;
55 friend class TFilePrefetch;
56// TODO: We need to make sure only one TBasket is being written at a time
57// if we are writing multiple baskets in parallel.
58#ifdef R__USE_IMT
59 friend class TBasket;
60#endif
61
62public:
63 /// Asynchronous open request status
66 /// Open timeout constants
67 enum EOpenTimeOut { kInstantTimeout = 0, kEternalTimeout = 999999999 };
68
69 /// TTreeCache flushing semantics
71
72protected:
73 Double_t fSumBuffer{0}; ///<Sum of buffer sizes of objects written so far
74 Double_t fSum2Buffer{0}; ///<Sum of squares of buffer sizes of objects written so far
75 Long64_t fBytesWrite{0}; ///<Number of bytes written to this file
76 Long64_t fBytesRead{0}; ///<Number of bytes read from this file
77 Long64_t fBytesReadExtra{0}; ///<Number of extra bytes (overhead) read by the readahead buffer
78 Long64_t fBEGIN{0}; ///<First used byte in file
79 Long64_t fEND{0}; ///<Last used byte in file
80 Long64_t fSeekFree{0}; ///<Location on disk of free segments structure
81 Long64_t fSeekInfo{0}; ///<Location on disk of StreamerInfo record
82 Int_t fD{-1}; ///<File descriptor
83 Int_t fVersion{0}; ///<File format version
84 Int_t fCompress{0}; ///<Compression level and algorithm
85 Int_t fNbytesFree{0}; ///<Number of bytes for free segments structure
86 Int_t fNbytesInfo{0}; ///<Number of bytes for StreamerInfo record
87 Int_t fWritten{0}; ///<Number of objects written so far
88 Int_t fNProcessIDs{0}; ///<Number of TProcessID written to this file
89 Int_t fReadCalls{0}; ///<Number of read calls ( not counting the cache calls )
90 TString fRealName; ///<Effective real file name (not original url)
91 TString fOption; ///<File options
92 Char_t fUnits{0}; ///<Number of bytes for file pointers
93 TList *fFree{nullptr}; ///<Free segments linked list table
94 TArrayC *fClassIndex{nullptr}; ///<!Index of TStreamerInfo classes written to this file
95 TObjArray *fProcessIDs{nullptr}; ///<!Array of pointers to TProcessIDs
96 Long64_t fOffset{0}; ///<!Seek offset cache
97 TArchiveFile *fArchive{nullptr}; ///<!Archive file from which we read this file
98 TFileCacheRead *fCacheRead{nullptr}; ///<!Pointer to the read cache (if any)
99 TMap *fCacheReadMap{nullptr}; ///<!Pointer to the read cache (if any)
100 TFileCacheWrite *fCacheWrite{nullptr}; ///<!Pointer to the write cache (if any)
101 Long64_t fArchiveOffset{0}; ///<!Offset at which file starts in archive
102 Bool_t fIsArchive{kFALSE}; ///<!True if this is a pure archive file
103 Bool_t fNoAnchorInName{kFALSE}; ///<!True if we don't want to force the anchor to be appended to the file name
104 Bool_t fIsRootFile{kTRUE}; ///<!True is this is a ROOT file, raw file otherwise
105 Bool_t fInitDone{kFALSE}; ///<!True if the file has been initialized
106 Bool_t fMustFlush{kTRUE}; ///<!True if the file buffers must be flushed
107 Bool_t fIsPcmFile{kFALSE}; ///<!True if the file is a ROOT pcm file.
108 TFileOpenHandle *fAsyncHandle{nullptr}; ///<!For proper automatic cleanup
109 EAsyncOpenStatus fAsyncOpenStatus{kAOSNotAsync}; ///<!Status of an asynchronous open request
110 TUrl fUrl; ///<!URL of file
111
112 TList *fInfoCache{nullptr}; ///<!Cached list of the streamer infos in this file
113 TList *fOpenPhases{nullptr}; ///<!Time info about open phases
114
115#ifdef R__USE_IMT
116 std::mutex fWriteMutex; ///<!Lock for writing baskets / keys into the file.
117 static ROOT::Internal::RConcurrentHashColl fgTsSIHashes; ///<!TS Set of hashes built from read streamer infos
118#endif
119
120 static TList *fgAsyncOpenRequests; //List of handles for pending open requests
121
122 static TString fgCacheFileDir; ///<Directory where to locally stage files
123 static Bool_t fgCacheFileDisconnected; ///<Indicates, we trust in the files in the cache dir without stat on the cached file
124 static Bool_t fgCacheFileForce; ///<Indicates, to force all READ to CACHEREAD
125 static UInt_t fgOpenTimeout; ///<Timeout for open operations in ms - 0 corresponds to blocking i/o
126 static Bool_t fgOnlyStaged ; ///<Before the file is opened, it is checked, that the file is staged, if not, the open fails
127
128 static std::atomic<Long64_t> fgBytesWrite; ///<Number of bytes written by all TFile objects
129 static std::atomic<Long64_t> fgBytesRead; ///<Number of bytes read by all TFile objects
130 static std::atomic<Long64_t> fgFileCounter; ///<Counter for all opened files
131 static std::atomic<Int_t> fgReadCalls; ///<Number of bytes read from all TFile objects
132 static Int_t fgReadaheadSize; ///<Readahead buffer size
133 static Bool_t fgReadInfo; ///<if true (default) ReadStreamerInfo is called when opening a file
134
136 virtual void Init(Bool_t create);
138 Int_t ReadBufferViaCache(char *buf, Int_t len);
139 Int_t WriteBufferViaCache(const char *buf, Int_t len);
140
141 ////////////////////////////////////////////////////////////////////////////////
142 /// \brief Simple struct of the return value of GetStreamerInfoListImpl
143 struct InfoListRet {
147 };
148
149 virtual InfoListRet GetStreamerInfoListImpl(bool lookupSICache);
150
151 // Creating projects
152 Int_t MakeProjectParMake(const char *packname, const char *filename);
153 Int_t MakeProjectParProofInf(const char *packname, const char *proofinfdir);
154
155 // Interface to basic system I/O routines
156 virtual Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode);
157 virtual Int_t SysClose(Int_t fd);
158 virtual Int_t SysRead(Int_t fd, void *buf, Int_t len);
159 virtual Int_t SysWrite(Int_t fd, const void *buf, Int_t len);
160 virtual Long64_t SysSeek(Int_t fd, Long64_t offset, Int_t whence);
161 virtual Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime);
162 virtual Int_t SysSync(Int_t fd);
163
164 // Interface for text-based TDirectory I/O
165 virtual Long64_t DirCreateEntry(TDirectory*) { return 0; }
166 virtual Int_t DirReadKeys(TDirectory*) { return 0; }
167 virtual void DirWriteKeys(TDirectory*) {}
168 virtual void DirWriteHeader(TDirectory*) {}
169
170private:
171 TFile(const TFile &) = delete; //Files cannot be copied
172 void operator=(const TFile &) = delete;
173
174 static void CpProgress(Long64_t bytesread, Long64_t size, TStopwatch &watch);
175 static TFile *OpenFromCache(const char *name, Option_t * = "",
176 const char *ftitle = "", Int_t compress = ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault,
177 Int_t netopt = 0);
178
179public:
180 /// TFile status bits. BIT(13) is taken up by TObject
188 kReproducible = BIT(17)
189 };
190 enum ERelativeTo { kBeg = 0, kCur = 1, kEnd = 2 };
191 enum { kStartBigFile = 2000000000 };
192 /// File type
193 enum EFileType { kDefault = 0, kLocal = 1, kNet = 2, kWeb = 3, kFile = 4, kMerge = 5 };
194
195 TFile();
196 TFile(const char *fname, Option_t *option="", const char *ftitle="", Int_t compress = ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault);
197 virtual ~TFile();
198
199 void Close(Option_t *option="") override; // *MENU*
200 void Copy(TObject &) const override { MayNotUse("Copy(TObject &)"); }
201 virtual Bool_t Cp(const char *dst, Bool_t progressbar = kTRUE,UInt_t buffersize = 1000000);
202 virtual TKey* CreateKey(TDirectory* mother, const TObject* obj, const char* name, Int_t bufsize);
203 virtual TKey* CreateKey(TDirectory* mother, const void* obj, const TClass* cl,
204 const char* name, Int_t bufsize);
205 static TFile *&CurrentFile(); // Return the current file for this thread.
206 void Delete(const char *namecycle="") override;
207 void Draw(Option_t *option="") override;
208 virtual void DrawMap(const char *keys="*",Option_t *option=""); // *MENU*
209 void FillBuffer(char *&buffer) override;
210 virtual void Flush();
211 TArchiveFile *GetArchive() const { return fArchive; }
213 Int_t GetBestBuffer() const;
214 virtual Int_t GetBytesToPrefetch() const;
215 TFileCacheRead *GetCacheRead(const TObject* tree = nullptr) const;
217 TArrayC *GetClassIndex() const { return fClassIndex; }
222 virtual Long64_t GetEND() const { return fEND; }
223 virtual Int_t GetErrno() const;
224 virtual void ResetErrno() const;
225 Int_t GetFd() const { return fD; }
226 virtual const TUrl *GetEndpointUrl() const { return &fUrl; }
228 TList *GetListOfFree() const { return fFree; }
229 virtual Int_t GetNfree() const { return fFree->GetSize(); }
230 virtual Int_t GetNProcessIDs() const { return fNProcessIDs; }
231 Option_t *GetOption() const override { return fOption.Data(); }
232 virtual Long64_t GetBytesRead() const { return fBytesRead; }
233 virtual Long64_t GetBytesReadExtra() const { return fBytesReadExtra; }
234 virtual Long64_t GetBytesWritten() const;
235 virtual Int_t GetReadCalls() const { return fReadCalls; }
236 Int_t GetVersion() const { return fVersion; }
237 Int_t GetRecordHeader(char *buf, Long64_t first, Int_t maxbytes,
238 Int_t &nbytes, Int_t &objlen, Int_t &keylen);
239 virtual Int_t GetNbytesInfo() const {return fNbytesInfo;}
240 virtual Int_t GetNbytesFree() const {return fNbytesFree;}
241 virtual TString GetNewUrl() { return ""; }
243 virtual Long64_t GetSeekFree() const {return fSeekFree;}
244 virtual Long64_t GetSeekInfo() const {return fSeekInfo;}
245 virtual Long64_t GetSize() const;
246 virtual TList *GetStreamerInfoList() final; // Note: to override behavior, please override GetStreamerInfoListImpl
248 virtual void IncrementProcessIDs() { fNProcessIDs++; }
249 virtual Bool_t IsArchive() const { return fIsArchive; }
250 Bool_t IsBinary() const { return TestBit(kBinaryFile); }
251 Bool_t IsRaw() const { return !fIsRootFile; }
252 virtual Bool_t IsOpen() const;
253 void ls(Option_t *option="") const override;
254 virtual void MakeFree(Long64_t first, Long64_t last);
255 virtual void MakeProject(const char *dirname, const char *classes="*",
256 Option_t *option="new"); // *MENU*
257 virtual void Map(Option_t *opt); // *MENU*
258 virtual void Map() { Map(""); }; // *MENU*
259 virtual Bool_t Matches(const char *name);
260 virtual Bool_t MustFlush() const {return fMustFlush;}
261 void Paint(Option_t *option="") override;
262 void Print(Option_t *option="") const override;
263 virtual Bool_t ReadBufferAsync(Long64_t offs, Int_t len);
264 virtual Bool_t ReadBuffer(char *buf, Int_t len);
265 virtual Bool_t ReadBuffer(char *buf, Long64_t pos, Int_t len);
266 virtual Bool_t ReadBuffers(char *buf, Long64_t *pos, Int_t *len, Int_t nbuf);
267 virtual void ReadFree();
268 virtual TProcessID *ReadProcessID(UShort_t pidf);
269 virtual void ReadStreamerInfo();
270 virtual Int_t Recover();
271 virtual Int_t ReOpen(Option_t *mode);
272 virtual void Seek(Long64_t offset, ERelativeTo pos = kBeg);
273 virtual void SetCacheRead(TFileCacheRead *cache, TObject* tree = 0, ECacheAction action = kDisconnect);
274 virtual void SetCacheWrite(TFileCacheWrite *cache);
278 virtual void SetEND(Long64_t last) { fEND = last; }
279 virtual void SetOffset(Long64_t offset, ERelativeTo pos = kBeg);
280 virtual void SetOption(Option_t *option=">") { fOption = option; }
281 virtual void SetReadCalls(Int_t readcalls = 0) { fReadCalls = readcalls; }
282 virtual void ShowStreamerInfo();
283 Int_t Sizeof() const override;
284 void SumBuffer(Int_t bufsize);
285 virtual Bool_t WriteBuffer(const char *buf, Int_t len);
286 Int_t Write(const char *name=nullptr, Int_t opt=0, Int_t bufsiz=0) override;
287 Int_t Write(const char *name=nullptr, Int_t opt=0, Int_t bufsiz=0) const override;
288 virtual void WriteFree();
289 virtual void WriteHeader();
290 virtual UShort_t WriteProcessID(TProcessID *pid);
291 virtual void WriteStreamerInfo();
292
293 static TFileOpenHandle
294 *AsyncOpen(const char *name, Option_t *option = "",
295 const char *ftitle = "", Int_t compress = ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault,
296 Int_t netopt = 0);
297 static TFile *Open(const char *name, Option_t *option = "",
298 const char *ftitle = "", Int_t compress = ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault,
299 Int_t netopt = 0);
300 static TFile *Open(TFileOpenHandle *handle);
301
302 static EFileType GetType(const char *name, Option_t *option = "", TString *prefix = nullptr);
303
304 static EAsyncOpenStatus GetAsyncOpenStatus(const char *name);
306 static const TUrl *GetEndpointUrl(const char *name);
307
308 static Long64_t GetFileBytesRead();
310 static Int_t GetFileReadCalls();
311 static Int_t GetReadaheadSize();
312
313 static void SetFileBytesRead(Long64_t bytes = 0);
314 static void SetFileBytesWritten(Long64_t bytes = 0);
315 static void SetFileReadCalls(Int_t readcalls = 0);
316 static void SetReadaheadSize(Int_t bufsize = 256000);
317 static void SetReadStreamerInfo(Bool_t readinfo=kTRUE);
319
320 static Long64_t GetFileCounter();
321 static void IncrementFileCounter();
322
323 static Bool_t SetCacheFileDir(ROOT::Internal::TStringView cacheDir, Bool_t operateDisconnected = kTRUE,
324 Bool_t forceCacheread = kFALSE)
325 { return SetCacheFileDir(std::string_view(cacheDir), operateDisconnected, forceCacheread); }
326 static Bool_t SetCacheFileDir(std::string_view cacheDir, Bool_t operateDisconnected = kTRUE,
327 Bool_t forceCacheread = kFALSE);
328 static const char *GetCacheFileDir();
329 static Bool_t ShrinkCacheFileDir(Long64_t shrinkSize, Long_t cleanupInteval = 0);
330 static Bool_t Cp(const char *src, const char *dst, Bool_t progressbar = kTRUE,
331 UInt_t buffersize = 1000000);
332
333 static UInt_t SetOpenTimeout(UInt_t timeout); // in ms
334 static UInt_t GetOpenTimeout(); // in ms
335 static Bool_t SetOnlyStaged(Bool_t onlystaged);
336 static Bool_t GetOnlyStaged();
337
338 ClassDefOverride(TFile,8) //ROOT file
339};
340
341#ifndef __CINT__
342#define gFile (TFile::CurrentFile())
343
344#elif defined(__MAKECINT__)
345// To properly handle the use of gFile in header files (in static declarations)
347#endif
348
349/**
350\class TFileOpenHandle
351\ingroup IO
352Class holding info about the file being opened
353*/
354class TFileOpenHandle : public TNamed {
355
356friend class TFile;
357friend class TAlienFile;
358
359private:
360 TString fOpt; ///< Options
361 Int_t fCompress{0}; ///< Compression level and algorithm
362 Int_t fNetOpt{0}; ///< Network options
363 TFile *fFile{nullptr}; ///< TFile instance of the file being opened
364
365 TFileOpenHandle(TFile *f) : TNamed("",""), fOpt(""), fCompress(ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault),
366 fNetOpt(0), fFile(f) { }
367 TFileOpenHandle(const char *n, const char *o, const char *t, Int_t cmp,
368 Int_t no) : TNamed(n,t), fOpt(o), fCompress(cmp),
369 fNetOpt(no), fFile(nullptr) { }
372
373 TFile *GetFile() const { return fFile; }
374
375public:
377
378 Bool_t Matches(const char *name);
379
380 const char *GetOpt() const { return fOpt; }
381 Int_t GetCompress() const { return fCompress; }
382 Int_t GetNetOpt() const { return fNetOpt; }
383};
384
385//______________________________________________________________________________
387{
388 return (fCompress < 0) ? -1 : fCompress / 100;
389}
390
391//______________________________________________________________________________
393{
394 return (fCompress < 0) ? -1 : fCompress % 100;
395}
396
397//______________________________________________________________________________
399{
400 return (fCompress < 0) ? -1 : fCompress;
401}
402
403#endif
#define R__EXTERN
Definition: DllImport.h:27
#define f(i)
Definition: RSha256.hxx:104
unsigned short UShort_t
Definition: RtypesCore.h:38
int Int_t
Definition: RtypesCore.h:43
char Char_t
Definition: RtypesCore.h:31
unsigned int UInt_t
Definition: RtypesCore.h:44
const Bool_t kFALSE
Definition: RtypesCore.h:90
long Long_t
Definition: RtypesCore.h:52
bool Bool_t
Definition: RtypesCore.h:61
double Double_t
Definition: RtypesCore.h:57
long long Long64_t
Definition: RtypesCore.h:71
float Float_t
Definition: RtypesCore.h:55
const Bool_t kTRUE
Definition: RtypesCore.h:89
const char Option_t
Definition: RtypesCore.h:64
#define BIT(n)
Definition: Rtypes.h:83
#define ClassDefOverride(name, id)
Definition: Rtypes.h:326
#define gFile
Definition: TFile.h:342
char name[80]
Definition: TGX11.cxx:109
This class is a TS set of unsigned set.
Class describing an archive file containing multiple sub-files, like a ZIP or TAR archive.
Definition: TArchiveFile.h:24
Array of chars or bytes (8 bits per element).
Definition: TArrayC.h:27
Manages buffers for branches of a Tree.
Definition: TBasket.h:34
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition: TClass.h:80
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
Definition: TCollection.h:182
A ROOT file is structured in Directories (like a file system).
Describe directory structure in memory.
Definition: TDirectory.h:40
A cache when reading files over the network.
A cache when writing files over the network.
Class holding info about the file being opened.
Definition: TFile.h:354
TFile * fFile
TFile instance of the file being opened.
Definition: TFile.h:363
Int_t fNetOpt
Network options.
Definition: TFile.h:362
TFileOpenHandle(TFile *f)
Definition: TFile.h:365
TString fOpt
Options.
Definition: TFile.h:360
TFileOpenHandle(const char *n, const char *o, const char *t, Int_t cmp, Int_t no)
Definition: TFile.h:367
Int_t GetNetOpt() const
Definition: TFile.h:382
TFileOpenHandle & operator=(const TFileOpenHandle &)=delete
TFile * GetFile() const
Definition: TFile.h:373
~TFileOpenHandle()
Definition: TFile.h:376
Int_t fCompress
Compression level and algorithm.
Definition: TFile.h:361
const char * GetOpt() const
Definition: TFile.h:380
TFileOpenHandle(const TFileOpenHandle &)=delete
Bool_t Matches(const char *name)
Return kTRUE if this async request matches the open request specified by 'url'.
Definition: TFile.cxx:4625
Int_t GetCompress() const
Definition: TFile.h:381
The prefetching mechanism uses two classes (TFilePrefetch and TFPBlock) to prefetch in advance a bloc...
Definition: TFilePrefetch.h:28
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:53
static std::atomic< Long64_t > fgBytesRead
Number of bytes read by all TFile objects.
Definition: TFile.h:129
Int_t fReadCalls
Number of read calls ( not counting the cache calls )
Definition: TFile.h:89
static void SetFileBytesWritten(Long64_t bytes=0)
Definition: TFile.cxx:4446
static Bool_t fgCacheFileForce
Indicates, to force all READ to CACHEREAD.
Definition: TFile.h:124
Long64_t fBytesRead
Number of bytes read from this file.
Definition: TFile.h:76
virtual Long64_t GetSeekFree() const
Definition: TFile.h:243
virtual TProcessID * ReadProcessID(UShort_t pidf)
The TProcessID with number pidf is read from this file.
Definition: TFile.cxx:1812
void ls(Option_t *option="") const override
List file contents.
Definition: TFile.cxx:1367
virtual void Seek(Long64_t offset, ERelativeTo pos=kBeg)
Seek to a specific position in the file. Pos it either kBeg, kCur or kEnd.
Definition: TFile.cxx:2135
static Bool_t GetOnlyStaged()
Returns staged only flag.
Definition: TFile.cxx:4589
static void IncrementFileCounter()
Definition: TFile.cxx:4455
static Bool_t ShrinkCacheFileDir(Long64_t shrinkSize, Long_t cleanupInteval=0)
Try to shrink the cache to the desired size.
Definition: TFile.cxx:4501
Long64_t fSeekFree
Location on disk of free segments structure.
Definition: TFile.h:80
static Int_t fgReadaheadSize
Readahead buffer size.
Definition: TFile.h:132
void FillBuffer(char *&buffer) override
Encode file output buffer.
Definition: TFile.cxx:1084
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
Definition: TFile.h:74
static void SetReadaheadSize(Int_t bufsize=256000)
Definition: TFile.cxx:4440
static Bool_t fgCacheFileDisconnected
Indicates, we trust in the files in the cache dir without stat on the cached file.
Definition: TFile.h:123
const TList * GetStreamerInfoCache()
Returns the cached list of StreamerInfos used in this file.
Definition: TFile.cxx:1278
Int_t GetVersion() const
Definition: TFile.h:236
static Bool_t GetReadStreamerInfo()
If the streamerinfos are to be read at file opening.
Definition: TFile.cxx:3601
TArchiveFile * fArchive
!Archive file from which we read this file
Definition: TFile.h:97
virtual Int_t SysSync(Int_t fd)
Interface to system fsync. All arguments like in POSIX fsync().
Definition: TFile.cxx:4387
virtual Long64_t DirCreateEntry(TDirectory *)
Definition: TFile.h:165
virtual Int_t ReOpen(Option_t *mode)
Reopen a file with a different access mode.
Definition: TFile.cxx:2023
virtual void ReadStreamerInfo()
Read the list of StreamerInfo from this file.
Definition: TFile.cxx:3466
virtual Bool_t Matches(const char *name)
Return kTRUE if 'url' matches the coordinates of this file.
Definition: TFile.cxx:4601
Bool_t IsBinary() const
Definition: TFile.h:250
Bool_t IsRaw() const
Definition: TFile.h:251
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
Definition: TFile.h:94
static Long64_t GetFileBytesWritten()
Static function returning the total number of bytes written to all files.
Definition: TFile.cxx:4418
virtual InfoListRet GetStreamerInfoListImpl(bool lookupSICache)
See documentation of GetStreamerInfoList for more details.
Definition: TFile.cxx:1288
Int_t GetCompressionSettings() const
Definition: TFile.h:398
static void SetReadStreamerInfo(Bool_t readinfo=kTRUE)
Specify if the streamerinfos must be read at file opening.
Definition: TFile.cxx:3591
Bool_t fNoAnchorInName
!True if we don't want to force the anchor to be appended to the file name
Definition: TFile.h:103
virtual Int_t DirReadKeys(TDirectory *)
Definition: TFile.h:166
static void SetFileBytesRead(Long64_t bytes=0)
Definition: TFile.cxx:4443
@ kStartBigFile
Definition: TFile.h:191
TArrayC * GetClassIndex() const
Definition: TFile.h:217
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
Definition: TFile.h:81
void Paint(Option_t *option="") override
Paint all objects in the file.
Definition: TFile.cxx:1559
TList * GetListOfFree() const
Definition: TFile.h:228
Int_t GetBestBuffer() const
Return the best buffer size of objects on this file.
Definition: TFile.cxx:1097
TList * fOpenPhases
!Time info about open phases
Definition: TFile.h:113
virtual void SetCompressionLevel(Int_t level=ROOT::RCompressionSetting::ELevel::kUseMin)
See comments for function SetCompressionSettings.
Definition: TFile.cxx:2180
TFileCacheWrite * GetCacheWrite() const
Return a pointer to the current write cache.
Definition: TFile.cxx:1193
static void SetFileReadCalls(Int_t readcalls=0)
Definition: TFile.cxx:4449
static TString fgCacheFileDir
Directory where to locally stage files.
Definition: TFile.h:122
virtual Int_t SysRead(Int_t fd, void *buf, Int_t len)
Interface to system read. All arguments like in POSIX read().
Definition: TFile.cxx:4341
Int_t fVersion
File format version.
Definition: TFile.h:83
void Print(Option_t *option="") const override
Print all objects in the file.
Definition: TFile.cxx:1567
static std::atomic< Long64_t > fgFileCounter
Counter for all opened files.
Definition: TFile.h:130
virtual EAsyncOpenStatus GetAsyncOpenStatus()
Definition: TFile.h:135
static UInt_t GetOpenTimeout()
Returns open timeout (in ms).
Definition: TFile.cxx:4569
void Copy(TObject &) const override
Copy this to obj.
Definition: TFile.h:200
static void CpProgress(Long64_t bytesread, Long64_t size, TStopwatch &watch)
Print file copy progress.
Definition: TFile.cxx:4811
Long64_t GetArchiveOffset() const
Definition: TFile.h:212
static Bool_t fgOnlyStaged
Before the file is opened, it is checked, that the file is staged, if not, the open fails.
Definition: TFile.h:126
virtual Int_t GetNProcessIDs() const
Definition: TFile.h:230
Bool_t fMustFlush
!True if the file buffers must be flushed
Definition: TFile.h:106
TUrl fUrl
!URL of file
Definition: TFile.h:110
Int_t WriteBufferViaCache(const char *buf, Int_t len)
Write buffer via cache.
Definition: TFile.cxx:2380
static Long64_t GetFileBytesRead()
Static function returning the total number of bytes read from all files.
Definition: TFile.cxx:4409
Int_t ReadBufferViaCache(char *buf, Int_t len)
Read buffer via cache.
Definition: TFile.cxx:1750
void operator=(const TFile &)=delete
virtual TKey * CreateKey(TDirectory *mother, const TObject *obj, const char *name, Int_t bufsize)
Creates key for object and converts data to buffer.
Definition: TFile.cxx:970
virtual void Map()
Definition: TFile.h:258
virtual void WriteFree()
Write FREE linked list on the file.
Definition: TFile.cxx:2404
static Int_t GetReadaheadSize()
Static function returning the readahead buffer size.
Definition: TFile.cxx:4434
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.
Definition: TFile.cxx:1682
static Long64_t GetFileCounter()
Definition: TFile.cxx:4452
TMap * fCacheReadMap
!Pointer to the read cache (if any)
Definition: TFile.h:99
Long64_t fBEGIN
First used byte in file.
Definition: TFile.h:78
Int_t MakeProjectParProofInf(const char *packname, const char *proofinfdir)
Create BUILD.sh and SETUP.C under 'proofinf' for PAR package 'pack'.
Definition: TFile.cxx:3347
virtual UShort_t WriteProcessID(TProcessID *pid)
Check if the ProcessID pidd is already in the file, if not, add it and return the index number in the...
Definition: TFile.cxx:3622
virtual void MakeProject(const char *dirname, const char *classes="*", Option_t *option="new")
Generate source code necessary to access the objects stored in the file.
Definition: TFile.cxx:2587
Long64_t fArchiveOffset
!Offset at which file starts in archive
Definition: TFile.h:101
EOpenTimeOut
Open timeout constants.
Definition: TFile.h:67
@ kInstantTimeout
Definition: TFile.h:67
@ kEternalTimeout
Definition: TFile.h:67
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
Definition: TFile.h:86
virtual Long64_t GetSize() const
Returns the current file size.
Definition: TFile.cxx:1259
Int_t GetFd() const
Definition: TFile.h:225
virtual Bool_t IsOpen() const
Returns kTRUE in case file is open and kFALSE if file is not open.
Definition: TFile.cxx:1379
TFileOpenHandle * fAsyncHandle
!For proper automatic cleanup
Definition: TFile.h:108
static Bool_t SetOnlyStaged(Bool_t onlystaged)
Sets only staged flag.
Definition: TFile.cxx:4579
virtual Int_t GetReadCalls() const
Definition: TFile.h:235
virtual TString GetNewUrl()
Definition: TFile.h:241
virtual Long64_t GetBytesRead() const
Definition: TFile.h:232
virtual Int_t GetErrno() const
Method returning errno.
Definition: TFile.cxx:1160
virtual void SetCompressionSettings(Int_t settings=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault)
Used to specify the compression level and algorithm.
Definition: TFile.cxx:2199
Int_t GetCompressionLevel() const
Definition: TFile.h:392
static Bool_t fgReadInfo
if true (default) ReadStreamerInfo is called when opening a file
Definition: TFile.h:133
virtual void Init(Bool_t create)
Initialize a TFile object.
Definition: TFile.cxx:549
TFile(const TFile &)=delete
Long64_t GetRelOffset() const
Definition: TFile.h:242
virtual void SetReadCalls(Int_t readcalls=0)
Definition: TFile.h:281
static TFileOpenHandle * AsyncOpen(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Submit an asynchronous open request.
Definition: TFile.cxx:4180
virtual void SetCacheWrite(TFileCacheWrite *cache)
Set a pointer to the write cache.
Definition: TFile.cxx:2249
TString fOption
File options.
Definition: TFile.h:91
virtual Int_t GetNfree() const
Definition: TFile.h:229
virtual Long64_t GetEND() const
Definition: TFile.h:222
virtual Bool_t WriteBuffer(const char *buf, Int_t len)
Write a buffer to the file.
Definition: TFile.cxx:2337
void SumBuffer(Int_t bufsize)
Increment statistics for buffer sizes of objects in this file.
Definition: TFile.cxx:2278
static const char * GetCacheFileDir()
Get the directory where to locally stage/cache remote files.
Definition: TFile.cxx:4489
EAsyncOpenStatus
Asynchronous open request status.
Definition: TFile.h:64
@ kAOSSuccess
Definition: TFile.h:65
@ kAOSNotAsync
Definition: TFile.h:64
@ kAOSInProgress
Definition: TFile.h:65
@ kAOSFailure
Definition: TFile.h:64
virtual void WriteStreamerInfo()
Write the list of TStreamerInfo as a single object in this file The class Streamer description for al...
Definition: TFile.cxx:3651
virtual Long64_t GetBytesWritten() const
Return the total number of bytes written so far to the file.
Definition: TFile.cxx:4401
ERelativeTo
Definition: TFile.h:190
@ kCur
Definition: TFile.h:190
@ kBeg
Definition: TFile.h:190
@ kEnd
Definition: TFile.h:190
virtual Long64_t GetSeekInfo() const
Definition: TFile.h:244
Int_t fCompress
Compression level and algorithm.
Definition: TFile.h:84
virtual Int_t GetNbytesFree() const
Definition: TFile.h:240
virtual Bool_t IsArchive() const
Definition: TFile.h:249
static TFile *& CurrentFile()
Return the current ROOT file if any.
Definition: TFile.cxx:990
virtual void SetEND(Long64_t last)
Definition: TFile.h:278
virtual void SetCompressionAlgorithm(Int_t algorithm=ROOT::RCompressionSetting::EAlgorithm::kUseGlobal)
See comments for function SetCompressionSettings.
Definition: TFile.cxx:2166
virtual const TUrl * GetEndpointUrl() const
Definition: TFile.h:226
Int_t fNbytesFree
Number of bytes for free segments structure.
Definition: TFile.h:85
Int_t fD
File descriptor.
Definition: TFile.h:82
virtual void ResetErrno() const
Method resetting the errno.
Definition: TFile.cxx:1168
Int_t Sizeof() const override
Return the size in bytes of the file header.
Definition: TFile.cxx:2258
Bool_t FlushWriteCache()
Flush the write cache if active.
Definition: TFile.cxx:1072
virtual void IncrementProcessIDs()
Definition: TFile.h:248
Bool_t fIsPcmFile
!True if the file is a ROOT pcm file.
Definition: TFile.h:107
TFileCacheRead * fCacheRead
!Pointer to the read cache (if any)
Definition: TFile.h:98
virtual Int_t SysClose(Int_t fd)
Interface to system close. All arguments like in POSIX close().
Definition: TFile.cxx:4332
TFile()
File default Constructor.
Definition: TFile.cxx:174
Char_t fUnits
Number of bytes for file pointers.
Definition: TFile.h:92
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
Definition: TFile.h:95
static EFileType GetType(const char *name, Option_t *option="", TString *prefix=nullptr)
Resolve the file type as a function of the protocol field in 'name'.
Definition: TFile.cxx:4656
virtual void SetOption(Option_t *option=">")
Definition: TFile.h:280
EFileType
File type.
Definition: TFile.h:193
@ kWeb
Definition: TFile.h:193
@ kDefault
Definition: TFile.h:193
@ kLocal
Definition: TFile.h:193
@ kMerge
Definition: TFile.h:193
@ kNet
Definition: TFile.h:193
@ kFile
Definition: TFile.h:193
virtual void ShowStreamerInfo()
Show the StreamerInfo of all classes written to this file.
Definition: TFile.cxx:3609
virtual Long64_t SysSeek(Int_t fd, Long64_t offset, Int_t whence)
Interface to system lseek.
Definition: TFile.cxx:4360
virtual ~TFile()
File destructor.
Definition: TFile.cxx:499
virtual Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime)
Return file stat information.
Definition: TFile.cxx:4378
virtual Long64_t GetBytesReadExtra() const
Definition: TFile.h:233
virtual Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode)
Interface to system open. All arguments like in POSIX open().
Definition: TFile.cxx:4316
ECacheAction
TTreeCache flushing semantics.
Definition: TFile.h:70
@ kDoNotDisconnect
Definition: TFile.h:70
@ kDisconnect
Definition: TFile.h:70
static UInt_t SetOpenTimeout(UInt_t timeout)
Sets open timeout time (in ms). Returns previous timeout value.
Definition: TFile.cxx:4559
virtual void ReadFree()
Read the FREE linked list.
Definition: TFile.cxx:1786
virtual Bool_t Cp(const char *dst, Bool_t progressbar=kTRUE, UInt_t buffersize=1000000)
Allows to copy this file to the dst URL.
Definition: TFile.cxx:4839
static ROOT::Internal::RConcurrentHashColl fgTsSIHashes
!TS Set of hashes built from read streamer infos
Definition: TFile.h:117
Long64_t fBytesReadExtra
Number of extra bytes (overhead) read by the readahead buffer.
Definition: TFile.h:77
Long64_t fBytesWrite
Number of bytes written to this file.
Definition: TFile.h:75
TArchiveFile * GetArchive() const
Definition: TFile.h:211
Bool_t fIsRootFile
!True is this is a ROOT file, raw file otherwise
Definition: TFile.h:104
static Bool_t SetCacheFileDir(ROOT::Internal::TStringView cacheDir, Bool_t operateDisconnected=kTRUE, Bool_t forceCacheread=kFALSE)
Definition: TFile.h:323
virtual void Flush()
Synchronize a file's in-memory and on-disk states.
Definition: TFile.cxx:1055
virtual void DirWriteKeys(TDirectory *)
Definition: TFile.h:167
TList * fFree
Free segments linked list table.
Definition: TFile.h:93
virtual Bool_t ReadBufferAsync(Long64_t offs, Int_t len)
Definition: TFile.cxx:5044
std::mutex fWriteMutex
!Lock for writing baskets / keys into the file.
Definition: TFile.h:116
void Delete(const char *namecycle="") override
Delete object namecycle.
Definition: TFile.cxx:1021
Bool_t fInitDone
!True if the file has been initialized
Definition: TFile.h:105
virtual void DrawMap(const char *keys="*", Option_t *option="")
Draw map of objects in this file.
Definition: TFile.cxx:1042
virtual void DirWriteHeader(TDirectory *)
Definition: TFile.h:168
virtual void MakeFree(Long64_t first, Long64_t last)
Mark unused bytes on the file.
Definition: TFile.cxx:1394
TFileCacheWrite * fCacheWrite
!Pointer to the write cache (if any)
Definition: TFile.h:100
TString fRealName
Effective real file name (not original url)
Definition: TFile.h:90
virtual void SetOffset(Long64_t offset, ERelativeTo pos=kBeg)
Set position from where to start reading.
Definition: TFile.cxx:2114
Long64_t fOffset
!Seek offset cache
Definition: TFile.h:96
static std::atomic< Long64_t > fgBytesWrite
Number of bytes written by all TFile objects.
Definition: TFile.h:128
virtual Int_t GetNbytesInfo() const
Definition: TFile.h:239
TList * fInfoCache
!Cached list of the streamer infos in this file
Definition: TFile.h:112
virtual Bool_t MustFlush() const
Definition: TFile.h:260
virtual Int_t GetBytesToPrefetch() const
Max number of bytes to prefetch.
Definition: TFile.cxx:5058
static UInt_t fgOpenTimeout
Timeout for open operations in ms - 0 corresponds to blocking i/o.
Definition: TFile.h:125
Int_t MakeProjectParMake(const char *packname, const char *filename)
Create makefile at 'filemake' for PAR package 'pack'.
Definition: TFile.cxx:3225
Long64_t fEND
Last used byte in file.
Definition: TFile.h:79
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
Definition: TFile.cxx:3942
Int_t Write(const char *name=nullptr, Int_t opt=0, Int_t bufsiz=0) override
Write memory objects to this file.
Definition: TFile.cxx:2297
EAsyncOpenStatus fAsyncOpenStatus
!Status of an asynchronous open request
Definition: TFile.h:109
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
Definition: TFile.h:73
Bool_t fIsArchive
!True if this is a pure archive file
Definition: TFile.h:102
TObjArray * GetListOfProcessIDs() const
Definition: TFile.h:227
void Draw(Option_t *option="") override
Fill Graphics Structure and Paint.
Definition: TFile.cxx:1034
void Close(Option_t *option="") override
Close a file.
Definition: TFile.cxx:873
Int_t GetCompressionAlgorithm() const
Definition: TFile.h:386
static std::atomic< Int_t > fgReadCalls
Number of bytes read from all TFile objects.
Definition: TFile.h:131
virtual Int_t Recover()
Attempt to recover file if not correctly closed.
Definition: TFile.cxx:1909
virtual TList * GetStreamerInfoList() final
Read the list of TStreamerInfo objects written to this file.
Definition: TFile.cxx:1355
virtual void WriteHeader()
Write File Header.
Definition: TFile.cxx:2476
@ kRecovered
Definition: TFile.h:182
@ kReproducible
Definition: TFile.h:188
@ kDevNull
Definition: TFile.h:184
@ kHasReferences
Definition: TFile.h:183
@ kRedirected
Definition: TFile.h:187
@ kWriteError
Definition: TFile.h:185
@ kBinaryFile
Definition: TFile.h:186
static TFile * OpenFromCache(const char *name, Option_t *="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Open a file for reading through the file cache.
Definition: TFile.cxx:3733
Int_t fNProcessIDs
Number of TProcessID written to this file.
Definition: TFile.h:88
virtual void SetCacheRead(TFileCacheRead *cache, TObject *tree=0, ECacheAction action=kDisconnect)
Set a pointer to the read cache.
Definition: TFile.cxx:2226
Int_t fWritten
Number of objects written so far.
Definition: TFile.h:87
Int_t GetRecordHeader(char *buf, Long64_t first, Int_t maxbytes, Int_t &nbytes, Int_t &objlen, Int_t &keylen)
Read the logical record header starting at a certain postion.
Definition: TFile.cxx:1213
virtual Bool_t ReadBuffer(char *buf, Int_t len)
Read a buffer from the file.
Definition: TFile.cxx:1631
Float_t GetCompressionFactor()
Return the file compression factor.
Definition: TFile.cxx:1116
virtual Int_t SysWrite(Int_t fd, const void *buf, Int_t len)
Interface to system write. All arguments like in POSIX write().
Definition: TFile.cxx:4349
static Int_t GetFileReadCalls()
Static function returning the total number of read calls from all files.
Definition: TFile.cxx:4426
TFileCacheRead * GetCacheRead(const TObject *tree=nullptr) const
Return a pointer to the current read cache.
Definition: TFile.cxx:1176
Option_t * GetOption() const override
Definition: TFile.h:231
static TList * fgAsyncOpenRequests
Definition: TFile.h:120
Service class for TFile.
Definition: TFree.h:27
Book space in a file, create I/O buffers, to fill them, (un)compress them.
Definition: TKey.h:28
A doubly linked list.
Definition: TList.h:44
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
Definition: TMap.h:40
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
An array of TObjects.
Definition: TObjArray.h:37
Mother of all ROOT objects.
Definition: TObject.h:37
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:187
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...
Definition: TObject.cxx:944
EStatusBits
Definition: TObject.h:57
A TProcessID identifies a ROOT job in a unique way in time and space.
Definition: TProcessID.h:69
Stopwatch class.
Definition: TStopwatch.h:28
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364
This class represents a WWW compatible URL.
Definition: TUrl.h:35
const Int_t n
Definition: legend1.C:16
basic_string_view< char > string_view
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition: StringConv.hxx:21
Definition: first.py:1
Definition: tree.py:1
@ kUseGlobal
Use the global compression algorithm.
Definition: Compression.h:88
@ kUseCompiledDefault
Use the compile-time default setting.
Definition: Compression.h:50
@ kUseMin
Compression level reserved when we are not sure what to use (1 is for the fastest compression)
Definition: Compression.h:68
Simple struct of the return value of GetStreamerInfoListImpl.
Definition: TFile.h:143
Int_t fReturnCode
Definition: TFile.h:145
ROOT::Internal::RConcurrentHashColl::HashValue fHash
Definition: TFile.h:146
TList * fList
Definition: TFile.h:144