]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/AliShuttleConfig.h
new shuttle machine
[u/mrichter/AliRoot.git] / SHUTTLE / AliShuttleConfig.h
CommitLineData
73abe331 1#ifndef ALI_SHUTTLE_CONFIG_H
2#define ALI_SHUTTLE_CONFIG_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9//
10// This class keeps the AliShuttle configuration.
11// It reads the configuration for LDAP server.
58bc3020 12// For more info see AliShuttleConfig.cxx
73abe331 13//
14
15#include <TObject.h>
16#include <TString.h>
d477ad88 17#include <TObjArray.h>
73abe331 18#include <TMap.h>
19#include <TLDAPServer.h>
20
21class AliShuttleConfig: public TObject {
22public:
7d4cf768 23 enum RunMode {kTest=0, kProd};
fb40ead4 24 enum SystemCode { kDAQ = 0, kDCS, kHLT, kGlobal, kAmanda };
7d4cf768 25
b948db8d 26 AliShuttleConfig(const char* host, Int_t port = LDAP_PORT,
27 const char* binddn = 0, const char* password = 0,
28 const char* basedn = "o=alice,dc=cern,dc=ch");
73abe331 29 virtual ~AliShuttleConfig();
30
31 Bool_t IsValid() const {return fIsValid;};
32
57c1a579 33 const char* GetConfigHost() const {return fConfigHost.Data();}
34
b8cf5e0f 35 const char* GetAlienPath() const {return fAlienPath.Data();}
36
57f50b3c 37 const char* GetDAQlbHost() const {return fDAQlbHost.Data();}
fc5a4708 38 UInt_t GetDAQlbPort() const {return fDAQlbPort;}
57f50b3c 39 const char* GetDAQlbUser() const {return fDAQlbUser.Data();}
40 const char* GetDAQlbPass() const {return fDAQlbPass.Data();}
2c15234c 41 const char* GetDAQlbDB() const {return fDAQlbDB.Data();}
42 const char* GetDAQlbTable() const {return fDAQlbTable.Data();}
441b0e9c 43 const char* GetShuttlelbTable() const {return fShuttlelbTable.Data();}
44 const char* GetRunTypelbTable() const {return fRunTypelbTable.Data();}
b948db8d 45
fb40ead4 46 const char* GetFXSHost(Int_t sys) const {return fFXSHost[sys].Data();}
47 UInt_t GetFXSPort(Int_t sys) const {return fFXSPort[sys];}
48 const char* GetFXSUser(Int_t sys) const {return fFXSUser[sys].Data();}
49 const char* GetFXSPass(Int_t sys) const {return fFXSPass[sys].Data();}
339adafa 50 const char* GetFXSBaseFolder(Int_t sys) const {return fFXSBaseFolder[sys].Data();}
57f50b3c 51
fb40ead4 52 const char* GetFXSdbHost(Int_t sys) const {return fFXSdbHost[sys].Data();}
53 UInt_t GetFXSdbPort(Int_t sys) const {return fFXSdbPort[sys];}
54 const char* GetFXSdbUser(Int_t sys) const {return fFXSdbUser[sys].Data();}
55 const char* GetFXSdbPass(Int_t sys) const {return fFXSdbPass[sys].Data();}
56 const char* GetFXSdbName(Int_t sys) const {return fFXSdbName[sys].Data();}
57 const char* GetFXSdbTable(Int_t sys) const {return fFXSdbTable[sys].Data();}
d477ad88 58
fb40ead4 59 const TObjArray* GetAdmins(Int_t sys) const;
60
61 Bool_t SendMail() const { return fSendMail; }
62
2bb7b766 63 Int_t GetMaxRetries() const { return fMaxRetries; }
5164a766 64
cb343cfd 65 Int_t GetPPTimeOut() const { return fPPTimeOut; }
ff3781ad 66 Int_t GetDCSTimeOut() const { return fDCSTimeOut; }
67 Int_t GetDCSRetries() const { return fDCSRetries; }
2eb98462 68 UInt_t GetDCSQueryOffset() const { return fDCSQueryOffset; }
69 UInt_t GetDCSDelay() const { return fDCSDelay; }
9827400b 70 Int_t GetPPMaxMem() const { return fPPMaxMem; }
fb40ead4 71
72 Bool_t KeepDCSMap() const { return fKeepDCSMap; }
73 Bool_t KeepTempFolder() const { return fKeepTempFolder; }
b832ec02 74
fb40ead4 75
b832ec02 76 const char* GetMonitorHost() const {return fMonitorHost.Data();}
77 const char* GetMonitorTable() const {return fMonitorTable.Data();}
cb343cfd 78
7d4cf768 79 Int_t GetTriggerWait() const {return fTriggerWait;}
fb2975a2 80 const char* GetShuttleFileSystem() const {return fShuttleFileSystem.Data();}
81 Int_t GetFreeDiskWarningThreshold() const {return fFreeDiskWarningThreshold;}
82 Int_t GetFreeDiskFatalThreshold() const {return fFreeDiskFatalThreshold;}
7d4cf768 83
84 RunMode GetRunMode() const {return fRunMode;}
85
36c99a6a 86 const TObjArray* GetDetectors() const;
73abe331 87
88 Bool_t HasDetector(const char* detector) const;
1d172743 89
90 Int_t GetNServers(const char* detector) const;
91
92 const char* GetDCSHost(const char* detector, Int_t iServ) const;
93 Int_t GetDCSPort(const char* detector, Int_t iServ) const;
94
542b6cc8 95 Int_t GetMultiSplit(const char* detector, Int_t iServ) const;
96
1d172743 97 const TObjArray* GetDCSAliases(const char* detector, Int_t iServ) const;
98 const TObjArray* GetDCSDataPoints(const char* detector, Int_t iServ) const;
99 const TObjArray* GetCompactDCSAliases(const char* detector, Int_t iServ) const;
100 const TObjArray* GetCompactDCSDataPoints(const char* detector, Int_t iServ) const;
101
57c1a579 102 const TObjArray* GetResponsibles(const char* detector) const;
be48e3ea 103 Bool_t StrictRunOrder(const char* detector) const;
b948db8d 104
105 void SetProcessAll(Bool_t flag=kTRUE) {fProcessAll=flag;}
58bc3020 106 Bool_t ProcessAll() const {return fProcessAll;}
b948db8d 107
108 Bool_t HostProcessDetector(const char* detector) const;
73abe331 109
110 virtual void Print(Option_t* option = NULL) const;
111
112private:
b948db8d 113
1d172743 114 class AliShuttleDCSConfigHolder: public TObject {
73abe331 115 public:
1d172743 116 AliShuttleDCSConfigHolder(const TLDAPEntry* entry);
117 ~AliShuttleDCSConfigHolder();
118
119 const char* GetDCSHost() const {return fDCSHost;}
57f50b3c 120 Int_t GetDCSPort() const {return fDCSPort;}
542b6cc8 121 Int_t GetMultiSplit() const {return fMultiSplit;}
122
2bb7b766 123 const TObjArray* GetDCSAliases() const {return fDCSAliases;}
2c15234c 124 const TObjArray* GetDCSDataPoints() const {return fDCSDataPoints;}
36c99a6a 125 const TObjArray* GetCompactDCSAliases() const {return fDCSAliasesComp;}
126 const TObjArray* GetCompactDCSDataPoints() const {return fDCSDataPointsComp;}
1d172743 127
f59d2f8f 128 void ExpandAndAdd(TObjArray* target, const char* entry);
1d172743 129 Bool_t IsValid() const {return fIsValid;}
40150741 130
58bc3020 131 private:
1d172743 132 AliShuttleDCSConfigHolder(const AliShuttleDCSConfigHolder& other); // not implemented
133 AliShuttleDCSConfigHolder& operator= (const AliShuttleDCSConfigHolder& other); // not implemented
1bcd28db 134
58bc3020 135 TString fDCSHost; // Host name of the DCS server
136 Int_t fDCSPort; // port of the DCS server
542b6cc8 137 Int_t fMultiSplit; // N. of DPs to be queried in each query chunk
2bb7b766 138 TObjArray* fDCSAliases; // List of DCS aliases to be retrieved
1d172743 139 TObjArray* fDCSDataPoints; // List of DCS data points to be retrieved
140 TObjArray* fDCSAliasesComp; // Compact list of DCS aliases to be printed
36c99a6a 141 TObjArray* fDCSDataPointsComp; // Compact list of DCS data points to be printed
1d172743 142 Bool_t fIsValid; // flag for the validity of the configuration
143
144 ClassDef(AliShuttleDCSConfigHolder, 0);
145 };
146
147 class AliShuttleDetConfigHolder: public TObject {
148 public:
149 AliShuttleDetConfigHolder(const TLDAPEntry* entry);
150 ~AliShuttleDetConfigHolder();
151
152 const char* GetDetector() const {return fDetector.Data();}
153 const TObjArray* GetDCSConfig() const {return fDCSConfig;}
154 void AddDCSConfig(AliShuttleDCSConfigHolder* holder);
155
156 Int_t GetNServers() const {return fDCSConfig ? fDCSConfig->GetEntries() : 0;}
157
158 const char* GetDCSHost(Int_t iServ) const;
159 Int_t GetDCSPort(Int_t iServ) const;
542b6cc8 160 Int_t GetMultiSplit(Int_t iServ) const;
161
1d172743 162 const TObjArray* GetDCSAliases(Int_t iServ) const;
163 const TObjArray* GetDCSDataPoints(Int_t iServ) const;
164 const TObjArray* GetCompactDCSAliases(Int_t iServ) const;
165 const TObjArray* GetCompactDCSDataPoints(Int_t iServ) const;
166
167 const TObjArray* GetResponsibles() const {return fResponsibles;}
168 Bool_t IsValid() const {return fIsValid;}
169 Bool_t SkipDCSQuery() const {return fSkipDCSQuery;}
170 Bool_t StrictRunOrder() const {return fStrictRunOrder;}
171
172 private:
173 AliShuttleDetConfigHolder(const AliShuttleDetConfigHolder& other); // not implemented
174 AliShuttleDetConfigHolder& operator= (const AliShuttleDetConfigHolder& other); // not implemented
175
176 TString fDetector; // Detector name
177 TObjArray* fDCSConfig; // Array of DCS configuration objects (AliShuttleDCSConfigHolder)
57c1a579 178 TObjArray* fResponsibles; // List of email addresses of the detector's responsible(s)
58bc3020 179 Bool_t fIsValid; // flag for the validity of the configuration
57f50b3c 180 Bool_t fSkipDCSQuery; // flag - if TRUE (-> DCS config empty) skip DCS archive data query
be48e3ea 181 Bool_t fStrictRunOrder; // flag - if TRUE connect data in a strict run ordering
58bc3020 182
1d172743 183 ClassDef(AliShuttleDetConfigHolder, 0);
73abe331 184 };
185
186
fb2975a2 187 AliShuttleConfig(const AliShuttleConfig& other);
188 AliShuttleConfig& operator= (const AliShuttleConfig& other);
1d172743 189 UInt_t SetGlobalConfig(TList* globalList);
190 UInt_t SetSysConfig(TList* sysList);
6ea86315 191 UInt_t SetPasswords();
1d172743 192 UInt_t SetDetConfig(TList* detList, TList* dcsList);
193 UInt_t SetHostConfig(TList* hostList);
194
b832ec02 195 TString fConfigHost; // Host of the Shuttle configuration LDAP server
196
b8cf5e0f 197 TString fAlienPath; // Alien Path for CDB/Reference objs in the Alien catalogue
198
b832ec02 199 TString fDAQlbHost; // Host of the DAQ logbook MySQL Server
200 UInt_t fDAQlbPort; // port of the DAQ logbook MySQL Server
201 TString fDAQlbUser; // username of the DAQ logbook MySQL Server
202 TString fDAQlbPass; // password of the DAQ logbook MySQL Server
203 TString fDAQlbDB; // DB name of the DAQ logbook MySQL Server
204 TString fDAQlbTable; // Table name of the DAQ logbook
205 TString fShuttlelbTable; // Table name of the Shuttle logbook
206 TString fRunTypelbTable; // Table name of the Run typr logbook
6ea86315 207 TString fPasswdFilePath; // Path for the local file where the passwords are stored
b832ec02 208
209 TString fFXSHost[3]; // Host of the [DAQ, DCS, HLT] File eXchange Server
210 UInt_t fFXSPort[3]; // Port of the [DAQ, DCS, HLT] File eXchange Server
211 TString fFXSUser[3]; // username of the [DAQ, DCS, HLT] File eXchange Server
212 TString fFXSPass[3]; // password of the [DAQ, DCS, HLT] File eXchange Server
339adafa 213 TString fFXSBaseFolder[3]; // base folder of the [DAQ, DCS, HLT] File eXchange Server
b832ec02 214
215 TString fFXSdbHost[3]; // Host of the [DAQ, DCS, HLT] FXS database
216 UInt_t fFXSdbPort[3]; // Port of the [DAQ, DCS, HLT] FXS database
217 TString fFXSdbUser[3]; // username of the [DAQ, DCS, HLT] FXS database
218 TString fFXSdbPass[3]; // password of the [DAQ, DCS, HLT] FXS database
219 TString fFXSdbName[3]; // name of the [DAQ, DCS, HLT] FXS database
220 TString fFXSdbTable[3]; // Table name of the [DAQ, DCS, HLT] FXS database
221
222 Int_t fMaxRetries; // number of retries of a failed preprocessor
223
224 Int_t fPPTimeOut; // timeout until a preprocessor is killed
ff3781ad 225 Int_t fDCSTimeOut; // timeout until the query to DCS is terminated
226 Int_t fDCSRetries; // number of retries until the query to DCS connection is terminated
2eb98462 227 UInt_t fDCSQueryOffset; // offset for the DCS DPs query, to be subracted from the StartTime and
228 // added to the EndTime
229 UInt_t fDCSDelay; // delay to make the query to DCS
b832ec02 230 Int_t fPPMaxMem; // maximum allowed memory until a preprocessor is killed
231
232 TString fMonitorHost; // host of the MonaLisa monitoring server
233 TString fMonitorTable; // Monalisa's SHUTTLE table name
7d4cf768 234
235 Int_t fTriggerWait; // time to wait for DIM trigger before starting new collection
fb2975a2 236 TString fShuttleFileSystem; // path of the Shuttle file system
237 Int_t fFreeDiskWarningThreshold; // threshold for free space in the Shuttle file system to send a mail to the responsibles
238 Int_t fFreeDiskFatalThreshold; // threshold for free space in the Shuttle file system to send a mail to the responsibles and terminate the Shuttle
7d4cf768 239 RunMode fRunMode; // Working mode (0=test; 1=prod)
b832ec02 240
241 TMap fDetectorMap; // Map of the detector-by-detector configuration
242 TObjArray fDetectorList; // List of detectors with valid configuration
fb40ead4 243
a18e8fa6 244 TObjArray *fAdmin[5]; // Array of system administrators' email addresses (DAQ, DCS, HLT, Global, Amanda)
b832ec02 245
246 TString fShuttleInstanceHost; // Instance of the SHUTTLE
247 TObjArray fProcessedDetectors; // list of the detector to be processed by this machine
fb40ead4 248
249 Bool_t fKeepDCSMap; // Flag to keep DCS map also in case of success
250 Bool_t fKeepTempFolder; // Flag to keep temp folder also in case of success
251
252 Bool_t fSendMail; // Send mail flag
253
b832ec02 254 Bool_t fProcessAll; // flag indicating that all detectors will be processed
255 Bool_t fIsValid; // flag for the validity of the configuration
73abe331 256
257 ClassDef(AliShuttleConfig, 0);
258};
259
260#endif
261