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