source: trunk/MagicSoft/Mars/mjobs/MJob.cc@ 9473

Last change on this file since 9473 was 9471, checked in by tbretz, 15 years ago
*** empty log message ***
File size: 16.5 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Thomas Bretz, 8/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2007
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// MJob
28//
29// A base class for jobs
30//
31// SetDebugEnv(0) // switch off debugging
32// SetDebugEnv(1) // reserved
33// SetDebugEnv(2) // print untouched resources after evtloop resources setup
34// SetDebugEnv(3) // do 2) and debug setting env completely
35//
36// To allow overwriting the output files call SetOverwrite()
37//
38/////////////////////////////////////////////////////////////////////////////
39#include "MJob.h"
40
41#include "MEnv.h"
42
43#include <TFile.h>
44#include <TClass.h>
45#include <TSystem.h>
46#include <TRandom.h>
47#include <TObjArray.h>
48
49#include "MIter.h"
50
51#include "MLog.h"
52#include "MLogManip.h"
53
54#include "MParList.h"
55#include "MEvtLoop.h"
56
57ClassImp(MJob);
58
59using namespace std;
60
61// --------------------------------------------------------------------------
62//
63// Default constructor.
64//
65// Sets fDataFlag to 0
66//
67MJob::MJob(const char *name, const char *title) : fEnv(0), fEnvDebug(0), fOverwrite(kFALSE), fMaxEvents(0)
68{
69 fName = name ? name : "MJob";
70 fTitle = title ? title : "Base class for jobs";
71}
72
73//------------------------------------------------------------------------
74//
75// If MJob is the owner of fEnv delete fEnv.
76//
77// Reset the owenership bit.
78//
79// Set fEnv to NULL.
80//
81void MJob::ClearEnv()
82{
83 if (fEnv && TestBit(kIsOwner))
84 delete fEnv;
85 ResetBit(kIsOwner);
86 fEnv=0;
87}
88
89//------------------------------------------------------------------------
90//
91// ClearEnv()
92//
93MJob::~MJob()
94{
95 ClearEnv();
96}
97
98//------------------------------------------------------------------------
99//
100// If prefix==0 the prefix is taken from fName up to the first
101// whitespace.
102//
103// A trailing dot is removed.void MJob::SetPrefix(const char *prefix)
104void MJob::SetPrefix(const char *prefix)
105{
106 fEnvPrefix = prefix;
107
108 if (!prefix)
109 fEnvPrefix = fName.First(' ')>0 ? fName(0, fName.First(' ')) : fName;
110
111 if (fEnvPrefix.EndsWith("."))
112 fEnvPrefix.Remove(fEnvPrefix.Length()-1);
113}
114
115//------------------------------------------------------------------------
116//
117// Create a new MEnv from the file env. MJob takes of course the
118// ownership of the newly created MEnv.
119//
120// SetPrefix(prefix)
121//
122// return kFALSE if MEnv is invalid
123//
124Bool_t MJob::SetEnv(const char *env, const char *prefix)
125{
126 SetEnv(new MEnv(env), prefix);
127
128 // Take the owenership of the MEnv instance
129 SetBit(kIsOwner);
130
131 return fEnv->IsValid();
132}
133
134//------------------------------------------------------------------------
135//
136// Set a new fEnv and a new general prefix.
137//
138// Calls SetPrefix(prefix)
139//
140// MJob does not take the owenership of the MEnv instance.
141//
142void MJob::SetEnv(MEnv *env, const char *prefix)
143{
144 ClearEnv();
145
146 fEnv = env;
147
148 SetPrefix(prefix);
149}
150
151//------------------------------------------------------------------------
152//
153// Removes LF's from the path (necessary if the resource file was written
154// with a different operating system than Linux.
155//
156// Removes a trailing slash if the path is not the root-path.
157//
158// Adds fname to the path if given.
159//
160void MJob::FixPath(TString &path)
161{
162 path.ReplaceAll("\015", "");
163
164 if (path==(TString)"/")
165 return;
166
167 if (path.EndsWith("/"))
168 path.Remove(path.Length()-1);
169}
170
171//------------------------------------------------------------------------
172//
173// Calls FixPath
174//
175// Adds fname to the path if given.
176//
177TString MJob::CombinePath(TString path, TString fname)
178{
179 FixPath(path);
180
181 if (fname.IsNull())
182 return path;
183
184 if (path!=(TString)"/")
185 path += "/";
186
187 path += fname;
188
189 return path;
190}
191
192//------------------------------------------------------------------------
193//
194// Sets the output path. The exact meaning (could also be a file) is
195// deined by the derived class.
196//
197void MJob::SetPathOut(const char *path)
198{
199 fPathOut = path;
200 FixPath(fPathOut);
201}
202
203//------------------------------------------------------------------------
204//
205// Sets the input path. The exact meaning (could also be a file) is
206// deined by the derived class.
207//
208void MJob::SetPathIn(const char *path)
209{
210 fPathIn = path;
211 FixPath(fPathIn);
212}
213
214//------------------------------------------------------------------------
215//
216// Returns the TEnv
217//
218const TEnv *MJob::GetEnv() const
219{
220 return static_cast<const TEnv *const>(fEnv);
221}
222
223//------------------------------------------------------------------------
224//
225// Checks GetEnvValue(*fEnv, fEnvPrefix, name, dftl)
226// For details see MParContainer
227//
228Int_t MJob::GetEnv(const char *name, Int_t dflt) const
229{
230 return GetEnvValue2(*fEnv, fEnvPrefix, name, dflt); // return fEnv->GetValue(Form("%s%s", fEnvPrefix.Data(), name), dflt);
231}
232
233//------------------------------------------------------------------------
234//
235// Checks GetEnvValue(*fEnv, fEnvPrefix, name, dftl)
236// For details see MParContainer
237//
238Double_t MJob::GetEnv(const char *name, Double_t dflt) const
239{
240 return GetEnvValue2(*fEnv, fEnvPrefix, name, dflt); // return fEnv->GetValue(Form("%s%s", fEnvPrefix.Data(), name), dflt);
241}
242
243//------------------------------------------------------------------------
244//
245// Checks GetEnvValue(*fEnv, fEnvPrefix, name, dftl)
246// For details see MParContainer
247//
248const char *MJob::GetEnv(const char *name, const char *dflt) const
249{
250 return GetEnvValue2(*fEnv, fEnvPrefix, name, dflt); //fEnv->GetValue(Form("%s%s", fEnvPrefix.Data(), name), dflt);
251}
252
253//------------------------------------------------------------------------
254//
255// Checks IsEnvDefined(*fEnv, fEnvPrefix, name, fEnvDebug>2)
256// For details see MParContainer
257//
258Bool_t MJob::HasEnv(const char *name) const
259{
260 return IsEnvDefined(*fEnv, fEnvPrefix, name, fEnvDebug>2);//fEnv->Lookup(Form("%s%s", fEnvPrefix.Data(), name));
261}
262
263//------------------------------------------------------------------------
264//
265// Check fEnv for RadnomNumberGenerator. If it is empty or the
266// corresponding class does either not exist or not inherit from TRandom,
267// gRandom remains unchanged. Otherwise gRandom is set to a newly created
268// instance of this class.
269//
270// The second resource which is checked is RandomNumberSeedValue. If it
271// is empty (not given) the seed keeps unchanged. If a number is given
272// the seed value of gRandom is set accordingly. (0 means that
273// the seed value is set accoring to the time, see TRandom::SetSeed())
274//
275// If an error occured kFALSE is returned, kTRUE otherwise.
276//
277// For exmaple:
278// RandomNumberGenerator: TRandom3
279// RandomNumberSeedValue: 0
280//
281Bool_t MJob::InitRandomNumberGenerator() const
282{
283 const TString rng = GetEnv("RandomNumberGenerator", "");
284 if (!rng.IsNull())
285 {
286 TClass *cls = MParContainer::GetClass(rng, &gLog);
287 if (!cls)
288 return kFALSE;
289
290 if (!cls->InheritsFrom(TRandom::Class()))
291 {
292 *fLog << err << "ERROR - RandomNumberGenerator " << rng << " doesn't inherit from TRandom." << endl;
293 return kFALSE;
294 }
295
296 delete gRandom;
297 gRandom = static_cast<TRandom*>(cls->New());
298
299 *fLog << inf << "Random number generator " << rng << " initialized." << endl;
300 }
301
302 // Nothing: Keep seed value, 0 set time as seed value, val set seed
303 const TString seed = GetEnv("RandomNumberSeedValue", "");
304 if (!seed.IsNull())
305 {
306 if (!seed.IsAlnum())
307 {
308 *fLog << err << "ERROR - RandomNumberSeedValue not an integer: " << seed << endl;
309 return kFALSE;
310 }
311
312 gRandom->SetSeed(seed.Atoi());
313 *fLog << inf << "Random number seed value set to " << seed.Atoi() << endl;
314 }
315
316 return kTRUE;
317}
318
319//------------------------------------------------------------------------
320//
321// Check the resource file for
322// PathOut
323// PathIn
324// MaxEvents
325// Overwrite
326// EnvDebug
327// RandomNumberGenerator
328// RandomNumberSeedValue
329//
330// and call the virtual function CheckEnvLocal
331//
332Bool_t MJob::CheckEnv()
333{
334 if (!fEnv)
335 return kTRUE;
336
337 if (!InitRandomNumberGenerator())
338 return kFALSE;
339
340 TString p;
341 p = GetEnv("PathOut", "");
342 if (!p.IsNull())
343 SetPathOut(p);
344
345 p = GetEnv("PathIn", "");
346 if (!p.IsNull())
347 SetPathIn(p);
348
349 SetMaxEvents(GetEnv("MaxEvents", fMaxEvents));
350 SetOverwrite(GetEnv("Overwrite", fOverwrite));
351 SetEnvDebug( GetEnv("EnvDebug", fEnvDebug));
352
353 return CheckEnvLocal();
354}
355
356//------------------------------------------------------------------------
357//
358// Returns the result of c.ReadEnv(*fEnv, fEnvPrefix, fEnvDebug>2)
359// By adding the container first to a MParList it is ensured that
360// all levels are checked.
361//
362Bool_t MJob::CheckEnv(MParContainer &c) const
363{
364 if (!fEnv)
365 return kTRUE;
366
367 // Make sure that all levels are checked
368 MParList l;
369 l.AddToList(&c);
370 return l.ReadEnv(*fEnv, fEnvPrefix+".", fEnvDebug>2);
371}
372
373//------------------------------------------------------------------------
374//
375// Call the eventsloops ReadEnv and print untouched resources afterwards
376// if fEnvDebug>1
377//
378Bool_t MJob::SetupEnv(MEvtLoop &loop) const
379{
380 if (!fEnv)
381 return kTRUE;
382
383 if (!loop.ReadEnv(*fEnv, fEnvPrefix, fEnvDebug>2))
384 return kFALSE;
385
386 if (fEnvDebug>1)
387 fEnv->PrintUntouched();
388
389 return kTRUE;
390}
391
392//------------------------------------------------------------------------
393//
394// Checks whether write permissions to fname exists including
395// the fOverwrite data member. Empty file names return kTRUE
396//
397Bool_t MJob::HasWritePermission(TString fname) const
398{
399 gSystem->ExpandPathName(fname);
400
401 const Bool_t exists = !gSystem->AccessPathName(fname, kFileExists);
402 if (!exists)
403 {
404 const TString dirname = gSystem->DirName(fname);
405
406 Long_t flags;
407 const Bool_t exists2 = !gSystem->GetPathInfo(dirname, 0, (Long_t*)0, &flags, 0);
408 if (!exists2)
409 {
410 *fLog << err << "ERROR - Directory " << dirname << " doesn't exist." << endl;
411 return kFALSE;
412 }
413
414 if (flags&2==0)
415 {
416 *fLog << err << "ERROR - " << dirname << " is not a directory." << endl;
417 return kFALSE;
418 }
419
420 const Bool_t write = !gSystem->AccessPathName(dirname, kWritePermission);
421 if (!write)
422 {
423 *fLog << err << "ERROR - No permission to write to directory " << dirname << endl;
424 return kFALSE;
425 }
426
427 return kTRUE;
428 }
429
430 Long_t flags;
431 gSystem->GetPathInfo(fname, 0, (Long_t*)0, &flags, 0);
432 if (flags&4)
433 {
434 *fLog << err << "ERROR - " << fname << " is not a regular file." << endl;
435 return kFALSE;
436 }
437
438 const Bool_t write = !gSystem->AccessPathName(fname, kWritePermission);
439 if (!write)
440 {
441 *fLog << err << "ERROR - No permission to write to " << fname << endl;
442 return kFALSE;
443 }
444
445 if (fOverwrite)
446 return kTRUE;
447
448 *fLog << err;
449 *fLog << "ERROR - File " << fname << " already exists and overwrite not allowed." << endl;
450
451 return kFALSE;
452}
453
454//------------------------------------------------------------------------
455//
456// Write containers in list to gFile. Returns kFALSE if no gFile or any
457// container couldn't be written. kTRUE otherwise.
458//
459Bool_t MJob::WriteContainer(TCollection &list) const
460{
461 if (!gFile)
462 {
463 *fLog << err << dbginf << "ERROR - No file open (gFile==0)" << endl;
464 return kFALSE;
465 }
466
467 TIter Next(&list);
468 TObject *o=0;
469 while ((o=Next()))
470 {
471 *fLog << inf << " - Writing " << MParContainer::GetDescriptor(*o) << "..." << flush;
472 if (o->Write(o->GetName())<=0)
473 {
474 *fLog << err << dbginf << "ERROR - Writing " << MParContainer::GetDescriptor(*o) << " to file " << gFile->GetName() << endl;
475 return kFALSE;
476 }
477 *fLog << "ok." << endl;
478 }
479 return kTRUE;
480}
481
482//------------------------------------------------------------------------
483//
484// Read containers in list into list from gFile
485// Returns kFALSE if no gFile or any container couldn't be read.
486//
487Bool_t MJob::ReadContainer(TCollection &list) const
488{
489 if (!gFile)
490 {
491 *fLog << err << dbginf << "ERROR - No file open (gFile==0)" << endl;
492 return kFALSE;
493 }
494
495 TIter Next(&list);
496 TObject *o=0;
497 while ((o=Next()))
498 {
499 *fLog << inf << " - Reading " << MParContainer::GetDescriptor(*o) << "..." << flush;
500 if (o->Read(o->GetName())<=0)
501 {
502 *fLog << err << dbginf << "ERROR - Reading " << MParContainer::GetDescriptor(*o) << " from file " << gFile->GetName() << endl;
503 return kFALSE;
504 }
505 *fLog << "ok." << endl;
506 }
507 return kTRUE;
508}
509
510//------------------------------------------------------------------------
511//
512// Write containers in cont to fPathOut+"/"+name, or fPathOut only
513// if name is empty.
514//
515Bool_t MJob::WriteContainer(TCollection &cont, const char *name, const char *option, const int compr) const
516{
517 if (fPathOut.IsNull())
518 {
519 *fLog << inf << "No output path specified via SetPathOut - no output written." << endl;
520 return kTRUE;
521 }
522
523 const TString oname = CombinePath(fPathOut, name);
524
525 *fLog << inf << "Writing to file: " << oname << endl;
526
527 TString title("File written by ");
528 title += fName;
529
530 // In case the update-option is selected check whether
531 // the file is already open
532 if (TString(option).Contains("update", TString::kIgnoreCase))
533 {
534 TFile *file = dynamic_cast<TFile*>(gROOT->GetListOfFiles()->FindObject(oname));
535 if (file && file->IsOpen() && !file->IsZombie())
536 {
537 *fLog << inf << "Open file found." << endl;
538 file->cd();
539 return WriteContainer(cont);
540 }
541 }
542
543 // Open a new file with the defined option for writing
544 TFile file(oname, option, title, compr);
545 if (!file.IsOpen() || file.IsZombie())
546 {
547 *fLog << err << "ERROR - Couldn't open file " << oname << " for writing..." << endl;
548 return kFALSE;
549 }
550
551 return WriteContainer(cont);
552}
553
554//------------------------------------------------------------------------
555//
556// return kTRUE if no display is set.
557//
558// Write the display to the TFile with name name, options option and
559// compression level comp.
560//
561// If name IsNull fPathOut is assumed to contain the name, otherwise
562// name is appended to fPathOut. fPathOut might be null.
563//
564Bool_t MJob::WriteDisplay(const char *name, const char *option, const int compr) const
565{
566 if (!fDisplay)
567 return kTRUE;
568
569 TObjArray arr;
570 arr.Add((TObject*)(fDisplay));
571 return WriteContainer(arr, name, option, compr);
572}
573
574TString MJob::ExpandPath(TString fname)
575{
576 // empty
577 if (fname.IsNull())
578 return "";
579
580 // Expand path using environment
581 gSystem->ExpandPathName(fname);
582
583 // Absolute path
584 if (fname[0]=='/')
585 {
586 gLog << dbg << "MJob::ExpandPath - Path " << fname << " is absolute." << endl;
587 return fname;
588 }
589
590 // relative path to file and file could be found
591 if (!gSystem->AccessPathName(fname, kFileExists))
592 {
593 gLog << dbg << "MJob::ExpandPath - Relative path " << fname << " found..." << endl;
594 return fname;
595 }
596
597 // Now check gEnv and MARSSYS. gEnv can overwrite MARSSYS
598 TString path(gEnv ? gEnv->GetValue("Mars.Path", "$MARSSYS") : "$MARSSYS");
599
600 // Expand path using environment
601 gSystem->ExpandPathName(path);
602
603 // check if path ends with a slash
604 path = CombinePath(path, fname);
605
606 gLog << dbg << "MJob::ExpandPath - Filename expanded to " << path << endl;
607
608 // return new path
609 return path;
610}
611
612//------------------------------------------------------------------------
613//
614// Sorts the array.
615//
616void MJob::SortArray(TArrayI &arr)
617{
618 TArrayI idx(arr.GetSize());
619 TArrayI srt(arr);
620
621 TMath::Sort(arr.GetSize(), srt.GetArray(), idx.GetArray(), kFALSE);
622
623 for (int i=0; i<arr.GetSize(); i++)
624 arr[i] = srt[idx[i]];
625}
Note: See TracBrowser for help on using the repository browser.