]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliCDBId.cxx
Optimisation
[u/mrichter/AliRoot.git] / STEER / AliCDBId.cxx
CommitLineData
9e1ceb13 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/////////////////////////////////////////////////////////////////////
17// //
18// class AliCDBId //
19// Identity of an object stored into a database: //
20// path, run validity range, version, subVersion //
21// //
22/////////////////////////////////////////////////////////////////////
23
24#include "AliCDBId.h"
b21e3194 25#include <Riostream.h>
a4970db9 26#include <TObjArray.h>
27#include <TObjString.h>
9e1ceb13 28
29ClassImp(AliCDBId)
30
31//_____________________________________________________________________________
32AliCDBId::AliCDBId():
33fPath(),
34fRunRange(-1,-1),
35fVersion(-1),
36fSubVersion(-1),
37fLastStorage("new")
38{
39// constructor
40
41}
42
43//_____________________________________________________________________________
44AliCDBId::AliCDBId(const AliCDBId& other):
45TObject(),
46fPath(other.fPath),
47fRunRange(other.fRunRange),
48fVersion(other.fVersion),
49fSubVersion(other.fSubVersion),
50fLastStorage(other.fLastStorage)
51{
52// constructor
53
54}
55
56//_____________________________________________________________________________
57AliCDBId::AliCDBId(const AliCDBPath& path, Int_t firstRun, Int_t lastRun,
58 Int_t version, Int_t subVersion):
59fPath(path),
60fRunRange(firstRun, lastRun),
61fVersion(version),
62fSubVersion(subVersion),
63fLastStorage("new")
64{
65// constructor
66
67}
68
69//_____________________________________________________________________________
70AliCDBId::AliCDBId(const AliCDBPath& path, const AliCDBRunRange& runRange,
71 Int_t version, Int_t subVersion):
72fPath(path),
73fRunRange(runRange),
74fVersion(version),
75fSubVersion(subVersion),
76fLastStorage("new")
77{
78// constructor
79
80}
81
a4970db9 82//_____________________________________________________________________________
83AliCDBId* AliCDBId::MakeFromString(const TString& idString)
84{
85// constructor from string
86// string has the format as the output of AliCDBId::ToString:
87// path: "TRD/Calib/PIDLQ"; run range: [0,999999999]; version: v0_s0
88
89 AliCDBId* id = new AliCDBId("a/b/c",-1,-1,-1,-1);
90
91 TObjArray* arr1 = idString.Tokenize(';');
92 TIter iter1(arr1);
93 TObjString *objStr1 = 0;
94 while((objStr1 = dynamic_cast<TObjString*>(iter1.Next()))) {
95 TString buff(objStr1->GetName());
96
97 if(buff.Contains("path:")) {
98 TString path(buff(buff.First('\"')+1, buff.Length()-buff.First('\"')-2));
99 id->SetPath(path.Data());
100
101 } else if (buff.Contains("run range:")) {
102 TString firstRunStr(buff(buff.Index('[')+1, buff.Index(',')-buff.Index('[')-1));
103 TString lastRunStr(buff(buff.Index(',')+1, buff.Index(']')-buff.Index(',')-1));
104 id->SetRunRange(firstRunStr.Atoi(), lastRunStr.Atoi());
105
106 } else if (buff.Contains("version:")) {
107 if (buff.Contains("_s")) {
108 TString versStr(buff(buff.Last('v')+1, buff.Index('_')-buff.Last('v')-1));
109 TString subVersStr(buff(buff.Last('s')+1, buff.Length()-buff.Last('s')-1));
110 id->SetVersion(versStr.Atoi());
111 id->SetSubVersion(subVersStr.Atoi());
112 } else {
113 TString versStr(buff(buff.Last('v')+1, buff.Length()-buff.Last('v')-1));
114 id->SetVersion(versStr.Atoi());
115 }
116 }
117
118 }
119
120 delete arr1;
121
122 return id;
123
124}
125
9e1ceb13 126//_____________________________________________________________________________
127AliCDBId::~AliCDBId() {
128//destructor
129
130}
131
132//_____________________________________________________________________________
133Bool_t AliCDBId::IsValid() const {
134// validity check
8e245d15 135
9e1ceb13 136 if (!(fPath.IsValid() && fRunRange.IsValid())) {
137 return kFALSE;
138 }
139
140 // FALSE if doesn't have version but has subVersion
141 return !(!HasVersion() && HasSubVersion());
142}
143
8e245d15 144//___________________________________________________________________________
145Bool_t AliCDBId::IsEqual(const TObject* obj) const {
146// check if this id is equal to other id (compares path, run range, versions)
147
148 if (this == obj) {
149 return kTRUE;
150 }
151
152 if (AliCDBId::Class() != obj->IsA()) {
153 return kFALSE;
154 }
155 AliCDBId* other = (AliCDBId*) obj;
156 return fPath.GetPath() == other->GetPath() && fRunRange.IsEqual(&other->GetAliCDBRunRange()) &&
157 fVersion == other->GetVersion() && fSubVersion == other->GetSubVersion();
158}
159
9e1ceb13 160//_____________________________________________________________________________
161TString AliCDBId::ToString() const {
162// returns a string of Id data
163
c3a7b59a 164 TString result = Form("path: \"%s\"; run range: [%d,%d]",
165 GetPath().Data(), GetFirstRun(), GetLastRun());
166
167 if(GetVersion() >= 0) result += Form("; version: v%d", GetVersion());
168 if(GetSubVersion() >= 0) result += Form("_s%d", GetSubVersion());
169 return result;
9e1ceb13 170}
b21e3194 171
172//_____________________________________________________________________________
173void AliCDBId::Print(Option_t* /*option*/) const {
174// Prints ToString()
175
176 cout << ToString().Data() << endl;
177
178}