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