80#define _XOPEN_SOURCE 600
91# include <sys/types.h>
96#include "RConfigure.h"
132#include "compiledata.h"
168static struct AddPseudoGlobals {
185 Info(
"TFile",
"default ctor");
321 ::Fatal(
"TFile::TFile",
"ROOT system not initialized");
399 if (!create && !recreate && !
update && !read) {
406 if (!fname1 || !fname1[0]) {
407 Error(
"TFile",
"file name is not specified");
412 if (!strcmp(fname1,
"/dev/null") &&
433 Error(
"TFile",
"error expanding path %s", fname1);
448 SysError(
"TFile",
"could not delete %s (errno: %d)",
458 Error(
"TFile",
"file %s already exists", fname);
467 Error(
"TFile",
"no write permission, could not open file %s", fname);
473 Error(
"TFile",
"file %s does not exist", fname);
477 Error(
"TFile",
"no read permission, could not open file %s", fname);
490 SysError(
"TFile",
"file %s can not be opened", fname);
501 SysError(
"TFile",
"file %s can not be opened for reading", fname);
516 gROOT->GetListOfClosedObjects()->Add(
this);
552 gROOT->GetListOfClosedObjects()->Remove(
this);
563 Info(
"~TFile",
"dtor called for %s [%zx]",
GetName(),(
size_t)
this);
589 Error(
"Init",
"archive %s can only be opened in read mode",
GetName());
608 Error(
"Init",
"member %s not found in archive %s",
646 char *header =
new char[
kBEGIN+200];
651 Error(
"Init",
"%s failed to read the file type data.",
658 if (strncmp(header,
"root", 4)) {
664 char *buffer = header + 4;
667 frombuf(buffer, &headerLength);
670 Int_t send,sfree,sinfo;
691 if (fBEGIN < 0 || fBEGIN >
fEND) {
693 Error(
"Init",
"file %s has an incorrect header length (%lld) or incorrect end of file length (%lld)",
705 Warning(
"Init",
"file %s probably not closed, cannot read free segments",
GetName());
710 char *buffer_keyloc =
nullptr;
715 Error(
"Init",
"file %s has an incorrect header length (%lld) or incorrect end of file length (%lld)",
722 header =
new char[nbytes];
727 Error(
"Init",
"%s failed to read the file header information at %lld (size=%d)",
733 buffer_keyloc = header;
736 buffer_keyloc = header+
fBEGIN;
739 frombuf(buffer,&version); versiondir = version%1000;
744 if (version > 1000) {
749 Int_t sdir,sparent,skeys;
757 buffer_keyloc +=
sizeof(
Int_t);
759 frombuf(buffer_keyloc, &keyversion);
761 if (keyversion > 1000) {
772 if (fNbytesName < 10 || fNbytesName > 10000) {
773 Error(
"Init",
"cannot read directory info of file %s",
GetName());
809 Error(
"Init",
"file %s is truncated at %lld bytes: should be %lld, "
812 Error(
"Init",
"file %s is truncated at %lld bytes: should be %lld",
818 Warning(
"Init",
"file %s probably not closed, "
819 "trying to recover",
GetName());
827 Warning(
"Init",
"successfully recovered %d keys", nrecov);
829 Warning(
"Init",
"no keys recovered, file has been made a Zombie");
837 gROOT->GetListOfFiles()->Add(
this);
843 Int_t lenIndex =
gROOT->GetListOfStreamerInfo()->GetSize()+1;
844 if (lenIndex < 5000) lenIndex = 5000;
851 gROOT->GetListOfFiles()->Remove(
this);
857 Warning(
"Init",
"no StreamerInfo found in %s therefore preventing schema evolution when reading this file."
858 " The file was produced with version %d.%02d/%02d of ROOT.",
869 while ((key = (
TKey*)next())) {
880 gROOT->GetListOfClosedObjects()->Add(
this);
928 while ((key = iter()) !=
nullptr) {
986 gROOT->GetListOfFiles()->Remove(
this);
987 gROOT->GetListOfBrowsers()->RecursiveRemove(
this);
988 gROOT->GetListOfClosedObjects()->Add(
this);
999 return new TKey(obj,
name, bufsize, mother);
1007 return new TKey(obj, cl,
name, bufsize, mother);
1019 static TFile *currentFile =
nullptr;
1051 Info(
"Delete",
"deleting name = %s", namecycle);
1072 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFileDrawMap"))) {
1073 if (
h->LoadPlugin() == -1)
1113 Version_t version = TFile::Class_Version();
1114 tobuf(buffer, version);
1129 Double_t result = mean + sqrt(rms2);
1130 if (result >= (
double)std::numeric_limits<Int_t>::max()) {
1131 return std::numeric_limits<Int_t>::max() -1;
1133 return (
Int_t)result;
1147 Int_t nbytes, objlen, nwh = 64;
1148 char *header =
new char[
fBEGIN];
1154 while (idcur <
fEND-100) {
1169 if (nbytes == 0)
break;
1175 if (!objlen) objlen = nbytes-keylen;
1177 uncomp += keylen + objlen;
1248 Int_t nread = maxbytes;
1251 Warning(
"GetRecordHeader",
"%s: parameter maxbytes = %d must be >= 4",
1257 Warning(
"GetRecordHeader",
"%s: failed to read header data (maxbytes = %d)",
1268 if (nb < 0)
return nread;
1270 const Int_t headerSize = 16;
1271 if (nread < headerSize)
return nread;
1276 if (!olen) olen = nbytes-klen;
1295 Error(
"GetSize",
"cannot stat the file %s",
GetName());
1321 TList *list =
nullptr;
1324 auto key = std::make_unique<TKey>(
this);
1326 auto buf = buffer.data();
1330 Warning(
"GetRecordHeader",
"%s: failed to read the StreamerInfo data from disk.",
1332 return {
nullptr, 1, hash};
1336 if (lookupSICache) {
1341 if (
gDebug > 0)
Info(
"GetStreamerInfo",
"The streamer info record for file %s has already been treated, skipping it.",
GetName());
1342 return {
nullptr, 0, hash};
1346 (
void) lookupSICache;
1348 key->ReadKeyBuffer(buf);
1349 list =
dynamic_cast<TList*
>(key->ReadObjWithBuffer(buffer.data()));
1352 list = (
TList*)
Get(
"StreamerInfo");
1356 Info(
"GetStreamerInfoList",
"cannot find the StreamerInfo record in file %s",
1358 return {
nullptr, 1, hash};
1361 return {list, 0, hash};
1428 if(!newfree)
return;
1432 if (nbytesl > 2000000000) nbytesl = 2000000000;
1435 char * buffer =
new char[nb];
1436 char * psave = buffer;
1437 tobuf(buffer, nbytes);
1510 bool forComp = options.
Contains(
"forcomp");
1511 bool extended = options.
Contains(
"extended");
1515 Int_t nbytes,date,time,objlen;
1523 constexpr Int_t nwheader = 512;
1525 char header[nwheader];
1526 char classname[512];
1531 unsigned char nDigits = std::log10(
fEND) + 1;
1533 while (idcur <
fEND) {
1535 Int_t nread = nwheader;
1536 if (idcur+nread >=
fEND) nread =
fEND-idcur-1;
1539 Warning(
"Map",
"%s: failed to read the key data from disk at %lld.",
1547 Printf(
"Address = %lld\tNbytes = %d\t=====E R R O R=======", idcur, nbytes);
1552 Printf(
"Address = %lld\tNbytes = %d\t=====G A P===========", idcur, nbytes);
1563 if (versionkey > 1000) {
1572 if ( ((buffer-header) + nwhc) > nwheader )
1573 nwhc = nwheader - (buffer-header);
1574 for (
int i = 0;i < nwhc; i++)
frombuf(buffer, &classname[i]);
1575 classname[(
int)nwhc] =
'\0';
1576 if (idcur ==
fSeekFree) strlcpy(classname,
"FreeSegments",512);
1577 if (idcur ==
fSeekInfo) strlcpy(classname,
"StreamerInfo",512);
1578 if (idcur ==
fSeekKeys) strlcpy(classname,
"KeysList",512);
1581 if ( (buffer-header) >= nwheader )
1587 else if ( ((buffer-header) + nwhc) > nwheader )
1588 nwhc = nwheader - (buffer-header);
1590 for (
int i = 0;i < nwhc; i++)
frombuf(buffer, &keyname[i]);
1591 keyname[(
int)nwhc] =
'\0';
1593 if ( (buffer-header) >= nwheader )
1599 else if ( ((buffer-header) + nwhc) > nwheader )
1600 nwhc = nwheader - (buffer-header);
1602 for (
int i = 0;i < nwhc; i++)
frombuf(buffer, &keytitle[i]);
1603 keytitle[(
int)nwhc] =
'\0';
1605 extrainfo.
Form(
" name: %-16s title: %s", keyname, keytitle);
1610 if (objlen != nbytes - keylen) {
1612 Printf(
"%d/%06d At:%-*lld N=%-8d %-14s CX = %5.2f %s", date, time, nDigits + 1, idcur, nbytes, classname,
1613 cx, extrainfo.
Data());
1615 Printf(
"%d/%06d At:%-*lld N=%-8d %-14s %s", date, time, nDigits + 1, idcur, nbytes, classname, extrainfo.
Data());
1619 if (objlen != nbytes - keylen) {
1621 Printf(
"At:%-*lld N=%-8d K=%-3d O=%-8d %-14s CX = %5.2f %s", nDigits+1, idcur, nbytes, keylen, objlen, classname, cx, extrainfo.
Data());
1623 Printf(
"At:%-*lld N=%-8d K=%-3d O=%-8d %-14s CX = 1 %s", nDigits+1, idcur, nbytes, keylen, objlen, classname, extrainfo.
Data());
1629 Printf(
"%d/%06d At:%-*lld N=%-8d %-14s",date,time, nDigits+1, idcur,1,
"END");
1631 Printf(
"At:%-*lld N=%-8d K= O= %-14s", nDigits+1, idcur,1,
"END");
1686 Error(
"ReadBuffer",
"error reading all requested bytes from file %s, got %ld of %d",
1733 Error(
"ReadBuffer",
"error reading all requested bytes from file %s, got %ld of %d",
1764 for (
Int_t j = 0; j < nbuf; j++) {
1778 char *buf2 =
nullptr;
1781 cur = pos[i]+len[i];
1784 if (bigRead || (i>=nbuf)) {
1798 Long64_t nahead = pos[i-1]+len[i-1]-curbegin;
1803 for (
Int_t j=0;j<
n;j++) {
1804 memcpy(&buf[k],&buf2[pos[i-
n+j]-curbegin],len[i-
n+j]);
1814 curbegin = i < nbuf ? pos[i] : 0;
1817 if (buf2)
delete [] buf2;
1867 if (fNbytesFree < 0 || fNbytesFree >
fEND) {
1903 snprintf(pidname,32,
"ProcessID%d",pidf);
1906 printf(
"ReadProcessID, name=%s, file=%s, pid=%zx\n",pidname,
GetName(),(
size_t)pid);
1915 TIter next(pidslist);
1991 Int_t nbytes,date,time,objlen,nwheader;
1994 char *buffer, *bufread;
2000 Error(
"Recover",
"cannot stat the file %s",
GetName());
2011 Int_t nread = nwheader;
2013 while (idcur <
fEND) {
2015 if (idcur+nread >=
fEND) nread =
fEND-idcur-1;
2018 Error(
"Recover",
"%s: failed to read the key data from disk at %lld.",
2026 Error(
"Recover",
"Address = %lld\tNbytes = %d\t=====E R R O R=======", idcur, nbytes);
2041 if (versionkey > 1000) {
2050 char *classname =
nullptr;
2051 if (nwhc <= 0 || nwhc > 100)
break;
2052 classname =
new char[nwhc+1];
2053 int i, nwhci = nwhc;
2054 for (i = 0;i < nwhc; i++)
frombuf(buffer, &classname[i]);
2055 classname[nwhci] =
'\0';
2059 && strcmp(classname,
"TBasket")) {
2060 key =
new TKey(
this);
2062 if (!strcmp(key->
GetName(),
"StreamerInfo")) {
2073 delete [] classname;
2078 if (max_file_size <
fEND) max_file_size =
fEND+1000000000;
2085 if (nrecov)
Write();
2108 if (opt !=
"READ" && opt !=
"UPDATE") {
2109 Error(
"ReOpen",
"mode must be either READ or UPDATE, not %s", opt.
Data());
2116 if (opt ==
"READ") {
2152 SysError(
"ReOpen",
"file %s can not be opened in read mode",
GetName());
2174 SysError(
"ReOpen",
"file %s can not be opened in update mode",
GetName());
2183 Warning(
"ReOpen",
"file %s probably not closed, cannot read free segments",
GetName());
2204 Error(
"SetOffset",
"seeking from end in archive is not (yet) supported");
2228 Error(
"Seek",
"seeking from end in archive is not (yet) supported");
2232 if ((retpos =
SysSeek(
fD, offset, whence)) < 0)
2233 SysError(
"Seek",
"cannot seek to position %lld in file %s, retpos=%lld",
2260 if (level < 0) level = 0;
2261 if (level > 99) level = 99;
2316 if (cache) cache->
SetFile(
this, action);
2346 if (
b.IsReading()) {
2349 b.WriteVersion(TFile::IsA());
2407 Error(
"Write const",
"A const TFile object should not be saved. We try to proceed anyway.");
2408 return const_cast<TFile*
>(
this)->
Write(
n, opt, bufsize);
2439 Error(
"WriteBuffer",
"error writing all requested bytes to file %s, wrote %ld of %d",
2466 Error(
"WriteBuffer",
"error writing to cache");
2491 auto createKey = [
this]() {
2495 while ((afree = (
TFree*) next())) {
2496 nbytes += afree->
Sizeof();
2498 if (!nbytes)
return (
TKey*)
nullptr;
2504 return (
TKey*)
nullptr;
2509 TKey *key = createKey();
2526 char *start = buffer;
2530 while ((afree = (
TFree*) next())) {
2535 auto actualBytes = buffer-start;
2536 if ( actualBytes != nbytes ) {
2537 if (actualBytes < nbytes) {
2540 memset(buffer,0,nbytes-actualBytes);
2542 Error(
"WriteFree",
"The free block list TKey wrote more data than expected (%d vs %ld). Most likely there has been an out-of-bound write.",nbytes,(
long int)actualBytes);
2559 const char *root =
"root";
2560 char *psave =
new char[
fBEGIN];
2561 char *buffer = psave;
2563 memcpy(buffer, root, 4); buffer += 4;
2566 tobuf(buffer, version);
2568 if (version < 1000000) {
2572 tobuf(buffer, nfree);
2582 tobuf(buffer, nfree);
2593 Int_t nbytes = buffer - psave;
2684 path +=
"/PROOF-INF";
2686 const char *afile = 0;
2689 if (strcmp(afile,
".") == 0)
continue;
2690 if (strcmp(afile,
"..") == 0)
continue;
2691 filepath.
Form(
"%s/%s", path.
Data(), afile);
2693 Warning(
"MakeProject",
"1: problems unlinking '%s' ('%s', '%s')", filepath.
Data(), path.
Data(), afile);
2700 if (strcmp(afile,
".") == 0)
continue;
2701 if (strcmp(afile,
"..") == 0)
continue;
2702 filepath.
Form(
"%s/%s", path.
Data(), afile);
2704 Warning(
"MakeProject",
"2: problems unlinking '%s' ('%s', '%s')", filepath.
Data(), path.
Data(), afile);
2708 Warning(
"MakeProject",
"problems unlinking '%s'", path.
Data());
2712 path.
Form(
"%s/%s/PROOF-INF", pardir.
Data(), parname.
Data());
2714 Error(
"MakeProject",
"problems creating '%s'", path.
Data());
2729 }
else if (opt.
Contains(
"recreate")) {
2733 Error(
"MakeProject",
"cannot create directory '%s'",dirname);
2741 if (strcmp(afile,
".") == 0)
continue;
2742 if (strcmp(afile,
"..") == 0)
continue;
2743 dirpath.
Form(
"%s/%s",dirname,afile);
2751 Error(
"MakeProject",
"cannot create directory %s, already existing",dirname);
2756 Error(
"MakeProject",
"cannot create directory '%s'",dirname);
2769 if (filelist) filelist = (
TList*)filelist->
Clone();
2771 Error(
"MakeProject",
"file %s has no StreamerInfo",
GetName());
2775 TString clean_dirname(dirname);
2776 if (makepar) clean_dirname.
Form(
"%s/%s", pardir.
Data(), parname.
Data());
2777 if (clean_dirname[clean_dirname.
Length()-1]==
'/') {
2779 }
else if (clean_dirname[clean_dirname.
Length()-1]==
'\\') {
2781 if (clean_dirname[clean_dirname.
Length()-1]==
'\\') {
2786 if (makepar) subdirname = parname;
2787 if (subdirname ==
"") {
2788 Error(
"MakeProject",
"Directory name must not be empty.");
2793 TString spath; spath.
Form(
"%s/%sProjectSource.cxx",clean_dirname.
Data(),subdirname.
Data());
2794 FILE *sfp = fopen(spath.
Data(),
"w");
2796 Error(
"MakeProject",
"Unable to create the source file %s.",spath.
Data());
2799 fprintf(sfp,
"namespace std {}\nusing namespace std;\n");
2800 fprintf(sfp,
"#include \"%sProjectHeaders.h\"\n\n",subdirname.
Data() );
2801 if (!
genreflex) fprintf(sfp,
"#include \"%sLinkDef.h\"\n\n",subdirname.
Data() );
2802 fprintf(sfp,
"#include \"%sProjectDict.cxx\"\n\n",subdirname.
Data() );
2803 fprintf(sfp,
"struct DeleteObjectFunctor {\n");
2804 fprintf(sfp,
" template <typename T>\n");
2805 fprintf(sfp,
" void operator()(const T *ptr) const {\n");
2806 fprintf(sfp,
" delete ptr;\n");
2807 fprintf(sfp,
" }\n");
2808 fprintf(sfp,
" template <typename T, typename Q>\n");
2809 fprintf(sfp,
" void operator()(const std::pair<T,Q> &) const {\n");
2810 fprintf(sfp,
" // Do nothing\n");
2811 fprintf(sfp,
" }\n");
2812 fprintf(sfp,
" template <typename T, typename Q>\n");
2813 fprintf(sfp,
" void operator()(const std::pair<T,Q*> &ptr) const {\n");
2814 fprintf(sfp,
" delete ptr.second;\n");
2815 fprintf(sfp,
" }\n");
2816 fprintf(sfp,
" template <typename T, typename Q>\n");
2817 fprintf(sfp,
" void operator()(const std::pair<T*,Q> &ptr) const {\n");
2818 fprintf(sfp,
" delete ptr.first;\n");
2819 fprintf(sfp,
" }\n");
2820 fprintf(sfp,
" template <typename T, typename Q>\n");
2821 fprintf(sfp,
" void operator()(const std::pair<T*,Q*> &ptr) const {\n");
2822 fprintf(sfp,
" delete ptr.first;\n");
2823 fprintf(sfp,
" delete ptr.second;\n");
2824 fprintf(sfp,
" }\n");
2825 fprintf(sfp,
"};\n\n");
2832 TIter flnext(filelist);
2836 if (info->IsA() != TStreamerInfo::Class()) {
2839 if (strstr(info->
GetName(),
"@@")) {
2856 for(
auto rule : rules) {
2857 if( rule->IsRenameRule() || rule->IsAliasRule() )
2860 if ( rule->HasTarget( el->
GetName()) && rule->GetAttributes()[0] != 0 ) {
2861 TString attr( rule->GetAttributes() );
2887 TIter nextextra(&extrainfos);
2890 filelist->
Add(info);
2897 if (info->IsA() != TStreamerInfo::Class()) {
2901 TIter subnext(list);
2906 if (subinfo->IsA() != TStreamerInfo::Class()) {
2913 if ( (sublen > len) && subinfo->
GetName()[len+1]==
':'
2916 subClasses.
Add(subinfo);
2921 subClasses.
Clear(
"nodelete");
2923 extrainfos.
Clear(
"nodelete");
2926 path.
Form(
"%s/%sProjectHeaders.h",clean_dirname.
Data(),subdirname.
Data());
2927 FILE *allfp = fopen(path,
"a");
2929 Error(
"MakeProject",
"Cannot open output file:%s\n",path.
Data());
2931 fprintf(allfp,
"#include \"%sProjectInstances.h\"\n", subdirname.
Data());
2935 printf(
"MakeProject has generated %d classes in %s\n",ngener,clean_dirname.
Data());
2938 if (!opt.
Contains(
"+") && !makepar) {
2946 FILE *fpMAKE =
nullptr;
2951 path.
Form(
"%s/makep.cmd",clean_dirname.
Data());
2953 path.
Form(
"%s/MAKEP",clean_dirname.
Data());
2956 fpMAKE = fopen(path,
"wb");
2958 fpMAKE = fopen(path,
"w");
2961 Error(
"MakeProject",
"cannot open file %s", path.
Data());
2970 FILE *ifp =
nullptr;
2971 path.
Form(
"%s/%sProjectInstances.h",clean_dirname.
Data(),subdirname.
Data());
2973 ifp = fopen(path,
"wb");
2975 ifp = fopen(path,
"w");
2978 Error(
"MakeProject",
"cannot open path file %s", path.
Data());
2988 fprintf(fpMAKE,
"genreflex %sProjectHeaders.h -o %sProjectDict.cxx --comments --iocomments %s ",subdirname.
Data(),subdirname.
Data(),
gSystem->
GetIncludePath());
2989 path.
Form(
"%s/%sSelection.xml",clean_dirname.
Data(),subdirname.
Data());
2992 path.
Form(
"%s/%sLinkDef.h",clean_dirname.
Data(),subdirname.
Data());
2995 path.
Form(
"%s/%sLinkDef.h",clean_dirname.
Data(),subdirname.
Data());
3001 FILE *fp = fopen(path,
"wb");
3003 FILE *fp = fopen(path,
"w");
3006 Error(
"MakeProject",
"cannot open path file %s", path.
Data());
3015 fprintf(fp,
"<lcgdict>\n");
3018 fprintf(fp,
"#ifdef __CINT__\n");
3027 if (info->IsA() != TStreamerInfo::Class()) {
3030 if (strncmp(info->
GetName(),
"auto_ptr<", strlen(
"auto_ptr<")) == 0) {
3039 for(
auto rule : rules) {
3042 rule->AsString(strrule,
"x");
3045 selections.
Append(strrule);
3048 rule->AsString(strrule);
3049 if (strncmp(strrule.
Data(),
"type=",5)==0) {
3052 fprintf(fp,
"#pragma %s;\n",strrule.
Data());
3059 std::vector<std::string> inside;
3066 switch ( stlkind ) {
3070 what =
"std::pair<";
3080 tmp.
Form(
"<class name=\"%s\" />\n",
what.Data());
3084 tmp.
Form(
"template class %s;\n",
what.Data());
3092 fprintf(fp,
"#pragma link C++ class %s+;\n",
what.Data());
3100 tmp.
Form(
"<class name=\"%s\" />\n",key->
GetName());
3110 fprintf(fp,
"#pragma link C++ class %s+;\n",key->
GetName());
3121 tmp.
Form(
"<class name=\"%s\" />\n",
what.Data());
3125 if (
what[
what.Length()-1] ==
'>') {
3126 tmp.
Form(
"template class %s;\n",
what.Data());
3133 fprintf(fp,
"#pragma link C++ class %s+;\n",
what.Data());
3143 tmp.
Form(
"<class name=\"%s\" />\n",
what.Data());
3147 tmp.
Form(
"template class %s;\n",
what.Data());
3156 fprintf(ifp,
"#ifndef PROJECT_INSTANCES_H\n");
3157 fprintf(ifp,
"#define PROJECT_INSTANCES_H\n");
3158 fprintf(ifp,
"%s",instances.
Data());
3159 fprintf(ifp,
"#endif\n");
3160 fprintf(fp,
"%s",selections.
Data());
3161 fprintf(fp,
"</lcgdict>\n");
3163 fprintf(fp,
"#endif\n");
3177 cmd.
ReplaceAll(
"$ObjectFiles",
object.Data());
3184 TString rootbuild = ROOTBUILD;
3193 fprintf(fpMAKE,
"-s %sSelection.xml \n",subdirname.
Data());
3195 fprintf(fpMAKE,
"%sProjectHeaders.h ",subdirname.
Data());
3196 fprintf(fpMAKE,
"%sLinkDef.h \n",subdirname.
Data());
3199 fprintf(fpMAKE,
"%s\n",cmd.
Data());
3201 printf(
"%s/MAKEP file has been generated\n", clean_dirname.
Data());
3210 Error(
"MakeProject",
"problems creating PAR make file '%s'", filemake.
Data());
3219 Warning(
"MakeProject",
"problems expanding '%s'", mkarchsrc.
Data());
3222 Error(
"MakeProject",
"problems retrieving '%s' to '%s'", mkarchsrc.
Data(), mkarchdst.
Data());
3231 Error(
"MakeProject",
"problems creating BUILD.sh and/or SETUP.C under '%s'", proofinf.
Data());
3244 chmod(cmod.
Data(), 00700);
3246 Printf(
"Files Makefile, Makefile.arch, PROOF-INF/BUILD.sh and"
3247 " PROOF-INF/SETUP.C have been generated under '%s'", clean_dirname.
Data());
3256 Info(
"MakeProject",
"PAR file %s.par generated", clean_dirname.
Data());
3258 Warning(
"MakeProject",
"problems changing directory back to '%s'", curdir.
Data());
3261 Error(
"MakeProject",
"problems changing directory to '%s' - skipping PAR file generation", pardir.
Data());
3264 Warning(
"MakeProject",
"on Windows systems the PAR file cannot be generated out of the package directory!");
3269 if (!makepar && !opt.
Contains(
"nocompilation")) {
3278 chmod(
"makep.cmd",00700);
3283 if (res) printf(
"Shared lib %s has been generated\n",path.
Data());
3288 if (res) printf(
"Shared lib %s has been dynamically linked\n",path.
Data());
3306 if (!filemake || (filemake && strlen(filemake) <= 0)) {
3307 Error(
"MakeProjectParMake",
"path for output file undefined!");
3312 if (!pack || (pack && strlen(pack) <= 0)) {
3313 Error(
"MakeProjectParMake",
"package name undefined!");
3318 FILE *fmk = fopen(filemake,
"wb");
3320 FILE *fmk = fopen(filemake,
"w");
3328 fprintf(fmk,
"# Makefile for the ROOT test programs.\n");
3329 fprintf(fmk,
"# This Makefile shows how to compile and link applications\n");
3330 fprintf(fmk,
"# using the ROOT libraries on all supported platforms.\n");
3331 fprintf(fmk,
"#\n");
3332 fprintf(fmk,
"# Copyright (c) 2000 Rene Brun and Fons Rademakers\n");
3333 fprintf(fmk,
"#\n");
3334 fprintf(fmk,
"# Author: this makefile has been automatically generated via TFile::MakeProject\n");
3336 fprintf(fmk,
"include Makefile.arch\n");
3338 fprintf(fmk,
"#------------------------------------------------------------------------------\n");
3340 fprintf(fmk,
"PACKO = %sProjectSource.$(ObjSuf)\n", pack);
3341 fprintf(fmk,
"PACKS = %sProjectSource.$(SrcSuf) %sProjectDict.$(SrcSuf)\n", pack, pack);
3342 fprintf(fmk,
"PACKSO = lib%s.$(DllSuf)\n", pack);
3344 fprintf(fmk,
"ifeq ($(PLATFORM),win32)\n");
3345 fprintf(fmk,
"PACKLIB = lib%s.lib\n", pack);
3346 fprintf(fmk,
"else\n");
3347 fprintf(fmk,
"PACKLIB = $(PACKSO)\n");
3348 fprintf(fmk,
"endif\n");
3350 fprintf(fmk,
"OBJS = $(PACKO)\n");
3352 fprintf(fmk,
"PROGRAMS =\n");
3354 fprintf(fmk,
"#------------------------------------------------------------------------------\n");
3356 fprintf(fmk,
".SUFFIXES: .$(SrcSuf) .$(ObjSuf) .$(DllSuf)\n");
3358 fprintf(fmk,
"all: $(PACKLIB)\n");
3360 fprintf(fmk,
"$(PACKSO): $(PACKO)\n");
3361 fprintf(fmk,
"ifeq ($(ARCH),aix)\n");
3362 fprintf(fmk,
"\t\t/usr/ibmcxx/bin/makeC++SharedLib $(OutPutOpt) $@ $(LIBS) -p 0 $^\n");
3363 fprintf(fmk,
"else\n");
3364 fprintf(fmk,
"ifeq ($(ARCH),aix5)\n");
3365 fprintf(fmk,
"\t\t/usr/vacpp/bin/makeC++SharedLib $(OutPutOpt) $@ $(LIBS) -p 0 $^\n");
3366 fprintf(fmk,
"else\n");
3367 fprintf(fmk,
"ifeq ($(PLATFORM),macosx)\n");
3368 fprintf(fmk,
"# We need to make both the .dylib and the .so\n");
3369 fprintf(fmk,
"\t\t$(LD) $(SOFLAGS)$@ $(LDFLAGS) $^ $(OutPutOpt) $@ $(LIBS)\n");
3370 fprintf(fmk,
"ifneq ($(subst $(MACOSX_MINOR),,1234),1234)\n");
3371 fprintf(fmk,
"ifeq ($(MACOSX_MINOR),4)\n");
3372 fprintf(fmk,
"\t\tln -sf $@ $(subst .$(DllSuf),.so,$@)\n");
3373 fprintf(fmk,
"else\n");
3374 fprintf(fmk,
"\t\t$(LD) -bundle -undefined $(UNDEFOPT) $(LDFLAGS) $^ \\\n");
3375 fprintf(fmk,
"\t\t $(OutPutOpt) $(subst .$(DllSuf),.so,$@)\n");
3376 fprintf(fmk,
"endif\n");
3377 fprintf(fmk,
"endif\n");
3378 fprintf(fmk,
"else\n");
3379 fprintf(fmk,
"ifeq ($(PLATFORM),win32)\n");
3380 fprintf(fmk,
"\t\tbindexplib $* $^ > $*.def\n");
3381 fprintf(fmk,
"\t\tlib -nologo -MACHINE:IX86 $^ -def:$*.def \\\n");
3382 fprintf(fmk,
"\t\t $(OutPutOpt)$(PACKLIB)\n");
3383 fprintf(fmk,
"\t\t$(LD) $(SOFLAGS) $(LDFLAGS) $^ $*.exp $(LIBS) \\\n");
3384 fprintf(fmk,
"\t\t $(OutPutOpt)$@\n");
3385 fprintf(fmk,
"else\n");
3386 fprintf(fmk,
"\t\t$(LD) $(SOFLAGS) $(LDFLAGS) $^ $(OutPutOpt) $@ $(LIBS) $(EXPLLINKLIBS)\n");
3387 fprintf(fmk,
"endif\n");
3388 fprintf(fmk,
"endif\n");
3389 fprintf(fmk,
"endif\n");
3390 fprintf(fmk,
"endif\n");
3391 fprintf(fmk,
"\t\t@echo \"$@ done\"\n");
3393 fprintf(fmk,
"clean:\n");
3394 fprintf(fmk,
"\t\t@rm -f $(OBJS) core\n");
3396 fprintf(fmk,
"distclean: clean\n");
3397 fprintf(fmk,
"\t\t@rm -f $(PROGRAMS) $(PACKSO) $(PACKLIB) *Dict.* *.def *.exp \\\n");
3398 fprintf(fmk,
"\t\t *.so *.lib *.dll *.d *.log .def so_locations\n");
3399 fprintf(fmk,
"\t\t@rm -rf cxx_repository\n");
3401 fprintf(fmk,
"# Dependencies\n");
3403 fprintf(fmk,
"%sProjectSource.$(ObjSuf): %sProjectHeaders.h %sLinkDef.h %sProjectDict.$(SrcSuf)\n", pack, pack, pack, pack);
3405 fprintf(fmk,
"%sProjectDict.$(SrcSuf): %sProjectHeaders.h %sLinkDef.h\n", pack, pack, pack);
3406 fprintf(fmk,
"\t\t@echo \"Generating dictionary $@...\"\n");
3407 fprintf(fmk,
"\t\t@rootcint -f $@ $^\n");
3409 fprintf(fmk,
".$(SrcSuf).$(ObjSuf):\n");
3410 fprintf(fmk,
"\t\t$(CXX) $(CXXFLAGS) -c $<\n");
3428 if (!proofinf || (proofinf && strlen(proofinf) <= 0)) {
3429 Error(
"MakeProjectParProofInf",
"directory path undefined!");
3437 Error(
"MakeProjectParProofInf",
"path '%s' %s", proofinf,
3438 ((rcst == 0) ?
"is not a directory" :
"does not exist"));
3443 if (!pack || (pack && strlen(pack) <= 0)) {
3444 Error(
"MakeProjectParProofInf",
"package name undefined!");
3451 path.
Form(
"%s/BUILD.sh", proofinf);
3453 FILE *
f = fopen(path.
Data(),
"wb");
3455 FILE *
f = fopen(path.
Data(),
"w");
3458 Error(
"MakeProjectParProofInf",
"cannot create file '%s' (errno: %d)",
3463 fprintf(
f,
"#! /bin/sh\n");
3464 fprintf(
f,
"# Build libEvent library.\n");
3467 fprintf(
f,
"# The environment variables ROOTPROOFLITE and ROOTPROOFCLIENT can be used to\n");
3468 fprintf(
f,
"# adapt the script to the calling environment\n");
3470 fprintf(
f,
"# if test ! \"x$ROOTPROOFLITE\" = \"x\"; then\n");
3471 fprintf(
f,
"# echo \"event-BUILD: PROOF-Lite node (session has $ROOTPROOFLITE workers)\"\n");
3472 fprintf(
f,
"# elif test ! \"x$ROOTPROOFCLIENT\" = \"x\"; then\n");
3473 fprintf(
f,
"# echo \"event-BUILD: PROOF client\"\n");
3474 fprintf(
f,
"# else\n");
3475 fprintf(
f,
"# echo \"event-BUILD: standard PROOF node\"\n");
3476 fprintf(
f,
"# fi\n");
3478 fprintf(
f,
"if [ \"\" = \"clean\" ]; then\n");
3479 fprintf(
f,
" make distclean\n");
3480 fprintf(
f,
" exit 0\n");
3483 fprintf(
f,
"make\n");
3484 fprintf(
f,
"rc=$?\n");
3485 fprintf(
f,
"echo \"rc=$?\"\n");
3486 fprintf(
f,
"if [ $? != \"0\" ] ; then\n");
3487 fprintf(
f,
" exit 1\n");
3489 fprintf(
f,
"exit 0\n");
3495 path.
Form(
"%s/SETUP.C", proofinf);
3497 f = fopen(path.
Data(),
"wb");
3499 f = fopen(path.
Data(),
"w");
3502 Error(
"MakeProjectParProofInf",
"cannot create file '%s' (errno: %d)",
3507 fprintf(
f,
"Int_t SETUP()\n");
3511 fprintf(
f,
"// The environment variables ROOTPROOFLITE and ROOTPROOFCLIENT can be used to\n");
3512 fprintf(
f,
"// adapt the macro to the calling environment\n");
3514 fprintf(
f,
"// if (gSystem->Getenv(\"ROOTPROOFLITE\")) {\n");
3515 fprintf(
f,
"// Printf(\"event-SETUP: PROOF-Lite node (session has %%s workers)\",\n");
3516 fprintf(
f,
"// gSystem->Getenv(\"ROOTPROOFLITE\"));\n");
3517 fprintf(
f,
"// } else if (gSystem->Getenv(\"ROOTPROOFCLIENT\")) {\n");
3518 fprintf(
f,
"// Printf(\"event-SETUP: PROOF client\");\n");
3519 fprintf(
f,
"// } else {\n");
3520 fprintf(
f,
"// Printf(\"event-SETUP: standard PROOF node\");\n");
3521 fprintf(
f,
"// }\n");
3523 fprintf(
f,
" if (gSystem->Load(\"lib%s\") == -1)\n", pack);
3524 fprintf(
f,
" return -1;\n");
3525 fprintf(
f,
" return 0;\n");
3547 TList *list = listRetcode.fList;
3548 auto retcode = listRetcode.fReturnCode;
3561 if (version > 1000000) version -= 1000000;
3562 if (version < 53419 || (59900 < version && version < 59907)) {
3569 if (!info || info->IsA() != TStreamerInfo::Class()) {
3577 if (!base)
continue;
3589 for (
int mode=0;mode<2; ++mode) {
3599 if (info->IsA() != TStreamerInfo::Class()) {
3602 if (strcmp(obj->
GetName(),
"listOfRules")==0) {
3610 rulelnk = rulelnk->
Next();
3614 Warning(
"ReadStreamerInfo",
"%s has a %s in the list of TStreamerInfo.",
GetName(), info->IsA()->
GetName());
3624 Warning(
"ReadStreamerInfo",
"The StreamerInfo for %s does not have a list of elements.",info->
GetName());
3629 Bool_t isstl = element && strcmp(
"This",element->
GetName())==0;
3631 if ( (!isstl && mode ==0) || (isstl && mode ==1) ) {
3640 printf(
"ReadStreamerInfo, class:%s, illegal uid=%d\n",info->
GetName(),uid);
3706 for (
Int_t i=0;i<npids;i++) {
3718 Info(
"WriteProcessID",
"name=%s, file=%s", name,
GetName());
3752 listOfRules.
SetName(
"listOfRules");
3753 std::set<TClass*> classSet;
3759 if (
gDebug > 0) printf(
" -class: %s info number %d saved\n",info->
GetName(),uid);
3765 if ( classSet.find( clinfo ) == classSet.end() ) {
3766 if (
gDebug > 0) printf(
" -class: %s stored the I/O customization rules\n",info->
GetName());
3773 listOfRules.
Add(obj);
3775 classSet.insert(clinfo);
3786 list.
Add(&listOfRules);
3818 "you want to read through a cache, but you have no valid cache "
3819 "directory set - reading remotely");
3820 ::Info(
"TFile::OpenFromCache",
"set cache directory using TFile::SetCacheFileDir()");
3828 "you want to read through a cache, but you are reading "
3829 "local files - CACHEREAD disabled");
3836 cachefilepath += fileurl.
GetFile();
3840 ::Warning(
"TFile::OpenFromCache",
"you want to read through a cache, but I "
3841 "cannot create the directory %s - CACHEREAD disabled",
3842 cachefilepathbasedir.
Data());
3847 cachefilepath +=
"__";
3851 if (strstr(
name,
"zip=")) {
3856 Int_t optioncount = 0;
3865 if (optioncount!=0) {
3870 newoptions += value;
3880 cachefilepath +=
"__";
3881 cachefilepath += zipname;
3895 char cacheblock[256];
3896 char remotblock[256];
3899 cfurl = cachefilepath;
3900 cfurl +=
"?filetype=raw";
3903 ropt +=
"&filetype=raw";
3916 ::Error(
"TFile::OpenFromCache",
3917 "cannot open the cache file to check cache consistency");
3922 ::Error(
"TFile::OpenFromCache",
3923 "cannot open the remote file to check cache consistency");
3930 if ((!cachefile->
ReadBuffer(cacheblock,256)) &&
3932 if (memcmp(cacheblock, remotblock, 256)) {
3933 ::Warning(
"TFile::OpenFromCache",
"the header of the cache file "
3934 "differs from the remote file - forcing an update");
3938 ::Warning(
"TFile::OpenFromCache",
"the header of the cache and/or "
3939 "remote file are not readable - forcing an update");
3954 const auto cachefilepathtmp = cachefilepath + std::to_string(
gSystem->
GetPid()) +
".tmp";
3957 "you want to read through a cache, but I "
3958 "cannot make a cache copy of %s - CACHEREAD disabled",
3959 cachefilepathbasedir.
Data());
3969 ::Info(
"TFile::OpenFromCache",
"using local cache copy of %s [%s]",
name, cachefilepath.
Data());
3972 fileurl.
SetFile(cachefilepath);
3975 tagfile = cachefilepath;
3976 tagfile +=
".ROOT.cachefile";
4034 if (!url || strlen(url) <= 0) {
4035 ::Error(
"TFile::Open",
"no url specified");
4048 TString sto = opts(ito + strlen(
"TIMEOUT="), opts.
Length());
4053 if (
gDebug > 0)
::Info(
"TFile::Open",
"timeout of %d millisec requested", toms);
4055 sto.
Insert(0,
"TIMEOUT=");
4073 ::Info(
"TFile::Open",
"waited %d millisec for asynchronous open", toms - xtms);
4075 ::Info(
"TFile::Open",
"timeout option not supported (requires asynchronous"
4080 ::Error(
"TFile::Open",
"timeout expired while opening '%s'", expandedUrl.
Data());
4087 ::Warning(
"TFile::Open",
"incomplete 'TIMEOUT=' option specification - ignored");
4093 const char *option = opts;
4096 TString namelist(expandedUrl);
4113 while (namelist.
Tokenize(
n, from,
"|") && !
f) {
4116 if (!strcasecmp(option,
"CACHEREAD") ||
4143 f = (
TFile*)
gROOT->ProcessLineFast(
TString::Format(
"new TParallelMergingFile(\"%s\",\"%s\",\"%s\",%d)",
n.Data(),option,ftitle,compress));
4156 lfname = urlname.
GetUrl();
4158 f =
new TFile(lfname.
Data(), option, ftitle, compress);
4163 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFile",
name))) {
4164 if (
h->LoadPlugin() == -1)
4166 f = (
TFile*)
h->ExecPlugin(5,
name.Data(), option, ftitle, compress, netopt);
4172 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFile",
name))) {
4173 if (
h->LoadPlugin() == -1)
4175 f = (
TFile*)
h->ExecPlugin(2,
name.Data(), option);
4181 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFile",
name)) &&
4182 h->LoadPlugin() == 0) {
4183 name.ReplaceAll(
"file:",
"");
4184 f = (
TFile*)
h->ExecPlugin(4,
name.Data(), option, ftitle, compress);
4186 f =
new TFile(
name.Data(), option, ftitle, compress);
4191 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFile",
name.Data()))) {
4192 if (
h->LoadPlugin() == -1)
4196 f = (
TFile*)
h->ExecPlugin(5,
name.Data(), option, ftitle, compress, netopt);
4198 f = (
TFile*)
h->ExecPlugin(4,
name.Data(), option, ftitle, compress);
4207 if (
f &&
f->IsZombie()) {
4230 f &&
f->IsWritable() && !
f->IsRaw()) {
4265 const char *ftitle,
Int_t compress,
4273 if (!url || strlen(url) <= 0) {
4274 ::Error(
"TFile::AsyncOpen",
"no url specified");
4286 TString outf =
".TFileAsyncOpen_";
4297 while (namelist.
Tokenize(
n, from,
"|") && !
f) {
4312 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFile",
name)) &&
4313 (!strcmp(
h->GetClass(),
"TXNetFile") || !strcmp(
h->GetClass(),
"TNetXNGFile"))
4314 &&
h->LoadPlugin() == 0) {
4319 if ((
h =
gROOT->GetPluginManager()->FindHandler(
"TFile",
name)) &&
4320 !strcmp(
h->GetClass(),
"TAlienFile") &&
h->LoadPlugin() == 0) {
4321 f = (
TFile*)
h->ExecPlugin(5,
name.Data(), option, ftitle, compress,
kTRUE);
4331 if (!notfound && !
f)
4376 if ((
f = fh->
GetFile()) && !(
f->IsZombie())) {
4378 Bool_t cr = (!strcmp(
f->GetOption(),
"CREATE") ||
4379 !strcmp(
f->GetOption(),
"RECREATE") ||
4390 if (
f)
f->fAsyncHandle = fh;
4402#if defined(R__WINGCC)
4405 return ::open(pathname, flags |
O_BINARY, mode);
4406#elif defined(R__SEEK64)
4407 return ::open64(pathname, flags, mode);
4409 return ::open(pathname, flags, mode);
4418 if (fd < 0)
return 0;
4427 return ::read(fd, buf, len);
4435 return ::write(fd, buf, len);
4446#if defined (R__SEEK64)
4447 return ::lseek64(fd, offset, whence);
4449 return ::_lseeki64(fd, offset, whence);
4451 return ::lseek(fd, offset, whence);
4478 return ::_commit(fd);
4549 if (!cached.EndsWith(
"/"))
4556 ::Error(
"TFile::SetCacheFileDir",
"no sufficient permissions on cache directory %s or cannot create it",
TString(cachedir).Data());
4598 cachetagfile +=
".tag.ROOT.cache";
4602 if (lastcleanuptime < cleanupinterval) {
4603 ::Info(
"TFile::ShrinkCacheFileDir",
"clean-up is skipped - last cleanup %lu seconds ago - you requested %lu", lastcleanuptime, cleanupinterval);
4609 cachetagfile +=
"?filetype=raw";
4610 TFile *tagfile =
nullptr;
4612 if (!(tagfile =
TFile::Open(cachetagfile,
"RECREATE"))) {
4613 ::Error(
"TFile::ShrinkCacheFileDir",
"cannot create the cache tag file %s", cachetagfile.
Data());
4621#if defined(R__WIN32)
4622 cmd =
"echo <TFile::ShrinkCacheFileDir>: cleanup to be implemented";
4623#elif defined(R__MACOSX)
4624 cmd.
Form(
"perl -e 'my $cachepath = \"%s\"; my $cachesize = %lld;my $findcommand=\"find $cachepath -type f -exec stat -f \\\"\\%%a::\\%%N::\\%%z\\\" \\{\\} \\\\\\;\";my $totalsize=0;open FIND, \"$findcommand | sort -k 1 |\";while (<FIND>) { my ($accesstime, $filename, $filesize) = split \"::\",$_; $totalsize += $filesize;if ($totalsize > $cachesize) {if ( ( -e \"${filename}.ROOT.cachefile\" ) || ( -e \"${filename}\" ) ) {unlink \"$filename.ROOT.cachefile\";unlink \"$filename\";}}}close FIND;' ",
fgCacheFileDir.
Data(),shrinksize);
4626 cmd.
Form(
"perl -e 'my $cachepath = \"%s\"; my $cachesize = %lld;my $findcommand=\"find $cachepath -type f -exec stat -c \\\"\\%%x::\\%%n::\\%%s\\\" \\{\\} \\\\\\;\";my $totalsize=0;open FIND, \"$findcommand | sort -k 1 |\";while (<FIND>) { my ($accesstime, $filename, $filesize) = split \"::\",$_; $totalsize += $filesize;if ($totalsize > $cachesize) {if ( ( -e \"${filename}.ROOT.cachefile\" ) || ( -e \"${filename}\" ) ) {unlink \"$filename.ROOT.cachefile\";unlink \"$filename\";}}}close FIND;' ",
fgCacheFileDir.
Data(),shrinksize);
4633 ::Error(
"TFile::ShrinkCacheFileDir",
"error executing clean-up script");
4763 forceRemote =
kTRUE;
4764 else if (opts.
Contains(
"remote=0"))
4773 if (fname[0] ==
'/') {
4775 lfname.
Form(
"%s%s", prefix->
Data(), fname);
4778 }
else if (fname[0] ==
'~' || fname[0] ==
'$') {
4796 if (localFile && prefix)
4803 }
else if (
TPMERegexp(
"^(http[s]?|s3http[s]?|[a]?s3|gs|gshttp[s]?){1}:",
"i").Match(
name)) {
4807 }
else if (!strncmp(
name,
"file:", 5)) {
4833 if (of && (of->
GetSize() > 0)) {
4836 while ((
f = (
TFile *)nxf()))
4837 if (
f->Matches(
name))
4850 if (handle && handle->
fFile) {
4880 if (of && (of->
GetSize() > 0)) {
4883 while ((
f = (
TFile *)nxf()))
4884 if (
f->Matches(
name))
4889 return (
const TUrl *)
nullptr;
4897 fprintf(stderr,
"[TFile::Cp] Total %.02f MB\t|", (
Double_t)
size/1048576);
4899 for (
int l = 0;
l < 20;
l++) {
4901 if (
l < 20*bytesread/
size)
4902 fprintf(stderr,
"=");
4903 else if (
l == 20*bytesread/
size)
4904 fprintf(stderr,
">");
4905 else if (
l > 20*bytesread/
size)
4906 fprintf(stderr,
".");
4908 fprintf(stderr,
"=");
4914 fprintf(stderr,
"| %.02f %% [%.01f MB/s]\r",
4915 100.0*(
size?(bytesread/((
float)
size)):1), (lCopy_time>0.)?bytesread/lCopy_time/1048576.:0.);
4939 if (opt !=
"") opt +=
"&";
4948 char *copybuffer =
nullptr;
4950 TFile *sfile =
this;
4951 TFile *dfile =
nullptr;
4967 ::Error(
"TFile::Cp",
"cannot open destination file %s", dst);
4973 rmdestiferror =
kTRUE;
4978 copybuffer =
new char[buffersize];
4980 ::Error(
"TFile::Cp",
"cannot allocate the copy buffer");
4985 Long64_t read, written, totalread, filesize, b00;
4995 if (progressbar)
CpProgress(totalread, filesize,watch);
5000 if (filesize - b1 > (
Long64_t)buffersize) {
5001 readsize = buffersize;
5003 readsize = filesize - b1;
5006 if (readsize == 0)
break;
5012 if ((read <= 0) || readop) {
5013 ::Error(
"TFile::Cp",
"cannot read from source file %s. readsize=%lld read=%lld readop=%d",
5014 sfile->
GetName(), readsize, read, readop);
5021 if ((written != read) || writeop) {
5022 ::Error(
"TFile::Cp",
"cannot write %lld bytes to destination file %s", read, dst);
5026 }
while (read == (
Long64_t)buffersize);
5030 fprintf(stderr,
"\n");
5036 if (dfile) dfile->
Close();
5038 if (dfile)
delete dfile;
5039 if (copybuffer)
delete[] copybuffer;
5041 if (rmdestiferror && (success !=
kTRUE))
5064 if (opt !=
"") opt +=
"&";
5070 opt +=
TString::Format(
"&cachesz=%d&readaheadsz=%d&rmpolicy=1", 4*buffersize, 2*buffersize);
5073 TFile *sfile =
nullptr;
5079 ::Error(
"TFile::Cp",
"cannot open source file %s", src);
5081 success = sfile->
Cp(dst, progressbar, buffersize);
5096#if defined(R__neverLINUX) && !defined(R__WINGCC)
5105 if (IsA() != TFile::Class())
5108 int advice = POSIX_FADV_WILLNEED;
5113 advice = POSIX_FADV_NORMAL;
5117#if defined(R__SEEK64)
5118 Int_t result = posix_fadvise64(
fD, offset, len, advice);
5120 Int_t result = posix_fadvise(
fD, offset, len, advice);
5125 return (result != 0);
5147 return ((bytes < 0) ? 0 : bytes);
void frombuf(char *&buf, Bool_t *x)
void tobuf(char *&buf, Bool_t x)
typedef void(GLAPIENTRYP _GLUfuncptr)(void)
static void update(gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2)
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
R__EXTERN TPluginManager * gPluginMgr
R__EXTERN TVirtualMutex * gROOTMutex
void Printf(const char *fmt,...)
Bool_t R_ISDIR(Int_t mode)
R__EXTERN TSystem * gSystem
R__EXTERN void **(* gThreadTsd)(void *, Int_t)
R__EXTERN TVirtualMonitoringWriter * gMonitoringWriter
#define R__LOCKGUARD(mutex)
#define R__WRITE_LOCKGUARD(mutex)
#define R__READ_LOCKGUARD(mutex)
const TMatches FindRules(const TString &source) const
Return all the rules that are about the given 'source' class.
const TObjArray * GetRules() const
This class is a TS set of unsigned set.
bool Insert(char *buf, int len) const
If the hash is there, return false. Otherwise, insert the hash and return true;.
static HashValue Hash(char *buf, int len)
Return the hash object corresponding to the buffer.
bool Find(const HashValue &hash) const
Return true if the hash is already in already there.
void AsString(TString &out, const char *options="") const
Add to the string 'out' the string representation of the rule.
const char * GetMemberName() const
virtual Int_t SetCurrentMember()=0
const char * GetArchiveName() const
TArchiveMember * GetMember() const
static TArchiveFile * Open(const char *url, TFile *file)
Return proper archive file handler depending on passed url.
Long64_t GetMemberFilePosition() const
Return position in archive of current member.
virtual Int_t OpenArchive()=0
Long64_t GetDecompressedSize() const
Array of chars or bytes (8 bits per element).
void Set(Int_t n)
Set size of this array to n chars.
Buffer base class used for serializing objects.
TClass instances represent classes, structs and namespaces in the ROOT type system.
Bool_t IsSyntheticPair() const
ROOT::ESTLType GetCollectionType() const
Return the 'type' of the STL the TClass is representing.
Bool_t HasInterpreterInfo() const
const ROOT::Detail::TSchemaRuleSet * GetSchemaRules() const
Return the set of the schema rules if any.
Bool_t IsLoaded() const
Return true if the shared library of this class is currently in the a process's memory.
static Bool_t AddRule(const char *rule)
Add a schema evolution customization rule.
TVirtualCollectionProxy * GetCollectionProxy() const
Return the proxy describing the collection (if any).
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 ls(Option_t *option="") const
List (ls) all objects in this collection.
virtual bool UseRWLock(Bool_t enable=true)
Set this collection to use a RW lock upon access, making it thread safe.
void SetName(const char *name)
virtual Int_t GetEntries() const
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
virtual TObject * Clone(const char *newname="") const
Make a clone of an collection using the Streamer facility.
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
static void GetDateTime(UInt_t datetime, Int_t &date, Int_t &time)
Static function that returns the date and time.
void ReadBuffer(char *&buffer)
Decode Date/Time from output buffer, used by I/O system.
A ROOT file is structured in Directories (like a file system).
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.
Bool_t IsWritable() const override
void Delete(const char *namecycle="") override
Delete Objects or/and keys in a directory.
Int_t AppendKey(TKey *key) override
Insert key in the linked list of keys of this directory.
Int_t ReadKeys(Bool_t forceRead=kTRUE) override
Read the linked list of keys.
TDatime fDatimeM
Date and time of last modification.
void Save() override
Save recursively all directory keys and headers.
Int_t fNbytesKeys
Number of bytes for the keys.
Int_t GetNkeys() const override
Long64_t fSeekKeys
Location of Keys record on file.
TFile * GetFile() const override
Int_t Sizeof() const override
Return the size in bytes of the directory header.
Long64_t fSeekParent
Location of parent directory on file.
void BuildDirectoryFile(TFile *motherFile, TDirectory *motherDir)
Initialise directory to defaults.
Int_t Write(const char *name=nullptr, Int_t opt=0, Int_t bufsize=0) override
Write all objects in memory to disk.
Long64_t fSeekDir
Location of directory on file.
Int_t fNbytesName
Number of bytes in TNamed at creation time.
TDatime fDatimeC
Date and time when directory is created.
Bool_t fWritable
True if directory is writable.
Int_t WriteTObject(const TObject *obj, const char *name=nullptr, Option_t *option="", Int_t bufsize=0) override
Write object obj to this directory.
TObject * Get(const char *namecycle) override
Return pointer to object identified by namecycle.
void FillBuffer(char *&buffer) override
Encode directory header into output buffer.
void SetWritable(Bool_t writable=kTRUE) override
Set the new value of fWritable recursively.
TList * fKeys
Pointer to keys list in memory.
void ls(Option_t *option="") const override
List Directory contents.
TDirectory::TContext keeps track and restore the current directory.
Describe directory structure in memory.
virtual TList * GetList() const
void SetName(const char *newname) override
Set the name for directory If the directory name is changed after the directory was written once,...
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
A cache when reading files over the network.
virtual Int_t ReadBuffer(char *buf, Long64_t pos, Int_t len)
Read buffer at position pos.
virtual void Close(Option_t *option="")
Close out any threads or asynchronous fetches used by the underlying implementation.
virtual Int_t GetBufferSize() const
virtual void SetFile(TFile *file, TFile::ECacheAction action=TFile::kDisconnect)
Set the file using this cache and reset the current blocks (if any).
A cache when writing files over the network.
virtual Bool_t Flush()
Flush the current write buffer to the file.
virtual Int_t ReadBuffer(char *buf, Long64_t pos, Int_t len)
Called by the read cache to check if the requested data is not in the write cache buffer.
virtual Int_t GetBytesInCache() const
virtual Int_t WriteBuffer(const char *buf, Long64_t pos, Int_t len)
Write buffer at position pos in the write buffer.
Class holding info about the file being opened.
TFile * fFile
TFile instance of the file being opened.
const char * GetOpt() const
Bool_t Matches(const char *name)
Return kTRUE if this async request matches the open request specified by 'url'.
Int_t GetCompress() const
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
static std::atomic< Long64_t > fgBytesRead
Number of bytes read by all TFile objects.
Int_t fReadCalls
Number of read calls ( not counting the cache calls )
static void SetFileBytesWritten(Long64_t bytes=0)
static Bool_t fgCacheFileForce
Indicates, to force all READ to CACHEREAD.
Long64_t fBytesRead
Number of bytes read from this file.
virtual TProcessID * ReadProcessID(UShort_t pidf)
The TProcessID with number pidf is read from this file.
void ls(Option_t *option="") const override
List file contents.
virtual void Seek(Long64_t offset, ERelativeTo pos=kBeg)
Seek to a specific position in the file. Pos it either kBeg, kCur or kEnd.
static Bool_t GetOnlyStaged()
Returns staged only flag.
static void IncrementFileCounter()
static Bool_t ShrinkCacheFileDir(Long64_t shrinkSize, Long_t cleanupInteval=0)
Try to shrink the cache to the desired size.
Long64_t fSeekFree
Location on disk of free segments structure.
static Int_t fgReadaheadSize
Readahead buffer size.
void FillBuffer(char *&buffer) override
Encode file output buffer.
Double_t fSum2Buffer
Sum of squares of buffer sizes of objects written so far.
static void SetReadaheadSize(Int_t bufsize=256000)
static Bool_t fgCacheFileDisconnected
Indicates, we trust in the files in the cache dir without stat on the cached file.
const TList * GetStreamerInfoCache()
Returns the cached list of StreamerInfos used in this file.
static Bool_t GetReadStreamerInfo()
If the streamerinfos are to be read at file opening.
TArchiveFile * fArchive
!Archive file from which we read this file
virtual Int_t SysSync(Int_t fd)
Interface to system fsync. All arguments like in POSIX fsync().
virtual Int_t ReOpen(Option_t *mode)
Reopen a file with a different access mode.
virtual void ReadStreamerInfo()
Read the list of StreamerInfo from this file.
virtual Bool_t Matches(const char *name)
Return kTRUE if 'url' matches the coordinates of this file.
TArrayC * fClassIndex
!Index of TStreamerInfo classes written to this file
static Long64_t GetFileBytesWritten()
Static function returning the total number of bytes written to all files.
virtual InfoListRet GetStreamerInfoListImpl(bool lookupSICache)
See documentation of GetStreamerInfoList for more details.
static void SetReadStreamerInfo(Bool_t readinfo=kTRUE)
Specify if the streamerinfos must be read at file opening.
Bool_t fNoAnchorInName
!True if we don't want to force the anchor to be appended to the file name
static void SetFileBytesRead(Long64_t bytes=0)
Long64_t fSeekInfo
Location on disk of StreamerInfo record.
void Paint(Option_t *option="") override
Paint all objects in the file.
Int_t GetBestBuffer() const
Return the best buffer size of objects on this file.
TList * fOpenPhases
!Time info about open phases
virtual void SetCompressionLevel(Int_t level=ROOT::RCompressionSetting::ELevel::kUseMin)
See comments for function SetCompressionSettings.
TFileCacheWrite * GetCacheWrite() const
Return a pointer to the current write cache.
static void SetFileReadCalls(Int_t readcalls=0)
static TString fgCacheFileDir
Directory where to locally stage files.
virtual Int_t SysRead(Int_t fd, void *buf, Int_t len)
Interface to system read. All arguments like in POSIX read().
Int_t fVersion
File format version.
void Print(Option_t *option="") const override
Print all objects in the file.
static std::atomic< Long64_t > fgFileCounter
Counter for all opened files.
virtual EAsyncOpenStatus GetAsyncOpenStatus()
static UInt_t GetOpenTimeout()
Returns open timeout (in ms).
static void CpProgress(Long64_t bytesread, Long64_t size, TStopwatch &watch)
Print file copy progress.
static Bool_t fgOnlyStaged
Before the file is opened, it is checked, that the file is staged, if not, the open fails.
virtual Int_t GetNProcessIDs() const
Bool_t fMustFlush
!True if the file buffers must be flushed
Int_t WriteBufferViaCache(const char *buf, Int_t len)
Write buffer via cache.
static Long64_t GetFileBytesRead()
Static function returning the total number of bytes read from all files.
Int_t ReadBufferViaCache(char *buf, Int_t len)
Read buffer via cache.
virtual TKey * CreateKey(TDirectory *mother, const TObject *obj, const char *name, Int_t bufsize)
Creates key for object and converts data to buffer.
virtual void WriteFree()
Write FREE linked list on the file.
static Int_t GetReadaheadSize()
Static function returning the readahead buffer size.
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.
static Long64_t GetFileCounter()
TMap * fCacheReadMap
!Pointer to the read cache (if any)
Long64_t fBEGIN
First used byte in file.
Int_t MakeProjectParProofInf(const char *packname, const char *proofinfdir)
Create BUILD.sh and SETUP.C under 'proofinf' for PAR package 'pack'.
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...
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.
Long64_t fArchiveOffset
!Offset at which file starts in archive
Int_t fNbytesInfo
Number of bytes for StreamerInfo record.
virtual Long64_t GetSize() const
Returns the current file size.
virtual Bool_t IsOpen() const
Returns kTRUE in case file is open and kFALSE if file is not open.
TFileOpenHandle * fAsyncHandle
!For proper automatic cleanup
static Bool_t SetOnlyStaged(Bool_t onlystaged)
Sets only staged flag.
virtual Long64_t GetBytesRead() const
virtual Int_t GetErrno() const
Method returning errno.
virtual void SetCompressionSettings(Int_t settings=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault)
Used to specify the compression level and algorithm.
static Bool_t fgReadInfo
if true (default) ReadStreamerInfo is called when opening a file
virtual void Init(Bool_t create)
Initialize a TFile object.
Long64_t GetRelOffset() const
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.
virtual void SetCacheWrite(TFileCacheWrite *cache)
Set a pointer to the write cache.
TString fOption
File options.
virtual Bool_t WriteBuffer(const char *buf, Int_t len)
Write a buffer to the file.
void SumBuffer(Int_t bufsize)
Increment statistics for buffer sizes of objects in this file.
static const char * GetCacheFileDir()
Get the directory where to locally stage/cache remote files.
EAsyncOpenStatus
Asynchronous open request status.
virtual void WriteStreamerInfo()
Write the list of TStreamerInfo as a single object in this file The class Streamer description for al...
virtual Long64_t GetBytesWritten() const
Return the total number of bytes written so far to the file.
Int_t fCompress
Compression level and algorithm.
static TFile *& CurrentFile()
Return the current ROOT file if any.
virtual void SetCompressionAlgorithm(Int_t algorithm=ROOT::RCompressionSetting::EAlgorithm::kUseGlobal)
See comments for function SetCompressionSettings.
virtual const TUrl * GetEndpointUrl() const
Int_t fNbytesFree
Number of bytes for free segments structure.
virtual void ResetErrno() const
Method resetting the errno.
Int_t Sizeof() const override
Return the size in bytes of the file header.
Bool_t FlushWriteCache()
Flush the write cache if active.
virtual void IncrementProcessIDs()
Bool_t fIsPcmFile
!True if the file is a ROOT pcm file.
TFileCacheRead * fCacheRead
!Pointer to the read cache (if any)
virtual Int_t SysClose(Int_t fd)
Interface to system close. All arguments like in POSIX close().
TFile()
File default Constructor.
Char_t fUnits
Number of bytes for file pointers.
TObjArray * fProcessIDs
!Array of pointers to TProcessIDs
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'.
virtual void ShowStreamerInfo()
Show the StreamerInfo of all classes written to this file.
virtual Long64_t SysSeek(Int_t fd, Long64_t offset, Int_t whence)
Interface to system lseek.
virtual ~TFile()
File destructor.
virtual Int_t SysStat(Int_t fd, Long_t *id, Long64_t *size, Long_t *flags, Long_t *modtime)
Return file stat information.
virtual Int_t SysOpen(const char *pathname, Int_t flags, UInt_t mode)
Interface to system open. All arguments like in POSIX open().
ECacheAction
TTreeCache flushing semantics.
static UInt_t SetOpenTimeout(UInt_t timeout)
Sets open timeout time (in ms). Returns previous timeout value.
virtual void ReadFree()
Read the FREE linked list.
virtual Bool_t Cp(const char *dst, Bool_t progressbar=kTRUE, UInt_t buffersize=1000000)
Allows to copy this file to the dst URL.
static ROOT::Internal::RConcurrentHashColl fgTsSIHashes
!TS Set of hashes built from read streamer infos
Long64_t fBytesReadExtra
Number of extra bytes (overhead) read by the readahead buffer.
Long64_t fBytesWrite
Number of bytes written to this file.
Bool_t fIsRootFile
!True is this is a ROOT file, raw file otherwise
static Bool_t SetCacheFileDir(ROOT::Internal::TStringView cacheDir, Bool_t operateDisconnected=kTRUE, Bool_t forceCacheread=kFALSE)
virtual void Flush()
Synchronize a file's in-memory and on-disk states.
TList * fFree
Free segments linked list table.
virtual Bool_t ReadBufferAsync(Long64_t offs, Int_t len)
void Delete(const char *namecycle="") override
Delete object namecycle.
Bool_t fInitDone
!True if the file has been initialized
virtual void DrawMap(const char *keys="*", Option_t *option="")
Draw map of objects in this file.
virtual void MakeFree(Long64_t first, Long64_t last)
Mark unused bytes on the file.
TFileCacheWrite * fCacheWrite
!Pointer to the write cache (if any)
TString fRealName
Effective real file name (not original url)
virtual void SetOffset(Long64_t offset, ERelativeTo pos=kBeg)
Set position from where to start reading.
Long64_t fOffset
!Seek offset cache
static std::atomic< Long64_t > fgBytesWrite
Number of bytes written by all TFile objects.
TList * fInfoCache
!Cached list of the streamer infos in this file
virtual Int_t GetBytesToPrefetch() const
Max number of bytes to prefetch.
static UInt_t fgOpenTimeout
Timeout for open operations in ms - 0 corresponds to blocking i/o.
Int_t MakeProjectParMake(const char *packname, const char *filename)
Create makefile at 'filemake' for PAR package 'pack'.
Long64_t fEND
Last used byte in file.
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.
Int_t Write(const char *name=nullptr, Int_t opt=0, Int_t bufsiz=0) override
Write memory objects to this file.
EAsyncOpenStatus fAsyncOpenStatus
!Status of an asynchronous open request
bool fGlobalRegistration
! if true, bypass use of global lists
Double_t fSumBuffer
Sum of buffer sizes of objects written so far.
Bool_t fIsArchive
!True if this is a pure archive file
TObjArray * GetListOfProcessIDs() const
void Draw(Option_t *option="") override
Fill Graphics Structure and Paint.
void Close(Option_t *option="") override
Close a file.
static std::atomic< Int_t > fgReadCalls
Number of bytes read from all TFile objects.
virtual Int_t Recover()
Attempt to recover file if not correctly closed.
virtual TList * GetStreamerInfoList() final
Read the list of TStreamerInfo objects written to this file.
virtual void WriteHeader()
Write File Header.
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.
Int_t fNProcessIDs
Number of TProcessID written to this file.
virtual void SetCacheRead(TFileCacheRead *cache, TObject *tree=0, ECacheAction action=kDisconnect)
Set a pointer to the read cache.
Int_t fWritten
Number of objects written so far.
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.
virtual Bool_t ReadBuffer(char *buf, Int_t len)
Read a buffer from the file.
Float_t GetCompressionFactor()
Return the file compression factor.
virtual Int_t SysWrite(Int_t fd, const void *buf, Int_t len)
Interface to system write. All arguments like in POSIX write().
static Int_t GetFileReadCalls()
Static function returning the total number of read calls from all files.
TFileCacheRead * GetCacheRead(const TObject *tree=nullptr) const
Return a pointer to the current read cache.
Option_t * GetOption() const override
static TList * fgAsyncOpenRequests
Int_t Sizeof() const
return number of bytes occupied by this TFree on permanent storage
virtual void ReadBuffer(char *&buffer)
Decode one free structure from input buffer.
Long64_t GetFirst() const
virtual void FillBuffer(char *&buffer)
Encode fre structure into output buffer.
TFree * AddFree(TList *lfree, Long64_t first, Long64_t last)
Add a new free segment to the list of free segments.
static void MakeFunctor(const char *name, const char *type, GlobFunc &func)
Book space in a file, create I/O buffers, to fill them, (un)compress them.
virtual Long64_t GetSeekKey() const
virtual void Delete(Option_t *option="")
Delete an object from the file.
virtual const char * GetClassName() const
virtual Bool_t ReadFile()
Read the key structure from the file.
virtual Int_t WriteFile(Int_t cycle=1, TFile *f=0)
Write the encoded object supported by this key.
void ReadKeyBuffer(char *&buffer)
Decode input buffer.
virtual char * GetBuffer() const
virtual void Add(TObject *obj)
virtual TObject * Remove(TObject *obj)
Remove object from the list.
virtual void RemoveLast()
Remove the last object of the list.
virtual TObject * FindObject(const char *name) const
Find an object in this list using its name.
virtual TObjLink * FirstLink() const
virtual TObject * Last() const
Return the last object in the list. Returns 0 when list is empty.
virtual void AddAfter(const TObject *after, TObject *obj)
Insert object after object after in the list.
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
virtual TObject * First() const
Return the first object in the list. Returns 0 when list is empty.
virtual void Clear(Option_t *option="")
Remove all objects from the list.
static void GenerateMissingStreamerInfos(TList *extrainfos, TStreamerElement *element)
Generate an empty StreamerInfo for types that are used in templates parameters but are not known in t...
static TString UpdateAssociativeToVector(const char *name)
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
void Add(TObject *obj)
This function may not be used (but we need to provide it since it is a pure virtual in TCollection).
TObject * GetValue(const char *keyname) const
Returns a pointer to the value associated with keyname as name of the key.
TObject * Remove(TObject *key)
Remove the (key,value) pair with key from the map.
virtual void FillBuffer(char *&buffer)
Encode TNamed into output buffer.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
virtual const char * GetTitle() const
Returns title of object.
virtual Int_t Sizeof() const
Return size of the TNamed part of the TObject.
virtual const char * GetName() const
Returns name of object.
Iterator of object array.
TObject * Next()
Return next object in array. Returns 0 when no more objects in array.
Int_t IndexOf(const TObject *obj) const
virtual void AddAtAndExpand(TObject *obj, Int_t idx)
Add object at position idx.
Int_t GetEntries() const
Return the number of objects in array (i.e.
TObject * UncheckedAt(Int_t i) const
TObject * At(Int_t idx) const
Wrapper around a TObject so it can be stored in a TList.
TObject * GetObject() const
Collectable string class.
Mother of all ROOT objects.
virtual const char * GetName() const
Returns name of object.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
virtual UInt_t GetUniqueID() const
Return the unique object id.
virtual void SysError(const char *method, const char *msgfmt,...) const
Issue system error message.
R__ALWAYS_INLINE Bool_t IsOnHeap() const
virtual const char * ClassName() const
Returns name of class to which the object belongs.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
R__ALWAYS_INLINE Bool_t IsZombie() 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 SetUniqueID(UInt_t uid)
Set the unique object id.
@ kCanDelete
if object in a list can be deleted
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Wrapper for PCRE library (Perl Compatible Regular Expressions).
Int_t Match(const TString &s, UInt_t start=0)
Runs a match on s against the regex 'this' was created with.
Longptr_t ExecPlugin(int nargs, const T &... params)
A TProcessID identifies a ROOT job in a unique way in time and space.
Int_t IncrementCount()
Increase the reference count to this object.
void CheckInit()
Initialize fObjects.
virtual void Clear(Option_t *option="")
delete the TObjArray pointing to referenced objects this function is called by TFile::Close("R")
static TObjArray * GetPIDs()
static: returns array of TProcessIDs
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.
static TProcessID * GetPID()
static: returns pointer to current TProcessID
static Int_t IncreaseDirLevel()
Increase the indentation level for ls().
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
static const TString & GetEtcDir()
Get the sysconfig directory in the installation. Static utility function.
static Int_t DecreaseDirLevel()
Decrease the indentation level for ls().
Sequenceable collection abstract base class.
Double_t RealTime()
Stop the stopwatch (if it is running) and return the realtime (in seconds) passed between the start a...
void Start(Bool_t reset=kTRUE)
Start the stopwatch.
void Continue()
Resume a stopped stopwatch.
void Stop()
Stop the stopwatch.
void SetBaseCheckSum(UInt_t cs)
TClass * GetClass() const
Describes a persistent version of a class.
TObjArray * GetElements() const
TClass * GetClass() const
void BuildCheck(TFile *file=0, Bool_t load=kTRUE)
Check if built and consistent with the class dictionary.
Int_t GetClassVersion() const
UInt_t GetCheckSum() const
Int_t GenerateHeaderFile(const char *dirname, const TList *subClasses=0, const TList *extrainfos=0)
Generate header file for the class described by this TStreamerInfo the function is called by TFile::M...
void ToLower()
Change string to lower-case.
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
TString & Insert(Ssiz_t pos, const char *s)
Int_t Atoi() const
Return integer value of string.
Bool_t EndsWith(const char *pat, ECaseCompare cmp=kExact) const
Return true if string ends with the specified string.
void Clear()
Clear string without changing its capacity.
const char * Data() const
Bool_t IsDigit() const
Returns true if all characters in string are digits (0-9) or white spaces, i.e.
TString & ReplaceAll(const TString &s1, const TString &s2)
void ToUpper()
Change string to upper case.
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
TString & Remove(Ssiz_t pos)
TString & Append(const char *cs)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
virtual void ReadBuffer(char *&buffer)
Read string from I/O buffer.
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
virtual const char * GetMakeSharedLib() const
Return the command line use to make a shared library.
virtual Int_t RedirectOutput(const char *name, const char *mode="a", RedirectHandle_t *h=nullptr)
Redirect standard output (stdout, stderr) to the specified file.
virtual void IgnoreInterrupt(Bool_t ignore=kTRUE)
If ignore is true ignore the interrupt signal, else restore previous behaviour.
virtual int Symlink(const char *from, const char *to)
Create a symbolic link from file1 to file2.
static void ResetErrno()
Static function resetting system error number.
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
static Int_t GetErrno()
Static function returning system error number.
virtual int Chmod(const char *file, UInt_t mode)
Set the file permission bits. Returns -1 in case or error, 0 otherwise.
virtual void FreeDirectory(void *dirp)
Free a directory.
virtual void * OpenDirectory(const char *name)
Open a directory. Returns 0 if directory does not exist.
virtual int GetPid()
Get process id.
virtual int CopyFile(const char *from, const char *to, Bool_t overwrite=kFALSE)
Copy a file.
virtual const char * GetIncludePath()
Get the list of include path.
virtual void ShowOutput(RedirectHandle_t *h)
Display the content associated with the redirection described by the opaque handle 'h'.
virtual Bool_t IsPathLocal(const char *path)
Returns TRUE if the url in 'path' points to the local file system.
virtual int mkdir(const char *name, Bool_t recursive=kFALSE)
Make a file system directory.
virtual Int_t Exec(const char *shellcmd)
Execute a command.
virtual int Load(const char *module, const char *entry="", Bool_t system=kFALSE)
Load a shared library.
int GetPathInfo(const char *path, Long_t *id, Long_t *size, Long_t *flags, Long_t *modtime)
Get info about a file: id, size, flags, modification time.
virtual const char * PrependPathName(const char *dir, TString &name)
Concatenate a directory and a file name.
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
virtual FILE * TempFileName(TString &base, const char *dir=nullptr)
Create a secure temporary file by appending a unique 6 letter string to base.
virtual const char * GetDirEntry(void *dirp)
Get a directory entry. Returns 0 if no more entries.
virtual Bool_t ChangeDirectory(const char *path)
Change directory.
virtual int Rename(const char *from, const char *to)
Rename a file.
virtual const char * BaseName(const char *pathname)
Base name of a file name. Base name of /user/root is root.
virtual const char * GetFlagsDebug() const
Return the debug flags.
virtual Bool_t IsAbsoluteFileName(const char *dir)
Return true if dir is an absolute pathname.
virtual const char * GetObjExt() const
Get the object file extension.
virtual void Sleep(UInt_t milliSec)
Sleep milliSec milli seconds.
virtual const char * WorkingDirectory()
Return working directory.
virtual const char * GetLibraries(const char *regexp="", const char *option="", Bool_t isRegexp=kTRUE)
Return a space separated list of loaded shared libraries.
virtual const char * HomeDirectory(const char *userName=nullptr)
Return the user's home directory.
virtual Bool_t ProcessEvents()
Process pending events (GUI, timers, sockets).
virtual const char * GetSoExt() const
Get the shared library extension.
virtual TString GetDirName(const char *pathname)
Return the directory name in pathname.
virtual int Unlink(const char *name)
Unlink, i.e.
virtual const char * GetFlagsOpt() const
Return the optimization flags.
The TTimeStamp encapsulates seconds and ns since EPOCH.
This class defines a UUID (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDent...
void ReadBuffer(char *&buffer)
Stream UUID from input buffer.
void FillBuffer(char *&buffer)
Stream UUID into output buffer.
This class represents a WWW compatible URL.
const char * GetAnchor() const
const char * GetUrl(Bool_t withDeflt=kFALSE) const
Return full URL.
void SetAnchor(const char *anchor)
const char * GetFileAndOptions() const
Return the file and its options (the string specified behind the ?).
const char * GetFile() const
const char * GetValueFromOptions(const char *key) const
Return a value for a given key from the URL options.
void SetProtocol(const char *proto, Bool_t setDefaultPort=kFALSE)
Set protocol and, optionally, change the port accordingly.
void SetOptions(const char *opt)
const char * GetHostFQDN() const
Return fully qualified domain name of url host.
const char * GetOptions() const
void SetHost(const char *host)
const char * GetProtocol() const
void SetFile(const char *file)
Bool_t HasOption(const char *key) const
Returns true if the given key appears in the URL options list.
virtual Bool_t SendFileReadProgress(TFile *)
virtual Bool_t SendFileCloseEvent(TFile *)
virtual Bool_t SendFileWriteProgress(TFile *)
Abstract Interface class describing Streamer information for one class.
virtual Int_t GetClassVersion() const =0
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
R__EXTERN TVirtualRWMutex * gCoreMutex
ROOT::ESTLType STLKind(std::string_view type)
Converts STL container name to number.
bool IsStdPair(std::string_view name)
ROOT::ESTLType IsSTLCont(std::string_view type)
type : type name: vector<list<classA,allocator>,allocator> result: 0 : not stl container code of cont...
int GetSplit(const char *type, std::vector< std::string > &output, int &nestedLoc, EModType mode=TClassEdit::kNone)
Stores in output (after emptying it) the split type.
@ kUndefined
Undefined compression algorithm (must be kept the last of the list in case a new algorithm is added).
@ kUseMin
Compression level reserved when we are not sure what to use (1 is for the fastest compression)
Simple struct of the return value of GetStreamerInfoListImpl.