4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
11 // This class is the main manager for
12 // AliShuttle. It organizes the data retrieval
13 // from DCS and call the interface methods of
20 #include "AliShuttleInterface.h"
23 class AliShuttleConfig;
24 class AliPreprocessor;
27 class AliShuttle: public AliShuttleInterface {
29 AliShuttle(const AliShuttleConfig* config, UInt_t timeout = 5000, Int_t retries = 5);
30 virtual ~AliShuttle();
32 virtual void RegisterPreprocessor(AliPreprocessor* preprocessor);
34 Bool_t Process(Int_t run, UInt_t startTime, UInt_t endTime);
35 Bool_t Process(Int_t run, UInt_t startTime, UInt_t endTime,
36 const char* detector);
38 Int_t GetCurrentRun() const {return fCurrentRun;};
39 UInt_t GetCurrentStartTime() const {return fCurrentStartTime;};
40 UInt_t GetCurrentEndTime() const {return fCurrentEndTime;};
42 virtual UInt_t Store(const char* detector, TObject* object, AliCDBMetaData* metaData);
43 virtual const char* GetFile(Int_t system, const char* detector,
44 const char* id, const char* source);
45 virtual TList* GetFileSources(Int_t system, const char* detector, const char* id);
46 virtual void Log(const char* detector, const char* message);
48 static TString GetLocalURI () {return fgkLocalUri;}
49 static void SetLocalURI (TString localUri) {fgkLocalUri = localUri;}
53 AliShuttle(const AliShuttle& other);
54 AliShuttle& operator= (const AliShuttle& other);
56 static TString fgkLocalUri; // URI of the local backup storage location
58 void ClearLog() {fLog = "";}
59 void StoreLog(Int_t run);
60 const AliShuttleConfig* fConfig;
62 // AliCDBStorage* fLocalStorage;
64 UInt_t fTimeout; // DCS server connection timeout parameter
65 Int_t fRetries; // Number of DCS server connection retries
67 TMap fPreprocessorMap; // list of detector Preprocessors ("DET", "Preprocessor")
69 Int_t fCurrentRun; // run currenty processed
70 UInt_t fCurrentStartTime; // Run Start time
71 UInt_t fCurrentEndTime; // Run end time
73 TString fLog; // log message
75 Bool_t GetValueSet(const char* host, Int_t port, const char* alias,
78 ClassDef(AliShuttle, 0);