]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/AliShuttleConfig.h
New AliTRDcluster constructor
[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:
b948db8d 23 AliShuttleConfig(const char* host, Int_t port = LDAP_PORT,
24 const char* binddn = 0, const char* password = 0,
25 const char* basedn = "o=alice,dc=cern,dc=ch");
73abe331 26 virtual ~AliShuttleConfig();
27
28 Bool_t IsValid() const {return fIsValid;};
29
57c1a579 30 const char* GetConfigHost() const {return fConfigHost.Data();}
31
57f50b3c 32 const char* GetDAQlbHost() const {return fDAQlbHost.Data();}
fc5a4708 33 UInt_t GetDAQlbPort() const {return fDAQlbPort;}
57f50b3c 34 const char* GetDAQlbUser() const {return fDAQlbUser.Data();}
35 const char* GetDAQlbPass() const {return fDAQlbPass.Data();}
2c15234c 36 const char* GetDAQlbDB() const {return fDAQlbDB.Data();}
37 const char* GetDAQlbTable() const {return fDAQlbTable.Data();}
441b0e9c 38 const char* GetShuttlelbTable() const {return fShuttlelbTable.Data();}
39 const char* GetRunTypelbTable() const {return fRunTypelbTable.Data();}
b948db8d 40
2c15234c 41 const char* GetFXSHost(Int_t system) const {return fFXSHost[system].Data();}
fc5a4708 42 UInt_t GetFXSPort(Int_t system) const {return fFXSPort[system];}
2c15234c 43 const char* GetFXSUser(Int_t system) const {return fFXSUser[system].Data();}
44 const char* GetFXSPass(Int_t system) const {return fFXSPass[system].Data();}
57f50b3c 45
2c15234c 46 const char* GetFXSdbHost(Int_t system) const {return fFXSdbHost[system].Data();}
fc5a4708 47 UInt_t GetFXSdbPort(Int_t system) const {return fFXSdbPort[system];}
2c15234c 48 const char* GetFXSdbUser(Int_t system) const {return fFXSdbUser[system].Data();}
49 const char* GetFXSdbPass(Int_t system) const {return fFXSdbPass[system].Data();}
50 const char* GetFXSdbName(Int_t system) const {return fFXSdbName[system].Data();}
51 const char* GetFXSdbTable(Int_t system) const {return fFXSdbTable[system].Data();}
d477ad88 52
2bb7b766 53 Int_t GetMaxRetries() const { return fMaxRetries; }
5164a766 54
cb343cfd 55 Int_t GetPPTimeOut() const { return fPPTimeOut; }
9827400b 56 Int_t GetPPMaxMem() const { return fPPMaxMem; }
cb343cfd 57
36c99a6a 58 const TObjArray* GetDetectors() const;
73abe331 59
60 Bool_t HasDetector(const char* detector) const;
b948db8d 61 const char* GetDCSHost(const char* detector) const;
62 Int_t GetDCSPort(const char* detector) const;
63 const TObjArray* GetDCSAliases(const char* detector) const;
2c15234c 64 const TObjArray* GetDCSDataPoints(const char* detector) const;
36c99a6a 65 const TObjArray* GetCompactDCSAliases(const char* detector) const;
66 const TObjArray* GetCompactDCSDataPoints(const char* detector) const;
57c1a579 67 const TObjArray* GetResponsibles(const char* detector) const;
be48e3ea 68 Bool_t StrictRunOrder(const char* detector) const;
b948db8d 69
70 void SetProcessAll(Bool_t flag=kTRUE) {fProcessAll=flag;}
58bc3020 71 Bool_t ProcessAll() const {return fProcessAll;}
b948db8d 72
73 Bool_t HostProcessDetector(const char* detector) const;
73abe331 74
75 virtual void Print(Option_t* option = NULL) const;
76
77private:
b948db8d 78
58bc3020 79 class AliShuttleConfigHolder: public TObject {
73abe331 80 public:
58bc3020 81 AliShuttleConfigHolder(const TLDAPEntry* entry);
82 ~AliShuttleConfigHolder();
73abe331 83
57f50b3c 84 const char* GetDetector() const {return fDetector.Data();}
85 const char* GetDCSHost() const {return fDCSHost.Data();}
86 Int_t GetDCSPort() const {return fDCSPort;}
2bb7b766 87 const TObjArray* GetDCSAliases() const {return fDCSAliases;}
2c15234c 88 const TObjArray* GetDCSDataPoints() const {return fDCSDataPoints;}
36c99a6a 89 const TObjArray* GetCompactDCSAliases() const {return fDCSAliasesComp;}
90 const TObjArray* GetCompactDCSDataPoints() const {return fDCSDataPointsComp;}
57c1a579 91 const TObjArray* GetResponsibles() const {return fResponsibles;}
73abe331 92
57f50b3c 93 Bool_t IsValid() const {return fIsValid;}
94 Bool_t SkipDCSQuery() const {return fSkipDCSQuery;}
be48e3ea 95 Bool_t StrictRunOrder() const {return fStrictRunOrder;}
73abe331 96
f59d2f8f 97 void ExpandAndAdd(TObjArray* target, const char* entry);
40150741 98
58bc3020 99 private:
100 TString fDetector; // Detector name
101 TString fDCSHost; // Host name of the DCS server
102 Int_t fDCSPort; // port of the DCS server
2bb7b766 103 TObjArray* fDCSAliases; // List of DCS aliases to be retrieved
2c15234c 104 TObjArray* fDCSDataPoints; // List of DCS data points to be retrieved
36c99a6a 105 TObjArray* fDCSAliasesComp; // Compact list of DCS aliases to be printed
106 TObjArray* fDCSDataPointsComp; // Compact list of DCS data points to be printed
57c1a579 107 TObjArray* fResponsibles; // List of email addresses of the detector's responsible(s)
58bc3020 108 Bool_t fIsValid; // flag for the validity of the configuration
57f50b3c 109 Bool_t fSkipDCSQuery; // flag - if TRUE (-> DCS config empty) skip DCS archive data query
be48e3ea 110 Bool_t fStrictRunOrder; // flag - if TRUE connect data in a strict run ordering
58bc3020 111
112
113 ClassDef(AliShuttleConfigHolder, 0);
73abe331 114 };
115
116
57f50b3c 117 Bool_t fIsValid; //! flag for the validity of the configuration
118
57c1a579 119 TString fConfigHost; //! Host of the Shuttle configuration LDAP server
120
57f50b3c 121 TString fDAQlbHost; //! Host of the DAQ logbook MySQL Server
fc5a4708 122 UInt_t fDAQlbPort; //! port of the DAQ logbook MySQL Server
57f50b3c 123 TString fDAQlbUser; //! username of the DAQ logbook MySQL Server
124 TString fDAQlbPass; //! password of the DAQ logbook MySQL Server
2c15234c 125 TString fDAQlbDB; //! DB name of the DAQ logbook MySQL Server
441b0e9c 126 TString fDAQlbTable; //! Table name of the DAQ logbook
127 TString fShuttlelbTable; //! Table name of the Shuttle logbook
128 TString fRunTypelbTable; //! Table name of the Run typr logbook
2c15234c 129
130 TString fFXSHost[3]; //! Host of the [DAQ, DCS, HLT] File eXchange Server
fc5a4708 131 UInt_t fFXSPort[3]; //! Port of the [DAQ, DCS, HLT] File eXchange Server
2c15234c 132 TString fFXSUser[3]; //! username of the [DAQ, DCS, HLT] File eXchange Server
133 TString fFXSPass[3]; //! password of the [DAQ, DCS, HLT] File eXchange Server
134
135 TString fFXSdbHost[3]; //! Host of the [DAQ, DCS, HLT] FXS database
fc5a4708 136 UInt_t fFXSdbPort[3]; //! Port of the [DAQ, DCS, HLT] FXS database
2c15234c 137 TString fFXSdbUser[3]; //! username of the [DAQ, DCS, HLT] FXS database
138 TString fFXSdbPass[3]; //! password of the [DAQ, DCS, HLT] FXS database
139 TString fFXSdbName[3]; //! name of the [DAQ, DCS, HLT] FXS database
140 TString fFXSdbTable[3]; //! Table name of the [DAQ, DCS, HLT] FXS database
b948db8d 141
cb343cfd 142 Int_t fMaxRetries; // number of retries of a failed preprocessor
143
9827400b 144 Int_t fPPTimeOut; // timeout until a preprocessor is killed
145 Int_t fPPMaxMem; // maximum allowed memory until a preprocessor is killed
d477ad88 146
be48e3ea 147 TMap fDetectorMap; //! Map of the detector-by-detector configuration
57f50b3c 148 TObjArray fDetectorList; //! List of detectors with valid configuration
b948db8d 149
57f50b3c 150 TString fShuttleInstanceHost; //! Instance of the SHUTTLE
151 TObjArray fProcessedDetectors; //! list of the detector to be processed by this machine
152 Bool_t fProcessAll; //! flag indicating that all detectors will be processed
73abe331 153
154 ClassDef(AliShuttleConfig, 0);
155};
156
157#endif
158