68 #include "RConfigure.h" 85 static struct BoolNameTable_t {
114 TEnvParser(
TEnv *
e, FILE *f) : fIfp(f), fEnv(e) { }
115 virtual ~TEnvParser() { }
125 void TEnvParser::Parse()
132 while ((c = fgetc(fIfp)) != EOF) {
138 KeyValue(name, value, type);
180 if (c !=
' ' && c !=
'\t')
193 state = (c ==
':') ? 3 : 4;
197 state = (c ==
')') ? 6 : 5;
217 KeyValue(name, value, type);
227 class TReadEnvParser :
public TEnvParser {
233 TReadEnvParser(
TEnv *
e, FILE *f,
EEnvLevel l) : TEnvParser(e, f), fLevel(l) { }
235 { fEnv->SetValue(name, value, fLevel, type); }
241 class TWriteEnvParser :
public TEnvParser {
247 TWriteEnvParser(
TEnv *
e, FILE *f, FILE *of) : TEnvParser(e, f), fOfp(of) { }
258 TEnvRec *er = fEnv->Lookup(name);
263 fprintf(fOfp,
"%s", value.
Data());
274 : fName(n),
fType(t), fLevel(l)
298 if (
fValue != v && !ignoredup)
300 "duplicate entry <%s=%s> for level %d; ignored",
fName.
Data(),
v,
l);
336 char *
v, *vorg =
StrDup(value);
341 while ((s1 = (
char*)strstr(v,
"$("))) {
343 s2 = (
char*)strchr(s1,
')');
350 if (vv) len += strlen(vv);
361 int nch = strlen(v) + len;
362 char *nv =
new char[nch];
365 while ((s1 = (
char*)strstr(v,
"$("))) {
370 s2 = (
char*)strchr(s1,
')');
373 if (vv) strlcat(nv, vv,nch);
378 if (*v) strlcat(nv, v,nch);
405 if (!name || !name[0] || !
gSystem)
445 haveProgName =
kTRUE;
451 aname +=
"."; aname +=
name;
456 aname +=
"."; aname +=
name;
463 if (er == 0 && haveProgName &&
gProgName) {
467 if (er == 0 &&
gROOT) {
468 aname =
gROOT->GetName(); aname +=
"."; aname +=
name;
472 aname =
"*.*."; aname +=
name;
476 aname =
"*."; aname +=
name;
495 char buf2[512], *cp2 = buf2;
497 while (isspace((
int)*cp))
501 if (isdigit((
int)*cp) || *cp ==
'-' || *cp ==
'+')
503 while (isalpha((
int)*cp))
504 *cp2++ = toupper((
int)*cp++);
507 if (strcmp(buf2, bt->fName) == 0)
524 if (val == 0.0 && cp == endptr)
549 if (!fTable)
return 0;
558 if (!opt || !opt[0]) {
563 if (!strcmp(opt,
"global"))
565 if (!strcmp(opt,
"user"))
567 if (!strcmp(opt,
"local"))
580 static const char *lc[] = {
"Global",
"User",
"Local",
"Changed",
"All" };
582 while ((er = (
TEnvRec*) next()))
594 if (!fname || !fname[0]) {
595 Error(
"ReadFile",
"no file name specified");
600 if ((ifp = fopen(fname,
"r"))) {
619 if (!fname || !fname[0]) {
620 Error(
"WriteFile",
"no file name specified");
625 Error(
"WriteFile",
"TEnv table is empty");
630 if ((ofp = fopen(fname,
"w"))) {
633 while ((er = (
TEnvRec*) next()))
641 Error(
"WriteFile",
"cannot open %s for writing", fname);
652 Error(
"Save",
"no resource file name specified");
667 Error(
"SaveLevel",
"no resource file name specified");
672 Error(
"SaveLevel",
"TEnv table is empty");
695 if ((ofp = fopen(
Form(
"%s.new", rootrcdir.
Data()),
"w"))) {
696 ifp = fopen(rootrcdir.
Data(),
"r");
698 ifp = fopen(rootrcdir.
Data(),
"w");
704 if (ifp || (ifp = fopen(rootrcdir.
Data(),
"r"))) {
710 while ((er = (
TEnvRec*) next())) {
715 if (er->
fLevel == level) {
730 Error(
"SaveLevel",
"cannot write to file %s", rootrcdir.
Data());
742 const char *nam =
name;
744 if (name[0] ==
'+') {
751 er->
ChangeValue(value, type, level, append, fIgnoreDup);
753 fTable->Add(
new TEnvRec(nam, value, type, level));
768 SetValue(nm, val, level);
770 SetValue(name,
"1", level);
778 SetValue(name,
Form(
"%d", value));
786 SetValue(name,
Form(
"%g", value));
virtual const char * GetName() const
Returns name of object.
virtual const char * WorkingDirectory()
Return working directory.
void CallRecursiveRemoveIfNeeded(TObject &obj)
call RecursiveRemove for obj if gROOT is valid and obj.TestBit(kMustCleanup) is true.
static struct BoolNameTable_t gBoolNames[]
virtual const char * HomeDirectory(const char *userName=0)
Return the user's home directory.
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
The TEnv class reads config files, by default named .rootrc.
void ChangeValue(const char *v, const char *t, EEnvLevel l, Bool_t append=kFALSE, Bool_t ignoredup=kFALSE)
Change the value of a resource.
virtual void SetValue(const char *name, const char *value, EEnvLevel level=kEnvChange, const char *type=0)
Set the value of a resource or create a new resource.
virtual int Rename(const char *from, const char *to)
Rename a file.
virtual ~TEnv()
Delete the resource table.
THashList implements a hybrid collection class consisting of a hash table and a list to store TObject...
virtual TEnvRec * Lookup(const char *n) const
Loop over all resource records and return the one with name.
virtual void PrintEnv(EEnvLevel level=kEnvAll) const
Print all resources for a certain level (global, user, local, changed).
virtual Int_t WriteFile(const char *fname, EEnvLevel level=kEnvAll)
Write resource records to file fname for a certain level.
void Clear()
Clear string without changing its capacity.
virtual const char * Getenv(const char *env)
Get environment variable.
TString & Append(const char *cs)
Bool_t IgnoreDuplicates(Bool_t ignore)
If set to true, no warnings in case of duplicates are issued.
virtual void Print(Option_t *option="") const
Print all resources or the global, user or local resources separately.
~TEnvRec()
TNamed destructor.
virtual Int_t ReadFile(const char *fname, EEnvLevel level)
Read and parse the resource file for a certain level.
virtual void Save()
Write the resource files for each level.
R__EXTERN const char * gProgName
virtual TObject * FindObject(const char *name) const
Must be redefined in derived classes.
R__EXTERN TSystem * gSystem
friend class TWriteEnvParser
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
char * Form(const char *fmt,...)
static constexpr double nm
char * StrDup(const char *str)
Duplicate the string str.
Int_t Compare(const TObject *obj) const
Comparison function for resources.
TString ExpandValue(const char *v)
Replace all strings by the value defined in the shell (obtained via TSystem::Getenv()).
const char * Getvalue(const char *name) const
Returns the character value for a named resource.
static const TString & GetEtcDir()
Get the sysconfig directory in the installation. Static utility function.
friend class TReadEnvParser
static constexpr double s
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
int CompareTo(const char *cs, ECaseCompare cmp=kExact) const
Compare a string to char *cs2.
virtual void SaveLevel(EEnvLevel level)
Write the resource file for a certain level.
Mother of all ROOT objects.
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
virtual char * ConcatFileName(const char *dir, const char *name)
Concatenate a directory and a file name. User must delete returned string.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
const char * Data() const