1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
19 // This class is the main manager for AliShuttle.
20 // It organizes the data retrieval from DCS and call the
21 // interface methods of AliPreprocessor.
22 // For every detector in AliShuttleConfgi (see AliShuttleConfig),
23 // data for its set of aliases is retrieved. If there is registered
24 // AliPreprocessor for this detector then it will be used
25 // accroding to the schema (see AliPreprocessor).
26 // If there isn't registered AliPreprocessor than the retrieved
27 // data is stored automatically to the undelying AliCDBStorage.
28 // For detSpec is used the alias name.
31 #include "AliShuttle.h"
33 #include "AliCDBManager.h"
34 #include "AliCDBStorage.h"
36 #include "AliCDBRunRange.h"
37 #include "AliCDBPath.h"
38 #include "AliCDBEntry.h"
39 #include "AliShuttleConfig.h"
40 #include "DCSClient/AliDCSClient.h"
42 #include "AliPreprocessor.h"
43 #include "AliShuttleStatus.h"
44 #include "AliShuttleLogbookEntry.h"
49 #include <TTimeStamp.h>
50 #include <TObjString.h>
51 #include <TSQLServer.h>
52 #include <TSQLResult.h>
55 #include <TSystemDirectory.h>
56 #include <TSystemFile.h>
59 #include <TGridResult.h>
62 #include <TMonaLisaWriter.h>
66 #include <sys/types.h>
73 //______________________________________________________________________________________________
74 AliShuttle::AliShuttle(const AliShuttleConfig* config,
75 UInt_t timeout, Int_t retries):
77 fTimeout(timeout), fRetries(retries),
89 fReadTestMode(kFALSE),
90 fOutputRedirected(kFALSE)
93 // config: AliShuttleConfig used
94 // timeout: timeout used for AliDCSClient connection
95 // retries: the number of retries in case of connection error.
98 if (!fConfig->IsValid()) AliFatal("********** !!!!! Invalid configuration !!!!! **********");
99 for(int iSys=0;iSys<4;iSys++) {
102 fFXSlist[iSys].SetOwner(kTRUE);
104 fPreprocessorMap.SetOwner(kTRUE);
106 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
107 fFirstUnprocessed[iDet] = kFALSE;
109 fMonitoringMutex = new TMutex();
112 //______________________________________________________________________________________________
113 AliShuttle::~AliShuttle()
119 fPreprocessorMap.DeleteAll();
120 for(int iSys=0;iSys<4;iSys++)
122 fServer[iSys]->Close();
123 delete fServer[iSys];
132 if (fMonitoringMutex)
134 delete fMonitoringMutex;
135 fMonitoringMutex = 0;
139 //______________________________________________________________________________________________
140 void AliShuttle::RegisterPreprocessor(AliPreprocessor* preprocessor)
143 // Registers new AliPreprocessor.
144 // It uses GetName() for indentificator of the pre processor.
145 // The pre processor is registered it there isn't any other
146 // with the same identificator (GetName()).
149 const char* detName = preprocessor->GetName();
150 if(GetDetPos(detName) < 0)
151 AliFatal(Form("********** !!!!! Invalid detector name: %s !!!!! **********", detName));
153 if (fPreprocessorMap.GetValue(detName)) {
154 AliWarning(Form("AliPreprocessor %s is already registered!", detName));
158 fPreprocessorMap.Add(new TObjString(detName), preprocessor);
160 //______________________________________________________________________________________________
161 Bool_t AliShuttle::Store(const AliCDBPath& path, TObject* object,
162 AliCDBMetaData* metaData, Int_t validityStart, Bool_t validityInfinite)
164 // Stores a CDB object in the storage for offline reconstruction. Objects that are not needed for
165 // offline reconstruction, but should be stored anyway (e.g. for debugging) should NOT be stored
166 // using this function. Use StoreReferenceData instead!
167 // It calls StoreLocally function which temporarily stores the data locally; when the preprocessor
168 // finishes the data are transferred to the main storage (Grid).
170 return StoreLocally(fgkLocalCDB, path, object, metaData, validityStart, validityInfinite);
173 //______________________________________________________________________________________________
174 Bool_t AliShuttle::StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData)
176 // Stores a CDB object in the storage for reference data. This objects will not be available during
177 // offline reconstrunction. Use this function for reference data only!
178 // It calls StoreLocally function which temporarily stores the data locally; when the preprocessor
179 // finishes the data are transferred to the main storage (Grid).
181 return StoreLocally(fgkLocalRefStorage, path, object, metaData);
184 //______________________________________________________________________________________________
185 Bool_t AliShuttle::StoreLocally(const TString& localUri,
186 const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData,
187 Int_t validityStart, Bool_t validityInfinite)
189 // Store object temporarily in local storage. Parameters are passed by Store and StoreReferenceData functions.
190 // when the preprocessor finishes the data are transferred to the main storage (Grid).
191 // The parameters are:
192 // 1) Uri of the backup storage (Local)
193 // 2) the object's path.
194 // 3) the object to be stored
195 // 4) the metaData to be associated with the object
196 // 5) the validity start run number w.r.t. the current run,
197 // if the data is valid only for this run leave the default 0
198 // 6) specifies if the calibration data is valid for infinity (this means until updated),
199 // typical for calibration runs, the default is kFALSE
201 // returns 0 if fail, 1 otherwise
203 if (fTestMode & kErrorStorage)
205 Log(fCurrentDetector, "StoreLocally - In TESTMODE - Simulating error while storing locally");
209 const char* cdbType = (localUri == fgkLocalCDB) ? "CDB" : "Reference";
211 Int_t firstRun = GetCurrentRun() - validityStart;
213 AliWarning("First valid run happens to be less than 0! Setting it to 0.");
218 if(validityInfinite) {
219 lastRun = AliCDBRunRange::Infinity();
221 lastRun = GetCurrentRun();
224 // Version is set to current run, it will be used later to transfer data to Grid
225 AliCDBId id(path, firstRun, lastRun, GetCurrentRun(), -1);
227 if(! dynamic_cast<TObjString*> (metaData->GetProperty("RunUsed(TObjString)"))){
228 TObjString runUsed = Form("%d", GetCurrentRun());
229 metaData->SetProperty("RunUsed(TObjString)", runUsed.Clone());
232 Bool_t result = kFALSE;
234 if (!(AliCDBManager::Instance()->GetStorage(localUri))) {
235 Log("SHUTTLE", Form("StoreLocally - Cannot activate local %s storage", cdbType));
237 result = AliCDBManager::Instance()->GetStorage(localUri)
238 ->Put(object, id, metaData);
243 Log(fCurrentDetector, Form("StoreLocally - Can't store object <%s>!", id.ToString().Data()));
249 //______________________________________________________________________________________________
250 Bool_t AliShuttle::StoreOCDB()
253 // Called when preprocessor ends successfully or when previous storage attempt failed (kStoreError status)
254 // Calls underlying StoreOCDB(const char*) function twice, for OCDB and Reference storage.
255 // Then calls StoreRefFilesToGrid to store reference files.
258 UpdateShuttleStatus(AliShuttleStatus::kStoreStarted);
260 if (fTestMode & kErrorGrid)
262 Log("SHUTTLE", "StoreOCDB - In TESTMODE - Simulating error while storing in the Grid");
263 Log(fCurrentDetector, "StoreOCDB - In TESTMODE - Simulating error while storing in the Grid");
267 Log("SHUTTLE","StoreOCDB - Storing OCDB data ...");
268 Int_t resultCDB = StoreOCDB(fgkMainCDB);
270 Log("SHUTTLE","StoreOCDB - Storing reference data ...");
271 Int_t resultRef = StoreOCDB(fgkMainRefStorage);
273 Log("SHUTTLE","StoreOCDB - Storing reference files ...");
274 Bool_t resultRefFiles = CopyFilesToGrid("reference");
276 Bool_t resultMetadata = kTRUE;
277 if(fCurrentDetector == "GRP")
279 Log("StoreOCDB - SHUTTLE","Storing Run Metadata file ...");
280 resultMetadata = CopyFilesToGrid("metadata");
283 Int_t storeResult = 0;
285 if (resultCDB < 0 || resultRef < 0 || resultRefFiles == kFALSE || resultMetadata == kFALSE)
287 else if (resultCDB > 0 || resultRef > 0)
293 Form("\t\t\t****** run %d - %s: STORAGE ERROR ******",
294 GetCurrentRun(), fCurrentDetector.Data()));
295 UpdateShuttleStatus(AliShuttleStatus::kStoreError);
297 else if (storeResult > 0)
300 Form("\t\t\t****** run %d - %s: STORAGE DELAYED ******",
301 GetCurrentRun(), fCurrentDetector.Data()));
302 UpdateShuttleStatus(AliShuttleStatus::kStoreDelayed);
304 else if (storeResult == 0)
307 Form("\t\t\t****** run %d - %s: DONE ******",
308 GetCurrentRun(), fCurrentDetector.Data()));
309 UpdateShuttleStatus(AliShuttleStatus::kDone);
310 UpdateShuttleLogbook(fCurrentDetector, "DONE");
313 return (storeResult == 0);
316 //______________________________________________________________________________________________
317 Int_t AliShuttle::StoreOCDB(const TString& gridURI)
320 // Called by StoreOCDB(), performs actual storage to the main OCDB and reference storages (Grid)
323 // -2 initialization error
326 // 1 storage delayed (e.g. previous unprocessed runs)
329 TObjArray* gridIds=0;
331 Bool_t result = kTRUE;
332 Bool_t delayed = kFALSE;
334 const char* type = 0;
336 if(gridURI == fgkMainCDB) {
338 localURI = fgkLocalCDB;
339 } else if(gridURI == fgkMainRefStorage) {
341 localURI = fgkLocalRefStorage;
343 AliError(Form("Invalid storage URI: %s", gridURI.Data()));
347 AliCDBManager* man = AliCDBManager::Instance();
349 AliCDBStorage *gridSto = man->GetStorage(gridURI);
352 Form("StoreOCDB - cannot activate main %s storage", type));
356 gridIds = gridSto->GetQueryCDBList();
358 // get objects previously stored in local CDB
359 AliCDBStorage *localSto = man->GetStorage(localURI);
362 Form("StoreOCDB - cannot activate local %s storage", type));
365 AliCDBPath aPath(GetOfflineDetName(fCurrentDetector.Data()),"*","*");
366 // Local objects were stored with current run as Grid version!
367 TList* localEntries = localSto->GetAll(aPath.GetPath(), GetCurrentRun(), GetCurrentRun());
368 localEntries->SetOwner(1);
370 // loop on local stored objects
371 TIter localIter(localEntries);
372 AliCDBEntry *aLocEntry = 0;
373 while((aLocEntry = dynamic_cast<AliCDBEntry*> (localIter.Next()))){
374 aLocEntry->SetOwner(1);
375 AliCDBId aLocId = aLocEntry->GetId();
376 aLocEntry->SetVersion(-1);
377 aLocEntry->SetSubVersion(-1);
379 // If local object is valid up to infinity we store it only if it is
380 // the first unprocessed run!
381 if (aLocId.GetLastRun() == AliCDBRunRange::Infinity() &&
382 !fFirstUnprocessed[GetDetPos(fCurrentDetector)])
384 Log("SHUTTLE", Form("StoreOCDB - %s: object %s has validity infinite but "
385 "there are previous unprocessed runs!",
386 fCurrentDetector.Data(), aLocId.GetPath().Data()));
387 Log(fCurrentDetector.Data(), Form("StoreOCDB - %s: object %s has validity infinite but "
388 "there are previous unprocessed runs!",
389 fCurrentDetector.Data(), aLocId.GetPath().Data()));
394 // loop on Grid valid Id's
395 Bool_t store = kTRUE;
396 TIter gridIter(gridIds);
397 AliCDBId* aGridId = 0;
398 while((aGridId = dynamic_cast<AliCDBId*> (gridIter.Next()))){
399 if(aGridId->GetPath() != aLocId.GetPath()) continue;
400 // skip all objects valid up to infinity
401 if(aGridId->GetLastRun() == AliCDBRunRange::Infinity()) continue;
402 // if we get here, it means there's already some more recent object stored on Grid!
407 // If we get here, the file can be stored!
408 Bool_t storeOk = gridSto->Put(aLocEntry);
409 if(!store || storeOk){
413 Log(fCurrentDetector.Data(),
414 Form("StoreOCDB - A more recent object already exists in %s storage: <%s>",
415 type, aGridId->ToString().Data()));
418 Form("StoreOCDB - Object <%s> successfully put into %s storage",
419 aLocId.ToString().Data(), type));
420 Log(fCurrentDetector.Data(),
421 Form("StoreOCDB - Object <%s> successfully put into %s storage",
422 aLocId.ToString().Data(), type));
425 // removing local filename...
427 localSto->IdToFilename(aLocId, filename);
428 Log("SHUTTLE", Form("StoreOCDB - Removing local file %s", filename.Data()));
429 RemoveFile(filename.Data());
433 Form("StoreOCDB - Grid %s storage of object <%s> failed",
434 type, aLocId.ToString().Data()));
435 Log(fCurrentDetector.Data(),
436 Form("StoreOCDB - Grid %s storage of object <%s> failed",
437 type, aLocId.ToString().Data()));
441 localEntries->Clear();
443 Int_t returnCode = 0;
445 if (result == kFALSE)
447 else if (delayed != kFALSE)
450 Log("SHUTTLE", Form("StoreOCDB - Returning with %d (result = %d, delayed = %d)", returnCode, result, delayed));
451 Log(fCurrentDetector.Data(), Form("StoreOCDB - Returning with %d (result = %d, delayed = %d)", returnCode, result, delayed));
456 //______________________________________________________________________________________________
457 Bool_t AliShuttle::CleanReferenceStorage(const char* detector)
459 // clears the directory used to store reference files of a given subdetector
461 AliCDBManager* man = AliCDBManager::Instance();
462 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
463 TString localBaseFolder = sto->GetBaseFolder();
465 TString targetDir = GetRefFilePrefix(localBaseFolder.Data(), detector);
467 Log("SHUTTLE", Form("CleanReferenceStorage - Cleaning %s", targetDir.Data()));
470 begin.Form("%d_", GetCurrentRun());
472 TSystemDirectory* baseDir = new TSystemDirectory("/", targetDir);
476 TList* dirList = baseDir->GetListOfFiles();
479 if (!dirList) return kTRUE;
481 if (dirList->GetEntries() < 3)
487 Int_t nDirs = 0, nDel = 0;
488 TIter dirIter(dirList);
489 TSystemFile* entry = 0;
491 Bool_t success = kTRUE;
493 while ((entry = dynamic_cast<TSystemFile*> (dirIter.Next())))
495 if (entry->IsDirectory())
498 TString fileName(entry->GetName());
499 if (!fileName.BeginsWith(begin))
505 Int_t result = gSystem->Unlink(fileName.Data());
509 Log("SHUTTLE", Form("CleanReferenceStorage - Could not delete file %s!", fileName.Data()));
517 Log("SHUTTLE", Form("CleanReferenceStorage - %d (over %d) reference files in folder %s were deleted.",
518 nDel, nDirs, targetDir.Data()));
529 Int_t result = gSystem->GetPathInfo(targetDir, 0, (Long64_t*) 0, 0, 0);
533 result = gSystem->Exec(Form("rm -rf %s", targetDir.Data()));
536 Log("SHUTTLE", Form("CleanReferenceStorage - Could not clean directory %s", targetDir.Data()));
541 result = gSystem->mkdir(targetDir, kTRUE);
544 Log("SHUTTLE", Form("CleanReferenceStorage - Error creating base directory %s", targetDir.Data()));
551 //______________________________________________________________________________________________
552 Bool_t AliShuttle::StoreReferenceFile(const char* detector, const char* localFile, const char* gridFileName)
555 // Stores reference file directly (without opening it). This function stores the file locally.
557 // The file is stored under the following location:
558 // <base folder of local reference storage>/<DET>/<RUN#>_<gridFileName>
559 // where <gridFileName> is the second parameter given to the function
562 if (fTestMode & kErrorStorage)
564 Log(fCurrentDetector, "StoreReferenceFile - In TESTMODE - Simulating error while storing locally");
568 AliCDBManager* man = AliCDBManager::Instance();
569 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
571 TString localBaseFolder = sto->GetBaseFolder();
573 TString target = GetRefFilePrefix(localBaseFolder.Data(), detector);
574 target.Append(Form("/%d_%s", GetCurrentRun(), gridFileName));
576 return CopyFileLocally(localFile, target);
579 //______________________________________________________________________________________________
580 Bool_t AliShuttle::StoreRunMetadataFile(const char* localFile, const char* gridFileName)
583 // Stores Run metadata file to the Grid, in the run folder
585 // Only GRP can call this function.
587 if (fTestMode & kErrorStorage)
589 Log(fCurrentDetector, "StoreRunMetaDataFile - In TESTMODE - Simulating error while storing locally");
593 AliCDBManager* man = AliCDBManager::Instance();
594 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
596 TString localBaseFolder = sto->GetBaseFolder();
598 // Build Run level folder
599 // folder = /alice/data/year/lhcPeriod/runNb/raw
602 TString lhcPeriod = GetLHCPeriod();
603 if (lhcPeriod.Length() == 0)
605 Log("SHUTTLE","StoreRunMetaDataFile - LHCPeriod not found in logbook!");
609 // TODO partitions with one detector only write data into LHCperiod_DET
610 TString partition = GetRunParameter("detector");
612 if (partition.Length() > 0 && partition != "ALICE")
614 lhcPeriod.Append(Form("_%s", partition.Data()));
615 Log(fCurrentDetector, Form("Run data tags merged file will be written in %s",
619 TString target = Form("%s/GRP/RunMetadata%s%d/%s/%09d/raw/%s",
620 localBaseFolder.Data(), fConfig->GetAlienPath(), GetCurrentYear(),
621 lhcPeriod.Data(), GetCurrentRun(), gridFileName);
623 return CopyFileLocally(localFile, target);
626 //______________________________________________________________________________________________
627 Bool_t AliShuttle::CopyFileLocally(const char* localFile, const TString& target)
630 // Stores file locally. Called by StoreReferenceFile and StoreRunMetadataFile
631 // Files are temporarily stored in the local reference storage. When the preprocessor
632 // finishes, the Shuttle calls CopyFilesToGrid to transfer the files to AliEn
633 // (in reference or run level folders)
636 TString targetDir(target(0, target.Last('/')));
638 //try to open base dir folder, if it does not exist
639 void* dir = gSystem->OpenDirectory(targetDir.Data());
641 if (gSystem->mkdir(targetDir.Data(), kTRUE)) {
642 Log("SHUTTLE", Form("CopyFileLocally - Can't open directory <%s>", targetDir.Data()));
647 gSystem->FreeDirectory(dir);
652 result = gSystem->GetPathInfo(localFile, 0, (Long64_t*) 0, 0, 0);
655 Log("SHUTTLE", Form("CopyFileLocally - %s does not exist", localFile));
659 result = gSystem->GetPathInfo(target, 0, (Long64_t*) 0, 0, 0);
662 Log("SHUTTLE", Form("CopyFileLocally - target file %s already exist, removing...", target.Data()));
663 if (gSystem->Unlink(target.Data()))
665 Log("SHUTTLE", Form("CopyFileLocally - Could not remove existing target file %s!", target.Data()));
670 result = gSystem->CopyFile(localFile, target);
674 Log("SHUTTLE", Form("CopyFileLocally - File %s stored locally to %s", localFile, target.Data()));
679 Log("SHUTTLE", Form("CopyFileLocally - Could not store file %s to %s! Error code = %d",
680 localFile, target.Data(), result));
688 //______________________________________________________________________________________________
689 Bool_t AliShuttle::CopyFilesToGrid(const char* type)
692 // Transfers local files to the Grid. Local files can be reference files
693 // or run metadata file (from GRP only).
695 // According to the type (ref, metadata) the files are stored under the following location:
696 // ref --> <base folder of reference storage>/<DET>/<RUN#>_<gridFileName>
697 // metadata --> <run data folder>/<MetadataFileName>
700 AliCDBManager* man = AliCDBManager::Instance();
701 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
704 TString localBaseFolder = sto->GetBaseFolder();
710 if (strcmp(type, "reference") == 0)
712 dir = GetRefFilePrefix(localBaseFolder.Data(), fCurrentDetector.Data());
713 AliCDBStorage* gridSto = man->GetStorage(fgkMainRefStorage);
716 TString gridBaseFolder = gridSto->GetBaseFolder();
717 alienDir = GetRefFilePrefix(gridBaseFolder.Data(), fCurrentDetector.Data());
718 begin = Form("%d_", GetCurrentRun());
720 else if (strcmp(type, "metadata") == 0)
723 TString lhcPeriod = GetLHCPeriod();
725 if (lhcPeriod.Length() == 0)
727 Log("SHUTTLE","CopyFilesToGrid - LHCPeriod not found in logbook!");
731 // TODO partitions with one detector only write data into LHCperiod_DET
732 TString partition = GetRunParameter("detector");
734 if (partition.Length() > 0 && partition != "ALICE")
736 lhcPeriod.Append(Form("_%s", partition.Data()));
739 dir = Form("%s/GRP/RunMetadata%s%d/%s/%09d/raw",
740 localBaseFolder.Data(), fConfig->GetAlienPath(), GetCurrentYear(),
741 lhcPeriod.Data(), GetCurrentRun());
742 alienDir = dir(dir.Index(fConfig->GetAlienPath()), dir.Length());
748 Log("SHUTTLE", "CopyFilesToGrid - Unexpected: type label must be reference or metadata!");
752 TSystemDirectory* baseDir = new TSystemDirectory("/", dir);
756 TList* dirList = baseDir->GetListOfFiles();
759 if (!dirList) return kTRUE;
761 if (dirList->GetEntries() < 3)
769 Log("SHUTTLE", "CopyFilesToGrid - Connection to Grid failed: Cannot continue!");
774 Int_t nDirs = 0, nTransfer = 0;
775 TIter dirIter(dirList);
776 TSystemFile* entry = 0;
778 Bool_t success = kTRUE;
779 Bool_t first = kTRUE;
781 while ((entry = dynamic_cast<TSystemFile*> (dirIter.Next())))
783 if (entry->IsDirectory())
786 TString fileName(entry->GetName());
787 if (!fileName.BeginsWith(begin))
795 // check that folder exists, otherwise create it
796 TGridResult* result = gGrid->Ls(alienDir.Data(), "a");
804 if (!result->GetFileName(1)) // TODO: It looks like element 0 is always 0!!
806 // TODO It does not work currently! Bug in TAliEn::Mkdir
807 // TODO Manually fixed in local root v5-16-00
808 if (!gGrid->Mkdir(alienDir.Data(),"-p",0))
810 Log("SHUTTLE", Form("CopyFilesToGrid - Cannot create directory %s",
815 Log("SHUTTLE",Form("CopyFilesToGrid - Folder %s created", alienDir.Data()));
819 Log("SHUTTLE",Form("CopyFilesToGrid - Folder %s found", alienDir.Data()));
823 TString fullLocalPath;
824 fullLocalPath.Form("%s/%s", dir.Data(), fileName.Data());
826 TString fullGridPath;
827 fullGridPath.Form("alien://%s/%s", alienDir.Data(), fileName.Data());
829 Bool_t result = TFile::Cp(fullLocalPath, fullGridPath);
833 Log("SHUTTLE", Form("CopyFilesToGrid - Copying local file %s to %s succeeded!",
834 fullLocalPath.Data(), fullGridPath.Data()));
835 RemoveFile(fullLocalPath);
840 Log("SHUTTLE", Form("CopyFilesToGrid - Copying local file %s to %s FAILED!",
841 fullLocalPath.Data(), fullGridPath.Data()));
846 Log("SHUTTLE", Form("CopyFilesToGrid - %d (over %d) files in folder %s copied to Grid.",
847 nTransfer, nDirs, dir.Data()));
854 //______________________________________________________________________________________________
855 const char* AliShuttle::GetRefFilePrefix(const char* base, const char* detector)
858 // Get folder name of reference files
861 TString offDetStr(GetOfflineDetName(detector));
863 if (offDetStr == "ITS" || offDetStr == "MUON" || offDetStr == "PHOS")
865 dir.Form("%s/%s/%s", base, offDetStr.Data(), detector);
867 dir.Form("%s/%s", base, offDetStr.Data());
875 //______________________________________________________________________________________________
876 void AliShuttle::CleanLocalStorage(const TString& uri)
879 // Called in case the preprocessor is declared failed. Remove remaining objects from the local storages.
882 const char* type = 0;
883 if(uri == fgkLocalCDB) {
885 } else if(uri == fgkLocalRefStorage) {
888 AliError(Form("Invalid storage URI: %s", uri.Data()));
892 AliCDBManager* man = AliCDBManager::Instance();
894 // open local storage
895 AliCDBStorage *localSto = man->GetStorage(uri);
898 Form("CleanLocalStorage - cannot activate local %s storage", type));
902 TString filename(Form("%s/%s/*/Run*_v%d_s*.root",
903 localSto->GetBaseFolder().Data(), GetOfflineDetName(fCurrentDetector.Data()), GetCurrentRun()));
905 AliDebug(2, Form("filename = %s", filename.Data()));
907 Log("SHUTTLE", Form("Removing remaining local files for run %d and detector %s ...",
908 GetCurrentRun(), fCurrentDetector.Data()));
910 RemoveFile(filename.Data());
914 //______________________________________________________________________________________________
915 void AliShuttle::RemoveFile(const char* filename)
918 // removes local file
921 TString command(Form("rm -f %s", filename));
923 Int_t result = gSystem->Exec(command.Data());
926 Log("SHUTTLE", Form("RemoveFile - %s: Cannot remove file %s!",
927 fCurrentDetector.Data(), filename));
931 //______________________________________________________________________________________________
932 AliShuttleStatus* AliShuttle::ReadShuttleStatus()
935 // Reads the AliShuttleStatus from the CDB
943 fStatusEntry = AliCDBManager::Instance()->GetStorage(GetLocalCDB())
944 ->Get(Form("/SHUTTLE/STATUS/%s", fCurrentDetector.Data()), GetCurrentRun());
946 if (!fStatusEntry) return 0;
947 fStatusEntry->SetOwner(1);
949 AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
951 AliError("Invalid object stored to CDB!");
958 //______________________________________________________________________________________________
959 Bool_t AliShuttle::WriteShuttleStatus(AliShuttleStatus* status)
962 // writes the status for one subdetector
970 Int_t run = GetCurrentRun();
972 AliCDBId id(AliCDBPath("SHUTTLE", "STATUS", fCurrentDetector), run, run);
974 fStatusEntry = new AliCDBEntry(status, id, new AliCDBMetaData);
975 fStatusEntry->SetOwner(1);
977 UInt_t result = AliCDBManager::Instance()->GetStorage(fgkLocalCDB)->Put(fStatusEntry);
980 Log("SHUTTLE", Form("WriteShuttleStatus - Failed for %s, run %d",
981 fCurrentDetector.Data(), run));
990 //______________________________________________________________________________________________
991 void AliShuttle::UpdateShuttleStatus(AliShuttleStatus::Status newStatus, Bool_t increaseCount)
994 // changes the AliShuttleStatus for the given detector and run to the given status
998 AliError("UNEXPECTED: fStatusEntry empty");
1002 AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
1005 Log("SHUTTLE", "UpdateShuttleStatus - UNEXPECTED: status could not be read from current CDB entry");
1009 TString actionStr = Form("UpdateShuttleStatus - %s: Changing state from %s to %s",
1010 fCurrentDetector.Data(),
1011 status->GetStatusName(),
1012 status->GetStatusName(newStatus));
1013 Log("SHUTTLE", actionStr);
1014 SetLastAction(actionStr);
1016 status->SetStatus(newStatus);
1017 if (increaseCount) status->IncreaseCount();
1019 AliCDBManager::Instance()->GetStorage(fgkLocalCDB)->Put(fStatusEntry);
1024 //______________________________________________________________________________________________
1025 void AliShuttle::SendMLInfo()
1028 // sends ML information about the current status of the current detector being processed
1031 AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
1034 Log("SHUTTLE", "SendMLInfo - UNEXPECTED: status could not be read from current CDB entry");
1038 TMonaLisaText mlStatus(Form("%s_status", fCurrentDetector.Data()), status->GetStatusName());
1039 TMonaLisaValue mlRetryCount(Form("%s_count", fCurrentDetector.Data()), status->GetCount());
1042 mlList.Add(&mlStatus);
1043 mlList.Add(&mlRetryCount);
1046 mlID.Form("%d", GetCurrentRun());
1047 fMonaLisa->SendParameters(&mlList, mlID);
1050 //______________________________________________________________________________________________
1051 Bool_t AliShuttle::ContinueProcessing()
1053 // this function reads the AliShuttleStatus information from CDB and
1054 // checks if the processing should be continued
1055 // if yes it returns kTRUE and updates the AliShuttleStatus with nextStatus
1057 if (!fConfig->HostProcessDetector(fCurrentDetector))
1060 AliPreprocessor* aPreprocessor =
1061 dynamic_cast<AliPreprocessor*> (fPreprocessorMap.GetValue(fCurrentDetector));
1064 Log("SHUTTLE", Form("ContinueProcessing - %s: no preprocessor registered", fCurrentDetector.Data()));
1068 AliShuttleLogbookEntry::Status entryStatus =
1069 fLogbookEntry->GetDetectorStatus(fCurrentDetector);
1071 if (entryStatus != AliShuttleLogbookEntry::kUnprocessed) {
1072 Log("SHUTTLE", Form("ContinueProcessing - %s is %s",
1073 fCurrentDetector.Data(),
1074 fLogbookEntry->GetDetectorStatusName(entryStatus)));
1078 // if we get here, according to Shuttle logbook subdetector is in UNPROCESSED state
1080 // check if current run is first unprocessed run for current detector
1081 if (fConfig->StrictRunOrder(fCurrentDetector) &&
1082 !fFirstUnprocessed[GetDetPos(fCurrentDetector)])
1084 if (fTestMode == kNone)
1086 Log("SHUTTLE", Form("ContinueProcessing - %s requires strict run ordering"
1087 " but this is not the first unprocessed run!"));
1092 Log("SHUTTLE", Form("ContinueProcessing - In TESTMODE - "
1093 "Although %s requires strict run ordering "
1094 "and this is not the first unprocessed run, "
1095 "the SHUTTLE continues"));
1099 // Is the subdetector processed first time for this run?
1100 fFirstProcessing = kFALSE;
1102 AliShuttleStatus* status = ReadShuttleStatus();
1105 Log("SHUTTLE", Form("ContinueProcessing - %s: Processing first time",
1106 fCurrentDetector.Data()));
1107 status = new AliShuttleStatus(AliShuttleStatus::kStarted);
1108 fFirstProcessing = kTRUE;
1109 return WriteShuttleStatus(status);
1112 // The following case shouldn't happen if Shuttle Logbook was correctly updated.
1113 // If it happens it may mean Logbook updating failed... let's do it now!
1114 if (status->GetStatus() == AliShuttleStatus::kDone ||
1115 status->GetStatus() == AliShuttleStatus::kFailed ||
1116 status->GetStatus() == AliShuttleStatus::kSkipped) {
1117 Log("SHUTTLE", Form("ContinueProcessing - %s is already %s. Updating Shuttle Logbook",
1118 fCurrentDetector.Data(),
1119 status->GetStatusName(status->GetStatus())));
1121 if (status->GetStatus() == AliShuttleStatus::kSkipped)
1123 UpdateShuttleLogbook(fCurrentDetector.Data(), "DONE");
1126 UpdateShuttleLogbook(fCurrentDetector.Data(), status->GetStatusName(status->GetStatus()));
1131 if (status->GetStatus() == AliShuttleStatus::kStoreStarted || status->GetStatus() == AliShuttleStatus::kStoreDelayed ||status->GetStatus() == AliShuttleStatus::kStoreError) {
1133 Form("ContinueProcessing - %s: Grid storage of one or more "
1134 "objects failed. Trying again now",
1135 fCurrentDetector.Data()));
1140 // if we get here, there is a restart
1141 Bool_t cont = kFALSE;
1144 if (status->GetCount() >= fConfig->GetMaxRetries()) {
1145 Log("SHUTTLE", Form("ContinueProcessing - %s failed %d times in status %s - "
1146 "Updating Shuttle Logbook", fCurrentDetector.Data(),
1147 status->GetCount(), status->GetStatusName()));
1148 UpdateShuttleLogbook(fCurrentDetector.Data(), "FAILED");
1149 UpdateShuttleStatus(AliShuttleStatus::kFailed);
1151 // there may still be objects in local OCDB and reference storage
1152 // and FXS databases may be not updated: do it now!
1154 // TODO Currently disabled, we want to keep files in case of failure!
1155 // CleanLocalStorage(fgkLocalCDB);
1156 // CleanLocalStorage(fgkLocalRefStorage);
1157 // UpdateTableFailCase();
1159 // Send mail to detector expert!
1160 Log("SHUTTLE", Form("ContinueProcessing - Sending mail to %s expert...",
1161 fCurrentDetector.Data()));
1162 if (!SendMail(kPPEMail))
1163 Log("SHUTTLE", Form("ContinueProcessing - Could not send mail to %s expert",
1164 fCurrentDetector.Data()));
1167 Log("SHUTTLE", Form("ContinueProcessing - %s: restarting. "
1168 "Aborted before with %s. Retry number %d.", fCurrentDetector.Data(),
1169 status->GetStatusName(), status->GetCount()));
1170 Bool_t increaseCount = kTRUE;
1171 if (status->GetStatus() == AliShuttleStatus::kDCSError ||
1172 status->GetStatus() == AliShuttleStatus::kDCSStarted ||
1173 status->GetStatus() == AliShuttleStatus::kFXSError)
1174 increaseCount = kFALSE;
1176 UpdateShuttleStatus(AliShuttleStatus::kStarted, increaseCount);
1183 //______________________________________________________________________________________________
1184 Bool_t AliShuttle::Process(AliShuttleLogbookEntry* entry)
1187 // Makes data retrieval for all detectors in the configuration.
1188 // entry: Shuttle logbook entry, contains run paramenters and status of detectors
1189 // (Unprocessed, Inactive, Failed or Done).
1190 // Returns kFALSE in case of error occured and kTRUE otherwise
1193 if (!entry) return kFALSE;
1195 fLogbookEntry = entry;
1197 Log("SHUTTLE", Form("\t\t\t^*^*^*^*^*^*^*^*^*^*^*^* run %d: START ^*^*^*^*^*^*^*^*^*^*^*^*",
1200 // Send the information to ML
1203 TMonaLisaText mlStatus("SHUTTLE_status", "Processing");
1204 TString runType(entry->GetRunType());
1205 if (strlen(entry->GetRunParameter("log")) > 0){
1208 runType += entry->GetRunParameter("log");
1211 TMonaLisaText mlRunType("SHUTTLE_runtype", runType);
1214 mlList.Add(&mlStatus);
1215 mlList.Add(&mlRunType);
1218 mlID.Form("%d", GetCurrentRun());
1219 fMonaLisa->SendParameters(&mlList, mlID);
1221 if (fLogbookEntry->IsDone())
1223 Log("SHUTTLE","Process - Shuttle is already DONE. Updating logbook");
1224 UpdateShuttleLogbook("shuttle_done");
1229 // read test mode if flag is set
1233 TString logEntry(entry->GetRunParameter("log"));
1234 //printf("log entry = %s\n", logEntry.Data());
1235 TString searchStr("Testmode: ");
1236 Int_t pos = logEntry.Index(searchStr.Data());
1237 //printf("%d\n", pos);
1240 TSubString subStr = logEntry(pos + searchStr.Length(), logEntry.Length());
1241 //printf("%s\n", subStr.String().Data());
1242 TString newStr(subStr.Data());
1243 TObjArray* token = newStr.Tokenize(' ');
1247 TObjString* tmpStr = dynamic_cast<TObjString*> (token->First());
1250 Int_t testMode = tmpStr->String().Atoi();
1253 Log("SHUTTLE", Form("Process - Enabling test mode %d", testMode));
1254 SetTestMode((TestMode) testMode);
1262 fLogbookEntry->Print("all");
1265 Bool_t hasError = kFALSE;
1267 // Set the CDB and Reference folders according to the year and LHC period
1268 TString lhcPeriod(GetLHCPeriod());
1269 if (lhcPeriod.Length() == 0)
1271 Log("SHUTTLE","Process - LHCPeriod not found in logbook!");
1275 if (fgkMainCDB.Length() == 0)
1276 fgkMainCDB = Form("alien://folder=%s%d/%s/OCDB?user=alidaq?cacheFold=/tmp/OCDBCache",
1277 fConfig->GetAlienPath(), GetCurrentYear(), lhcPeriod.Data());
1279 if (fgkMainRefStorage.Length() == 0)
1280 fgkMainRefStorage = Form("alien://folder=%s%d/%s/Reference?user=alidaq?cacheFold=/tmp/OCDBCache",
1281 fConfig->GetAlienPath(), GetCurrentYear(), lhcPeriod.Data());
1283 // Loop on detectors in the configuration
1284 TIter iter(fConfig->GetDetectors());
1285 TObjString* aDetector = 0;
1287 Bool_t first = kTRUE;
1289 while ((aDetector = (TObjString*) iter.Next()))
1291 fCurrentDetector = aDetector->String();
1293 if (ContinueProcessing() == kFALSE)
1298 // only read QueryCDB when needed and only once
1299 AliCDBStorage *mainCDBSto = AliCDBManager::Instance()->GetStorage(fgkMainCDB);
1300 if(mainCDBSto) mainCDBSto->QueryCDB(GetCurrentRun());
1301 AliCDBStorage *mainRefSto = AliCDBManager::Instance()->GetStorage(fgkMainRefStorage);
1302 if(mainRefSto) mainRefSto->QueryCDB(GetCurrentRun());
1306 Log("SHUTTLE", Form("\t\t\t****** run %d - %s: START ******",
1307 GetCurrentRun(), aDetector->GetName()));
1309 for(Int_t iSys=0;iSys<3;iSys++) fFXSCalled[iSys]=kFALSE;
1311 Log(fCurrentDetector.Data(), "Process - Starting processing");
1317 Log("SHUTTLE", "Process - ERROR: Forking failed");
1322 Log("SHUTTLE", Form("Process - In parent process of %d - %s: Starting monitoring",
1323 GetCurrentRun(), aDetector->GetName()));
1325 Long_t begin = time(0);
1327 int status; // to be used with waitpid, on purpose an int (not Int_t)!
1328 while (waitpid(pid, &status, WNOHANG) == 0)
1330 Long_t expiredTime = time(0) - begin;
1332 if (expiredTime > fConfig->GetPPTimeOut())
1335 tmp.Form("Process - Process of %s time out. "
1336 "Run time: %d seconds. Killing...",
1337 fCurrentDetector.Data(), expiredTime);
1338 Log("SHUTTLE", tmp);
1339 Log(fCurrentDetector, tmp);
1343 UpdateShuttleStatus(AliShuttleStatus::kPPTimeOut);
1346 gSystem->Sleep(1000);
1350 gSystem->Sleep(1000);
1353 checkStr.Form("ps -o vsize --pid %d | tail -n 1", pid);
1354 FILE* pipe = gSystem->OpenPipe(checkStr, "r");
1357 Log("SHUTTLE", Form("Process - Error: "
1358 "Could not open pipe to %s", checkStr.Data()));
1363 if (!fgets(buffer, 100, pipe))
1365 Log("SHUTTLE", "Process - Error: ps did not return anything");
1366 gSystem->ClosePipe(pipe);
1369 gSystem->ClosePipe(pipe);
1371 //Log("SHUTTLE", Form("ps returned %s", buffer));
1374 if ((sscanf(buffer, "%d\n", &mem) != 1) || !mem)
1376 Log("SHUTTLE", "Process - Error: Could not parse output of ps");
1380 if (expiredTime % 60 == 0)
1382 Log("SHUTTLE", Form("Process - %s: Checking process. "
1383 "Run time: %d seconds - Memory consumption: %d KB",
1384 fCurrentDetector.Data(), expiredTime, mem));
1388 if (mem > fConfig->GetPPMaxMem())
1391 tmp.Form("Process - Process exceeds maximum allowed memory "
1392 "(%d KB > %d KB). Killing...",
1393 mem, fConfig->GetPPMaxMem());
1394 Log("SHUTTLE", tmp);
1395 Log(fCurrentDetector, tmp);
1399 UpdateShuttleStatus(AliShuttleStatus::kPPOutOfMemory);
1402 gSystem->Sleep(1000);
1407 Log("SHUTTLE", Form("Process - In parent process of %d - %s: Client has terminated.",
1408 GetCurrentRun(), aDetector->GetName()));
1410 if (WIFEXITED(status))
1412 Int_t returnCode = WEXITSTATUS(status);
1414 Log("SHUTTLE", Form("Process - %s: the return code is %d", fCurrentDetector.Data(),
1417 if (returnCode == 0) hasError = kTRUE;
1423 Log("SHUTTLE", Form("Process - In child process of %d - %s", GetCurrentRun(),
1424 aDetector->GetName()));
1426 Log("SHUTTLE", Form("Process - Redirecting output to %s log",fCurrentDetector.Data()));
1428 if ((freopen(GetLogFileName(fCurrentDetector), "a", stdout)) == 0)
1430 Log("SHUTTLE", "Process - Could not freopen stdout");
1434 fOutputRedirected = kTRUE;
1435 if ((dup2(fileno(stdout), fileno(stderr))) < 0)
1436 Log("SHUTTLE", "Process - Could not redirect stderr");
1440 TString wd = gSystem->WorkingDirectory();
1441 TString tmpDir = Form("%s/%s_%d_process", GetShuttleTempDir(),
1442 fCurrentDetector.Data(), GetCurrentRun());
1444 Int_t result = gSystem->GetPathInfo(tmpDir.Data(), 0, (Long64_t*) 0, 0, 0);
1445 if (!result) // temp dir already exists!
1447 Log(fCurrentDetector.Data(),
1448 Form("Process - %s dir already exists! Removing...", tmpDir.Data()));
1449 gSystem->Exec(Form("rm -rf %s",tmpDir.Data()));
1452 if (gSystem->mkdir(tmpDir.Data(), 1))
1454 Log(fCurrentDetector.Data(), "Process - could not make temp directory!!");
1458 if (!gSystem->ChangeDirectory(tmpDir.Data()))
1460 Log(fCurrentDetector.Data(), "Process - could not change directory!!");
1464 Int_t success = ProcessCurrentDetector();
1466 gSystem->ChangeDirectory(wd.Data());
1468 if (success == 1) // Preprocessor finished successfully!
1470 // remove temporary folder or DCS map
1471 if (!fConfig->KeepTempFolder())
1473 gSystem->Exec(Form("rm -rf %s",tmpDir.Data()));
1474 } else if (!fConfig->KeepDCSMap())
1476 gSystem->Exec(Form("rm -f %s/DCSMap.root",tmpDir.Data()));
1479 // Update time_processed field in FXS DB
1480 if (UpdateTable() == kFALSE)
1481 Log("SHUTTLE", Form("Process - %s: Could not update FXS databases!",
1482 fCurrentDetector.Data()));
1484 // Transfer the data from local storage to main storage (Grid)
1485 if (StoreOCDB() == kFALSE)
1488 else if (success == 0)
1491 Form("\t\t\t****** run %d - %s: PP ERROR ******",
1492 GetCurrentRun(), aDetector->GetName()));
1495 for (UInt_t iSys=0; iSys<3; iSys++)
1497 if (fFXSCalled[iSys]) fFXSlist[iSys].Clear();
1500 Log("SHUTTLE", Form("Process - Client process of %d - %s is exiting now with %d.",
1501 GetCurrentRun(), aDetector->GetName(), success));
1503 // the client exits here
1504 gSystem->Exit(success);
1506 AliError("We should never get here!!!");
1510 Log("SHUTTLE", Form("\t\t\t^*^*^*^*^*^*^*^*^*^*^*^* run %d: FINISH ^*^*^*^*^*^*^*^*^*^*^*^*",
1513 //check if shuttle is done for this run, if so update logbook
1514 TObjArray checkEntryArray;
1515 checkEntryArray.SetOwner(1);
1516 TString whereClause = Form("where run=%d", GetCurrentRun());
1517 if (!QueryShuttleLogbook(whereClause.Data(), checkEntryArray) ||
1518 checkEntryArray.GetEntries() == 0) {
1519 Log("SHUTTLE", Form("Process - Warning: Cannot check status of run %d on Shuttle logbook!",
1521 return hasError == kFALSE;
1524 AliShuttleLogbookEntry* checkEntry = dynamic_cast<AliShuttleLogbookEntry*>
1525 (checkEntryArray.At(0));
1529 if (checkEntry->IsDone())
1531 Log("SHUTTLE","Process - Shuttle is DONE. Updating logbook");
1532 UpdateShuttleLogbook("shuttle_done");
1536 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
1538 if (checkEntry->GetDetectorStatus(iDet) == AliShuttleLogbookEntry::kUnprocessed)
1540 AliDebug(2, Form("Run %d: setting %s as \"not first time unprocessed\"",
1541 checkEntry->GetRun(), GetDetName(iDet)));
1542 fFirstUnprocessed[iDet] = kFALSE;
1545 TMonaLisaText mlStatusPending("SHUTTLE_status", "Pending");
1547 mlList.Add(&mlStatusPending);
1548 fMonaLisa->SendParameters(&mlList, mlID);
1554 return hasError == kFALSE;
1557 //______________________________________________________________________________________________
1558 Int_t AliShuttle::ProcessCurrentDetector()
1561 // Makes data retrieval just for a specific detector (fCurrentDetector).
1562 // Threre should be a configuration for this detector.
1564 Log("SHUTTLE", Form("ProcessCurrentDetector - Retrieving values for %s, run %d",
1565 fCurrentDetector.Data(), GetCurrentRun()));
1567 TString wd = gSystem->WorkingDirectory();
1569 if (!CleanReferenceStorage(fCurrentDetector.Data()))
1572 gSystem->ChangeDirectory(wd.Data());
1574 // call preprocessor
1575 AliPreprocessor* aPreprocessor =
1576 dynamic_cast<AliPreprocessor*> (fPreprocessorMap.GetValue(fCurrentDetector));
1578 // check if the preprocessor wants to process this run type
1579 if (aPreprocessor->ProcessRunType() == kFALSE)
1581 UpdateShuttleStatus(AliShuttleStatus::kSkipped);
1582 UpdateShuttleLogbook(fCurrentDetector, "DONE");
1583 Log(fCurrentDetector, Form("ProcessCurrentDetector - %s preprocessor is not interested in this run type", fCurrentDetector.Data()));
1588 TMap* dcsMap = new TMap();
1590 aPreprocessor->Initialize(GetCurrentRun(), GetCurrentStartTime(), GetCurrentEndTime());
1592 Bool_t processDCS = aPreprocessor->ProcessDCS();
1596 Log(fCurrentDetector, "ProcessCurrentDetector -"
1597 " The preprocessor requested to skip the retrieval of DCS values");
1599 else if (fTestMode & kSkipDCS)
1601 Log(fCurrentDetector, "ProcessCurrentDetector - In TESTMODE: Skipping DCS processing");
1603 else if (fTestMode & kErrorDCS)
1605 Log(fCurrentDetector, "ProcessCurrentDetector - In TESTMODE: Simulating DCS error");
1606 UpdateShuttleStatus(AliShuttleStatus::kDCSStarted);
1607 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1612 UpdateShuttleStatus(AliShuttleStatus::kDCSStarted);
1614 // Query DCS archive
1615 Int_t nServers = fConfig->GetNServers(fCurrentDetector);
1617 for (int iServ=0; iServ<nServers; iServ++)
1620 TString host(fConfig->GetDCSHost(fCurrentDetector, iServ));
1621 Int_t port = fConfig->GetDCSPort(fCurrentDetector, iServ);
1622 Int_t multiSplit = fConfig->GetMultiSplit(fCurrentDetector, iServ);
1624 Log(fCurrentDetector, Form("ProcessCurrentDetector -"
1625 " Querying DCS Amanda server %s:%d (%d of %d)",
1626 host.Data(), port, iServ+1, nServers));
1631 if (fConfig->GetDCSAliases(fCurrentDetector, iServ)->GetEntries() > 0)
1633 aliasMap = GetValueSet(host, port,
1634 fConfig->GetDCSAliases(fCurrentDetector, iServ),
1635 kAlias, multiSplit);
1638 Log(fCurrentDetector,
1639 Form("ProcessCurrentDetector -"
1640 " Error retrieving DCS aliases from server %s."
1641 " Sending mail to DCS experts!", host.Data()));
1642 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1644 if (!SendMail(kDCSEMail))
1645 Log("SHUTTLE", Form("ProcessCurrentDetector - "
1646 "Could not send mail to DCS experts!"));
1653 if (fConfig->GetDCSDataPoints(fCurrentDetector, iServ)->GetEntries() > 0)
1655 dpMap = GetValueSet(host, port,
1656 fConfig->GetDCSDataPoints(fCurrentDetector, iServ),
1660 Log(fCurrentDetector,
1661 Form("ProcessCurrentDetector -"
1662 " Error retrieving DCS data points from server %s."
1663 " Sending mail to DCS experts!", host.Data()));
1664 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1666 if (!SendMail(kDCSEMail))
1667 Log("SHUTTLE", Form("ProcessCurrentDetector - "
1668 "Could not send mail to DCS experts!"));
1670 if (aliasMap) delete aliasMap;
1676 // merge aliasMap and dpMap into dcsMap
1678 TIter iter(aliasMap);
1679 TObjString* key = 0;
1680 while ((key = (TObjString*) iter.Next()))
1681 dcsMap->Add(key, aliasMap->GetValue(key->String()));
1683 aliasMap->SetOwner(kFALSE);
1689 TObjString* key = 0;
1690 while ((key = (TObjString*) iter.Next()))
1691 dcsMap->Add(key, dpMap->GetValue(key->String()));
1693 dpMap->SetOwner(kFALSE);
1699 // save map into file, to help debugging in case of preprocessor error
1700 TFile* f = TFile::Open("DCSMap.root","recreate");
1702 dcsMap->Write("DCSMap", TObject::kSingleKey);
1706 // DCS Archive DB processing successful. Call Preprocessor!
1707 UpdateShuttleStatus(AliShuttleStatus::kPPStarted);
1709 fFXSError = -1; // this variable is kTRUE after ::Process if an FXS error occured
1711 UInt_t returnValue = aPreprocessor->Process(dcsMap);
1713 if (fFXSError!=-1) {
1714 UpdateShuttleStatus(AliShuttleStatus::kFXSError);
1715 SendMail(kFXSEMail, fFXSError);
1716 dcsMap->DeleteAll();
1721 if (returnValue > 0) // Preprocessor error!
1723 Log(fCurrentDetector, Form("ProcessCurrentDetector - "
1724 "Preprocessor failed. Process returned %d.", returnValue));
1725 UpdateShuttleStatus(AliShuttleStatus::kPPError);
1726 dcsMap->DeleteAll();
1732 UpdateShuttleStatus(AliShuttleStatus::kPPDone);
1733 Log(fCurrentDetector, Form("ProcessCurrentDetector - %s preprocessor returned success",
1734 fCurrentDetector.Data()));
1736 dcsMap->DeleteAll();
1742 //______________________________________________________________________________________________
1743 void AliShuttle::CountOpenRuns()
1745 // Query DAQ's Shuttle logbook and sends the number of open runs to ML
1747 // check connection, in case connect
1752 sqlQuery = Form("select count(*) from %s where shuttle_done=0", fConfig->GetShuttlelbTable());
1754 TSQLResult* aResult = fServer[3]->Query(sqlQuery);
1756 AliError(Form("Can't execute query <%s>!", sqlQuery.Data()));
1760 AliDebug(2,Form("Query = %s", sqlQuery.Data()));
1762 if (aResult->GetRowCount() == 0) {
1763 AliError(Form("No result for query %s received", sqlQuery.Data()));
1767 if (aResult->GetFieldCount() != 1) {
1768 AliError(Form("Invalid field count for query %s received", sqlQuery.Data()));
1772 TSQLRow* aRow = aResult->Next();
1774 AliError(Form("Could not receive result of query %s", sqlQuery.Data()));
1778 TString result(aRow->GetField(0), aRow->GetFieldLength(0));
1779 Int_t count = result.Atoi();
1781 Log("SHUTTLE", Form("%d unprocessed runs", count));
1786 TMonaLisaValue mlStatus("SHUTTLE_openruns", count);
1789 mlList.Add(&mlStatus);
1791 fMonaLisa->SendParameters(&mlList, "__PROCESSINGINFO__");
1794 //______________________________________________________________________________________________
1795 Bool_t AliShuttle::QueryShuttleLogbook(const char* whereClause,
1798 // Query DAQ's Shuttle logbook and fills detector status object.
1799 // Call QueryRunParameters to query DAQ logbook for run parameters.
1802 entries.SetOwner(1);
1804 // check connection, in case connect
1805 if (!Connect(3)) return kFALSE;
1808 sqlQuery = Form("select * from %s %s order by run", fConfig->GetShuttlelbTable(), whereClause);
1810 TSQLResult* aResult = fServer[3]->Query(sqlQuery);
1812 AliError(Form("Can't execute query <%s>!", sqlQuery.Data()));
1816 AliDebug(2,Form("Query = %s", sqlQuery.Data()));
1818 if(aResult->GetRowCount() == 0) {
1819 Log("SHUTTLE", "No entries in Shuttle Logbook match request");
1824 // TODO Check field count!
1825 const UInt_t nCols = 23;
1826 if (aResult->GetFieldCount() != (Int_t) nCols) {
1827 Log("SHUTTLE", "Invalid SQL result field number!");
1833 while ((aRow = aResult->Next())) {
1834 TString runString(aRow->GetField(0), aRow->GetFieldLength(0));
1835 Int_t run = runString.Atoi();
1837 AliShuttleLogbookEntry *entry = QueryRunParameters(run);
1841 // loop on detectors
1842 for(UInt_t ii = 0; ii < nCols; ii++)
1843 entry->SetDetectorStatus(aResult->GetFieldName(ii), aRow->GetField(ii));
1845 entries.AddLast(entry);
1853 //______________________________________________________________________________________________
1854 AliShuttleLogbookEntry* AliShuttle::QueryRunParameters(Int_t run)
1857 // Retrieve run parameters written in the DAQ logbook and sets them into AliShuttleLogbookEntry object
1860 // check connection, in case connect
1865 sqlQuery.Form("select * from %s where run=%d", fConfig->GetDAQlbTable(), run);
1867 TSQLResult* aResult = fServer[3]->Query(sqlQuery);
1869 Log("SHUTTLE", Form("Can't execute query <%s>!", sqlQuery.Data()));
1873 if (aResult->GetRowCount() == 0) {
1874 Log("SHUTTLE", Form("QueryRunParameters - No entry in DAQ Logbook for run %d. Skipping", run));
1879 if (aResult->GetRowCount() > 1) {
1880 Log("SHUTTLE", Form("QueryRunParameters - UNEXPECTED: "
1881 "more than one entry in DAQ Logbook for run %d!", run));
1886 TSQLRow* aRow = aResult->Next();
1889 Log("SHUTTLE", Form("QueryRunParameters - Could not retrieve row for run %d. Skipping", run));
1894 AliShuttleLogbookEntry* entry = new AliShuttleLogbookEntry(run);
1896 for (Int_t ii = 0; ii < aResult->GetFieldCount(); ii++)
1897 entry->SetRunParameter(aResult->GetFieldName(ii), aRow->GetField(ii));
1902 UInt_t startTime = entry->GetStartTime();
1903 UInt_t endTime = entry->GetEndTime();
1904 Bool_t ecsSuccess = entry->GetECSSuccess();
1906 TString totEventsStr = entry->GetRunParameter("totalEvents");
1907 Int_t totEvents = totEventsStr.Atoi();
1909 if (startTime != 0 && endTime != 0 && endTime > startTime && totEvents > 0 && ecsSuccess)
1912 if (ecsSuccess == kFALSE)
1914 Log("SHUTTLE", Form("Skipped run %d due to ECS failure, Reason: %s", run, entry->GetRunParameter("eor_reason")));
1916 else if (totEvents < 1)
1918 Log("SHUTTLE", Form("QueryRunParameters - Run %d has 0 events - Skipping!", run));
1922 Log("SHUTTLE", Form("QueryRunParameters - Invalid parameters for Run %d: "
1923 "startTime = %d, endTime = %d. Skipping (Shuttle won't be marked as DONE)!",
1924 run, startTime, endTime));
1927 //Log("SHUTTLE", Form("Marking SHUTTLE done for run %d", run));
1928 //fLogbookEntry = entry;
1929 //if (!UpdateShuttleLogbook("shuttle_done"))
1931 // AliError(Form("Could not update logbook for run %d !", run));
1933 //fLogbookEntry = 0;
1939 //______________________________________________________________________________________________
1940 TMap* AliShuttle::GetValueSet(const char* host, Int_t port, const TSeqCollection* entries,
1941 DCSType type, Int_t multiSplit)
1943 // Retrieve all "entry" data points from the DCS server
1944 // host, port: TSocket connection parameters
1945 // entries: list of name of the alias or data point
1946 // type: kAlias or kDP
1947 // returns TMap of values, 0 when failure
1949 AliDCSClient client(host, port, fTimeout, fRetries, multiSplit);
1954 result = client.GetAliasValues(entries, GetCurrentStartTime(),
1955 GetCurrentEndTime());
1957 else if (type == kDP)
1959 result = client.GetDPValues(entries, GetCurrentStartTime(),
1960 GetCurrentEndTime());
1965 Log(fCurrentDetector.Data(), Form("GetValueSet - Can't get entries! Reason: %s",
1966 client.GetErrorString(client.GetResultErrorCode())));
1967 if (client.GetResultErrorCode() == AliDCSClient::fgkServerError)
1968 Log(fCurrentDetector.Data(), Form("GetValueSet - Server error code: %s",
1969 client.GetServerError().Data()));
1977 //______________________________________________________________________________________________
1978 const char* AliShuttle::GetFile(Int_t system, const char* detector,
1979 const char* id, const char* source)
1981 // Get calibration file from file exchange servers
1982 // First queris the FXS database for the file name, using the run, detector, id and source info
1983 // then calls RetrieveFile(filename) for actual copy to local disk
1984 // run: current run being processed (given by Logbook entry fLogbookEntry)
1985 // detector: the Preprocessor name
1986 // id: provided as a parameter by the Preprocessor
1987 // source: provided by the Preprocessor through GetFileSources function
1989 // check if test mode should simulate a FXS error
1990 if (fTestMode & kErrorFXSFiles)
1992 Log(detector, Form("GetFile - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
1996 // check connection, in case connect
1997 if (!Connect(system))
1999 Log(detector, Form("GetFile - Couldn't connect to %s FXS database", GetSystemName(system)));
2004 // Query preparation
2005 TString sourceName(source);
2007 TString sqlQueryStart = Form("select filePath,size,fileChecksum from %s where",
2008 fConfig->GetFXSdbTable(system));
2009 TString whereClause = Form("run=%d and detector=\"%s\" and fileId=\"%s\"",
2010 GetCurrentRun(), detector, id);
2014 whereClause += Form(" and DAQsource=\"%s\"", source);
2016 else if (system == kDCS)
2020 else if (system == kHLT)
2022 whereClause += Form(" and DDLnumbers=\"%s\"", source);
2025 TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
2027 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2030 TSQLResult* aResult = 0;
2031 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2033 Log(detector, Form("GetFile - Can't execute SQL query to %s database for: id = %s, source = %s",
2034 GetSystemName(system), id, sourceName.Data()));
2039 if (aResult->GetRowCount() == 0)
2042 Form("GetFile - No entry in %s FXS db for: id = %s, source = %s",
2043 GetSystemName(system), id, sourceName.Data()));
2048 if (aResult->GetRowCount() > 1) {
2050 Form("GetFile - More than one entry in %s FXS db for: id = %s, source = %s",
2051 GetSystemName(system), id, sourceName.Data()));
2057 if (aResult->GetFieldCount() != nFields) {
2059 Form("GetFileName - Wrong field count in %s FXS db for: id = %s, source = %s",
2060 GetSystemName(system), id, sourceName.Data()));
2066 TSQLRow* aRow = dynamic_cast<TSQLRow*> (aResult->Next());
2069 Log(detector, Form("GetFile - Empty set result in %s FXS db from query: id = %s, source = %s",
2070 GetSystemName(system), id, sourceName.Data()));
2076 TString filePath(aRow->GetField(0), aRow->GetFieldLength(0));
2077 TString fileSize(aRow->GetField(1), aRow->GetFieldLength(1));
2078 TString fileChecksum(aRow->GetField(2), aRow->GetFieldLength(2));
2083 AliDebug(2, Form("filePath = %s; size = %s, fileChecksum = %s",
2084 filePath.Data(), fileSize.Data(), fileChecksum.Data()));
2086 // retrieved file is renamed to make it unique
2087 TString localFileName = Form("%s/%s_%d_process/%s_%s_%d_%s_%s.shuttle",
2088 GetShuttleTempDir(), detector, GetCurrentRun(),
2089 GetSystemName(system), detector, GetCurrentRun(),
2090 id, sourceName.Data());
2093 // file retrieval from FXS
2094 UInt_t nRetries = 0;
2095 UInt_t maxRetries = 3;
2096 Bool_t result = kFALSE;
2098 // copy!! if successful TSystem::Exec returns 0
2099 while (nRetries++ < maxRetries) {
2100 AliDebug(2, Form("Trying to copy file. Retry # %d", nRetries));
2101 result = RetrieveFile(system, filePath.Data(), localFileName.Data());
2104 Log(detector, Form("GetFile - Copy of file %s from %s FXS failed",
2105 filePath.Data(), GetSystemName(system)));
2109 if (fileSize.Length()>0)
2111 // compare filesize of local file with the one stored in the FXS DB
2113 Int_t sizeComp = gSystem->GetPathInfo(localFileName.Data(), 0, &size, 0, 0);
2115 if (sizeComp != 0 || size != fileSize.Atoi())
2117 Log(detector, Form("GetFile - size of file %s does not match with local copy!",
2124 Log(fCurrentDetector, Form("GetFile - size of file %s not set in %s database, skipping comparison",
2125 filePath.Data(), GetSystemName(system)));
2128 if (fileChecksum.Length()>0)
2130 // compare md5sum of local file with the one stored in the FXS DB
2131 if(fileChecksum.Contains(' ')) fileChecksum.Resize(fileChecksum.First(' '));
2132 Int_t md5Comp = gSystem->Exec(Form("md5sum %s |grep %s > /dev/null 2> /dev/null",
2133 localFileName.Data(), fileChecksum.Data()));
2137 Log(detector, Form("GetFile - md5sum of file %s does not match with local copy!",
2143 Log(fCurrentDetector, Form("GetFile - md5sum of file %s not set in %s database, skipping comparison",
2144 filePath.Data(), GetSystemName(system)));
2155 fFXSCalled[system]=kTRUE;
2156 TObjString *fileParams = new TObjString(Form("%s#!?!#%s", id, sourceName.Data()));
2157 fFXSlist[system].Add(fileParams);
2159 static TString staticLocalFileName;
2160 staticLocalFileName.Form("%s", localFileName.Data());
2162 Log(fCurrentDetector, Form("GetFile - Retrieved file with id %s and "
2163 "source %s from %s to %s", id, source,
2164 GetSystemName(system), localFileName.Data()));
2166 return staticLocalFileName.Data();
2169 //______________________________________________________________________________________________
2170 Bool_t AliShuttle::RetrieveFile(UInt_t system, const char* fxsFileName, const char* localFileName)
2173 // Copies file from FXS to local Shuttle machine
2176 // check temp directory: trying to cd to temp; if it does not exist, create it
2177 AliDebug(2, Form("Copy file %s from %s FXS into %s",
2178 GetSystemName(system), fxsFileName, localFileName));
2180 TString tmpDir(localFileName);
2182 tmpDir = tmpDir(0,tmpDir.Last('/'));
2184 Int_t noDir = gSystem->GetPathInfo(tmpDir.Data(), 0, (Long64_t*) 0, 0, 0);
2185 if (noDir) // temp dir does not exists!
2187 if (gSystem->mkdir(tmpDir.Data(), 1))
2189 Log(fCurrentDetector.Data(), "RetrieveFile - could not make temp directory!!");
2194 TString command = Form("scp -oPort=%d -2 %s@%s:%s/%s %s",
2195 fConfig->GetFXSPort(system),
2196 fConfig->GetFXSUser(system),
2197 fConfig->GetFXSHost(system),
2198 fConfig->GetFXSBaseFolder(system),
2202 AliDebug(2, Form("%s",command.Data()));
2204 Bool_t result = (gSystem->Exec(command.Data()) == 0);
2209 //______________________________________________________________________________________________
2210 TList* AliShuttle::GetFileSources(Int_t system, const char* detector, const char* id)
2213 // Get sources producing the condition file Id from file exchange servers
2214 // if id is NULL all sources are returned (distinct)
2219 Log(detector, Form("GetFileSources - Querying %s FXS for files with id %s produced by %s", GetSystemName(system), id, detector));
2221 Log(detector, Form("GetFileSources - Querying %s FXS for files produced by %s", GetSystemName(system), detector));
2224 // check if test mode should simulate a FXS error
2225 if (fTestMode & kErrorFXSSources)
2227 Log(detector, Form("GetFileSources - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
2233 Log(detector, "GetFileSources - WARNING: DCS system has only one source of data!");
2234 TList *list = new TList();
2236 list->Add(new TObjString(" "));
2240 // check connection, in case connect
2241 if (!Connect(system))
2243 Log(detector, Form("GetFileSources - Couldn't connect to %s FXS database", GetSystemName(system)));
2248 TString sourceName = 0;
2251 sourceName = "DAQsource";
2252 } else if (system == kHLT)
2254 sourceName = "DDLnumbers";
2257 TString sqlQueryStart = Form("select distinct %s from %s where", sourceName.Data(), fConfig->GetFXSdbTable(system));
2258 TString whereClause = Form("run=%d and detector=\"%s\"",
2259 GetCurrentRun(), detector);
2261 whereClause += Form(" and fileId=\"%s\"", id);
2262 TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
2264 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2267 TSQLResult* aResult;
2268 aResult = fServer[system]->Query(sqlQuery);
2270 Log(detector, Form("GetFileSources - Can't execute SQL query to %s database for id: %s",
2271 GetSystemName(system), id));
2276 TList *list = new TList();
2279 if (aResult->GetRowCount() == 0)
2282 Form("GetFileSources - No entry in %s FXS table for id: %s", GetSystemName(system), id));
2287 Log(detector, Form("GetFileSources - Found %d sources", aResult->GetRowCount()));
2290 while ((aRow = aResult->Next()))
2293 TString source(aRow->GetField(0), aRow->GetFieldLength(0));
2294 AliDebug(2, Form("%s = %s", sourceName.Data(), source.Data()));
2295 list->Add(new TObjString(source));
2304 //______________________________________________________________________________________________
2305 TList* AliShuttle::GetFileIDs(Int_t system, const char* detector, const char* source)
2308 // Get all ids of condition files produced by a given source from file exchange servers
2311 Log(detector, Form("GetFileIDs - Retrieving ids with source %s with %s", source, GetSystemName(system)));
2313 // check if test mode should simulate a FXS error
2314 if (fTestMode & kErrorFXSSources)
2316 Log(detector, Form("GetFileIDs - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
2320 // check connection, in case connect
2321 if (!Connect(system))
2323 Log(detector, Form("GetFileIDs - Couldn't connect to %s FXS database", GetSystemName(system)));
2327 TString sourceName = 0;
2330 sourceName = "DAQsource";
2331 } else if (system == kHLT)
2333 sourceName = "DDLnumbers";
2336 TString sqlQueryStart = Form("select fileId from %s where", fConfig->GetFXSdbTable(system));
2337 TString whereClause = Form("run=%d and detector=\"%s\"",
2338 GetCurrentRun(), detector);
2339 if (sourceName.Length() > 0 && source)
2340 whereClause += Form(" and %s=\"%s\"", sourceName.Data(), source);
2341 TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
2343 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2346 TSQLResult* aResult;
2347 aResult = fServer[system]->Query(sqlQuery);
2349 Log(detector, Form("GetFileIDs - Can't execute SQL query to %s database for source: %s",
2350 GetSystemName(system), source));
2354 TList *list = new TList();
2357 if (aResult->GetRowCount() == 0)
2360 Form("GetFileIDs - No entry in %s FXS table for source: %s", GetSystemName(system), source));
2365 Log(detector, Form("GetFileIDs - Found %d ids", aResult->GetRowCount()));
2369 while ((aRow = aResult->Next()))
2372 TString id(aRow->GetField(0), aRow->GetFieldLength(0));
2373 AliDebug(2, Form("fileId = %s", id.Data()));
2374 list->Add(new TObjString(id));
2383 //______________________________________________________________________________________________
2384 Bool_t AliShuttle::Connect(Int_t system)
2386 // Connect to MySQL Server of the system's FXS MySQL databases
2387 // DAQ Logbook, Shuttle Logbook and DAQ FXS db are on the same host
2390 // check connection: if already connected return
2391 if(fServer[system] && fServer[system]->IsConnected()) return kTRUE;
2393 TString dbHost, dbUser, dbPass, dbName;
2395 if (system < 3) // FXS db servers
2397 dbHost = Form("mysql://%s:%d", fConfig->GetFXSdbHost(system), fConfig->GetFXSdbPort(system));
2398 dbUser = fConfig->GetFXSdbUser(system);
2399 dbPass = fConfig->GetFXSdbPass(system);
2400 dbName = fConfig->GetFXSdbName(system);
2401 } else { // Run & Shuttle logbook servers
2402 // TODO Will the Shuttle logbook server be the same as the Run logbook server ???
2403 dbHost = Form("mysql://%s:%d", fConfig->GetDAQlbHost(), fConfig->GetDAQlbPort());
2404 dbUser = fConfig->GetDAQlbUser();
2405 dbPass = fConfig->GetDAQlbPass();
2406 dbName = fConfig->GetDAQlbDB();
2409 fServer[system] = TSQLServer::Connect(dbHost.Data(), dbUser.Data(), dbPass.Data());
2410 if (!fServer[system] || !fServer[system]->IsConnected()) {
2413 AliError(Form("Can't establish connection to FXS database for %s",
2414 AliShuttleInterface::GetSystemName(system)));
2416 AliError("Can't establish connection to Run logbook.");
2418 if(fServer[system]) delete fServer[system];
2423 TSQLResult* aResult=0;
2426 aResult = fServer[kDAQ]->GetTables(dbName.Data());
2429 aResult = fServer[kDCS]->GetTables(dbName.Data());
2432 aResult = fServer[kHLT]->GetTables(dbName.Data());
2435 aResult = fServer[3]->GetTables(dbName.Data());
2443 //______________________________________________________________________________________________
2444 Bool_t AliShuttle::UpdateTable()
2447 // Update FXS table filling time_processed field in all rows corresponding to current run and detector
2450 Bool_t result = kTRUE;
2452 for (UInt_t system=0; system<3; system++)
2454 if(!fFXSCalled[system]) continue;
2456 // check connection, in case connect
2457 if (!Connect(system))
2459 Log(fCurrentDetector, Form("UpdateTable - Couldn't connect to %s FXS database", GetSystemName(system)));
2464 TTimeStamp now; // now
2466 // Loop on FXS list entries
2467 TIter iter(&fFXSlist[system]);
2468 TObjString *aFXSentry=0;
2469 while ((aFXSentry = dynamic_cast<TObjString*> (iter.Next())))
2471 TString aFXSentrystr = aFXSentry->String();
2472 TObjArray *aFXSarray = aFXSentrystr.Tokenize("#!?!#");
2473 if (!aFXSarray || aFXSarray->GetEntries() != 2 )
2475 Log(fCurrentDetector, Form("UpdateTable - error updating %s FXS entry. Check string: <%s>",
2476 GetSystemName(system), aFXSentrystr.Data()));
2477 if(aFXSarray) delete aFXSarray;
2481 const char* fileId = ((TObjString*) aFXSarray->At(0))->GetName();
2482 const char* source = ((TObjString*) aFXSarray->At(1))->GetName();
2484 TString whereClause;
2487 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\" and DAQsource=\"%s\";",
2488 GetCurrentRun(), fCurrentDetector.Data(), fileId, source);
2490 else if (system == kDCS)
2492 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\";",
2493 GetCurrentRun(), fCurrentDetector.Data(), fileId);
2495 else if (system == kHLT)
2497 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\" and DDLnumbers=\"%s\";",
2498 GetCurrentRun(), fCurrentDetector.Data(), fileId, source);
2503 TString sqlQuery = Form("update %s set time_processed=%d %s", fConfig->GetFXSdbTable(system),
2504 now.GetSec(), whereClause.Data());
2506 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2509 TSQLResult* aResult;
2510 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2513 Log(fCurrentDetector, Form("UpdateTable - %s db: can't execute SQL query <%s>",
2514 GetSystemName(system), sqlQuery.Data()));
2525 //______________________________________________________________________________________________
2526 Bool_t AliShuttle::UpdateTableFailCase()
2528 // Update FXS table filling time_processed field in all rows corresponding to current run and detector
2529 // this is called in case the preprocessor is declared failed for the current run, because
2530 // the fields are updated only in case of success
2532 Bool_t result = kTRUE;
2534 for (UInt_t system=0; system<3; system++)
2536 // check connection, in case connect
2537 if (!Connect(system))
2539 Log(fCurrentDetector, Form("UpdateTableFailCase - Couldn't connect to %s FXS database",
2540 GetSystemName(system)));
2545 TTimeStamp now; // now
2547 // Loop on FXS list entries
2549 TString whereClause = Form("where run=%d and detector=\"%s\";",
2550 GetCurrentRun(), fCurrentDetector.Data());
2553 TString sqlQuery = Form("update %s set time_processed=%d %s", fConfig->GetFXSdbTable(system),
2554 now.GetSec(), whereClause.Data());
2556 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2559 TSQLResult* aResult;
2560 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2563 Log(fCurrentDetector, Form("UpdateTableFailCase - %s db: can't execute SQL query <%s>",
2564 GetSystemName(system), sqlQuery.Data()));
2574 //______________________________________________________________________________________________
2575 Bool_t AliShuttle::UpdateShuttleLogbook(const char* detector, const char* status)
2578 // Update Shuttle logbook filling detector or shuttle_done column
2579 // ex. of usage: UpdateShuttleLogbook("PHOS", "DONE") or UpdateShuttleLogbook("shuttle_done")
2582 // check connection, in case connect
2584 Log("SHUTTLE", "UpdateShuttleLogbook - Couldn't connect to DAQ Logbook.");
2588 TString detName(detector);
2590 if (detName == "shuttle_done" || detName == "shuttle_ignored")
2592 setClause = "set shuttle_done=1";
2594 if (detName == "shuttle_done")
2596 if (TouchFile()==kTRUE){
2597 //Send the information to ML
2598 TMonaLisaText mlStatus("SHUTTLE_status", "Done");
2601 mlList.Add(&mlStatus);
2604 mlID.Form("%d", GetCurrentRun());
2605 fMonaLisa->SendParameters(&mlList, mlID);
2613 TString statusStr(status);
2614 if(statusStr.Contains("done", TString::kIgnoreCase) ||
2615 statusStr.Contains("failed", TString::kIgnoreCase)){
2616 setClause = Form("set %s=\"%s\"", detector, status);
2619 Form("UpdateShuttleLogbook - Invalid status <%s> for detector %s",
2625 TString whereClause = Form("where run=%d", GetCurrentRun());
2627 TString sqlQuery = Form("update %s %s %s",
2628 fConfig->GetShuttlelbTable(), setClause.Data(), whereClause.Data());
2630 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2633 TSQLResult* aResult;
2634 aResult = dynamic_cast<TSQLResult*> (fServer[3]->Query(sqlQuery));
2636 Log("SHUTTLE", Form("UpdateShuttleLogbook - Can't execute query <%s>", sqlQuery.Data()));
2644 //______________________________________________________________________________________________
2645 Int_t AliShuttle::GetCurrentRun() const
2648 // Get current run from logbook entry
2651 return fLogbookEntry ? fLogbookEntry->GetRun() : -1;
2654 //______________________________________________________________________________________________
2655 UInt_t AliShuttle::GetCurrentStartTime() const
2658 // get current start time
2661 return fLogbookEntry ? fLogbookEntry->GetStartTime() : 0;
2664 //______________________________________________________________________________________________
2665 UInt_t AliShuttle::GetCurrentEndTime() const
2668 // get current end time from logbook entry
2671 return fLogbookEntry ? fLogbookEntry->GetEndTime() : 0;
2674 //______________________________________________________________________________________________
2675 UInt_t AliShuttle::GetCurrentYear() const
2678 // Get current year from logbook entry
2681 if (!fLogbookEntry) return 0;
2683 TTimeStamp startTime(GetCurrentStartTime());
2684 TString year = Form("%d",startTime.GetDate());
2690 //______________________________________________________________________________________________
2691 const char* AliShuttle::GetLHCPeriod() const
2694 // Get current LHC period from logbook entry
2697 if (!fLogbookEntry) return 0;
2699 return fLogbookEntry->GetRunParameter("LHCperiod");
2702 //______________________________________________________________________________________________
2703 void AliShuttle::Log(const char* detector, const char* message)
2706 // Fill log string with a message
2709 TString logRunDir = GetShuttleLogDir();
2710 if (GetCurrentRun() >=0)
2711 logRunDir += Form("/%d", GetCurrentRun());
2713 void* dir = gSystem->OpenDirectory(logRunDir.Data());
2715 if (gSystem->mkdir(logRunDir.Data(), kTRUE)) {
2716 AliError(Form("Can't open directory <%s>", GetShuttleLogDir()));
2721 gSystem->FreeDirectory(dir);
2724 TString toLog = Form("%s UTC (%d): %s - ", TTimeStamp(time(0)).AsString("s"), getpid(), detector);
2725 if (GetCurrentRun() >= 0)
2726 toLog += Form("run %d - ", GetCurrentRun());
2727 toLog += Form("%s", message);
2729 AliInfo(toLog.Data());
2731 // if we redirect the log output already to the file, leave here
2732 if (fOutputRedirected && strcmp(detector, "SHUTTLE") != 0)
2735 TString fileName = GetLogFileName(detector);
2737 gSystem->ExpandPathName(fileName);
2740 logFile.open(fileName, ofstream::out | ofstream::app);
2742 if (!logFile.is_open()) {
2743 AliError(Form("Could not open file %s", fileName.Data()));
2747 logFile << toLog.Data() << "\n";
2752 //______________________________________________________________________________________________
2753 TString AliShuttle::GetLogFileName(const char* detector) const
2756 // returns the name of the log file for a given sub detector
2761 if (GetCurrentRun() >= 0)
2763 fileName.Form("%s/%d/%s_%d.log", GetShuttleLogDir(), GetCurrentRun(),
2764 detector, GetCurrentRun());
2766 fileName.Form("%s/%s.log", GetShuttleLogDir(), detector);
2772 //______________________________________________________________________________________________
2773 void AliShuttle::SendAlive()
2775 // sends alive message to ML
2777 TMonaLisaText mlStatus("SHUTTLE_status", "Alive");
2780 mlList.Add(&mlStatus);
2782 fMonaLisa->SendParameters(&mlList, "__PROCESSINGINFO__");
2785 //______________________________________________________________________________________________
2786 Bool_t AliShuttle::Collect(Int_t run)
2789 // Collects conditions data for all UNPROCESSED run written to DAQ LogBook in case of run = -1 (default)
2790 // If a dedicated run is given this run is processed
2792 // In operational mode, this is the Shuttle function triggered by the EOR signal.
2796 Log("SHUTTLE","Collect - Shuttle called. Collecting conditions data for unprocessed runs");
2798 Log("SHUTTLE", Form("Collect - Shuttle called. Collecting conditions data for run %d", run));
2800 SetLastAction("Starting");
2802 // create ML instance
2804 fMonaLisa = new TMonaLisaWriter(fConfig->GetMonitorHost(), fConfig->GetMonitorTable());
2809 TString whereClause("where shuttle_done=0");
2811 whereClause += Form(" and run=%d", run);
2813 TObjArray shuttleLogbookEntries;
2814 if (!QueryShuttleLogbook(whereClause, shuttleLogbookEntries))
2816 Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook");
2820 if (shuttleLogbookEntries.GetEntries() == 0)
2823 Log("SHUTTLE","Collect - Found no UNPROCESSED runs in Shuttle logbook");
2825 Log("SHUTTLE", Form("Collect - Run %d is already DONE "
2826 "or it does not exist in Shuttle logbook", run));
2830 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
2831 fFirstUnprocessed[iDet] = kTRUE;
2835 // query Shuttle logbook for earlier runs, check if some detectors are unprocessed,
2836 // flag them into fFirstUnprocessed array
2837 TString whereClause(Form("where shuttle_done=0 and run < %d", run));
2838 TObjArray tmpLogbookEntries;
2839 if (!QueryShuttleLogbook(whereClause, tmpLogbookEntries))
2841 Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook");
2845 TIter iter(&tmpLogbookEntries);
2846 AliShuttleLogbookEntry* anEntry = 0;
2847 while ((anEntry = dynamic_cast<AliShuttleLogbookEntry*> (iter.Next())))
2849 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
2851 if (anEntry->GetDetectorStatus(iDet) == AliShuttleLogbookEntry::kUnprocessed)
2853 AliDebug(2, Form("Run %d: setting %s as \"not first time unprocessed\"",
2854 anEntry->GetRun(), GetDetName(iDet)));
2855 fFirstUnprocessed[iDet] = kFALSE;
2863 if (!RetrieveConditionsData(shuttleLogbookEntries))
2865 Log("SHUTTLE", "Collect - Process of at least one run failed");
2870 Log("SHUTTLE", "Collect - Requested run(s) successfully processed");
2875 //______________________________________________________________________________________________
2876 Bool_t AliShuttle::RetrieveConditionsData(const TObjArray& dateEntries)
2879 // Retrieve conditions data for all runs that aren't processed yet
2882 Bool_t hasError = kFALSE;
2884 TIter iter(&dateEntries);
2885 AliShuttleLogbookEntry* anEntry;
2887 while ((anEntry = (AliShuttleLogbookEntry*) iter.Next())){
2888 if (!Process(anEntry)){
2892 // clean SHUTTLE temp directory
2893 //TString filename = Form("%s/*.shuttle", GetShuttleTempDir());
2894 //RemoveFile(filename.Data());
2897 return hasError == kFALSE;
2900 //______________________________________________________________________________________________
2901 ULong_t AliShuttle::GetTimeOfLastAction() const
2904 // Gets time of last action
2909 fMonitoringMutex->Lock();
2911 tmp = fLastActionTime;
2913 fMonitoringMutex->UnLock();
2918 //______________________________________________________________________________________________
2919 const TString AliShuttle::GetLastAction() const
2922 // returns a string description of the last action
2927 fMonitoringMutex->Lock();
2931 fMonitoringMutex->UnLock();
2936 //______________________________________________________________________________________________
2937 void AliShuttle::SetLastAction(const char* action)
2940 // updates the monitoring variables
2943 fMonitoringMutex->Lock();
2945 fLastAction = action;
2946 fLastActionTime = time(0);
2948 fMonitoringMutex->UnLock();
2951 //______________________________________________________________________________________________
2952 const char* AliShuttle::GetRunParameter(const char* param)
2955 // returns run parameter read from DAQ logbook
2958 if(!fLogbookEntry) {
2959 AliError("No logbook entry!");
2963 return fLogbookEntry->GetRunParameter(param);
2966 //______________________________________________________________________________________________
2967 AliCDBEntry* AliShuttle::GetFromOCDB(const char* detector, const AliCDBPath& path)
2970 // returns object from OCDB valid for current run
2973 if (fTestMode & kErrorOCDB)
2975 Log(detector, "GetFromOCDB - In TESTMODE - Simulating error with OCDB");
2979 AliCDBStorage *sto = AliCDBManager::Instance()->GetStorage(fgkMainCDB);
2982 Log(detector, "GetFromOCDB - Cannot activate main OCDB for query!");
2986 return dynamic_cast<AliCDBEntry*> (sto->Get(path, GetCurrentRun()));
2989 //______________________________________________________________________________________________
2990 Bool_t AliShuttle::SendMail(EMailTarget target, Int_t system)
2993 // sends a mail to the subdetector expert in case of preprocessor error
2996 if (fTestMode != kNone)
2999 if (!fConfig->SendMail())
3002 if (target == kDCSEMail || target == kFXSEMail) {
3003 if (!fFirstProcessing)
3007 void* dir = gSystem->OpenDirectory(GetShuttleLogDir());
3010 if (gSystem->mkdir(GetShuttleLogDir(), kTRUE))
3012 Log("SHUTTLE", Form("SendMail - Can't open directory <%s>", GetShuttleLogDir()));
3017 gSystem->FreeDirectory(dir);
3020 // det experts in to
3023 if (target == kDCSEMail) {
3024 iterExperts = new TIter(fConfig->GetAdmins(AliShuttleConfig::kAmanda));
3026 else if (target == kFXSEMail) {
3027 iterExperts = new TIter(fConfig->GetAdmins(system));
3030 iterExperts = new TIter(fConfig->GetResponsibles(fCurrentDetector));
3032 TObjString *anExpert=0;
3033 while ((anExpert = (TObjString*) iterExperts->Next()))
3035 to += Form("%s,", anExpert->GetName());
3038 if (to.Length() > 0)
3039 to.Remove(to.Length()-1);
3040 AliDebug(2, Form("to: %s",to.Data()));
3043 Log("SHUTTLE", Form("List of %d responsibles not set!", (Int_t) target));
3047 // SHUTTLE responsibles in cc
3049 TIter iterAdmins(fConfig->GetAdmins(AliShuttleConfig::kGlobal));
3050 TObjString *anAdmin=0;
3051 while ((anAdmin = (TObjString*) iterAdmins.Next()))
3053 cc += Form("%s,", anAdmin->GetName());
3055 if (cc.Length() > 0)
3056 cc.Remove(cc.Length()-1);
3057 AliDebug(2, Form("cc: %s",to.Data()));
3060 TString bodyFileName;
3061 bodyFileName.Form("%s/mail.body", GetShuttleLogDir());
3062 gSystem->ExpandPathName(bodyFileName);
3065 mailBody.open(bodyFileName, ofstream::out);
3067 if (!mailBody.is_open())
3069 Log("SHUTTLE", Form("Could not open mail body file %s", bodyFileName.Data()));