73const Int_t kMAXFILEBUFFER = 262144;
76#if !defined(_MSC_VER) || (_MSC_VER>1300)
105 Build(motherDir,
"", 0);
137 UInt_t bufferDecOffset = 0;
138 UInt_t bufferIncOffset = 0;
145 alloc += bufferIncOffset;
158 if(
f->ReadBuffer(
fBuffer+bufferIncOffset,nsize) )
160 Error(
"ReadFile",
"Failed to read data.");
164 std::cout <<
"TKey Reading "<<nsize<<
" bytes at address "<<
fSeekKey<<std::endl;
181 Build(motherDir,
"", pointer);
233 Warning(
"TKey",
"since %s has no public constructor\n"
234 "\twhich can be called without argument, objects of this class\n"
235 "\tcan not be read with the current library. You will need to\n"
236 "\tadd a default constructor before attempting to read it.",
242 Int_t lbuf, nout, noutot, bufmax, nzip;
256 if (cxlevel > 0 &&
fObjlen > 256) {
264 for (
Int_t i = 0;
i < nbuffers; ++
i) {
265 if (
i == nbuffers - 1) bufmax =
fObjlen - nzip;
266 else bufmax = kMAXZIPBUF;
267 R__zipMultipleAlgorithm(cxlevel, &bufmax, objbuf, &bufmax, bufcur, &nout, cxAlgorithm);
268 if (nout == 0 || nout >=
fObjlen) {
279 objbuf += kMAXZIPBUF;
308 Warning(
"TKey",
"since %s has no public constructor\n"
309 "\twhich can be called without argument, objects of this class\n"
310 "\tcan not be read with the current library. You will need to\n"
311 "\tadd a default constructor before attempting to read it.",
316 const void* actualStart;
318 const char *temp = (
const char*) obj;
327 clActual =
const_cast<TClass*
>(cl);
340 Int_t lbuf, nout, noutot, bufmax, nzip;
349 if (cxlevel > 0 &&
fObjlen > 256) {
357 for (
Int_t i = 0;
i < nbuffers; ++
i) {
358 if (
i == nbuffers - 1) bufmax =
fObjlen - nzip;
359 else bufmax = kMAXZIPBUF;
360 R__zipMultipleAlgorithm(cxlevel, &bufmax, objbuf, &bufmax, bufcur, &nout, cxAlgorithm);
361 if (nout == 0 || nout >=
fObjlen) {
372 objbuf += kMAXZIPBUF;
471 Error(
"Create",
"Cannot create key without file");
476 TList *lfree =
f->GetListOfFree();
480 TFree *bestfree =
f1->GetBestFree(lfree,nsize);
482 Error(
"Create",
"Cannot allocate %d bytes for ID = %s Title = %s",
496 if (
f->GetEND() > bestfree->
GetLast()) {
520 tobuf(buffer, nbytesleft);
550 printf(
"Rejected attempt to delete TDirectoryFile key: %s at address %lld, nbytes = %d\n",
600 return ((
fCycle >0) ? 0 : 1);
610 tobuf(buffer, version);
641 fName.FillBuffer(buffer);
642 fTitle.FillBuffer(buffer);
703 std::cout << (current ?
" [current cycle]" :
" [backup cycle]");
704 std::cout <<std::endl;
776 if (!bufferRef.
Buffer()) {
777 Error(
"ReadObj",
"Cannot allocate buffer: fObjlen = %d",
fObjlen);
784 std::unique_ptr<char []> compressedBuffer;
787 compressedBuffer.reset(
new char[
fNbytes]);
788 fBuffer = compressedBuffer.get();
813 char *pobj = (
char*)cl->
New();
815 Error(
"ReadObj",
"Cannot create new object of class %s",
fClassName.Data());
819 if (baseOffset==-1) {
823 Fatal(
"ReadObj",
"Incorrect detection of the inheritance from TObject for class %s.\n",
826 tobj = (
TObject*)(pobj+baseOffset);
833 Int_t nin, nout = 0, nbuf;
838 R__unzip(&nin, bufcur, &nbuf, (
unsigned char*) objbuf, &nout);
845 compressedBuffer.reset(
nullptr);
911 if (!bufferRef.
Buffer()) {
912 Error(
"ReadObjWithBuffer",
"Cannot allocate buffer: fObjlen = %d",
fObjlen);
937 char *pobj = (
char*)cl->
New();
939 Error(
"ReadObjWithBuffer",
"Cannot create new object of class %s",
fClassName.Data());
943 if (baseOffset==-1) {
947 Fatal(
"ReadObjWithBuffer",
"Incorrect detection of the inheritance from TObject for class %s.\n",
950 tobj = (
TObject*)(pobj+baseOffset);
958 Int_t nin, nout = 0, nbuf;
963 R__unzip(&nin, bufcur, &nbuf, (
unsigned char*) objbuf, &nout);
1031 if (!bufferRef.
Buffer()) {
1032 Error(
"ReadObj",
"Cannot allocate buffer: fObjlen = %d",
fObjlen);
1039 std::unique_ptr<char []> compressedBuffer;
1042 compressedBuffer.reset(
new char[
fNbytes]);
1043 fBuffer = compressedBuffer.get();
1063 Int_t baseOffset = 0;
1064 if (expectedClass) {
1067 if (baseOffset == -1) {
1078 cl =
const_cast<TClass*
>(expectedClass);
1079 Info(
"ReadObjectAny",
"Using Converter StreamerInfo from %s to %s",clOnfile->
GetName(),expectedClass->
GetName());
1084 "Trying to read an emulated class (%s) to store in a compiled pointer (%s)",
1090 void *pobj = cl->
New();
1092 Error(
"ReadObjectAny",
"Cannot create new object of class %s",
fClassName.Data());
1102 Int_t nin, nout = 0, nbuf;
1107 R__unzip(&nin, bufcur, &nbuf, (
unsigned char*) objbuf, &nout);
1115 cl->
Streamer((
void*)pobj, bufferRef, clOnfile);
1121 cl->
Streamer((
void*)pobj, bufferRef, clOnfile);
1126 if (tobjBaseOffset == -1) {
1127 Fatal(
"ReadObj",
"Incorrect detection of the inheritance from TObject for class %s.\n",
1152 return ( ((
char*)pobj) + baseOffset );
1164 if (!obj || (
GetFile()==0))
return 0;
1173 std::unique_ptr<char []> compressedBuffer;
1176 compressedBuffer.reset(
new char[
fNbytes]);
1177 fBuffer = compressedBuffer.get();
1190 Int_t nin, nout = 0, nbuf;
1195 R__unzip(&nin, bufcur, &nbuf, (
unsigned char*) objbuf, &nout);
1202 if (nout) obj->
Streamer(bufferRef);
1239 Error(
"ReadKeyBuffer",
"The value of fNbytes is negative (%d): cannot continue to read the key buffer.",
fNbytes);
1249 Error(
"ReadKeyBuffer",
"The value of fObjlen is negative (%d): cannot continue to read the key buffer.",
fObjlen);
1257 Error(
"ReadKeyBuffer",
"The value of fKeylen is negative (%d): cannot continue to read the key buffer.",
fKeylen);
1264 Error(
"ReadKeyBuffer",
"fNbytes (%d) < fKeylen (%d): cannot continue to read the key buffer.",
fNbytes,
fKeylen);
1269 constexpr auto maxInt_t = std::numeric_limits<Int_t>::max();
1271 Error(
"ReadKeyBuffer",
"fObjlen (%d) + fKeylen (%d) > max int (%d): cannot continue to read the key buffer.",
fObjlen,
fKeylen, maxInt_t);
1303 fName.ReadBuffer(buffer);
1304 fTitle.ReadBuffer(buffer);
1318 for (
Int_t i = 0;
i < nsize;
i += kMAXFILEBUFFER) {
1319 int nb = kMAXFILEBUFFER;
1320 if (
i+nb > nsize) nb = nsize -
i;
1326 Error(
"ReadFile",
"Failed to read data.");
1331 std::cout <<
"TKey Reading "<<nsize<<
" bytes at address "<<
fSeekKey<<std::endl;
1390 nbytes +=
fName.Sizeof();
1391 nbytes +=
fTitle.Sizeof();
1401 if (
b.IsReading()) {
1436 Error(
"Streamer",
"The value of fKeylen is incorrect (%d) ; trying to recover by setting it to zero",
fKeylen);
1441 Error(
"Streamer",
"The value of fObjlen is incorrect (%d) ; trying to recover by setting it to zero",
fObjlen);
1446 Error(
"Streamer",
"The value of fNbytes is incorrect (%d) ; trying to recover by setting it to zero",
fNbytes);
1511 for (
Int_t i=0;
i<nsize;
i+=kMAXFILEBUFFER) {
1512 Int_t nb = kMAXFILEBUFFER;
1513 if (
i+nb > nsize) nb = nsize -
i;
1514 f->WriteBuffer(buffer,nb);
1523 std::cout <<
" TKey Writing "<<nsize<<
" bytes at address "<<
fSeekKey
1547 for (
Int_t i=0;
i<nsize;
i+=kMAXFILEBUFFER) {
1548 Int_t nb = kMAXFILEBUFFER;
1549 if (
i+nb > nsize) nb = nsize -
i;
1550 f->WriteBuffer(buffer,nb);
1559 std::cout <<
" TKey Writing "<<nsize<<
" bytes at address "<<
fSeekKey
1581 int start =
fTitle.Index(
"/*") + 3;
1582 int stop =
fTitle.Index(
"*/") - 1;
1583 ret =
fTitle(start, stop - start);
void frombuf(char *&buf, Bool_t *x)
void tobuf(char *&buf, Bool_t x)
unsigned long long ULong64_t
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
const ULong64_t kPidOffsetMask
static const TString gTDirectoryString("TDirectory")
std::atomic< UInt_t > keyAbsNumber
const UChar_t kPidOffsetShift
void R__unzip(Int_t *nin, UChar_t *bufin, Int_t *lout, char *bufout, Int_t *nout)
int R__unzip_header(Int_t *nin, UChar_t *bufin, Int_t *lout)
Bool_t HasRuleWithSourceClass(const TString &source) const
Return True if we have any rule whose source class is 'source'.
Using a TBrowser one can browse all ROOT objects.
The concrete implementation of TBuffer for writing/reading to/from a ROOT file or socket.
Version_t ReadVersion(UInt_t *start=nullptr, UInt_t *bcnt=nullptr, const TClass *cl=nullptr) override
Read class version from I/O buffer.
void MapObject(const TObject *obj, UInt_t offset=1) override
Add object to the fMap container.
void SetPidOffset(UShort_t offset) override
This offset is used when a key (or basket) is transfered from one file to the other.
Buffer base class used for serializing objects.
void SetParent(TObject *parent)
Set parent owning this buffer.
void SetBufferOffset(Int_t offset=0)
TClass instances represent classes, structs and namespaces in the ROOT type system.
void Streamer(void *obj, TBuffer &b, const TClass *onfile_class=nullptr) const
void Browse(TBrowser *b) override
This method is called by a browser to get the class information.
void * New(ENewType defConstructor=kClassNew, Bool_t quiet=kFALSE) const
Return a pointer to a newly allocated object of this class.
void Destructor(void *obj, Bool_t dtorOnly=kFALSE)
Explicitly call destructor for object.
void * DynamicCast(const TClass *base, void *obj, Bool_t up=kTRUE)
Cast obj of this class type up to baseclass cl if up is true.
ROOT::DirAutoAdd_t GetDirectoryAutoAdd() const
Return the wrapper around the directory auto add function.
const ROOT::Detail::TSchemaRuleSet * GetSchemaRules() const
Return the set of the schema rules if any.
Bool_t IsTObject() const
Return kTRUE is the class inherits from TObject.
Bool_t InheritsFrom(const char *cl) const override
Return kTRUE if this class inherits from a class with name "classname".
Int_t GetBaseClassOffset(const TClass *toBase, void *address=nullptr, bool isDerivedObject=true)
Bool_t HasDefaultConstructor(Bool_t testio=kFALSE) const
Return true if we have access to a constructor usable for I/O.
TClass * GetActualClass(const void *object) const
Return a pointer to the real class of the object.
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
This class stores the date and time with a precision of one second in an unsigned 32 bit word (950130...
void FillBuffer(char *&buffer)
Encode Date/Time into buffer, used by I/O system.
virtual void Streamer(TBuffer &)
Stream a object of type TDatime.
A ROOT file is structured in Directories (like a file system).
Long64_t GetSeekDir() const override
Describe directory structure in memory.
void SetName(const char *newname) override
Set the name of the TNamed.
virtual void SetMother(TObject *mother)
A file, usually with extension .root, that stores data and code in the form of serialized objects in ...
Int_t GetCompressionLevel() const
virtual Long64_t GetEND() const
virtual void MakeFree(Long64_t first, Long64_t last)
Mark unused bytes on the file.
Int_t GetCompressionAlgorithm() const
void SetFirst(Long64_t first)
void SetLast(Long64_t last)
Long64_t GetFirst() const
Book space in a file, create I/O buffers, to fill them, (un)compress them.
const char * GetTitle() const override
Returns title (title can contain 32x32 xpm thumbnail/icon).
static constexpr Version_t Class_Version()
void Delete(Option_t *option="") override
Delete an object from the file.
Int_t Sizeof() const override
Return the size in bytes of the key header structure.
TKey()
TKey default constructor.
~TKey() override
TKey default destructor.
TFile * GetFile() const
Returns file to which key belong.
virtual void Keep()
Set the "KEEP" status.
const char * GetIconName() const override
Title can keep 32x32 xpm thumbnail/icon of the parent object.
Int_t Read(const char *name) override
Read contents of object with specified name from the current directory.
TDatime fDatime
Date/Time of insertion in file.
TBuffer * fBufferRef
Pointer to the TBuffer object.
UShort_t fPidOffset
!Offset to be added to the pid index in this key/buffer. This is actually saved in the high bits of f...
virtual void IncrementPidOffset(UShort_t offset)
Increment fPidOffset by 'offset'.
Short_t GetKeep() const
Returns the "KEEP" status.
Int_t fVersion
Key version identifier.
Bool_t IsFolder() const override
Check if object referenced by the key is a folder.
Int_t fLeft
Number of bytes left in current segment.
virtual const char * GetClassName() const
Short_t fKeylen
Number of bytes for the key itself.
virtual Bool_t ReadFile()
Read the key structure from the file.
TKey(const TKey &)=delete
void Browse(TBrowser *b) override
Read object from disk and call its Browse() method.
virtual Int_t WriteFileKeepBuffer(TFile *f=nullptr)
Write the encoded object supported by this key.
Long64_t fSeekKey
Location of object on file.
void Build(TDirectory *motherDir, const char *classname, Long64_t filepos)
Method used in all TKey constructor to initialize basic data fields.
char * fBuffer
Object buffer.
Long64_t fSeekPdir
Location of parent directory on file.
virtual void SetParent(const TObject *parent)
Set parent in key buffer.
virtual void * ReadObjectAny(const TClass *expectedClass)
To read an object (non deriving from TObject) from the file.
void ReadKeyBuffer(char *&buffer)
Decode input buffer.
Int_t fNbytes
Number of bytes for the whole key on file (key header and data)
Int_t fObjlen
Length of uncompressed object in bytes.
void Reset()
Reset the key as it had not been 'filled' yet.
Short_t fCycle
Cycle number.
virtual TObject * ReadObjWithBuffer(char *bufferRead)
To read a TObject* from bufferRead.
virtual void ls(Bool_t current) const
List Key contents.
Short_t GetCycle() const
Return cycle number associated to this key.
virtual TObject * ReadObj()
To read a TObject* from the file.
virtual void Create(Int_t nbytes, TFile *f=nullptr)
Create a TKey object of specified size.
virtual void DeleteBuffer()
Delete key buffer(s).
virtual Int_t WriteFile(Int_t cycle=1, TFile *f=nullptr)
Write the encoded object supported by this key.
virtual void ReadBuffer(char *&buffer)
Decode input buffer.
TDirectory * fMotherDir
!pointer to mother directory
TString fClassName
Object Class name.
void Print(Option_t *option="") const override
Print key contents.
void FillBuffer(char *&buffer) override
Encode key header into output buffer.
void Streamer(TBuffer &) override
Stream a class object.
TObject * Remove(TObject *obj) override
Remove object from the list.
TObject * First() const override
Return the first object in the list. Returns 0 when list is empty.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
const char * GetName() const override
Returns name of object.
virtual Bool_t IsFolder() const
Returns kTRUE in case object contains browsable objects (like containers or lists of other objects).
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
virtual void Streamer(TBuffer &)
Stream an object of class TObject.
virtual const char * ClassName() const
Returns name of class to which the object belongs.
virtual void UseCurrentStyle()
Set current style settings in this object This function is called when either TCanvas::UseCurrentStyl...
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
virtual void Delete(Option_t *option="")
Delete this object.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual void Fatal(const char *method, const char *msgfmt,...) const
Issue fatal error message.
virtual void SetUniqueID(UInt_t uid)
Set the unique object id.
virtual TClass * IsA() const
TObject()
TObject constructor.
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
const char * Data() const
void(* DirAutoAdd_t)(void *, TDirectory *)
Short_t Max(Short_t a, Short_t b)
Returns the largest of a and b.
EValues
Note: this is only temporarily a struct and will become a enum class hence the name convention used.