]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliCDBManager.h
silvermy@ornl.gov - SMcalib - directory with tools for SuperModule calibrations at...
[u/mrichter/AliRoot.git] / STEER / AliCDBManager.h
index a9c1336fe17e6c9e22dea80c8517a1f276a92738..bfa1ce230ac06fabaac3a1806e7bb758141be92c 100644 (file)
@@ -26,26 +26,33 @@ class AliCDBParam;
 class AliCDBManager: public TObject {
 
  public:
+       enum DataType {kCondition=0, kReference, kPrivate};
 
        void RegisterFactory(AliCDBStorageFactory* factory);
 
        Bool_t HasStorage(const char* dbString) const;
 
        AliCDBParam* CreateParameter(const char* dbString) const;
+       AliCDBParam* GetCondParam() const {return fCondParam;}
+       AliCDBParam* GetRefParam() const {return fRefParam;}
+       static const char* GetDataTypeName(DataType type);
 
        AliCDBStorage* GetStorage(const char* dbString);
        AliCDBStorage* GetStorage(const AliCDBParam* param);
-       
+
        TList* GetActiveStorages();
 
+       const TMap* GetStorageMap() const {return fStorageMap;}
+       const TList* GetRetrievedIds() const {return fIds;}
+
        void SetDefaultStorage(const char* dbString);
        void SetDefaultStorage(const AliCDBParam* param);
        void SetDefaultStorage(AliCDBStorage *storage);
-       
+
        Bool_t IsDefaultStorageSet() const {return fDefaultStorage != 0;}
        AliCDBStorage* GetDefaultStorage() const {return fDefaultStorage;}
-       void UnsetDefaultStorage() {fDefaultStorage = 0x0;}
-       
+       void UnsetDefaultStorage();
+
        void SetSpecificStorage(const char* calibType, const char* dbString);
        void SetSpecificStorage(const char* calibType, AliCDBParam* param);
 
@@ -62,63 +69,99 @@ class AliCDBManager: public TObject {
        void UnsetDrain(){fDrainStorage = 0x0;}
 
        AliCDBEntry* Get(const AliCDBId& query);
-       AliCDBEntry* Get(const AliCDBPath& path, Int_t runNumber=-1, 
+       AliCDBEntry* Get(const AliCDBPath& path, Int_t runNumber=-1,
                                Int_t version = -1, Int_t subVersion = -1);
        AliCDBEntry* Get(const AliCDBPath& path, const AliCDBRunRange& runRange,
                                 Int_t version = -1, Int_t subVersion = -1);
 
+       const char* GetURI(const char* path);                            
+                                
+       AliCDBId* GetId(const AliCDBId& query);
+       AliCDBId* GetId(const AliCDBPath& path, Int_t runNumber=-1,
+                               Int_t version = -1, Int_t subVersion = -1);
+       AliCDBId* GetId(const AliCDBPath& path, const AliCDBRunRange& runRange,
+                                Int_t version = -1, Int_t subVersion = -1);
+
        TList* GetAll(const AliCDBId& query);
-       TList* GetAll(const AliCDBPath& path, Int_t runNumber=-1, 
+       TList* GetAll(const AliCDBPath& path, Int_t runNumber=-1,
                                Int_t version = -1, Int_t subVersion = -1);
        TList* GetAll(const AliCDBPath& path, const AliCDBRunRange& runRange,
                                 Int_t version = -1, Int_t subVersion = -1); 
 
-       Bool_t Put(TObject* object, AliCDBId& id,  AliCDBMetaData* metaData);
-       Bool_t Put(AliCDBEntry* entry);
-               
+       Bool_t Put(TObject* object, AliCDBId& id,
+                       AliCDBMetaData* metaData, DataType type=kPrivate);
+       Bool_t Put(AliCDBEntry* entry, DataType type=kPrivate);
+
        void SetCacheFlag(Bool_t cacheFlag) {fCache=cacheFlag;}
        Bool_t GetCacheFlag() const {return fCache;}
+       
+       void SetLock(Bool_t lockFlag=kTRUE);
+       Bool_t GetLock() const {return fLock;}
 
-       void SetRun(Long64_t run);
-       Long64_t GetRun() const {return fRun;}
-
-       // AliCDBEntry* Get(const char* path);
+       void SetRun(Int_t run);
+       Int_t GetRun() const {return fRun;}
 
        void DestroyActiveStorages();
        void DestroyActiveStorage(AliCDBStorage* storage);
-       
+
+       void QueryCDB();
+
+       void Print(Option_t* option="") const;
+
        static void Destroy();
        ~AliCDBManager();
 
-       static AliCDBManager* Instance(); 
+       void ClearCache();
+       void UnloadFromCache(const char* path);
+       const TMap* GetEntryCache() const {return &fEntryCache;}
+
+       Bool_t IsShortLived(const char* path);
+
+       static AliCDBManager* Instance(TMap *entryCache = NULL, Int_t run = -1);
 
  private:
-               
+
+       static TString fgkCondUri;      // URI of the Conditions data base folder
+       static TString fgkRefUri;       // URI of the Reference data base folder
+
        AliCDBManager();
+       AliCDBManager(const AliCDBManager & source);
+       AliCDBManager & operator=(const AliCDBManager & source);
+
        static AliCDBManager* fgInstance; // AliCDBManager instance
        
        AliCDBStorage* GetActiveStorage(const AliCDBParam* param);
        void PutActiveStorage(AliCDBParam* param, AliCDBStorage* storage);
-       
-       void ClearCache();
+
        void CacheEntry(const char* path, AliCDBEntry* entry);
-       
+
        AliCDBParam* SelectSpecificStorage(const TString& path);
        
 
        void Init();
-       
+       void InitShortLived();
+       void InitFromCache(TMap *entryCache, Int_t run);
+
+
        TList fFactories;               //! list of registered storage factories
        TMap fActiveStorages;           //! list of active storages
        TMap fSpecificStorages;         //! list of detector-specific storages
+       TMap fEntryCache;               //! cache of the retrieved objects
+
+       TList* fIds;            //! List of the retrieved object Id's (to be streamed to file)
+       TMap* fStorageMap;      //! list of storages (to be streamed to file)
+       TList* fShortLived;     //! List of short lived objects
 
        AliCDBStorage *fDefaultStorage; //! pointer to default storage
        AliCDBStorage *fDrainStorage;   //! pointer to drain storage
 
-       TMap fEntryCache;       //! cache of the retrieved objects
+       AliCDBParam* fCondParam;        // Conditions data storage parameters
+       AliCDBParam* fRefParam;         // Reference data storage parameters
 
+       Int_t fRun;                     //! The run number
        Bool_t fCache;                  //! The cache flag
-       Long64_t fRun;                  //! The run number
+       Bool_t fLock;   //! Lock flag, if ON default storage and run number cannot be reset
+
 
        ClassDef(AliCDBManager, 0);
 };
@@ -170,8 +213,8 @@ protected:
 
 private:
 
-       TString fType; // CDB type
-       TString fURI;  // CDB URI
+       TString fType; //! CDB type
+       TString fURI;  //! CDB URI
 
        ClassDef(AliCDBParam, 0);
 };