Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TFileCacheWrite.h
Go to the documentation of this file.
1 // @(#)root/io:$Id$
2 // Author: Rene Brun 19/05/2006
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_TFileCacheWrite
13 #define ROOT_TFileCacheWrite
14 
15 #include "TObject.h"
16 
17 class TFile;
18 
19 class TFileCacheWrite : public TObject {
20 
21 protected:
22  Long64_t fSeekStart; ///< Seek value of first block in cache
23  Int_t fBufferSize; ///< Allocated size of fBuffer
24  Int_t fNtot; ///< Total size of cached blocks
25  TFile *fFile; ///< Pointer to file
26  char *fBuffer; ///< [fBufferSize] buffer of contiguous prefetched blocks
27  Bool_t fRecursive; ///< flag to avoid recursive calls
28 
29 private:
30  TFileCacheWrite(const TFileCacheWrite &) = delete; //cannot be copied
31  TFileCacheWrite& operator=(const TFileCacheWrite &) = delete;
32 
33 public:
34  TFileCacheWrite();
35  TFileCacheWrite(TFile *file, Int_t buffersize);
36  virtual ~TFileCacheWrite();
37  virtual Bool_t Flush();
38  virtual Int_t GetBytesInCache() const { return fNtot; }
39  virtual void Print(Option_t *option="") const;
40  virtual Int_t ReadBuffer(char *buf, Long64_t pos, Int_t len);
41  virtual Int_t WriteBuffer(const char *buf, Long64_t pos, Int_t len);
42  virtual void SetFile(TFile *file);
43 
44  ClassDef(TFileCacheWrite,1) //TFile cache when writing
45 };
46 
47 #endif