/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz, 7/2003 ! ! Copyright: MAGIC Software Development, 2003 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MArgs // // This is a helper class for executables to parse command line arguments // ////////////////////////////////////////////////////////////////////////////// #include "MArgs.h" #include #include "MLog.h" #include "MLogManip.h" ClassImp(MArgsEntry); ClassImp(MArgs); using namespace std; void MArgsEntry::Print(const Option_t *o) const { gLog << all << *this << endl; } // -------------------------------------------------------------------------- // // Initializes: // fName: The name of the executable // fArgv: A TList containing all other command line arguments // MArgs::MArgs(int argc, char **argv) : fArgc(argc) { // FIXME: argv has no const-qualifier to be idetical with // TApplication. fName = argv[0]; fArgv = new TList; fArgv->SetOwner(); for (int i=1; i(o) = o.Strip(TString::kBoth); fArgv->Add(&o); } } // -------------------------------------------------------------------------- // // Deletes fArgv. // MArgs::~MArgs() { delete fArgv; } // -------------------------------------------------------------------------- // // Print all arguments parsed. // void MArgs::Print(const Option_t *o) const { gLog << all << underline << fName << ":" << endl; fArgv->Print(); } // -------------------------------------------------------------------------- // // Return the Integer corresponding to the command line argument 'name' // eg. executable -argument 5 // GetInt("argument") will return 5 // Int_t MArgs::GetInt(const TString name) const { return atoi(GetString(name)); } // -------------------------------------------------------------------------- // // Return the floating point value corresponding to the command line argument // 'name' // eg. executable -argument 5.7 // GetFloat("argument") will return 5.7 // Double_t MArgs::GetFloat(const TString name) const { return atof(GetString(name)); } // -------------------------------------------------------------------------- // // Return the TString corresponding to the command line argument 'name' // eg. executable -argument=last // GetString("-argument=") will return "last" // TString MArgs::GetString(const TString name) const { TIter Next(fArgv); TString *s = NULL; while ((s=dynamic_cast(Next()))) if (s->BeginsWith(name)) return s->Data()+s->Index(name)+name.Length(); return 0; } // -------------------------------------------------------------------------- // // Return the Integer corresponding to the command line argument 'name' // eg. executable -argument5 // GetIntAndRemove("-argument") will return 5 // and removes the argument from the internal list. // Int_t MArgs::GetIntAndRemove(const TString name) { return atoi(GetStringAndRemove(name)); } // -------------------------------------------------------------------------- // // Return the floating point value corresponding to the command line argument // 'name' // eg. executable -argument5.7 // GetFloatAndRemove("-argument") will return 5.7 // and removes the argument from the internal list. // Double_t MArgs::GetFloatAndRemove(const TString name) { return atof(GetStringAndRemove(name)); } // -------------------------------------------------------------------------- // // Return the TString corresponding to the command line argument 'name' // eg. executable -argument=last // GetStringAndRemove("-argument=") will return "last" // and removes the argument from the internal list. // TString MArgs::GetStringAndRemove(const TString n) { const TString name = n.Strip(TString::kBoth); TIter Next(fArgv); TString *s = NULL; while ((s=dynamic_cast(Next()))) if (s->BeginsWith(name)) { TString str = s->Data()+s->Index(name)+name.Length(); delete fArgv->Remove(dynamic_cast(s)); return str; } return 0; } // -------------------------------------------------------------------------- // // Return the Integer corresponding to the i-th argument. This is ment // for enumerations like // executable 1 7 2 // GetArgumentInt(1) will return 7 // Int_t MArgs::GetArgumentInt(Int_t i) const { return atoi(GetArgumentStr(i)); } // -------------------------------------------------------------------------- // // Return the floating point value corresponding to the i-th argument. // This is ment for enumerations like // executable 1.7 7.5 2.3 // GetArgumentFloat(1) will return 7.5 // Float_t MArgs::GetArgumentFloat(Int_t i) const { return atof(GetArgumentStr(i)); } // -------------------------------------------------------------------------- // // Return the TString corresponding to the i-th argument. // This is ment for enumerations like // executable file1 file2 file3 // GetArgumentStr(1) will return "file2" // Only arguments without a trailing '-' are considered // TString MArgs::GetArgumentStr(Int_t i) const { Int_t num = 0; TIter Next(fArgv); TString *s = NULL; while ((s=dynamic_cast(Next()))) { if (s->BeginsWith("-")) continue; if (i==num++) return *s; } return ""; } // -------------------------------------------------------------------------- // // return the number of arguments without a trainling '-' // Int_t MArgs::GetNumArguments() const { Int_t num = 0; TIter Next(fArgv); TString *s = NULL; while ((s=dynamic_cast(Next()))) if (!s->BeginsWith("-")) num++; return num; } // -------------------------------------------------------------------------- // // Checks whether an argument beginning with 'n' is existing, eg: // executable -value5 // executable -value // HasOption("-value") will return true in both cases // Bool_t MArgs::Has(const TString n) const { const TString name = n.Strip(TString::kBoth); TIter Next(fArgv); TString *s = NULL; while ((s=dynamic_cast(Next()))) if (s->BeginsWith(name)) return kTRUE; return kFALSE; } // -------------------------------------------------------------------------- // // Checks whether an argument beginning with 'n' is exists and a // corresponding option is available, eg. // executable -value5 // HasOption("-value") will return true // but: // executable -value // HasOption("-value") will return false // Bool_t MArgs::HasOption(const TString n) const { const TString name = n.Strip(TString::kBoth); TIter Next(fArgv); TString *s = NULL; while ((s=dynamic_cast(Next()))) if (s->BeginsWith(name) && s->Length()>name.Length()) return kTRUE; return kFALSE; }