]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/AliShuttle.h
Updating DCS server.
[u/mrichter/AliRoot.git] / SHUTTLE / AliShuttle.h
CommitLineData
73abe331 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
a7160fe9 14// AliPreprocessor.
73abe331 15//
16
73abe331 17#include <TMap.h>
b948db8d 18#include <TString.h>
57f50b3c 19#include <TList.h>
b948db8d 20
21#include "AliShuttleInterface.h"
5164a766 22#include "AliShuttleStatus.h"
73abe331 23
58bc3020 24class TObject;
73abe331 25class AliShuttleConfig;
2bb7b766 26class AliShuttleLogbookEntry;
b948db8d 27class AliPreprocessor;
57f50b3c 28class TSQLServer;
cb343cfd 29class TMutex;
e7f62f16 30class TMonaLisaWriter;
73abe331 31
b948db8d 32class AliShuttle: public AliShuttleInterface {
73abe331 33public:
2c15234c 34 enum DCSType {kAlias=0, kDP};
9827400b 35 enum TestMode { kNone = 0, kSkipDCS = 1, kErrorDCS = 2, kErrorFXSSources = 4, kErrorFXSFiles = 8, kErrorOCDB = 16, kErrorStorage = 32, kErrorGrid = 64 };
339adafa 36 enum EMailTarget { kDCSEMail = 0, kFXSEMail, kPPEMail };
2c15234c 37
b948db8d 38 AliShuttle(const AliShuttleConfig* config, UInt_t timeout = 5000, Int_t retries = 5);
73abe331 39 virtual ~AliShuttle();
40
b948db8d 41 virtual void RegisterPreprocessor(AliPreprocessor* preprocessor);
42
cb343cfd 43 Bool_t Collect(Int_t run = -1);
2bb7b766 44
45 Bool_t Process(AliShuttleLogbookEntry* entry);
73abe331 46
cb343cfd 47 // monitoring functions
48 ULong_t GetTimeOfLastAction() const;
49 const TString GetLastAction() const;
50
2bb7b766 51 Int_t GetCurrentRun() const;
52 UInt_t GetCurrentStartTime() const;
53 UInt_t GetCurrentEndTime() const;
675f64cd 54 UInt_t GetCurrentYear() const;
55
56 const char* GetLHCPeriod() const;
73abe331 57
3301427a 58 virtual Bool_t Store(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData,
84090f85 59 Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
3301427a 60 virtual Bool_t StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData);
9827400b 61 virtual Bool_t StoreReferenceFile(const char* detector, const char* localFile, const char* gridFileName);
c88ad5db 62 virtual Bool_t StoreRunMetadataFile(const char* localFile, const char* gridFileName);
b948db8d 63 virtual const char* GetFile(Int_t system, const char* detector,
64 const char* id, const char* source);
4a33bdd9 65 virtual TList* GetFileSources(Int_t system, const char* detector, const char* id = 0);
66 virtual TList* GetFileIDs(Int_t system, const char* detector, const char* source);
eba76848 67 virtual const char* GetRunParameter(const char* lbEntry);
f100adeb 68 virtual UInt_t GetStartTimeDCSQuery();
69 virtual UInt_t GetEndTimeDCSQuery();
9827400b 70 virtual AliCDBEntry* GetFromOCDB(const char* detector, const AliCDBPath& path);
71 virtual const char* GetRunType();
4859271b 72 virtual Bool_t GetHLTStatus();
ca8ea066 73 virtual const char* GetTriggerConfiguration();
2c5f9d06 74 virtual const char* GetCTPTimeParams();
b48d2542 75 virtual const char* GetTriggerDetectorMask();
6a150f83 76 virtual void Log(const char* detector, const char* message, UInt_t level=3);
b948db8d 77
eba76848 78 void SetLogbookEntry(AliShuttleLogbookEntry* entry) {fLogbookEntry=entry;}
9827400b 79
80 void SetTestMode(TestMode testMode) { fTestMode = testMode; }
81 void SetReadTestModeFromLog(Bool_t flag) { fReadTestMode = flag; }
57f50b3c 82
57f50b3c 83 Bool_t Connect(Int_t system);
84
d386d623 85 static void SetMainCDB (TString mainCDB) {fgkMainCDB = mainCDB;}
86 static void SetLocalCDB (TString localCDB) {fgkLocalCDB = localCDB;}
87
88 static void SetMainRefStorage (TString mainRefStorage) {fgkMainRefStorage = mainRefStorage;}
89 static void SetLocalRefStorage (TString localRefStorage) {fgkLocalRefStorage = localRefStorage;}
90
91 static void SetShuttleTempDir (const char* tmpDir);
92 static void SetShuttleLogDir (const char* logDir);
93
0886cf2f 94 virtual void SendMLFromDet(const char* value);
95
73abe331 96private:
57f50b3c 97 AliShuttle(const AliShuttle& other);
98 AliShuttle& operator= (const AliShuttle& other);
99
ffa25f20 100 Int_t ProcessCurrentDetector();
2bb7b766 101
eba76848 102 AliShuttleLogbookEntry* QueryRunParameters(Int_t run);
2bb7b766 103 Bool_t QueryShuttleLogbook(const char* whereClause, TObjArray& entries);
fbc112e3 104 void CountOpenRuns();
2bb7b766 105 Bool_t RetrieveConditionsData(const TObjArray& shuttleLogbookEntries);
106
a038aa70 107 TMap* GetValueSet(const char* host, Int_t port, const TSeqCollection* entries,
542b6cc8 108 DCSType type, Int_t valueSet);
57f50b3c 109
9d733021 110 Bool_t RetrieveFile(UInt_t system, const char* daqFileName, const char* localFileName);
111
112 Bool_t UpdateTable();
bd23d48b 113 Bool_t UpdateTableSkippedCase(const char* detector="ALL");
3301427a 114 Bool_t UpdateTableFailCase();
57f50b3c 115
3301427a 116 Bool_t StoreLocally(const TString& localUri, const AliCDBPath& path, TObject* object,
117 AliCDBMetaData* metaData, Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
85a80aa9 118
3301427a 119 Bool_t StoreOCDB();
5e993b6f 120 Int_t StoreOCDB(const TString& uri);
d524ade6 121 Bool_t CopyFileLocally(const char* localFile, const TString& target);
c88ad5db 122 Bool_t CopyFilesToGrid(const char* type);
3301427a 123 void CleanLocalStorage(const TString& uri);
546242fb 124 Bool_t CleanReferenceStorage(const char* detector);
3301427a 125 void RemoveFile(const char* filename);
2d9019b4 126 const char* GetRefFilePrefix(const char* base, const char* detector);
2bb7b766 127
e7f62f16 128 AliShuttleStatus* ReadShuttleStatus();
129 Bool_t WriteShuttleStatus(AliShuttleStatus* status);
130 Bool_t ContinueProcessing();
131 void UpdateShuttleStatus(AliShuttleStatus::Status newStatus, Bool_t increaseCount = kFALSE);
132 Bool_t UpdateShuttleLogbook(const char* detector, const char* status=0);
339adafa 133 Bool_t SendMail(EMailTarget target, Int_t system = -1);
ef83773f 134 Int_t GetMem(Int_t pid);
ffa29e93 135
136 TString GetLogFileName(const char* detector) const;
57c1a579 137
e7f62f16 138 void SetLastAction(const char* action);
139
ee6f7523 140 void SendAlive();
8e828d39 141 void SendMLDetInfo();
142 void SendMLRunInfo(const char* status);
503ff24f 143 virtual Bool_t TouchFile();
b948db8d 144
2bb7b766 145 const AliShuttleConfig* fConfig; // pointer to configuration object
73abe331 146
2bb7b766 147 UInt_t fTimeout; // DCS server connection timeout parameter
148 Int_t fRetries; // Number of DCS server connection retries
5164a766 149
2bb7b766 150 TMap fPreprocessorMap; // list of detector Preprocessors ("DET", "Preprocessor")
57f50b3c 151
2bb7b766 152 AliShuttleLogbookEntry* fLogbookEntry; //! current Shuttle logbook entry
153 TString fCurrentDetector; // current detector
926cbc0e 154 Bool_t fFirstProcessing; // processing this detector the first time in this run
57f50b3c 155
2c15234c 156 TSQLServer *fServer[4]; // pointer to the three FXS + Run & Shuttle logbook servers
157 Bool_t fFXSCalled[3]; // FXS call status
158 TList fFXSlist[3]; // List of files retrieved from each FXS
339adafa 159 Int_t fFXSError; // Variable to keep track of any FXS errors; contains -1 for no error, kDAQ, kDCS, kHLT otherwise
85a80aa9 160
2bb7b766 161 AliCDBEntry* fStatusEntry; // last CDB entry containing a AliShuttleStatus retrieved
be48e3ea 162
cb343cfd 163 TMutex* fMonitoringMutex; // mutex to lock the monitoring class members
164 UInt_t fLastActionTime; // time of last action for monitoring
165 TString fLastAction; // string description for last action
4f0ab988 166
be48e3ea 167 Bool_t fFirstUnprocessed[AliShuttleInterface::kNDetectors]; // array of flags for first unprocessed dets
168
e7f62f16 169 TMonaLisaWriter* fMonaLisa; // ML instance that sends the processing information
170
9827400b 171 TestMode fTestMode; // sets test mode flags, that e.g. simulate a dcs error etc.
172 Bool_t fReadTestMode; // Reads the test mode from the log entry of the given run (only for test)
ffa29e93 173
174 Bool_t fOutputRedirected; // is the output redirected to a file
b948db8d 175
73abe331 176 ClassDef(AliShuttle, 0);
177};
178
179#endif