10 #include "KVBatchSystem.h"
13 #include "TPluginManager.h"
15 #include "KVDataAnalyser.h"
16 #include "KVDataAnalysisTask.h"
37 :
KVBase(name), fAnalyser(nullptr)
49 SetTitle(gEnv->GetValue(Form(
"%s.BatchSystem.Title", name),
""));
51 fJobSubCmd = gEnv->GetValue(Form(
"%s.BatchSystem.JobSubCmd", name),
"");
54 Warning(
"KVBatchSystem",
"Batch system %s has unknown job submission command: %s",
58 SetJobScript(gEnv->GetValue(Form(
"%s.BatchSystem.JobScript", name),
""));
68 KVBatchSystem::~KVBatchSystem()
71 if (gBatchSystem ==
this)
136 static TString command_line;
141 command_line += par->GetName();
150 command_line.ReplaceAll(
"#JobName#",
GetJobName());
152 command_line.ReplaceAll(
"#tmpDIR#", gSystem->TempDirectory());
154 command_line.ReplaceAll(
"#launchDIR#", gSystem->WorkingDirectory());
155 return command_line.Data();
206 gSystem->Setenv(
"KVLAUNCHDIR", gSystem->WorkingDirectory());
210 gSystem->Setenv(
"KVANALYSER",
fAnalyser->ClassName());
274 Info(
"SubmitTask",
"Task submission for analyser class : %s", da->ClassName());
311 TString tmp = gEnv->GetValue(Form(
"%s.BatchSystem.DefaultJobOptions.%s",
314 Info(
"ChangeDefJobOpt",
"Changing default batch options for task %s.", da->
GetAnalysisTask()->GetName());
315 Info(
"ChangeDefJobOpt",
"Batch job options for this job are : %s", tmp.Data());
319 tmp = gEnv->GetValue(Form(
"%s.BatchSystem.DefaultJobOptions", GetName()),
"");
382 while (!jobName.Length()) {
383 cout <<
"Please enter the job name : ";
385 jobName.ReadToDelim(cin);
386 if (jobName.Length()) {
404 env->SetValue(
"BatchSystem.JobName",
GetJobName());
418 fJobName = env->GetValue(
"BatchSystem.JobName",
"");
432 if (!strcmp(option,
"log")) {
434 <<
" executed by batch system " << GetName() << endl;
436 else if (!strcmp(option,
"all")) {
437 cout << ClassName() <<
" : Name = " << GetName() << endl <<
" Title = " << GetTitle() << endl;
438 cout <<
" fJobSubCmd = " <<
fJobSubCmd.Data() << endl;
439 cout <<
" fJobScript = " <<
fJobScript.Data() << endl;
440 cout <<
" fDefOpt = " <<
fDefOpt.Data() << endl;
488 nl.SetTitle(GetTitle());
491 nl.
SetValue(
"AutoJobNameFormat",
"$UserClass");
507 Info(
"SetBatchSystemParameters",
"JobName = %s",
GetJobName());
Base class for KaliVeda framework.
static Bool_t FindExecutable(TString &exec, const Char_t *path="$(PATH)")
virtual void Print(Option_t *option="") const
static TPluginHandler * LoadPlugin(const Char_t *base, const Char_t *uri="0")
Base class for interface to a batch job management system.
virtual void SubmitTask(KVDataAnalyser *da)
KVString fJobSubCmd
shell command for submitting job
virtual void WriteBatchEnvFile(TEnv *)
KVString fJobName
base job name
virtual const Char_t * GetJobSubCmdLine()
virtual void SetJobName(const Char_t *name)
virtual void SetDefaultJobOptions(const Char_t *opt)
virtual Bool_t MultiJobsMode() const
void cd()
Make this the default batch system.
KVString fJobScript
full path of shell script to be executed by batch system
KVBatchSystem(const Char_t *name)
virtual const Char_t * GetJobName() const
virtual void SanitizeJobName() const
KVNameValueList fParList
list of parameters/switches to be passed on job submission command line
virtual KVList * GetListOfJobs()
virtual void Print(Option_t *="") const
virtual void ChangeDefJobOpt(KVDataAnalyser *da)
virtual void SetAnalyser(KVDataAnalyser *da)
static KVBatchSystem * GetBatchSystem(const Char_t *plugin)
virtual void ReadBatchEnvFile(TEnv *)
KVString fDefOpt
default options for job submission command
virtual void SetBatchSystemParameters(const KVNameValueList &)
Use the parameters in the list to set all relevant parameters for batch system.
KVDataAnalyser * fAnalyser
the analyser object which requests job submission, it has all details on the job
virtual void SetJobScript(const Char_t *path)
KVString fCurrJobName
name of current job being submitted
virtual void GetBatchSystemParameterList(KVNameValueList &)
virtual void Clear(Option_t *opt="")
KVNumberList fCurrJobRunList
runlist for (multi job mode) job being submitted
virtual Bool_t CheckJobParameters()
Checks the job and ask for the job name if needed.
Manager class which sets up and runs data analysis tasks.
virtual TString ExpandAutoBatchName(const Char_t *format) const
virtual void WriteBatchEnvFile(const TString &, Bool_t sav=kTRUE)
KVDataAnalysisTask * GetAnalysisTask() const
Extended TList class which owns its objects by default.
Handles lists of named parameters with different types, a list of KVNamedParameter objects.
virtual void Print(Option_t *opt="") const
KVNamedParameter * GetParameter(Int_t idx) const
return the parameter object with index idx
void SetValue(const Char_t *name, value_type value)
virtual void Clear(Option_t *opt="")
Int_t GetNpar() const
return the number of stored parameters
Bool_t GetBoolValue(const Char_t *name) const
const Char_t * GetStringValue(const Char_t *name) const
A generic named parameter storing values of different types.
const Char_t * GetString() const
TString GetTString() const
Int_t First() const
Returns smallest number included in list.
Int_t Last() const
Returns largest number included in list.
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....