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