]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/CDB/AliCDBStorage.cxx
Correction in protection of Y()
[u/mrichter/AliRoot.git] / STEER / CDB / AliCDBStorage.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 #include <TKey.h>
17 #include <TH1.h>
18 #include <TTree.h>
19 #include <TNtuple.h>
20 #include <TFile.h>
21 #include "AliCDBStorage.h"
22 #include "AliCDBGrid.h"
23
24 #include "AliCDBEntry.h"
25 #include "AliLog.h"
26
27 ClassImp(AliCDBStorage)
28
29 //_____________________________________________________________________________
30 AliCDBStorage::AliCDBStorage():
31 fValidFileIds(),
32 fRun(-1),
33 fPathFilter(),
34 fVersion(-1),
35 fMetaDataFilter(0),
36 fSelections(),
37 fURI(),
38 fType(),
39 fBaseFolder(),
40 fNretry(0),
41 fInitRetrySeconds(0)
42 {
43 // constructor
44
45         fValidFileIds.SetOwner(1);
46         fSelections.SetOwner(1);
47 }
48
49 //_____________________________________________________________________________
50 AliCDBStorage::~AliCDBStorage() {
51 // destructor
52
53         RemoveAllSelections();
54         fValidFileIds.Clear();
55         delete fMetaDataFilter;
56
57 }
58
59 //_____________________________________________________________________________
60 void AliCDBStorage::GetSelection(/*const*/ AliCDBId* id) {
61 // return required version and subversion from the list of selection criteria
62         
63         TIter iter(&fSelections);
64         AliCDBId* aSelection;
65         
66         // loop on the list of selection criteria
67         while ((aSelection = (AliCDBId*) iter.Next())) {
68                 // check if selection element contains id's path and run (range) 
69                 if (aSelection->Comprises(*id)) {
70                         AliDebug(2,Form("Using selection criterion: %s ", aSelection->ToString().Data()));
71                         // return required version and subversion
72                         
73                         id->SetVersion(aSelection->GetVersion());
74                         id->SetSubVersion(aSelection->GetSubVersion());
75                         return;  
76                 }
77         }
78         
79         // no valid element is found in the list of selection criteria -> return
80         AliDebug(2,"Looking for objects with most recent version");
81         return;
82 }
83
84 //_____________________________________________________________________________
85 void AliCDBStorage::ReadSelectionFromFile(const char *fileName){
86 // read selection criteria list from file
87         
88         RemoveAllSelections();
89         
90         TList *list = GetIdListFromFile(fileName);
91         if(!list) return;
92         
93         list->SetOwner();       
94         Int_t nId = list->GetEntries();
95         AliCDBId *id;
96         TKey *key;
97         
98         for(int i=nId-1;i>=0;i--){
99                 key = (TKey*) list->At(i);
100                 id = (AliCDBId*) key->ReadObj();
101                 if(id) AddSelection(*id);
102         }
103         delete list;
104         AliInfo(Form("Selection criteria list filled with %d entries",fSelections.GetEntries()));
105         PrintSelectionList();
106         
107 }
108
109 //_____________________________________________________________________________
110 void AliCDBStorage::AddSelection(const AliCDBId& selection) {
111 // add a selection criterion
112
113         AliCDBPath path = selection.GetPath();
114         if(!path.IsValid()) return;
115         
116         TIter iter(&fSelections);
117         const AliCDBId *anId;
118         while((anId = (AliCDBId*) iter.Next())){
119                 if(selection.Comprises(*anId)){
120                         AliWarning("This selection is more general than a previous one and will hide it!");
121                         AliWarning(Form("%s", (anId->ToString()).Data()));
122                         fSelections.AddBefore(anId, new AliCDBId(selection));
123                         return;
124                 }
125         
126         }
127         fSelections.AddFirst(new AliCDBId(selection));
128 }
129
130 //_____________________________________________________________________________
131 void AliCDBStorage::AddSelection(const AliCDBPath& path,
132         const AliCDBRunRange& runRange, Int_t version, Int_t subVersion){
133 // add a selection criterion
134
135         AddSelection(AliCDBId(path, runRange, version, subVersion));
136 }
137
138 //_____________________________________________________________________________
139 void AliCDBStorage::AddSelection(const AliCDBPath& path,
140         Int_t firstRun, Int_t lastRun, Int_t version, Int_t subVersion){
141 // add a selection criterion
142         
143         AddSelection(AliCDBId(path, firstRun, lastRun, version, subVersion));
144 }
145
146 //_____________________________________________________________________________
147 void AliCDBStorage::RemoveSelection(const AliCDBId& selection) {
148 // remove a selection criterion
149
150         TIter iter(&fSelections);
151         AliCDBId* aSelection;
152
153         while ((aSelection = (AliCDBId*) iter.Next())) {
154                 if (selection.Comprises(*aSelection)) {
155                         fSelections.Remove(aSelection);
156                 }
157         }
158 }
159
160 //_____________________________________________________________________________
161 void AliCDBStorage::RemoveSelection(const AliCDBPath& path, 
162         const AliCDBRunRange& runRange){
163 // remove a selection criterion
164
165         RemoveSelection(AliCDBId(path, runRange, -1, -1));
166 }
167
168 //_____________________________________________________________________________
169 void AliCDBStorage::RemoveSelection(const AliCDBPath& path,
170         Int_t firstRun, Int_t lastRun){
171 // remove a selection criterion
172
173         RemoveSelection(AliCDBId(path, firstRun, lastRun, -1, -1));
174 }
175
176 //_____________________________________________________________________________
177 void AliCDBStorage::RemoveSelection(int position){
178 // remove a selection criterion from its position in the list
179
180         delete fSelections.RemoveAt(position);
181 }
182
183 //_____________________________________________________________________________
184 void AliCDBStorage::RemoveAllSelections(){
185 // remove all selection criteria
186
187         fSelections.Clear();
188 }
189
190 //_____________________________________________________________________________
191 void AliCDBStorage::PrintSelectionList(){
192 // prints the list of selection criteria
193
194         TIter iter(&fSelections);
195         AliCDBId* aSelection;
196
197         // loop on the list of selection criteria
198         int index=0;
199         while ((aSelection = (AliCDBId*) iter.Next())) {
200                 AliInfo(Form("index %d -> selection: %s",index++, aSelection->ToString().Data()));
201         }
202
203 }
204
205 //_____________________________________________________________________________
206 AliCDBEntry* AliCDBStorage::Get(const AliCDBId& query) {
207 // get an AliCDBEntry object from the database
208
209         // check if query's path and runRange are valid
210         // query is invalid also if version is not specified and subversion is!
211         if (!query.IsValid()) {
212                 AliError(Form("Invalid query: %s", query.ToString().Data()));
213                 return NULL;
214         }
215
216         // query is not specified if path contains wildcard or runrange = [-1,-1]
217         if (!query.IsSpecified()) {
218                 AliError(Form("Unspecified query: %s",
219                                 query.ToString().Data()));
220                 return NULL;
221         }
222
223         // This is needed otherwise TH1  objects (histos, TTree's) are lost when file is closed!
224         Bool_t oldStatus = TH1::AddDirectoryStatus();
225         TH1::AddDirectory(kFALSE);
226
227         AliCDBEntry* entry = GetEntry(query);
228
229         if (oldStatus != kFALSE)
230                 TH1::AddDirectory(kTRUE);
231
232         // if drain storage is set, drain entry into drain storage
233         if(entry && (AliCDBManager::Instance())->IsDrainSet())
234                 AliCDBManager::Instance()->Drain(entry);
235
236         return entry;
237 }
238
239 //_____________________________________________________________________________
240 AliCDBEntry* AliCDBStorage::Get(const AliCDBPath& path, Int_t runNumber,
241         Int_t version, Int_t subVersion) {
242 // get an AliCDBEntry object from the database
243
244         return Get(AliCDBId(path, runNumber, runNumber, version, subVersion));
245 }
246
247 //_____________________________________________________________________________
248 AliCDBEntry* AliCDBStorage::Get(const AliCDBPath& path,
249         const AliCDBRunRange& runRange, Int_t version,
250         Int_t subVersion) {
251 // get an AliCDBEntry object from the database
252
253         return Get(AliCDBId(path, runRange, version, subVersion));
254 }
255
256 //_____________________________________________________________________________
257 TList* AliCDBStorage::GetAll(const AliCDBId& query) {
258 // get multiple AliCDBEntry objects from the database
259
260
261         if (!query.IsValid()) {
262                 AliError(Form("Invalid query: %s", query.ToString().Data()));
263                 return NULL;
264         }
265
266         if (query.IsAnyRange()) {
267                 AliError(Form("Unspecified run or runrange: %s",
268                                 query.ToString().Data()));      
269                 return NULL;
270         }       
271         
272         // This is needed otherwise TH1  objects (histos, TTree's) are lost when file is closed!
273         Bool_t oldStatus = TH1::AddDirectoryStatus();
274         TH1::AddDirectory(kFALSE);
275
276         TList *result = GetEntries(query);
277
278         if (oldStatus != kFALSE)
279                 TH1::AddDirectory(kTRUE);
280
281         Int_t nEntries = result->GetEntries();
282
283         AliInfo(Form("%d objects retrieved. Request was: %s",
284                         nEntries, query.ToString().Data()));
285         for(int i=0; i<nEntries;i++){
286                 AliCDBEntry *entry = (AliCDBEntry*) result->At(i);
287                 AliInfo(Form("%s",entry->GetId().ToString().Data()));
288         }
289
290
291         // if drain storage is set, drain entries into drain storage
292         if((AliCDBManager::Instance())->IsDrainSet()){
293                 for(int i = 0; i<result->GetEntries(); i++){
294                         AliCDBEntry* entry = (AliCDBEntry*) result->At(i);
295                         AliCDBManager::Instance()->Drain(entry);
296                 }
297         }
298         
299
300         return result;
301 }
302
303 //_____________________________________________________________________________
304 TList* AliCDBStorage::GetAll(const AliCDBPath& path, Int_t runNumber, 
305         Int_t version, Int_t subVersion) {
306 // get multiple AliCDBEntry objects from the database
307
308         return GetAll(AliCDBId(path, runNumber, runNumber, version,     
309                         subVersion));
310 }
311
312 //_____________________________________________________________________________
313 TList* AliCDBStorage::GetAll(const AliCDBPath& path, 
314         const AliCDBRunRange& runRange, Int_t version, Int_t subVersion) {
315 // get multiple AliCDBEntry objects from the database
316
317         return GetAll(AliCDBId(path, runRange, version, subVersion));
318 }
319
320 //_____________________________________________________________________________
321 AliCDBId* AliCDBStorage::GetId(const AliCDBId& query) {
322 // get the Id of the valid object from the database (does not open the file)
323
324         // check if query's path and runRange are valid
325         // query is invalid also if version is not specified and subversion is!
326         if (!query.IsValid()) {
327                 AliError(Form("Invalid query: %s", query.ToString().Data()));
328                 return NULL;
329         }
330
331         // query is not specified if path contains wildcard or runrange = [-1,-1]
332         if (!query.IsSpecified()) {
333                 AliError(Form("Unspecified query: %s",
334                                 query.ToString().Data()));
335                 return NULL;
336         }
337
338         AliCDBId* id = GetEntryId(query);
339
340         return id;
341 }
342
343 //_____________________________________________________________________________
344 AliCDBId* AliCDBStorage::GetId(const AliCDBPath& path, Int_t runNumber,
345         Int_t version, Int_t subVersion) {
346 // get the Id of the valid object from the database (does not open the file)
347
348         return GetId(AliCDBId(path, runNumber, runNumber, version, subVersion));
349 }
350
351 //_____________________________________________________________________________
352 AliCDBId* AliCDBStorage::GetId(const AliCDBPath& path,
353         const AliCDBRunRange& runRange, Int_t version,
354         Int_t subVersion) {
355 // get the Id of the valid object from the database (does not open the file)
356
357         return GetId(AliCDBId(path, runRange, version, subVersion));
358 }
359
360 //_____________________________________________________________________________
361 Bool_t AliCDBStorage::Put(TObject* object, AliCDBId& id, AliCDBMetaData* metaData, const char* mirrors, AliCDBManager::DataType type) {
362 // store an AliCDBEntry object into the database
363         
364         if (object==0x0) {
365                 AliError("Null Entry! No storage will be done!");
366                 return kFALSE;
367         } 
368
369         AliCDBEntry anEntry(object, id, metaData);
370
371         return Put(&anEntry, mirrors, type);
372 }
373
374 //_____________________________________________________________________________
375 Bool_t AliCDBStorage::Put(AliCDBEntry* entry, const char* mirrors, AliCDBManager::DataType type) {
376 // store an AliCDBEntry object into the database
377
378         if (!entry){
379                 AliError("No entry!");
380                 return kFALSE;
381         }
382         
383         if (entry->GetObject()==0x0){
384                 AliError("No valid object in CDB entry!");
385                 return kFALSE;
386         }
387
388         if (!entry->GetId().IsValid()) {
389                 AliError(Form("Invalid entry ID: %s",
390                         entry->GetId().ToString().Data()));
391                 return kFALSE;
392         }       
393
394         if (!entry->GetId().IsSpecified()) {
395                 AliError(Form("Unspecified entry ID: %s",
396                         entry->GetId().ToString().Data()));
397                 return kFALSE;
398         }
399
400         AliCDBManager::DataType expectedType = GetDataType();
401
402         if(expectedType != AliCDBManager::kPrivate && type != expectedType) {
403                 AliError(Form("It is forbidden to store %s data into a folder of type %s!",
404                         AliCDBManager::GetDataTypeName(type),
405                         AliCDBManager::GetDataTypeName(expectedType)));
406                         return 0;
407         }
408
409         
410         TString strMirrors(mirrors);
411         if(!strMirrors.IsNull() && !strMirrors.IsWhitespace())
412             return PutEntry(entry, mirrors);
413         else
414             return PutEntry(entry);
415 }
416
417 //_____________________________________________________________________________
418 void AliCDBStorage::QueryCDB(Int_t run, const char* pathFilter,
419                                 Int_t version, AliCDBMetaData* md){
420 // query CDB for files valid for given run, and fill list fValidFileIds
421 // Actual query is done in virtual function QueryValidFiles()
422
423         fRun = run;
424
425         fPathFilter = pathFilter;
426         if(!fPathFilter.IsValid()) {
427                 AliError(Form("Filter not valid: %s", pathFilter));
428                 fPathFilter = "*";
429                 return;
430         }
431
432         fVersion = version;
433
434         AliInfo(Form("Querying files valid for run %d and path \"%s\" into CDB storage  \"%s://%s\"",
435                                 fRun, pathFilter, fType.Data(), fBaseFolder.Data()));
436
437         // Clear fValidFileIds list (it cannot be filled twice!
438         AliDebug(2, "Clearing list of CDB Id's previously loaded");
439         fValidFileIds.Clear();
440
441         if(fMetaDataFilter) {delete fMetaDataFilter; fMetaDataFilter=0;}
442         if(md) fMetaDataFilter = dynamic_cast<AliCDBMetaData*> (md->Clone());
443
444         QueryValidFiles();
445
446         AliInfo(Form("%d valid files found!", fValidFileIds.GetEntriesFast()));
447
448 }
449
450 //_____________________________________________________________________________
451 void AliCDBStorage::PrintQueryCDB(){
452 // print parameters used to load list of CDB Id's (fRun, fPathFilter, fVersion)
453
454         AliCDBId paramId(fPathFilter, fRun, fRun, fVersion);
455         AliInfo(Form("**** QueryCDB Parameters **** \n\t<%s>\n",
456                                 paramId.ToString().Data()));
457
458         if(fMetaDataFilter) fMetaDataFilter->PrintMetaData();
459
460
461         TString message = "**** Id's of valid objects found *****\n";
462         TIter iter(&fValidFileIds);
463         AliCDBId* anId=0;
464
465         // loop on the list of selection criteria
466         while ((anId = dynamic_cast<AliCDBId*>(iter.Next()))) {
467                 message += Form("\t%s\n", anId->ToString().Data());
468         }
469         message += Form("\n\tTotal: %d objects found\n", fValidFileIds.GetEntriesFast());
470         AliInfo(Form("%s", message.Data()));
471 }
472
473 //_____________________________________________________________________________
474 AliCDBManager::DataType AliCDBStorage::GetDataType() const {
475 // returns the type of the data that should be stored into this storage:
476 // kConditions: conditions data; kReference: reference data; kPrivate: private (user-defined) data type
477
478         if(GetType() != "alien") return AliCDBManager::kPrivate;
479
480         TString condFolder = ((AliCDBGridParam*) AliCDBManager::Instance()->GetCondParam())->GetDBFolder();
481         TString refFolder = ((AliCDBGridParam*) AliCDBManager::Instance()->GetRefParam())->GetDBFolder();
482
483         if(GetBaseFolder().Contains(condFolder)) return AliCDBManager::kCondition;
484         if(GetBaseFolder().Contains(refFolder)) return AliCDBManager::kReference;
485
486         return AliCDBManager::kPrivate;
487 }
488
489 //_____________________________________________________________________________
490 void AliCDBStorage::SetMirrorSEs(const char* mirrors) {
491 // if the current storage is not of "alien" type, just issue a warning
492 // AliCDBGrid implements its own SetMirrorSEs method, classes for other storage types do not
493
494         TString storageType = GetType();
495         if(storageType != "alien"){
496             AliWarning(Form("The current storage is of type \"%s\". Setting of SEs to \"%s\" skipped!",storageType.Data(),mirrors));
497             return;
498         }
499         AliError("We should never get here!! AliCDBGrid must have masked this virtual method!");
500         return;
501 }
502
503 //_____________________________________________________________________________
504 const char* AliCDBStorage::GetMirrorSEs() const {
505 // if the current storage is not of "alien" type, just issue a warning
506 // AliCDBGrid implements its own GetMirrorSEs method, classes for other storage types do not
507
508         TString storageType = GetType();
509         if(storageType != "alien"){
510             AliWarning(Form("The current storage is of type \"%s\" and cannot handle SEs. Returning empty string!",storageType.Data()));
511             return "";
512         }
513         AliError("We should never get here!! AliCDBGrid must have masked this virtual method!");
514         return "";
515 }
516
517 //_____________________________________________________________________________
518 void AliCDBStorage::LoadTreeFromFile(AliCDBEntry *entry) const {
519 // Checks whether entry contains a TTree and in case loads it into memory
520
521         TObject *obj = (TObject*) entry->GetObject();
522         if (!obj) {
523           AliError("Cannot retrieve the object:");
524           entry->PrintMetaData();
525           return;
526         }
527
528         if (!strcmp(obj->ClassName(),TTree::Class_Name())) {
529
530                 AliWarning("Entry contains a TTree! Loading baskets...");
531
532                 TTree* tree = dynamic_cast<TTree*> (obj);
533
534                 if(!tree) return;
535
536                 tree->LoadBaskets();
537                 tree->SetDirectory(0);
538         }
539         else if (!strcmp(obj->ClassName(),TNtuple::Class_Name())){
540
541                 AliWarning("Entry contains a TNtuple! Loading baskets...");
542
543                 TNtuple* ntu = dynamic_cast<TNtuple*> (obj);
544
545                 if(!ntu) return;
546
547                 ntu->LoadBaskets();
548                 ntu->SetDirectory(0);
549         }
550
551         return;
552 }
553
554 // //_____________________________________________________________________________
555 // void AliCDBStorage::SetTreeToFile(AliCDBEntry *entry, TFile* file) const {
556 // // Checks whether entry contains a TTree and in case assigns it to memory
557 // 
558 //      AliCDBMetaData *md = dynamic_cast<AliCDBMetaData*> (entry->GetMetaData());
559 //      if(!md) return;
560 //      TString objStr = md->GetObjectClassName();
561 //      if(objStr != "TTree") return;
562 //      AliWarning("Entry contains a TTree! Setting file...");
563 // 
564 //      TTree* tree = dynamic_cast<TTree*> (entry->GetObject());
565 // 
566 //      if(!tree) return;
567 // 
568 // //   tree->SetDirectory(file);
569 //      tree->SetDirectory(0);
570 // 
571 //      return;
572 // }