]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/AliShuttleConfig.h
o) Adding time out to the execution of the preprocessors: The Shuttle forks and the...
[u/mrichter/AliRoot.git] / SHUTTLE / AliShuttleConfig.h
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.
12 // For more info see AliShuttleConfig.cxx
13 //
14
15 #include <TObject.h>
16 #include <TString.h>
17 #include <TObjArray.h>
18 #include <TMap.h>
19 #include <TLDAPServer.h>
20
21 class AliShuttleConfig: public TObject {
22 public:
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");
26         virtual ~AliShuttleConfig();
27
28         Bool_t IsValid() const {return fIsValid;};
29
30         const char* GetDAQlbHost() const {return fDAQlbHost.Data();}
31         const char* GetDAQlbUser() const {return fDAQlbUser.Data();}
32         const char* GetDAQlbPass() const {return fDAQlbPass.Data();}
33
34         const char* GetFESHost(Int_t system) const {return fFESHost[system].Data();}
35         const char* GetFESUser(Int_t system) const {return fFESUser[system].Data();}
36         const char* GetFESPass(Int_t system) const {return fFESPass[system].Data();}
37
38         const char* GetFESlbHost(Int_t system) const {return fFESlbHost[system].Data();}
39         const char* GetFESlbUser(Int_t system) const {return fFESlbUser[system].Data();}
40         const char* GetFESlbPass(Int_t system) const {return fFESlbPass[system].Data();}
41
42         Int_t GetMaxRetries() const { return fMaxRetries; }
43
44         Int_t GetPPTimeOut() const { return fPPTimeOut; }
45
46   const TObjArray* GetDetectors() const;
47
48         Bool_t HasDetector(const char* detector) const;
49         const char* GetDCSHost(const char* detector) const;
50         Int_t GetDCSPort(const char* detector) const;
51         const TObjArray* GetDCSAliases(const char* detector) const;
52
53         void SetProcessAll(Bool_t flag=kTRUE) {fProcessAll=flag;}
54         Bool_t ProcessAll() const {return fProcessAll;}
55
56         Bool_t HostProcessDetector(const char* detector) const;
57
58         virtual void Print(Option_t* option = NULL) const;
59
60 private:
61
62         class AliShuttleConfigHolder: public TObject {
63         public:
64                 AliShuttleConfigHolder(const TLDAPEntry* entry);
65                 ~AliShuttleConfigHolder();
66
67                 const char* GetDetector() const {return fDetector.Data();}
68                 const char* GetDCSHost() const {return fDCSHost.Data();}
69                 Int_t GetDCSPort() const {return fDCSPort;}
70                 const TObjArray* GetDCSAliases() const {return fDCSAliases;}
71
72                 Bool_t IsValid() const {return fIsValid;}
73                 Bool_t SkipDCSQuery() const {return fSkipDCSQuery;}
74
75         private:
76                 TString fDetector;      // Detector name
77                 TString fDCSHost;       // Host name of the DCS server
78                 Int_t   fDCSPort;       // port of the DCS server
79                 TObjArray* fDCSAliases; // List of DCS aliases to be retrieved
80                 Bool_t fIsValid;        // flag for the validity of the configuration
81                 Bool_t fSkipDCSQuery;   // flag - if TRUE (-> DCS config empty) skip DCS archive data query
82
83
84                 ClassDef(AliShuttleConfigHolder, 0);
85         };
86
87
88         Bool_t fIsValid;                //! flag for the validity of the configuration
89
90         TString fDAQlbHost;             //! Host of the DAQ logbook MySQL Server
91         TString fDAQlbUser;             //! username of the DAQ logbook MySQL Server
92         TString fDAQlbPass;             //! password of the DAQ logbook MySQL Server
93
94         TString fFESHost[3];            //! Host of the [DAQ, DCS, HLT] File Exchange Server
95         TString fFESUser[3];            //! username of the [DAQ, DCS, HLT] File Exchange Server
96         TString fFESPass[3];            //! password of the [DAQ, DCS, HLT] File Exchange Server
97
98         TString fFESlbHost[3];          //! Host of the [DAQ, DCS, HLT] FES logbook
99         TString fFESlbUser[3];          //! username of the [DAQ, DCS, HLT] FES logbook
100         TString fFESlbPass[3];          //! password of the [DAQ, DCS, HLT] FES logbook
101
102         Int_t fMaxRetries;        // number of retries of a failed preprocessor
103
104         Int_t fPPTimeOut;         // timeout until a preprocessor is canceled
105
106   TMap fDetectorMap;            //! Map of the detector-by-detector configuration
107         TObjArray fDetectorList;        //! List of detectors with valid configuration
108
109         TString fShuttleInstanceHost;   //! Instance of the SHUTTLE
110         TObjArray fProcessedDetectors;  //! list of the detector to be processed by this machine
111         Bool_t fProcessAll;             //! flag indicating that all detectors will be processed
112
113         ClassDef(AliShuttleConfig, 0);
114 };
115
116 #endif
117