118 ::Fatal(
"TFile::TFile",
"ROOT system not initialized");
120 fXML = std::make_unique<TXMLEngine>();
122 if (filename && !strncmp(filename,
"xml:", 4))
164 if (!create && !recreate && !
update && !read) {
170 const char *fname =
nullptr;
172 if (!filename || !filename[0]) {
173 Error(
"TXMLFile",
"file name is not specified");
190 fname =
gSystem->ExpandPathName(filename);
193 delete[](
char *) fname;
196 Error(
"TXMLFile",
"error expanding path %s", filename);
208 Error(
"TXMLFile",
"file %s already exists", fname);
218 Error(
"TXMLFile",
"no write permission, could not open file %s", fname);
225 Error(
"TXMLFile",
"file %s does not exist", fname);
229 Error(
"TXMLFile",
"no read permission, could not open file %s", fname);
263 Int_t len =
gROOT->GetListOfStreamerInfo()->GetSize() + 1;
272 fXML->DocSetRootElement(
fDoc, fRootNode);
279 gROOT->GetListOfFiles()->Add(
this);
286 while ((key = (
TKey *)iter()) !=
nullptr) {
348 gROOT->GetListOfFiles()->Remove(
this);
364 return fDoc !=
nullptr;
378 if (opt !=
"READ" && opt !=
"UPDATE") {
379 Error(
"ReOpen",
"mode must be either READ or UPDATE, not %s", opt.
Data());
433 hasxmlext = (last ==
".xml");
496 fXML->FreeAttr(fRootNode,
"file_version");
542 while ((key = (
TKeyXML *)iter()) !=
nullptr) {
566 if (!fRootNode || !
fXML->ValidateVersion(
fDoc)) {
597 if (
fXML->HasAttr(fRootNode,
"file_version"))
621 fXML->CleanNode(fRootNode);
631 if (!dir || !topnode)
637 fXML->SkipEmpty(keynode);
642 fXML->UnlinkNode(keynode);
648 Info(
"ReadKeysList",
"Add key %s from node %s", key->
GetName(),
fXML->GetNodeName(keynode));
654 fXML->SkipEmpty(keynode);
685 if (list.GetSize() == 0)
689 for (
int n = 0;
n <= list.GetLast();
n++) {
694 fXML->NewAttr(infonode,
nullptr,
"name", info->
GetName());
695 fXML->NewAttr(infonode,
nullptr,
"title", info->
GetTitle());
699 fXML->NewAttr(infonode,
nullptr,
"canoptimize",
719 return {
nullptr, 1, hash};
724 fXML->SkipEmpty(sinfonode);
727 if (strcmp(
"TStreamerInfo",
fXML->GetNodeName(sinfonode)) == 0) {
729 TString ftitle =
fXML->GetAttr(sinfonode,
"title");
736 Int_t clversion =
AtoI(
fXML->GetAttr(sinfonode,
"classversion"));
742 const char *canoptimize =
fXML->GetAttr(sinfonode,
"canoptimize");
743 if (!canoptimize || (strcmp(canoptimize,
xmlio::False) == 0))
749 fXML->SkipEmpty(node);
752 fXML->ShiftToNext(node);
755 fXML->ShiftToNext(sinfonode);
760 return {list, 0, hash};
772 constexpr std::size_t bufferSize = 100;
773 char sbuf[bufferSize];
774 char namebuf[bufferSize];
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 snprintf(namebuf, bufferSize,
"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 snprintf(namebuf, 100,
"dim%d", ndim);
874 int maxi =
fXML->GetIntAttr(node, namebuf);
968 return fXML->AddDocComment(
fDoc, comment);
982 const char *media,
const char *charset)
987 return fXML->AddDocStyleSheet(
fDoc, href, type, title, alternate, media, charset);
1033 while ((obj = next()) !=
nullptr) {
1055 while ((obj = next()) !=
nullptr) {
1086 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)
int Int_t
Signed integer 4 bytes (int).
unsigned int UInt_t
Unsigned integer 4 bytes (unsigned int).
bool Bool_t
Boolean (0=false, 1=true) (bool).
long long Long64_t
Portable signed long integer 8 bytes.
const char Option_t
Option string (const char).
Error("WriteTObject","The current directory (%s) is not associated with a file. The object (%s) has not been written.", GetName(), objname)
void Info(const char *location, const char *msgfmt,...)
Use this function for informational messages.
void Fatal(const char *location, const char *msgfmt,...)
Use this function in case of a fatal error. It will abort the program.
externTVirtualMutex * gROOTMutex
#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.
Bool_t InheritsFrom(const char *cl) const override
Return kTRUE if this class inherits from a class with name "classname".
Version_t GetClassVersion() const
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 Close(Option_t *option="") override
Delete all objects from memory and directory structure itself.
Bool_t cd() override
Change current directory to "this" directory.
TFile * fFile
Pointer to current file in memory.
Bool_t IsWritable() const override
TDatime fDatimeM
Date and time of last modification.
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
void Build(TFile *motherFile=nullptr, TDirectory *motherDir=nullptr) override
TList * fKeys
Pointer to keys list in memory.
TDirectory::TContext keeps track and restore the current directory.
virtual Long64_t GetSeekDir() const
virtual TList * GetList() const
TDirectory(const TDirectory &directory)=delete
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
TUUID fUUID
Unique identifier.
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
void Add(TObject *obj) override
void Delete(Option_t *option="") override
Remove all objects from the list AND delete all heap based objects.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
const char * GetName() const override
Returns name of object.
const char * GetTitle() const override
Returns title of object.
virtual void SetName(const char *name)
Set the name of the TNamed.
void Add(TObject *obj) override
Mother of all ROOT objects.
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.
A TProcessID identifies a ROOT job in a unique way in time and space.
void Clear(Option_t *option="") override
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
Describe one element (data member) to be Streamed.
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
TClass * IsA() const override
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
Describes a persistent version of a class.
Int_t GetClassVersion() const override
Int_t GetNumber() const override
TClass * IsA() const override
void SetClassVersion(Int_t vers) override
void SetOnFileClassVersion(Int_t vers)
void SetCheckSum(UInt_t checksum) override
TObjArray * GetElements() const override
UInt_t GetCheckSum() const override
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
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
~TXMLFile() override
destructor of TXMLFile object
Bool_t IsOpen() const final
return kTRUE if file is opened and can be accessed
Int_t fIOVersion
! indicates format of ROOT xml file
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
! pointer of node with streamer info data
Long64_t fKeyCounter
! counter of created keys, used for keys id
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
static constexpr Version_t Class_Version()
void SetUsedDtd(Bool_t use=kTRUE) final
Specify usage of DTD for this file.
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
! object for interface with xml library
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.