]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliCDBStorage.cxx
Removing debug printout (Yu.Belikov)
[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>
9e1ceb13 18#include "AliCDBManager.h"
fe913d8f 19#include "AliCDBStorage.h"
2c8628dd 20
9e1ceb13 21#include "AliCDBEntry.h"
22#include "AliLog.h"
2c8628dd 23
fe913d8f 24ClassImp(AliCDBStorage)
2c8628dd 25
9e1ceb13 26//_____________________________________________________________________________
62032124 27AliCDBStorage::AliCDBStorage():
28fValidFileIds(),
29fRun(-1),
30fPathFilter(),
31fVersion(-1),
32fMetaDataFilter(0),
33fSelections(),
34fURI(),
35fType(),
36fBaseFolder()
37{
9e1ceb13 38// constructor
39
62032124 40 fValidFileIds.SetOwner(1);
9e1ceb13 41 fSelections.SetOwner(1);
42}
2c8628dd 43
9e1ceb13 44//_____________________________________________________________________________
45AliCDBStorage::~AliCDBStorage() {
46// destructor
2c8628dd 47
62032124 48 RemoveAllSelections();
49 fValidFileIds.Clear();
50 delete fMetaDataFilter;
51
9e1ceb13 52}
2c8628dd 53
54//_____________________________________________________________________________
4b5e0dce 55void AliCDBStorage::GetSelection(/*const*/ AliCDBId* id) {
0f678e35 56// return required version and subversion from the list of selection criteria
9e1ceb13 57
58 TIter iter(&fSelections);
59 AliCDBId* aSelection;
60
61 // loop on the list of selection criteria
62 while ((aSelection = (AliCDBId*) iter.Next())) {
63 // check if selection element contains id's path and run (range)
4b5e0dce 64 if (aSelection->Comprises(*id)) {
b05400be 65 AliDebug(2,Form("Using selection criterion: %s ", aSelection->ToString().Data()));
9e1ceb13 66 // return required version and subversion
4b5e0dce 67
68 id->SetVersion(aSelection->GetVersion());
69 id->SetSubVersion(aSelection->GetSubVersion());
70 return;
9e1ceb13 71 }
72 }
73
74 // no valid element is found in the list of selection criteria -> return
b05400be 75 AliDebug(2,"Looking for objects with most recent version");
4b5e0dce 76 return;
2c8628dd 77}
78
b05400be 79//_____________________________________________________________________________
80void AliCDBStorage::ReadSelectionFromFile(const char *fileName){
81// read selection criteria list from file
82
83 RemoveAllSelections();
84
85 TList *list = GetIdListFromFile(fileName);
86 if(!list) return;
87
88 list->SetOwner();
89 Int_t nId = list->GetEntries();
90 AliCDBId *id;
91 TKey *key;
92
93 for(int i=nId-1;i>=0;i--){
94 key = (TKey*) list->At(i);
95 id = (AliCDBId*) key->ReadObj();
96 if(id) AddSelection(*id);
97 }
98 delete list;
99 AliInfo(Form("Selection criteria list filled with %d entries",fSelections.GetEntries()));
100 PrintSelectionList();
101
102}
103
2c8628dd 104//_____________________________________________________________________________
9e1ceb13 105void AliCDBStorage::AddSelection(const AliCDBId& selection) {
106// add a selection criterion
107
108 AliCDBPath path = selection.GetPath();
109 if(!path.IsValid()) return;
110
111 TIter iter(&fSelections);
112 const AliCDBId *anId;
113 while((anId = (AliCDBId*) iter.Next())){
114 if(selection.Comprises(*anId)){
115 AliWarning("This selection is more general than a previous one and will hide it!");
116 AliWarning(Form("%s", (anId->ToString()).Data()));
117 fSelections.AddBefore(anId, new AliCDBId(selection));
118 return;
119 }
120
121 }
122 fSelections.AddFirst(new AliCDBId(selection));
123}
2c8628dd 124
125//_____________________________________________________________________________
62032124 126void AliCDBStorage::AddSelection(const AliCDBPath& path,
9e1ceb13 127 const AliCDBRunRange& runRange, Int_t version, Int_t subVersion){
128// add a selection criterion
2c8628dd 129
9e1ceb13 130 AddSelection(AliCDBId(path, runRange, version, subVersion));
2c8628dd 131}
132
9e1ceb13 133//_____________________________________________________________________________
134void AliCDBStorage::AddSelection(const AliCDBPath& path,
135 Int_t firstRun, Int_t lastRun, Int_t version, Int_t subVersion){
136// add a selection criterion
137
138 AddSelection(AliCDBId(path, firstRun, lastRun, version, subVersion));
139}
2c8628dd 140
9e1ceb13 141//_____________________________________________________________________________
142void AliCDBStorage::RemoveSelection(const AliCDBId& selection) {
143// remove a selection criterion
2c8628dd 144
9e1ceb13 145 TIter iter(&fSelections);
146 AliCDBId* aSelection;
2c8628dd 147
9e1ceb13 148 while ((aSelection = (AliCDBId*) iter.Next())) {
149 if (selection.Comprises(*aSelection)) {
150 fSelections.Remove(aSelection);
151 }
152 }
153}
2c8628dd 154
9e1ceb13 155//_____________________________________________________________________________
156void AliCDBStorage::RemoveSelection(const AliCDBPath& path,
157 const AliCDBRunRange& runRange){
158// remove a selection criterion
2c8628dd 159
9e1ceb13 160 RemoveSelection(AliCDBId(path, runRange, -1, -1));
161}
f05209ee 162
9e1ceb13 163//_____________________________________________________________________________
164void AliCDBStorage::RemoveSelection(const AliCDBPath& path,
165 Int_t firstRun, Int_t lastRun){
166// remove a selection criterion
f05209ee 167
9e1ceb13 168 RemoveSelection(AliCDBId(path, firstRun, lastRun, -1, -1));
169}
f05209ee 170
9e1ceb13 171//_____________________________________________________________________________
eb0b1051 172void AliCDBStorage::RemoveSelection(int position){
9e1ceb13 173// remove a selection criterion from its position in the list
2c8628dd 174
62032124 175 delete fSelections.RemoveAt(position);
2c8628dd 176}
177
2c8628dd 178//_____________________________________________________________________________
9e1ceb13 179void AliCDBStorage::RemoveAllSelections(){
180// remove all selection criteria
2c8628dd 181
62032124 182 fSelections.Clear();
9e1ceb13 183}
fe913d8f 184
9e1ceb13 185//_____________________________________________________________________________
186void AliCDBStorage::PrintSelectionList(){
187// prints the list of selection criteria
188
189 TIter iter(&fSelections);
190 AliCDBId* aSelection;
62032124 191
9e1ceb13 192 // loop on the list of selection criteria
193 int index=0;
194 while ((aSelection = (AliCDBId*) iter.Next())) {
195 AliInfo(Form("index %d -> selection: %s",index++, aSelection->ToString().Data()));
196 }
fe913d8f 197
9e1ceb13 198}
fe913d8f 199
9e1ceb13 200//_____________________________________________________________________________
0f678e35 201AliCDBEntry* AliCDBStorage::Get(const AliCDBId& query) {
9e1ceb13 202// get an AliCDBEntry object from the database
203
204 // check if query's path and runRange are valid
205 // query is invalid also if version is not specified and subversion is!
206 if (!query.IsValid()) {
207 AliError(Form("Invalid query: %s", query.ToString().Data()));
208 return NULL;
209 }
210
211 // query is not specified if path contains wildcard or runrange = [-1,-1]
212 if (!query.IsSpecified()) {
213 AliError(Form("Unspecified query: %s",
214 query.ToString().Data()));
215 return NULL;
216 }
62032124 217
02c4845e 218 // This is needed otherwise TH1 objects (histos, TTree's) are lost when file is closed!
219 Bool_t oldStatus = TH1::AddDirectoryStatus();
220 TH1::AddDirectory(kFALSE);
9e1ceb13 221
222 AliCDBEntry* entry = GetEntry(query);
02c4845e 223
224 if (oldStatus != kFALSE)
225 TH1::AddDirectory(kTRUE);
0f678e35 226
9e1ceb13 227 if (entry) {
62032124 228 // this is to make the SHUTTLE output lighter
229 if(!(query.GetPath().Contains("SHUTTLE/STATUS")))
230 AliInfo(Form("CDB object retrieved: %s", entry->GetId().ToString().Data()));
9e1ceb13 231 } else {
62032124 232 // this is to make the SHUTTLE output lighter
0f678e35 233 if(!(query.GetPath().Contains("SHUTTLE/STATUS")))
234 AliInfo(Form("No valid CDB object found! request was: name = <%s>, run = %d",
235 (query.GetPath()).Data(), query.GetFirstRun()));
9e1ceb13 236 }
0f678e35 237
9e1ceb13 238 // if drain storage is set, drain entry into drain storage
239 if(entry && (AliCDBManager::Instance())->IsDrainSet())
240 AliCDBManager::Instance()->Drain(entry);
0f678e35 241
9e1ceb13 242 return entry;
2c8628dd 243}
244
245//_____________________________________________________________________________
9e1ceb13 246AliCDBEntry* AliCDBStorage::Get(const AliCDBPath& path, Int_t runNumber,
247 Int_t version, Int_t subVersion) {
248// get an AliCDBEntry object from the database
2c8628dd 249
9e1ceb13 250 return Get(AliCDBId(path, runNumber, runNumber, version, subVersion));
2c8628dd 251}
252
2c8628dd 253//_____________________________________________________________________________
9e1ceb13 254AliCDBEntry* AliCDBStorage::Get(const AliCDBPath& path,
255 const AliCDBRunRange& runRange, Int_t version,
256 Int_t subVersion) {
257// get an AliCDBEntry object from the database
2c8628dd 258
9e1ceb13 259 return Get(AliCDBId(path, runRange, version, subVersion));
2c8628dd 260}
261
2c8628dd 262//_____________________________________________________________________________
9e1ceb13 263TList* AliCDBStorage::GetAll(const AliCDBId& query) {
264// get multiple AliCDBEntry objects from the database
265
266
267 if (!query.IsValid()) {
268 AliError(Form("Invalid query: %s", query.ToString().Data()));
269 return NULL;
270 }
271
272 if (query.IsAnyRange()) {
273 AliError(Form("Unspecified run or runrange: %s",
274 query.ToString().Data()));
275 return NULL;
276 }
277
02c4845e 278 // This is needed otherwise TH1 objects (histos, TTree's) are lost when file is closed!
279 Bool_t oldStatus = TH1::AddDirectoryStatus();
280 TH1::AddDirectory(kFALSE);
281
9e1ceb13 282 TList *result = GetEntries(query);
283
02c4845e 284 if (oldStatus != kFALSE)
285 TH1::AddDirectory(kTRUE);
286
9e1ceb13 287 Int_t nEntries = result->GetEntries();
288 if (nEntries) {
62032124 289 AliInfo(Form("%d objects retrieved.",nEntries));
9e1ceb13 290 for(int i=0; i<nEntries;i++){
291 AliCDBEntry *entry = (AliCDBEntry*) result->At(i);
292 AliInfo(Form("%s",entry->GetId().ToString().Data()));
293
294 }
295 } else {
62032124 296 AliInfo(Form("No valid CDB object found! request was: name = <%s>, run = %d, version = %d",
b05400be 297 (query.GetPath()).Data(), query.GetFirstRun(), query.GetVersion()));
9e1ceb13 298 }
299
300 // if drain storage is set, drain entries into drain storage
301 if((AliCDBManager::Instance())->IsDrainSet()){
302 for(int i = 0; i<result->GetEntries(); i++){
303 AliCDBEntry* entry = (AliCDBEntry*) result->At(i);
304 AliCDBManager::Instance()->Drain(entry);
305 }
306 }
307
308
309 return result;
310}
2c8628dd 311
9e1ceb13 312//_____________________________________________________________________________
313TList* AliCDBStorage::GetAll(const AliCDBPath& path, Int_t runNumber,
314 Int_t version, Int_t subVersion) {
315// get multiple AliCDBEntry objects from the database
2c8628dd 316
9e1ceb13 317 return GetAll(AliCDBId(path, runNumber, runNumber, version,
318 subVersion));
2c8628dd 319}
320
2c8628dd 321//_____________________________________________________________________________
9e1ceb13 322TList* AliCDBStorage::GetAll(const AliCDBPath& path,
323 const AliCDBRunRange& runRange, Int_t version, Int_t subVersion) {
324// get multiple AliCDBEntry objects from the database
2c8628dd 325
9e1ceb13 326 return GetAll(AliCDBId(path, runRange, version, subVersion));
2c8628dd 327}
f05209ee 328
329
330//_____________________________________________________________________________
9e1ceb13 331Bool_t AliCDBStorage::Put(TObject* object, AliCDBId& id, AliCDBMetaData* metaData) {
02c4845e 332// store an AliCDBEntry object into the database
9e1ceb13 333
334 AliCDBEntry anEntry(object, id, metaData);
f05209ee 335
9e1ceb13 336 return Put(&anEntry);
337}
f05209ee 338
9e1ceb13 339//_____________________________________________________________________________
340Bool_t AliCDBStorage::Put(AliCDBEntry* entry) {
02c4845e 341// store an AliCDBEntry object into the database
9e1ceb13 342
02c4845e 343 if (!entry){
344 AliError("No entry!");
345 return kFALSE;
346 }
347
9e1ceb13 348 if (!entry->GetId().IsValid()) {
62032124 349 AliError(Form("Invalid entry ID: %s",
9e1ceb13 350 entry->GetId().ToString().Data()));
351 return kFALSE;
352 }
353
354 if (!entry->GetId().IsSpecified()) {
62032124 355 AliError(Form("Unspecified entry ID: %s",
9e1ceb13 356 entry->GetId().ToString().Data()));
357 return kFALSE;
358 }
359
02c4845e 360 // set object's class name into metaData!
361 entry->GetMetaData()->SetObjectClassName(entry->GetObject()->ClassName());
362
9e1ceb13 363 return PutEntry(entry);
f05209ee 364}
fe913d8f 365
62032124 366//_____________________________________________________________________________
367void AliCDBStorage::QueryCDB(Long64_t run, const char* pathFilter,
368 Int_t version, AliCDBMetaData* md){
369// query CDB for files valid for given run, and fill list fValidFileIds
370// Actual query is done in virtual function QueryValidFiles()
371
372 fRun = run;
373
374 fPathFilter = pathFilter;
375 if(!fPathFilter.IsValid()) {
376 AliError(Form("Filter not valid: %s", pathFilter));
377 fPathFilter = "*";
378 return;
379 }
380
381 fVersion = version;
382
383 // Clear fValidFileIds list (it cannot be filled twice!
384 AliDebug(2, "Clearing list of CDB Id's previously loaded");
385 fValidFileIds.Clear();
386
387 if(fMetaDataFilter) {delete fMetaDataFilter; fMetaDataFilter=0;}
388 if(md) fMetaDataFilter = dynamic_cast<AliCDBMetaData*> (md->Clone());
389
390 QueryValidFiles();
391
392 AliInfo(Form("%d files valid for run %ld, path %s and version %d found in CDB storage: \n %s://%s",
393 fValidFileIds.GetEntries(), (long) fRun, pathFilter, version,
394 fType.Data(), fBaseFolder.Data()));
395
396}
397
398//_____________________________________________________________________________
399void AliCDBStorage::PrintQueryCDB(){
400// print parameters used to load list of CDB Id's (fRun, fPathFilter, fVersion)
401
402 AliInfo(Form("QueryCDB Parameters: \n\tRun = %ld \n\tPath filter = %s \n\tVersion = %d",
403 (long) fRun, fPathFilter.GetPath().Data(), fVersion));
404
405 if(fMetaDataFilter) {
406 AliInfo("CDBMetaData Parameters: ");
407 }
408 fMetaDataFilter->PrintMetaData();
409
410 AliInfo("Id's of valid objects found:");
411 TIter iter(&fValidFileIds);
412 AliCDBId* anId=0;
413
414 // loop on the list of selection criteria
415 while ((anId = dynamic_cast<AliCDBId*>(iter.Next()))) {
416 AliInfo(Form("%s", anId->ToString().Data()));
417 }
418
419}
420