119 ::Fatal(
"TFile::TFile",
"ROOT system not initialized");
121 fXML = std::make_unique<TXMLEngine>();
123 if (filename && !strncmp(filename,
"xml:", 4))
165 if (!create && !recreate && !
update && !read) {
171 const char *fname =
nullptr;
173 if (!filename || !filename[0]) {
174 Error(
"TXMLFile",
"file name is not specified");
194 delete[](
char *) fname;
197 Error(
"TXMLFile",
"error expanding path %s", filename);
210 Error(
"TXMLFile",
"file %s already exists", fname);
220 Error(
"TXMLFile",
"no write permission, could not open file %s", fname);
227 Error(
"TXMLFile",
"file %s does not exist", fname);
231 Error(
"TXMLFile",
"no read permission, could not open file %s", fname);
265 Int_t len =
gROOT->GetListOfStreamerInfo()->GetSize() + 1;
274 fXML->DocSetRootElement(
fDoc, fRootNode);
281 gROOT->GetListOfFiles()->Add(
this);
288 while ((key = (
TKey *)iter()) !=
nullptr) {
350 gROOT->GetListOfFiles()->Remove(
this);
366 return fDoc !=
nullptr;
380 if (opt !=
"READ" && opt !=
"UPDATE") {
381 Error(
"ReOpen",
"mode must be either READ or UPDATE, not %s", opt.
Data());
435 hasxmlext = (last ==
".xml");
498 fXML->FreeAttr(fRootNode,
"file_version");
544 while ((key = (
TKeyXML *)iter()) !=
nullptr) {
568 if (!fRootNode || !
fXML->ValidateVersion(
fDoc)) {
599 if (
fXML->HasAttr(fRootNode,
"file_version"))
623 fXML->CleanNode(fRootNode);
633 if (!dir || !topnode)
639 fXML->SkipEmpty(keynode);
644 fXML->UnlinkNode(keynode);
650 Info(
"ReadKeysList",
"Add key %s from node %s", key->
GetName(),
fXML->GetNodeName(keynode));
656 fXML->SkipEmpty(keynode);
696 fXML->NewAttr(infonode,
nullptr,
"name", info->
GetName());
697 fXML->NewAttr(infonode,
nullptr,
"title", info->
GetTitle());
701 fXML->NewAttr(infonode,
nullptr,
"canoptimize",
721 return {
nullptr, 1, hash};
726 fXML->SkipEmpty(sinfonode);
729 if (strcmp(
"TStreamerInfo",
fXML->GetNodeName(sinfonode)) == 0) {
731 TString ftitle =
fXML->GetAttr(sinfonode,
"title");
738 Int_t clversion =
AtoI(
fXML->GetAttr(sinfonode,
"classversion"));
744 const char *canoptimize =
fXML->GetAttr(sinfonode,
"canoptimize");
745 if (!canoptimize || (strcmp(canoptimize,
xmlio::False) == 0))
751 fXML->SkipEmpty(node);
754 fXML->ShiftToNext(node);
757 fXML->ShiftToNext(sinfonode);
762 return {list, 0, hash};
774 char sbuf[100], namebuf[100];
776 fXML->NewAttr(node,
nullptr,
"name", elem->
GetName());
778 fXML->NewAttr(node,
nullptr,
"title", elem->
GetTitle());
792 for (
int ndim = 0; ndim < elem->
GetArrayDim(); ndim++) {
793 sprintf(namebuf,
"dim%d", ndim);
801 fXML->NewAttr(node,
nullptr,
"baseversion", sbuf);
803 fXML->NewAttr(node,
nullptr,
"basechecksum", sbuf);
832 int elem_type =
fXML->GetIntAttr(node,
"type");
841 int basever =
fXML->GetIntAttr(node,
"baseversion");
843 Int_t baseCheckSum =
fXML->GetIntAttr(node,
"basechecksum");
846 TString countname =
fXML->GetAttr(node,
"countname");
847 TString countclass =
fXML->GetAttr(node,
"countclass");
848 Int_t countversion =
fXML->GetIntAttr(node,
"countversion");
854 TString countname =
fXML->GetAttr(node,
"countname");
855 TString countclass =
fXML->GetAttr(node,
"countclass");
856 Int_t countversion =
fXML->GetIntAttr(node,
"countversion");
861 int fSTLtype =
fXML->GetIntAttr(node,
"STLtype");
862 int fCtype =
fXML->GetIntAttr(node,
"Ctype");
869 if (
fXML->HasAttr(node,
"numdim")) {
870 int numdim =
fXML->GetIntAttr(node,
"numdim");
872 for (
int ndim = 0; ndim < numdim; ndim++) {
873 sprintf(namebuf,
"dim%d", ndim);
874 int maxi =
fXML->GetIntAttr(node, namebuf);
969 return fXML->AddDocComment(
fDoc, comment);
983 const char *media,
const char *charset)
988 return fXML->AddDocStyleSheet(
fDoc, href,
type, title, alternate, media, charset);
1034 while ((obj = next()) !=
nullptr) {
1056 while ((obj = next()) !=
nullptr) {
1087 while ((obj = next()) !=
nullptr) {
static void update(gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2)
R__EXTERN TVirtualMutex * gROOTMutex
R__EXTERN TSystem * gSystem
#define R__LOCKGUARD(mutex)
Array of chars or bytes (8 bits per element).
TClass instances represent classes, structs and namespaces in the ROOT type system.
void * New(ENewType defConstructor=kClassNew, Bool_t quiet=kFALSE) const
Return a pointer to a newly allocated object of this class.
Version_t GetClassVersion() const
Bool_t InheritsFrom(const char *cl) const
Return kTRUE if this class inherits from a class with name "classname".
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.
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
This class stores the date and time with a precision of one second in an unsigned 32 bit word (950130...
const char * AsSQLString() const
Return the date & time in SQL compatible string format, like: 1997-01-15 20:16:28.
void Close(Option_t *option="") override
Delete all objects from memory and directory structure itself.
TFile * fFile
Pointer to current file in memory.
Bool_t IsWritable() const override
TDatime fDatimeM
Date and time of last modification.
Bool_t cd(const char *path=nullptr) override
Change current directory to "this" directory.
TList * GetListOfKeys() const override
TDatime fDatimeC
Date and time when directory is created.
Bool_t fWritable
True if directory is writable.
void SetWritable(Bool_t writable=kTRUE) override
Set the new value of fWritable recursively.
void Build(TFile *motherFile=nullptr, TDirectory *motherDir=nullptr) override
TList * fKeys
Pointer to keys list in memory.
Small helper to keep current directory context.
Describe directory structure in memory.
virtual Long64_t GetSeekDir() const
virtual TList * GetList() const
virtual Int_t AppendKey(TKey *)
void SetName(const char *newname) override
Set the name for directory If the directory name is changed after the directory was written once,...
virtual TList * GetListOfKeys() const
TDirectory * GetMotherDir() const
Long64_t fBytesRead
Number of bytes read from this file.
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
virtual void ReadStreamerInfo()
Read the list of StreamerInfo from this file.
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
Int_t fVersion
File format version.
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
virtual void SetCompressionSettings(Int_t settings=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault)
Used to specify the compression level and algorithm.
Int_t GetCompressionLevel() const
TString fOption
File options.
Char_t fUnits
Number of bytes for file pointers.
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
Long64_t fBytesWrite
Number of bytes written to this file.
TList * fFree
Free segments linked list table.
TString fRealName
Effective real file name (not original url)
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
Int_t fNProcessIDs
Number of TProcessID written to this file.
Int_t fWritten
Number of objects written so far.
void UpdateObject(TObject *obj)
updates object, stored in the node Used for TDirectory data update
Long64_t GetKeyId() const
XMLNodePointer_t KeyNode() const
void UpdateAttributes()
update key attributes in key node
Book space in a file, create I/O buffers, to fill them, (un)compress them.
virtual const char * GetClassName() const
virtual void Add(TObject *obj)
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
virtual void SetName(const char *name)
Set the name of the TNamed.
virtual const char * GetTitle() const
Returns title of object.
virtual const char * GetName() const
Returns name of object.
Int_t GetLast() const
Return index of last object in array.
TObject * At(Int_t idx) const
Mother of all ROOT objects.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
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 Info(const char *method, const char *msgfmt,...) const
Issue info message.
A TProcessID identifies a ROOT job in a unique way in time and space.
virtual void Clear(Option_t *option="")
delete the TObjArray pointing to referenced objects this function is called by TFile::Close("R")
static TProcessID * GetSessionProcessID()
static function returning the pointer to the session TProcessID
Int_t DecrementCount()
The reference fCount is used to delete the TProcessID in the TFile destructor when fCount = 0.
const char * GetCountName() const
Int_t GetCountVersion() const
const char * GetCountClass() const
virtual void SetSize(Int_t dsize)
virtual Int_t GetSize() const
Returns size of this element in bytes.
virtual void SetArrayDim(Int_t dim)
Set number of array dimensions.
Int_t GetArrayDim() const
Int_t GetMaxIndex(Int_t i) const
const char * GetTypeName() const
virtual void SetType(Int_t dtype)
virtual void SetTypeName(const char *name)
virtual void SetNewType(Int_t dtype)
virtual void SetMaxIndex(Int_t dim, Int_t max)
set maximum index for array with dimension dim
Describe Streamer information for one class version.
TObjArray * GetElements() const
void SetClassVersion(Int_t vers)
void SetCheckSum(UInt_t checksum)
void SetOnFileClassVersion(Int_t vers)
Int_t GetClassVersion() const
UInt_t GetCheckSum() const
const char * GetCountName() const
Int_t GetCountVersion() const
const char * GetCountClass() const
void ToLower()
Change string to lower-case.
TString & Replace(Ssiz_t pos, Ssiz_t n, const char *s)
const char * Data() const
void ToUpper()
Change string to upper case.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
virtual int Unlink(const char *name)
Unlink, i.e.
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
const char * AsString() const
Return UUID as string. Copy string immediately since it will be reused.
Bool_t IsOpen() const final
return kTRUE if file is opened and can be accessed
Int_t fIOVersion
object for interface with xml library
TDirectory * FindKeyDir(TDirectory *mother, Long64_t keyid)
Find a directory in motherdir with a seek equal to keyid.
TKey * CreateKey(TDirectory *mother, const TObject *obj, const char *name, Int_t bufsize) final
create XML key, which will store object in xml structures
void InitXmlFile(Bool_t create)
initialize xml file and correspondent structures identical to TFile::Init() function
Bool_t AddXmlStyleSheet(const char *href, const char *type="text/css", const char *title=nullptr, int alternate=-1, const char *media=nullptr, const char *charset=nullptr)
Adds style sheet definition on the top of xml document Creates <?xml-stylesheet alternate="yes" title...
InfoListRet GetStreamerInfoListImpl(bool lookupSICache) final
Read streamerinfo structures from xml format and provide them in the list It is user responsibility t...
void SaveToFile()
Saves xml structures to the file xml elements are kept in list of TKeyXML objects When saving,...
XMLNodePointer_t fStreamerInfoNode
Long64_t fKeyCounter
indicates format of ROOT xml file
void CombineNodesTree(TDirectory *dir, XMLNodePointer_t topnode, Bool_t dolink)
Connect/disconnect all file nodes to single tree before/after saving.
void DirWriteHeader(TDirectory *) final
Write the directory header.
Int_t DirReadKeys(TDirectory *) final
Read keys for directory Make sense only once, while next time no new subnodes will be created.
Bool_t AddXmlLine(const char *line)
Add just one line on the top of xml document For instance, line can contain special xml processing in...
Long64_t GetSize() const final
Returns the current file size.
void DirWriteKeys(TDirectory *) final
Update key attributes.
void WriteStreamerInfo() final
convert all TStreamerInfo, used in file, to xml format
Int_t ReadKeysList(TDirectory *dir, XMLNodePointer_t topnode)
Read list of keys for directory.
void SetXmlLayout(EXMLLayout layout) final
Change layout of objects in xml file Can be changed only for newly created file.
void SetStoreStreamerInfos(Bool_t iConvert=kTRUE) final
If true, all correspondent to file TStreamerInfo objects will be stored in file this allows to apply ...
void SetUseNamespaces(Bool_t iUseNamespaces=kTRUE) final
Specify usage of namespaces in xml file In current implementation every instrumented class in file ge...
Int_t GetIOVersion() const
void SetUsedDtd(Bool_t use=kTRUE) final
Specify usage of DTD for this file.
virtual ~TXMLFile()
destructor of TXMLFile object
void StoreStreamerElement(XMLNodePointer_t node, TStreamerElement *elem)
store data of single TStreamerElement in streamer node
void ReadStreamerElement(XMLNodePointer_t node, TStreamerInfo *info)
read and reconstruct single TStreamerElement from xml node
Int_t ReOpen(Option_t *mode) final
Reopen a file with a different access mode, like from READ to See TFile::Open() for details.
std::unique_ptr< TXMLEngine > fXML
pointer of node with streamer info data
void Close(Option_t *option="") final
Close a XML file For more comments see TFile::Close() function.
Bool_t ReadFromFile()
read document from file Now full content of document reads into the memory Then document decomposed t...
Bool_t AddXmlComment(const char *comment)
Add comment line on the top of the xml document This line can only be seen in xml editor and cannot b...
Long64_t DirCreateEntry(TDirectory *) final
Create key for directory entry in the key.
TKeyXML * FindDirKey(TDirectory *dir)
Search for key which correspond to directory dir.
static void ProduceFileNames(const char *filename, TString &fname, TString &dtdname)
function produces pair of xml and dtd file names
virtual void SetUsedDtd(Bool_t use=kTRUE)
virtual void SetUseNamespaces(Bool_t iUseNamespaces=kTRUE)
TString GetSetupAsString()
return setup values as string
Bool_t IsValidXmlSetup(const char *setupstr)
checks if string is valid setup
Bool_t ReadSetupFromStr(const char *setupstr)
get values from string
Int_t AtoI(const char *sbuf, Int_t def=0, const char *errinfo=nullptr)
converts string to integer.
Bool_t IsStoreStreamerInfos() const
static TString DefaultXmlSetup()
return default value for XML setup
virtual void SetStoreStreamerInfos(Bool_t iConvert=kTRUE)
virtual void SetXmlLayout(EXMLLayout layout)
Simple struct of the return value of GetStreamerInfoListImpl.