]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/AliShuttle.h
introducing status management: The processing per subdetector is divided into several...
[u/mrichter/AliRoot.git] / SHUTTLE / AliShuttle.h
1 #ifndef ALI_SHUTTLE_H
2 #define ALI_SHUTTLE_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 //
11 // This class is the main manager for 
12 // AliShuttle. It organizes the data retrieval
13 // from DCS and call the interface methods of
14 // AliPreprocessor.
15 //
16
17 #include <TMap.h>
18 #include <TString.h>
19 #include <TList.h>
20
21 #include "AliShuttleInterface.h"
22 #include "AliShuttleStatus.h"
23
24 class TObject;
25 class AliShuttleConfig;
26 class AliPreprocessor;
27 class AliCDBMetaData;
28 class TSQLServer;
29 class AliCDBEntry;
30
31 class AliShuttle: public AliShuttleInterface {
32 public:
33         AliShuttle(const AliShuttleConfig* config, UInt_t timeout = 5000, Int_t retries = 5);
34         virtual ~AliShuttle();
35
36         virtual void RegisterPreprocessor(AliPreprocessor* preprocessor);
37
38         Bool_t Process(Int_t run, UInt_t startTime, UInt_t endTime);
39         Bool_t Process();
40
41         Int_t GetCurrentRun() const {return fCurrentRun;};
42         UInt_t GetCurrentStartTime() const {return fCurrentStartTime;};
43         UInt_t GetCurrentEndTime() const {return fCurrentEndTime;};
44
45         virtual UInt_t Store(const char* detector, TObject* object, AliCDBMetaData* metaData, Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
46         virtual const char* GetFile(Int_t system, const char* detector,
47                 const char* id, const char* source);
48         virtual TList* GetFileSources(Int_t system, const char* detector, const char* id);
49         virtual void Log(const char* detector, const char* message);
50
51         static TString GetLocalURI () {return fgkLocalUri;}
52         static void SetLocalURI (TString localUri) {fgkLocalUri = localUri;}
53
54         // TODO Test only, remove later!
55         void SetCurrentRun(int run) {fCurrentRun=run;}
56
57         static const char* GetDetCode(const char* detector);
58         static const char* GetShuttleTempDir() {return fgkShuttleTempDir;}
59
60         Bool_t Connect(Int_t system);
61
62
63 private:
64         AliShuttle(const AliShuttle& other);
65         AliShuttle& operator= (const AliShuttle& other);
66
67         Bool_t GetValueSet(const char* host, Int_t port, const char* alias,
68                         TObjArray& result);
69
70         const char* GetDAQFileName(const char* detector, const char* id, const char* source);
71         Bool_t RetrieveDAQFile(const char* daqFileName, const char* localFileName);
72         TList* GetDAQFileSources(const char* detector, const char* id);
73         Bool_t UpdateDAQTable();
74
75         const char* GetDCSFileName(const char* detector, const char* id, const char* source);
76 //      Bool_t RetrieveDCSFile(const char* daqFileName const char* localFileName);
77         TList* GetDCSFileSources(const char* detector, const char* id);
78
79         const char* GetHLTFileName(const char* detector, const char* id, const char* source);
80 //      Bool_t RetrieveHLTFile(const char* daqFileName, const char* localFileName;
81         TList* GetHLTFileSources(const char* detector, const char* id);
82
83   AliShuttleStatus* ReadShuttleStatus();
84   void WriteShuttleStatus(AliShuttleStatus* status);
85   Bool_t ContinueProcessing();
86   void UpdateShuttleStatus(AliShuttleStatus::Status newStatus, Bool_t increaseCount = kFALSE);
87
88         const AliShuttleConfig* fConfig;        //! pointer to configuration object
89
90         static const Int_t fgkNDetectors = 17;                  //! number of detectors
91         static const char* fgkDetectorName[fgkNDetectors];      //! names of detectors
92         static const char* fgkDetectorCode[fgkNDetectors];      //! codes of detectors
93         static TString     fgkLocalUri;         //! URI of the local backup storage location
94         static const char* fgkShuttleTempDir;   //! base path of SHUTTLE temp folder
95         static const char* fgkShuttleLogDir;    //! path of SHUTTLE log folder
96
97         UInt_t fTimeout;        //! DCS server connection timeout parameter
98         Int_t fRetries;         //! Number of DCS server connection retries
99
100         TMap fPreprocessorMap;  //! list of detector Preprocessors ("DET", "Preprocessor")
101
102         Int_t fCurrentRun;              //! run currenty processed
103         UInt_t fCurrentStartTime;       //! Run Start time
104         UInt_t fCurrentEndTime;         //! Run end time
105
106   TString fCurrentDetector; // current detector
107
108         TSQLServer *fServer[3];         //! pointer to the three FS logbook servers
109
110         Bool_t fFESCalled[3];           //! FES call status
111         TList  fFESlist[3];             //! List of files retrieved from each FES
112
113   AliCDBEntry* fStatusEntry; //! last CDB entry containing a AliShuttleStatus retrieved
114
115         ClassDef(AliShuttle, 0);
116 };
117
118 #endif