source: trunk/MagicSoft/Mars/mbase/MParList.cc@ 1192

Last change on this file since 1192 was 1187, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 18.1 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 12/2000 <mailto:tbretz@uni-sw.gwdg.de>
19!
20! Copyright: MAGIC Software Development, 2000-2001
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26// //
27// MParList //
28// //
29// This class contains a list of different parameter containers. //
30// //
31// A parameter container is an object which is derived from //
32// MParContainer. //
33// //
34// Normally a parameter container is used for data exchange between two //
35// tasks at runtime. //
36// //
37// You can add every parameter container (Named object) to the //
38// instance and access it from somewhere else via its Name. //
39// //
40/////////////////////////////////////////////////////////////////////////////
41#include "MParList.h"
42
43#include <TNamed.h>
44#include <TClass.h>
45#include <TOrdCollection.h>
46
47#include "MLog.h"
48#include "MLogManip.h"
49
50ClassImp(MParList);
51
52// --------------------------------------------------------------------------
53//
54// default constructor
55// creates an empty list
56//
57MParList::MParList(const char *name, const char *title)
58{
59 fName = name ? name : "MParList";
60 fTitle = title ? title : "A list of Parameter Containers";
61
62 //
63 // This sets a flag that the list is the owner, which means
64 // that the destructor of the list deletes all it's objects
65 //
66 fContainer = new TOrdCollection;
67 fAutodelete = new TOrdCollection;
68}
69
70// --------------------------------------------------------------------------
71//
72// Copy constructor. It copies all entries of the parameter list, but it
73// takes care of, that the automatically created entries are only deleted
74// once. (doesn't copy the list which holds the automatically created
75// entries)
76//
77MParList::MParList(MParList &ts)
78{
79 fContainer->AddAll(ts.fContainer);
80}
81
82// --------------------------------------------------------------------------
83//
84// If the 'IsOwner' bit is set (via SetOwner()) all containers are deleted
85// by the destructor
86//
87MParList::~MParList()
88{
89 //
90 // Case:
91 // 1) MParList is owner of the containers:
92 // All container are stored in fContainer, and become deleted by
93 // 'delete fContainer'. Some of these containers, which were
94 // created automatically are stored in fAutodelete, too. To prevent
95 // double deletion this containers are not deleted by the destructor
96 // of fAutodelete.
97 // 2) MParList is not owner of the containers:
98 // The containers which were Added by AddToList are not touched.
99 // Only the containers which were created automatically are also
100 // automatically deleted.
101 //
102 TestBit(kIsOwner) ? fContainer->SetOwner() : fAutodelete->SetOwner();
103
104 delete fContainer;
105 delete fAutodelete;
106}
107
108// --------------------------------------------------------------------------
109//
110// If the 'IsOwner' bit is set (via SetOwner()) all containers are deleted
111// by the destructor
112//
113void MParList::SetOwner(Bool_t enable)
114{
115 enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
116}
117
118// --------------------------------------------------------------------------
119//
120// Set the logging streamer of the parameter list and all contained
121// parameter containers
122//
123void MParList::SetLogStream(MLog *log)
124{
125 fContainer->ForEach(MParContainer, SetLogStream)(log);
126 MParContainer::SetLogStream(log);
127}
128
129// --------------------------------------------------------------------------
130//
131// Add a single container to the list.
132//
133// If 'where' is given, the object will be added after this.
134//
135Bool_t MParList::AddToList(MParContainer *cont, MParContainer *where)
136{
137 //
138 // check if the object (you want to add) exists
139 //
140
141 if (!cont)
142 return kFALSE;
143
144 //
145 // Get Name of new container
146 //
147 const char *name = cont->GetName();
148
149 //
150 // Check if the new container is already existing in the list
151 //
152 const TObject *objn = fContainer->FindObject(name);
153 const TObject *objt = fContainer->FindObject(cont);
154
155 if (objn || objt)
156 {
157 //
158 // If the container is already in the list ignore it.
159 //
160 if (objt || objn==cont)
161 {
162 *fLog << warn << dbginf << "Warning: Container '" << cont->GetName() << ", 0x" << (void*)cont;
163 *fLog << "' already existing in '" << GetName() << "'... ignoring." << endl;
164 return kTRUE;
165 }
166
167 //
168 // Otherwise add it to the list, but print a warning message
169 //
170 *fLog << warn << dbginf << "Warning: Container with the same name '" << cont->GetName();
171 *fLog << "' already existing in '" << GetName() << "'." << endl;
172 *fLog << "You may not be able to get a pointer to container task by name." << endl;
173 }
174
175 //
176 // check if you want to add the new parameter container somewhere
177 // special (in that case you specify "where")
178 //
179 if (where)
180 {
181 if (!fContainer->FindObject(where))
182 {
183 *fLog << dbginf << "Error: Cannot find parameter container after which the new one should be added!" << endl;
184 return kFALSE;
185 }
186 }
187
188 *fLog << inf << "Adding " << name << " to " << GetName() << "... " << flush;
189
190 fContainer->Add(cont);
191 *fLog << "Done." << endl;
192
193 return kTRUE;
194}
195
196// --------------------------------------------------------------------------
197//
198// Add all entries of the TObjArray to the list.
199//
200void MParList::AddToList(TObjArray *list)
201{
202 //
203 // check if the object (you want to add) exists
204 //
205 if (!list)
206 return;
207
208 TObjArrayIter Next(list);
209
210 MParContainer *cont = NULL;
211 while ((cont=(MParContainer*)Next()))
212 AddToList(cont);
213}
214
215// --------------------------------------------------------------------------
216//
217// Find an object in the list.
218// 'name' is the name of the object you are searching for.
219//
220TObject *MParList::FindObject(const char *name) const
221{
222 return fContainer->FindObject(name);
223}
224
225// --------------------------------------------------------------------------
226//
227// check if the object is in the list or not
228//
229TObject *MParList::FindObject(const TObject *obj) const
230{
231 return fContainer->FindObject(obj);
232}
233
234// --------------------------------------------------------------------------
235//
236// Find an object in the list and check for the correct inheritance.
237// 'name' is the name of the object you are searching for.
238//
239TObject *MParList::FindObject(const char *name, const char *classname) const
240{
241 TObject *obj = fContainer->FindObject(name);
242
243 if (!obj)
244 return NULL;
245
246 if (obj->InheritsFrom(classname))
247 return obj;
248
249 *fLog << dbginf << warn << "Found object '" << name << "' doesn't ";
250 *fLog << "inherit from " << "'" << classname << "'" << endl;
251 return NULL;
252}
253
254// --------------------------------------------------------------------------
255//
256// check if the object is in the list or not and check for the correct
257// inheritance
258//
259TObject *MParList::FindObject(const TObject *obj, const char *classname) const
260{
261 TObject *nobj = fContainer->FindObject(obj);
262
263 if (!nobj)
264 return NULL;
265
266 if (nobj->InheritsFrom(classname))
267 return nobj;
268
269 *fLog << dbginf << warn << "Found object '" << nobj->GetName() << "' ";
270 *fLog << "doesn't inherit from " << "'" << classname << "'" << endl;
271 return NULL;
272}
273
274// --------------------------------------------------------------------------
275//
276// returns the ClassName without anything which is behind that last ';' in
277// string.
278//
279TString MParList::GetClassName(const char *classname)
280{
281 TString cname(classname);
282 const char *semicolon = strrchr(cname, ';');
283
284 if (semicolon)
285 cname.Remove(semicolon-cname);
286
287 return cname;
288}
289
290// --------------------------------------------------------------------------
291//
292// returns the ObjectName. It is created from a class and object name.
293// If no object name is given the objectname is the same than the
294// class name. Leading dots are removed from the object name
295//
296TString MParList::GetObjectName(const char *classname, const char *objname)
297{
298 TString cname(classname);
299 const char *semicolon = strrchr(cname, ';');
300
301 TString oname(objname ? objname : classname);
302
303 if (semicolon)
304 {
305 //
306 // Remove leading dots from objectname (eg. "MMcTrig;5.")
307 //
308 Int_t sz = oname.Sizeof()-2;
309
310 while (sz>=0 && oname[sz]=='.')
311 oname.Remove(sz--);
312 }
313 return oname;
314}
315
316// --------------------------------------------------------------------------
317//
318// Find an object in the list.
319// 'name' is the name of the object you are searching for.
320// If the object doesn't exist we try to create one from the
321// dictionary. If this isn't possible NULL is returned.
322//
323// An object which was created automatically is deleted automatically in
324// the destructor of the parameter list, too. This means, that if an
325// object should survive (eg. Histograms) you MUST create it by yourself
326// and add it to the parameter list.
327//
328// By default (you don't specify an object name) the object name is
329// the same as the classname
330//
331// If the classname (default classname) is of the structure
332// "Name;something" - containing a semicolon - evarything which is
333// after the last appearance of a semicolon is stripped to get the
334// Name of the Class. Normally this is used to number your objects.
335// "Name;1", "Name;2", ... If a semicolon is detected leading dots
336// are stripped from the object-name (eg. "name;5.")
337//
338MParContainer *MParList::FindCreateObj(const char *classname, const char *objname)
339{
340 //
341 // If now object name (name of the object to identify it in the
342 // List) is given use it's classname as the objectname
343 //
344
345 //
346 // Check if the classname is a 'numbered' name (like: "MTime;2")
347 // if so strip the number from the classname.
348 //
349 // Becareful: We check for the last occurance of a ';' only and we
350 // also don't check if a number follows or something else.
351 //
352 // Rem: I use a TString to make the code more readyble and to get
353 // the new object deleted automatically
354 //
355 TString cname = GetClassName(classname);
356 TString oname = GetObjectName(classname, objname);
357
358 //
359 // Try to find a object with this object name which is already
360 // in the List. If we can find one we are done.
361 //
362 MParContainer *pcont = (MParContainer*)FindObject(oname);
363
364 if (pcont)
365 {
366 if (pcont->InheritsFrom(cname))
367 return pcont;
368
369 *fLog << err << "Warning: Object '" << oname << "' found in list doesn't inherit from " << cname << "." << endl;
370 return NULL;
371 }
372
373 //
374 // if object is not existing in the list try to create one
375 //
376 *fLog << inf << "Object '" << oname << "' [" << cname << "] not yet in " << GetName() << "... creating." << endl;
377
378 //
379 // try to get class from root environment
380 //
381 TClass *cls = gROOT->GetClass(cname);
382
383 if (!cls)
384 {
385 //
386 // if class is not existing in the root environment
387 //
388 *fLog << err << dbginf << "Class '" << cname << "' not existing in dictionary." << endl;
389 return NULL;
390 }
391
392 //
393 // create the parameter container of the the given class type
394 //
395 pcont = (MParContainer*)cls->New();
396
397 //
398 // Set the name of the container
399 //
400 pcont->SetName(oname);
401
402 //
403 // Now add the object to the parameter list
404 //
405 AddToList(pcont);
406
407 //
408 // The object was automatically created. This makes sure, that such an
409 // object is deleted together with the list
410 //
411 fAutodelete->Add(pcont);
412
413 //
414 // Find an object in the list.
415 // 'name' is the name of the object you are searching for.
416 //
417 return pcont;
418}
419
420// --------------------------------------------------------------------------
421//
422// print some information about the current status of MParList
423//
424void MParList::Print(Option_t *t) const
425{
426 *fLog << all << GetDescriptor() << endl;
427 *fLog << setfill('-') << setw(strlen(GetDescriptor())+2) << "" << endl;
428 MParContainer *obj = NULL;
429 TIter Next(fContainer);
430 while ((obj=(MParContainer*)Next()))
431 *fLog << " " << obj->GetDescriptor() << endl;
432 *fLog << endl;
433}
434
435// --------------------------------------------------------------------------
436//
437// Sets the flags off all containers in the list (and the list
438// itself) to unchanged
439//
440void MParList::SetReadyToSave(Bool_t flag)
441{
442 fContainer->ForEach(MParContainer, SetReadyToSave)(flag);
443 MParContainer::SetReadyToSave(flag);
444}
445
446// --------------------------------------------------------------------------
447//
448// Reset all containers in the list
449//
450void MParList::Reset()
451{
452 fContainer->ForEach(MParContainer, Reset)();
453}
454
455// --------------------------------------------------------------------------
456//
457// This finds numbered objects. The objects are returned in a copy of a
458// TObjArray.
459//
460// If from only is given (or to=0) object are assumed numbered
461// from 1 to from.
462//
463TObjArray MParList::FindObjectList(const char *name, UInt_t first, const UInt_t last) const
464{
465 TObjArray list;
466
467 if (first>0 && last<first)
468 {
469 *fLog << err << dbginf << "Cannot create entries backwards (last<first)...skipped." << endl;
470 return list;
471 }
472
473 const UInt_t len = strlen(name);
474
475 char *auxname = new char[len+7];
476 strcpy(auxname, name);
477
478 if (first==0 && last!=0)
479 first = 1;
480
481 //
482 // If only 'from' is specified the number of entries are ment
483 //
484 for (UInt_t i=first; i<=last; i++)
485 {
486 if (first!=0 || last!=0)
487 sprintf(auxname+len, ";%d", i);
488
489 TObject *obj = FindObject(auxname);
490 if (!obj)
491 continue;
492
493 list.AddLast(obj);
494 }
495 delete auxname;
496
497 return list;
498}
499
500// --------------------------------------------------------------------------
501//
502// This finds numbered objects. The objects are returned in a copy of a
503// TObjArray. If one of the objects doesn't exist it is created from the
504// meaning of cname and oname (s. FindCreateObj)
505//
506// If from only is given (or to=0) object are assumed numbered
507// from 1 to from.
508//
509TObjArray MParList::FindCreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname)
510{
511 TObjArray list;
512
513 if (first>0 && last<first)
514 {
515 *fLog << err << dbginf << "Cannot create entries backwards (last<first)...skipped." << endl;
516 return list;
517 }
518
519 const UInt_t len = strlen(cname);
520
521 char *auxname = new char[len+7];
522 strcpy(auxname, cname);
523
524 //
525 // If only 'from' is specified the number of entries are ment
526 //
527 if (first==0 && last!=0)
528 first = 1;
529
530 for (UInt_t i=first; i<=last; i++)
531 {
532 if (first!=0 || last!=0)
533 sprintf(auxname+len, ";%d", i);
534
535 TObject *obj = FindCreateObj(auxname, oname);
536 if (!obj)
537 break;
538
539 list.AddLast(obj);
540 }
541 delete auxname;
542
543 return list;
544}
545
546// --------------------------------------------------------------------------
547//
548// This finds numbered objects. The objects are returned in a copy of a
549// TObjArray. If one of the objects doesn't exist it is created from the
550// meaning of cname and oname (s. FindCreateObj)
551//
552// If from only is given (or to=0) object are assumed numbered
553// from 1 to from.
554//
555// Remark: Because it is static the object are only created and not added to
556// the parameter list. You must also take care of deleting these objects!
557// This function is mainly made for use in root macros. Don't use it in
558// compiled programs if you are not 100% sure what you are doing.
559//
560TObjArray MParList::CreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname)
561{
562 TObjArray list;
563
564 if (first>0 && last<first)
565 {
566 gLog << err << dbginf << "Cannot create entries backwards (last<first)...skipped." << endl;
567 return list;
568 }
569
570 //
571 // try to get class from root environment
572 //
573 TClass *cls = gROOT->GetClass(cname);
574
575 if (!cls)
576 {
577 //
578 // if class is not existing in the root environment
579 //
580 gLog << dbginf << "Class '" << cname << "' not existing in dictionary." << endl;
581 return list;
582 }
583
584 const UInt_t len = strlen(cname);
585
586 char *auxname = new char[len+7];
587 strcpy(auxname, cname);
588
589 //
590 // If only 'from' is specified the number of entries are ment
591 //
592 if (first==0 && last!=0)
593 first = 1;
594
595 for (UInt_t i=first; i<=last; i++)
596 {
597 if (first!=0 || last!=0)
598 sprintf(auxname+len, ";%d", i);
599
600 //
601 // create the parameter container of the the given class type
602 //
603 MParContainer *pcont = (MParContainer*)cls->New();
604
605 //
606 // Set the name of the container
607 //
608 pcont->SetName(auxname);
609
610 //
611 // Add new object to the return list
612 //
613 list.AddLast(pcont);
614 }
615 delete auxname;
616
617 return list;
618}
Note: See TracBrowser for help on using the repository browser.