]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/AliShuttle.cxx
check at the primary level if the energy of the companion is lower than the calorimet...
[u/mrichter/AliRoot.git] / SHUTTLE / AliShuttle.cxx
CommitLineData
73abe331 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
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 **************************************************************************/
15
ff3781ad 16/* $Id$ */
73abe331 17
18//
19// This class is the main manager for AliShuttle.
20// It organizes the data retrieval from DCS and call the
b948db8d 21// interface methods of AliPreprocessor.
73abe331 22// For every detector in AliShuttleConfgi (see AliShuttleConfig),
23// data for its set of aliases is retrieved. If there is registered
b948db8d 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
73abe331 27// data is stored automatically to the undelying AliCDBStorage.
28// For detSpec is used the alias name.
29//
30
3ff44dcb 31#include <stdexcept>
73abe331 32#include "AliShuttle.h"
33
34#include "AliCDBManager.h"
35#include "AliCDBStorage.h"
36#include "AliCDBId.h"
84090f85 37#include "AliCDBRunRange.h"
38#include "AliCDBPath.h"
5164a766 39#include "AliCDBEntry.h"
73abe331 40#include "AliShuttleConfig.h"
eba76848 41#include "DCSClient/AliDCSClient.h"
73abe331 42#include "AliLog.h"
b948db8d 43#include "AliPreprocessor.h"
5164a766 44#include "AliShuttleStatus.h"
2bb7b766 45#include "AliShuttleLogbookEntry.h"
73abe331 46
57f50b3c 47#include <TSystem.h>
58bc3020 48#include <TObject.h>
b948db8d 49#include <TString.h>
57f50b3c 50#include <TTimeStamp.h>
73abe331 51#include <TObjString.h>
57f50b3c 52#include <TSQLServer.h>
53#include <TSQLResult.h>
54#include <TSQLRow.h>
cb343cfd 55#include <TMutex.h>
9827400b 56#include <TSystemDirectory.h>
57#include <TSystemFile.h>
a986b218 58#include <TFile.h>
9827400b 59#include <TGrid.h>
60#include <TGridResult.h>
503ff24f 61#include <TMap.h>
73abe331 62
e7f62f16 63#include <TMonaLisaWriter.h>
64
5164a766 65#include <fstream>
66
cb343cfd 67#include <sys/types.h>
68#include <sys/wait.h>
69
1bd183ba 70#include <signal.h>
3ff44dcb 71using namespace std;
1bd183ba 72
73abe331 73ClassImp(AliShuttle)
74
b948db8d 75//______________________________________________________________________________________________
76AliShuttle::AliShuttle(const AliShuttleConfig* config,
77 UInt_t timeout, Int_t retries):
4f0ab988 78fConfig(config),
79fTimeout(timeout), fRetries(retries),
80fPreprocessorMap(),
2bb7b766 81fLogbookEntry(0),
eba76848 82fCurrentDetector(),
926cbc0e 83fFirstProcessing(0),
339adafa 84fFXSError(-1),
85a80aa9 85fStatusEntry(0),
cb343cfd 86fMonitoringMutex(0),
eba76848 87fLastActionTime(0),
e7f62f16 88fLastAction(),
9827400b 89fMonaLisa(0),
90fTestMode(kNone),
ffa29e93 91fReadTestMode(kFALSE),
92fOutputRedirected(kFALSE)
73abe331 93{
94 //
95 // config: AliShuttleConfig used
73abe331 96 // timeout: timeout used for AliDCSClient connection
97 // retries: the number of retries in case of connection error.
98 //
99
57f50b3c 100 if (!fConfig->IsValid()) AliFatal("********** !!!!! Invalid configuration !!!!! **********");
efec19bd 101 for(int iSys=0;iSys<5;iSys++) {
57f50b3c 102 fServer[iSys]=0;
efec19bd 103 if (iSys < 4)
2c15234c 104 fFXSlist[iSys].SetOwner(kTRUE);
57f50b3c 105 }
2bb7b766 106 fPreprocessorMap.SetOwner(kTRUE);
be48e3ea 107
108 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
109 fFirstUnprocessed[iDet] = kFALSE;
110
cb343cfd 111 fMonitoringMutex = new TMutex();
58bc3020 112}
113
b948db8d 114//______________________________________________________________________________________________
57f50b3c 115AliShuttle::~AliShuttle()
58bc3020 116{
9827400b 117 //
118 // destructor
119 //
58bc3020 120
b948db8d 121 fPreprocessorMap.DeleteAll();
efec19bd 122 for(int iSys=0;iSys<5;iSys++)
57f50b3c 123 if(fServer[iSys]) {
124 fServer[iSys]->Close();
125 delete fServer[iSys];
eba76848 126 fServer[iSys] = 0;
57f50b3c 127 }
2bb7b766 128
129 if (fStatusEntry){
130 delete fStatusEntry;
131 fStatusEntry = 0;
132 }
cb343cfd 133
134 if (fMonitoringMutex)
135 {
136 delete fMonitoringMutex;
137 fMonitoringMutex = 0;
138 }
73abe331 139}
140
b948db8d 141//______________________________________________________________________________________________
57f50b3c 142void AliShuttle::RegisterPreprocessor(AliPreprocessor* preprocessor)
58bc3020 143{
73abe331 144 //
b948db8d 145 // Registers new AliPreprocessor.
73abe331 146 // It uses GetName() for indentificator of the pre processor.
147 // The pre processor is registered it there isn't any other
148 // with the same identificator (GetName()).
149 //
150
eba76848 151 const char* detName = preprocessor->GetName();
152 if(GetDetPos(detName) < 0)
153 AliFatal(Form("********** !!!!! Invalid detector name: %s !!!!! **********", detName));
154
155 if (fPreprocessorMap.GetValue(detName)) {
156 AliWarning(Form("AliPreprocessor %s is already registered!", detName));
73abe331 157 return;
158 }
159
eba76848 160 fPreprocessorMap.Add(new TObjString(detName), preprocessor);
73abe331 161}
b948db8d 162//______________________________________________________________________________________________
3301427a 163Bool_t AliShuttle::Store(const AliCDBPath& path, TObject* object,
84090f85 164 AliCDBMetaData* metaData, Int_t validityStart, Bool_t validityInfinite)
73abe331 165{
9827400b 166 // Stores a CDB object in the storage for offline reconstruction. Objects that are not needed for
167 // offline reconstruction, but should be stored anyway (e.g. for debugging) should NOT be stored
168 // using this function. Use StoreReferenceData instead!
169 // It calls StoreLocally function which temporarily stores the data locally; when the preprocessor
170 // finishes the data are transferred to the main storage (Grid).
b948db8d 171
3301427a 172 return StoreLocally(fgkLocalCDB, path, object, metaData, validityStart, validityInfinite);
84090f85 173}
174
175//______________________________________________________________________________________________
3301427a 176Bool_t AliShuttle::StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData)
84090f85 177{
9827400b 178 // Stores a CDB object in the storage for reference data. This objects will not be available during
179 // offline reconstrunction. Use this function for reference data only!
180 // It calls StoreLocally function which temporarily stores the data locally; when the preprocessor
181 // finishes the data are transferred to the main storage (Grid).
85a80aa9 182
3301427a 183 return StoreLocally(fgkLocalRefStorage, path, object, metaData);
85a80aa9 184}
185
186//______________________________________________________________________________________________
3301427a 187Bool_t AliShuttle::StoreLocally(const TString& localUri,
85a80aa9 188 const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData,
189 Int_t validityStart, Bool_t validityInfinite)
190{
9827400b 191 // Store object temporarily in local storage. Parameters are passed by Store and StoreReferenceData functions.
192 // when the preprocessor finishes the data are transferred to the main storage (Grid).
193 // The parameters are:
194 // 1) Uri of the backup storage (Local)
195 // 2) the object's path.
196 // 3) the object to be stored
197 // 4) the metaData to be associated with the object
198 // 5) the validity start run number w.r.t. the current run,
199 // if the data is valid only for this run leave the default 0
200 // 6) specifies if the calibration data is valid for infinity (this means until updated),
201 // typical for calibration runs, the default is kFALSE
202 //
203 // returns 0 if fail, 1 otherwise
84090f85 204
924fb6e9 205
9827400b 206 if (fTestMode & kErrorStorage)
207 {
208 Log(fCurrentDetector, "StoreLocally - In TESTMODE - Simulating error while storing locally");
209 return kFALSE;
210 }
211
3301427a 212 const char* cdbType = (localUri == fgkLocalCDB) ? "CDB" : "Reference";
2bb7b766 213
85a80aa9 214 Int_t firstRun = GetCurrentRun() - validityStart;
84090f85 215 if(firstRun < 0) {
9827400b 216 AliWarning("First valid run happens to be less than 0! Setting it to 0.");
84090f85 217 firstRun=0;
218 }
219
220 Int_t lastRun = -1;
221 if(validityInfinite) {
222 lastRun = AliCDBRunRange::Infinity();
223 } else {
224 lastRun = GetCurrentRun();
225 }
226
3301427a 227 // Version is set to current run, it will be used later to transfer data to Grid
228 AliCDBId id(path, firstRun, lastRun, GetCurrentRun(), -1);
2bb7b766 229
230 if(! dynamic_cast<TObjString*> (metaData->GetProperty("RunUsed(TObjString)"))){
231 TObjString runUsed = Form("%d", GetCurrentRun());
9e080f92 232 metaData->SetProperty("RunUsed(TObjString)", runUsed.Clone());
2bb7b766 233 }
84090f85 234
3301427a 235 Bool_t result = kFALSE;
84090f85 236
3301427a 237 if (!(AliCDBManager::Instance()->GetStorage(localUri))) {
238 Log("SHUTTLE", Form("StoreLocally - Cannot activate local %s storage", cdbType));
84090f85 239 } else {
924fb6e9 240 Int_t logLevel = AliLog::GetGlobalLogLevel();
241 AliLog::SetGlobalLogLevel(AliLog::kError);
3301427a 242 result = AliCDBManager::Instance()->GetStorage(localUri)
84090f85 243 ->Put(object, id, metaData);
924fb6e9 244 AliLog::SetGlobalLogLevel((AliLog::EType_t)logLevel);
84090f85 245 }
246
247 if(!result) {
248
9827400b 249 Log(fCurrentDetector, Form("StoreLocally - Can't store object <%s>!", id.ToString().Data()));
3301427a 250 }
2bb7b766 251
924fb6e9 252
3301427a 253 return result;
254}
84090f85 255
3301427a 256//______________________________________________________________________________________________
257Bool_t AliShuttle::StoreOCDB()
258{
9827400b 259 //
260 // Called when preprocessor ends successfully or when previous storage attempt failed (kStoreError status)
261 // Calls underlying StoreOCDB(const char*) function twice, for OCDB and Reference storage.
262 // Then calls StoreRefFilesToGrid to store reference files.
263 //
264
5e993b6f 265 UpdateShuttleStatus(AliShuttleStatus::kStoreStarted);
56d3e9e4 266
9827400b 267 if (fTestMode & kErrorGrid)
268 {
269 Log("SHUTTLE", "StoreOCDB - In TESTMODE - Simulating error while storing in the Grid");
270 Log(fCurrentDetector, "StoreOCDB - In TESTMODE - Simulating error while storing in the Grid");
271 return kFALSE;
272 }
273
c88ad5db 274 Log("SHUTTLE","StoreOCDB - Storing OCDB data ...");
5e993b6f 275 Int_t resultCDB = StoreOCDB(fgkMainCDB);
86aa42c3 276
c88ad5db 277 Log("SHUTTLE","StoreOCDB - Storing reference data ...");
5e993b6f 278 Int_t resultRef = StoreOCDB(fgkMainRefStorage);
9827400b 279
c88ad5db 280 Log("SHUTTLE","StoreOCDB - Storing reference files ...");
281 Bool_t resultRefFiles = CopyFilesToGrid("reference");
282
283 Bool_t resultMetadata = kTRUE;
284 if(fCurrentDetector == "GRP")
285 {
7802e884 286 Log("SHUTTLE","StoreOCDB - Storing Run Metadata file ...");
c88ad5db 287 resultMetadata = CopyFilesToGrid("metadata");
288 }
9827400b 289
5e993b6f 290 Int_t storeResult = 0;
291
292 if (resultCDB < 0 || resultRef < 0 || resultRefFiles == kFALSE || resultMetadata == kFALSE)
293 storeResult = -1;
294 else if (resultCDB > 0 || resultRef > 0)
295 storeResult = 1;
296
297 if (storeResult < 0)
298 {
299 Log("SHUTTLE",
300 Form("\t\t\t****** run %d - %s: STORAGE ERROR ******",
301 GetCurrentRun(), fCurrentDetector.Data()));
302 UpdateShuttleStatus(AliShuttleStatus::kStoreError);
303 }
304 else if (storeResult > 0)
305 {
306 Log("SHUTTLE",
307 Form("\t\t\t****** run %d - %s: STORAGE DELAYED ******",
308 GetCurrentRun(), fCurrentDetector.Data()));
309 UpdateShuttleStatus(AliShuttleStatus::kStoreDelayed);
310 }
311 else if (storeResult == 0)
312 {
313 Log("SHUTTLE",
314 Form("\t\t\t****** run %d - %s: DONE ******",
315 GetCurrentRun(), fCurrentDetector.Data()));
316 UpdateShuttleStatus(AliShuttleStatus::kDone);
317 UpdateShuttleLogbook(fCurrentDetector, "DONE");
318 }
319
320 return (storeResult == 0);
3301427a 321}
322
323//______________________________________________________________________________________________
5e993b6f 324Int_t AliShuttle::StoreOCDB(const TString& gridURI)
3301427a 325{
326 //
327 // Called by StoreOCDB(), performs actual storage to the main OCDB and reference storages (Grid)
328 //
5e993b6f 329 // Return code:
330 // -2 initialization error
331 // -1 storage error
332 // 0 success
333 // 1 storage delayed (e.g. previous unprocessed runs)
334 //
3301427a 335
336 TObjArray* gridIds=0;
337
338 Bool_t result = kTRUE;
5e993b6f 339 Bool_t delayed = kFALSE;
3301427a 340
341 const char* type = 0;
342 TString localURI;
343 if(gridURI == fgkMainCDB) {
344 type = "OCDB";
345 localURI = fgkLocalCDB;
346 } else if(gridURI == fgkMainRefStorage) {
347 type = "reference";
348 localURI = fgkLocalRefStorage;
349 } else {
350 AliError(Form("Invalid storage URI: %s", gridURI.Data()));
5e993b6f 351 return -2;
3301427a 352 }
353
354 AliCDBManager* man = AliCDBManager::Instance();
355
356 AliCDBStorage *gridSto = man->GetStorage(gridURI);
357 if(!gridSto) {
358 Log("SHUTTLE",
359 Form("StoreOCDB - cannot activate main %s storage", type));
5e993b6f 360 return -2;
3301427a 361 }
c4918594 362 gridSto->SetMirrorSEs(fgkMirrorSEs.Data());
3301427a 363
364 gridIds = gridSto->GetQueryCDBList();
365
366 // get objects previously stored in local CDB
367 AliCDBStorage *localSto = man->GetStorage(localURI);
368 if(!localSto) {
369 Log("SHUTTLE",
370 Form("StoreOCDB - cannot activate local %s storage", type));
5e993b6f 371 return -2;
3301427a 372 }
373 AliCDBPath aPath(GetOfflineDetName(fCurrentDetector.Data()),"*","*");
374 // Local objects were stored with current run as Grid version!
375 TList* localEntries = localSto->GetAll(aPath.GetPath(), GetCurrentRun(), GetCurrentRun());
376 localEntries->SetOwner(1);
377
378 // loop on local stored objects
379 TIter localIter(localEntries);
380 AliCDBEntry *aLocEntry = 0;
381 while((aLocEntry = dynamic_cast<AliCDBEntry*> (localIter.Next()))){
382 aLocEntry->SetOwner(1);
383 AliCDBId aLocId = aLocEntry->GetId();
384 aLocEntry->SetVersion(-1);
385 aLocEntry->SetSubVersion(-1);
6c0c9948 386
387 Log(fCurrentDetector.Data(), Form("Attempting to store %s", aLocId.ToString().Data()));
3301427a 388
389 // If local object is valid up to infinity we store it only if it is
390 // the first unprocessed run!
391 if (aLocId.GetLastRun() == AliCDBRunRange::Infinity() &&
392 !fFirstUnprocessed[GetDetPos(fCurrentDetector)])
393 {
394 Log("SHUTTLE", Form("StoreOCDB - %s: object %s has validity infinite but "
395 "there are previous unprocessed runs!",
396 fCurrentDetector.Data(), aLocId.GetPath().Data()));
5e993b6f 397 Log(fCurrentDetector.Data(), Form("StoreOCDB - %s: object %s has validity infinite but "
398 "there are previous unprocessed runs!",
399 fCurrentDetector.Data(), aLocId.GetPath().Data()));
400 delayed = kTRUE;
3301427a 401 continue;
402 }
403
404 // loop on Grid valid Id's
405 Bool_t store = kTRUE;
406 TIter gridIter(gridIds);
407 AliCDBId* aGridId = 0;
6c0c9948 408 while ((aGridId = dynamic_cast<AliCDBId*> (gridIter.Next()))) {
409 if (aGridId->GetPath() != aLocId.GetPath())
410 continue;
3301427a 411 // skip all objects valid up to infinity
6c0c9948 412 if (aGridId->GetLastRun() == AliCDBRunRange::Infinity())
413 continue;
414
3301427a 415 // if we get here, it means there's already some more recent object stored on Grid!
6c0c9948 416 Log(fCurrentDetector.Data(),
417 Form("StoreOCDB - A more recent object already exists in %s storage: <%s>",
418 type, aGridId->ToString().Data()));
419
3301427a 420 store = kFALSE;
421 break;
422 }
423
6c0c9948 424 Bool_t storeOk = kFALSE;
425 if (store)
426 {
427 Log(fCurrentDetector.Data(), Form("Prechecks succeeded. Ready to store %s", aLocId.ToString().Data()));
428 storeOk = gridSto->Put(aLocEntry);
429 if (storeOk) {
3301427a 430 Log("SHUTTLE",
6c0c9948 431 Form("StoreOCDB - Object <%s> successfully put into %s storage",
432 aLocId.ToString().Data(), type));
2d9019b4 433 Log(fCurrentDetector.Data(),
434 Form("StoreOCDB - Object <%s> successfully put into %s storage",
6c0c9948 435 aLocId.ToString().Data(), type));
436 } else {
437 Log("SHUTTLE",
438 Form("StoreOCDB - Grid %s storage of object <%s> failed",
439 type, aLocId.ToString().Data()));
440 Log(fCurrentDetector.Data(),
441 Form("StoreOCDB - Grid %s storage of object <%s> failed",
442 type, aLocId.ToString().Data()));
443 result = kFALSE;
3301427a 444 }
6c0c9948 445 }
446
447 if (!store || storeOk) {
448 // removing local file...
3301427a 449 TString filename;
450 localSto->IdToFilename(aLocId, filename);
c88ad5db 451 Log("SHUTTLE", Form("StoreOCDB - Removing local file %s", filename.Data()));
3301427a 452 RemoveFile(filename.Data());
b948db8d 453 }
454 }
3301427a 455 localEntries->Clear();
2bb7b766 456
5e993b6f 457 Int_t returnCode = 0;
458
459 if (result == kFALSE)
460 returnCode = -1;
461 else if (delayed != kFALSE)
462 returnCode = 1;
463
464 Log("SHUTTLE", Form("StoreOCDB - Returning with %d (result = %d, delayed = %d)", returnCode, result, delayed));
465 Log(fCurrentDetector.Data(), Form("StoreOCDB - Returning with %d (result = %d, delayed = %d)", returnCode, result, delayed));
466
467 return returnCode;
3301427a 468}
469
546242fb 470//______________________________________________________________________________________________
471Bool_t AliShuttle::CleanReferenceStorage(const char* detector)
472{
2d9019b4 473 // clears the directory used to store reference files of a given subdetector
546242fb 474
475 AliCDBManager* man = AliCDBManager::Instance();
476 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
2d9019b4 477 TString localBaseFolder = sto->GetBaseFolder();
478
479 TString targetDir = GetRefFilePrefix(localBaseFolder.Data(), detector);
480
d524ade6 481 Log("SHUTTLE", Form("CleanReferenceStorage - Cleaning %s", targetDir.Data()));
2d9019b4 482
483 TString begin;
484 begin.Form("%d_", GetCurrentRun());
485
486 TSystemDirectory* baseDir = new TSystemDirectory("/", targetDir);
487 if (!baseDir)
488 return kTRUE;
489
490 TList* dirList = baseDir->GetListOfFiles();
491 delete baseDir;
492
493 if (!dirList) return kTRUE;
494
efec19bd 495 if (dirList->GetEntries() < 3) // to be changed to 4?
2d9019b4 496 {
497 delete dirList;
498 return kTRUE;
499 }
500
501 Int_t nDirs = 0, nDel = 0;
502 TIter dirIter(dirList);
503 TSystemFile* entry = 0;
546242fb 504
2d9019b4 505 Bool_t success = kTRUE;
546242fb 506
2d9019b4 507 while ((entry = dynamic_cast<TSystemFile*> (dirIter.Next())))
508 {
509 if (entry->IsDirectory())
510 continue;
511
512 TString fileName(entry->GetName());
513 if (!fileName.BeginsWith(begin))
514 continue;
515
516 nDirs++;
517
518 // delete file
519 Int_t result = gSystem->Unlink(fileName.Data());
520
521 if (result)
522 {
d524ade6 523 Log("SHUTTLE", Form("CleanReferenceStorage - Could not delete file %s!", fileName.Data()));
2d9019b4 524 success = kFALSE;
525 } else {
526 nDel++;
527 }
528 }
529
530 if(nDirs > 0)
531 Log("SHUTTLE", Form("CleanReferenceStorage - %d (over %d) reference files in folder %s were deleted.",
532 nDel, nDirs, targetDir.Data()));
533
534
535 delete dirList;
536 return success;
537
538
539
540
541
546242fb 542
543 Int_t result = gSystem->GetPathInfo(targetDir, 0, (Long64_t*) 0, 0, 0);
544 if (result == 0)
545 {
546 // delete directory
d524ade6 547 result = gSystem->Exec(Form("rm -rf %s", targetDir.Data()));
546242fb 548 if (result != 0)
549 {
d524ade6 550 Log("SHUTTLE", Form("CleanReferenceStorage - Could not clean directory %s", targetDir.Data()));
546242fb 551 return kFALSE;
552 }
553 }
554
555 result = gSystem->mkdir(targetDir, kTRUE);
556 if (result != 0)
557 {
c88ad5db 558 Log("SHUTTLE", Form("CleanReferenceStorage - Error creating base directory %s", targetDir.Data()));
546242fb 559 return kFALSE;
560 }
561
562 return kTRUE;
563}
564
9827400b 565//______________________________________________________________________________________________
566Bool_t AliShuttle::StoreReferenceFile(const char* detector, const char* localFile, const char* gridFileName)
567{
568 //
3c2a21c8 569 // Stores reference file directly (without opening it). This function stores the file locally.
9827400b 570 //
3c2a21c8 571 // The file is stored under the following location:
572 // <base folder of local reference storage>/<DET>/<RUN#>_<gridFileName>
573 // where <gridFileName> is the second parameter given to the function
574 //
9827400b 575
576 if (fTestMode & kErrorStorage)
577 {
578 Log(fCurrentDetector, "StoreReferenceFile - In TESTMODE - Simulating error while storing locally");
579 return kFALSE;
580 }
581
582 AliCDBManager* man = AliCDBManager::Instance();
583 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
584
585 TString localBaseFolder = sto->GetBaseFolder();
586
d524ade6 587 TString target = GetRefFilePrefix(localBaseFolder.Data(), detector);
588 target.Append(Form("/%d_%s", GetCurrentRun(), gridFileName));
9827400b 589
d524ade6 590 return CopyFileLocally(localFile, target);
c88ad5db 591}
592
593//______________________________________________________________________________________________
594Bool_t AliShuttle::StoreRunMetadataFile(const char* localFile, const char* gridFileName)
595{
596 //
597 // Stores Run metadata file to the Grid, in the run folder
598 //
599 // Only GRP can call this function.
600
601 if (fTestMode & kErrorStorage)
602 {
603 Log(fCurrentDetector, "StoreRunMetaDataFile - In TESTMODE - Simulating error while storing locally");
604 return kFALSE;
605 }
606
607 AliCDBManager* man = AliCDBManager::Instance();
608 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
609
610 TString localBaseFolder = sto->GetBaseFolder();
611
612 // Build Run level folder
955d2abc 613 // folder = /alice/data/year/lhcPeriod/runNb/raw
c88ad5db 614
c88ad5db 615
675f64cd 616 TString lhcPeriod = GetLHCPeriod();
c88ad5db 617 if (lhcPeriod.Length() == 0)
618 {
619 Log("SHUTTLE","StoreRunMetaDataFile - LHCPeriod not found in logbook!");
620 return 0;
621 }
a1c5723b 622
623 // TODO partitions with one detector only write data into LHCperiod_DET
2694f253 624 TString partition = GetRunParameter("detector");
a1c5723b 625
626 if (partition.Length() > 0 && partition != "ALICE")
627 {
628 lhcPeriod.Append(Form("_%s", partition.Data()));
629 Log(fCurrentDetector, Form("Run data tags merged file will be written in %s",
630 lhcPeriod.Data()));
631 }
8884d71e 632
b8cf5e0f 633 TString target = Form("%s/GRP/RunMetadata%s%d/%s/%09d/raw/%s",
634 localBaseFolder.Data(), fConfig->GetAlienPath(), GetCurrentYear(),
d524ade6 635 lhcPeriod.Data(), GetCurrentRun(), gridFileName);
c88ad5db 636
d524ade6 637 return CopyFileLocally(localFile, target);
c88ad5db 638}
639
640//______________________________________________________________________________________________
d524ade6 641Bool_t AliShuttle::CopyFileLocally(const char* localFile, const TString& target)
c88ad5db 642{
643 //
644 // Stores file locally. Called by StoreReferenceFile and StoreRunMetadataFile
d524ade6 645 // Files are temporarily stored in the local reference storage. When the preprocessor
646 // finishes, the Shuttle calls CopyFilesToGrid to transfer the files to AliEn
647 // (in reference or run level folders)
c88ad5db 648 //
649
d524ade6 650 TString targetDir(target(0, target.Last('/')));
651
652 //try to open base dir folder, if it does not exist
2d9019b4 653 void* dir = gSystem->OpenDirectory(targetDir.Data());
654 if (dir == NULL) {
655 if (gSystem->mkdir(targetDir.Data(), kTRUE)) {
a1c5723b 656 Log("SHUTTLE", Form("CopyFileLocally - Can't open directory <%s>", targetDir.Data()));
2d9019b4 657 return kFALSE;
658 }
659
660 } else {
661 gSystem->FreeDirectory(dir);
662 }
9827400b 663
7d43a416 664 Int_t result = 0;
665
666 result = gSystem->GetPathInfo(localFile, 0, (Long64_t*) 0, 0, 0);
9827400b 667 if (result)
668 {
a1c5723b 669 Log("SHUTTLE", Form("CopyFileLocally - %s does not exist", localFile));
546242fb 670 return kFALSE;
9827400b 671 }
546242fb 672
7d43a416 673 result = gSystem->GetPathInfo(target, 0, (Long64_t*) 0, 0, 0);
674 if (!result)
675 {
a1c5723b 676 Log("SHUTTLE", Form("CopyFileLocally - target file %s already exist, removing...", target.Data()));
7d43a416 677 if (gSystem->Unlink(target.Data()))
678 {
a1c5723b 679 Log("SHUTTLE", Form("CopyFileLocally - Could not remove existing target file %s!", target.Data()));
7d43a416 680 return kFALSE;
681 }
682 }
683
9827400b 684 result = gSystem->CopyFile(localFile, target);
685
686 if (result == 0)
687 {
a1c5723b 688 Log("SHUTTLE", Form("CopyFileLocally - File %s stored locally to %s", localFile, target.Data()));
9827400b 689 return kTRUE;
690 }
691 else
692 {
a1c5723b 693 Log("SHUTTLE", Form("CopyFileLocally - Could not store file %s to %s! Error code = %d",
546242fb 694 localFile, target.Data(), result));
9827400b 695 return kFALSE;
696 }
c88ad5db 697
698
699
9827400b 700}
701
702//______________________________________________________________________________________________
c88ad5db 703Bool_t AliShuttle::CopyFilesToGrid(const char* type)
9827400b 704{
705 //
c88ad5db 706 // Transfers local files to the Grid. Local files can be reference files
707 // or run metadata file (from GRP only).
9827400b 708 //
c88ad5db 709 // According to the type (ref, metadata) the files are stored under the following location:
710 // ref --> <base folder of reference storage>/<DET>/<RUN#>_<gridFileName>
711 // metadata --> <run data folder>/<MetadataFileName>
86aa42c3 712 //
c88ad5db 713
9827400b 714 AliCDBManager* man = AliCDBManager::Instance();
715 AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
716 if (!sto)
717 return kFALSE;
718 TString localBaseFolder = sto->GetBaseFolder();
9827400b 719
c88ad5db 720 TString dir;
721 TString alienDir;
9827400b 722 TString begin;
9827400b 723
c88ad5db 724 if (strcmp(type, "reference") == 0)
725 {
726 dir = GetRefFilePrefix(localBaseFolder.Data(), fCurrentDetector.Data());
727 AliCDBStorage* gridSto = man->GetStorage(fgkMainRefStorage);
728 if (!gridSto)
729 return kFALSE;
730 TString gridBaseFolder = gridSto->GetBaseFolder();
731 alienDir = GetRefFilePrefix(gridBaseFolder.Data(), fCurrentDetector.Data());
732 begin = Form("%d_", GetCurrentRun());
733 }
734 else if (strcmp(type, "metadata") == 0)
735 {
c88ad5db 736
675f64cd 737 TString lhcPeriod = GetLHCPeriod();
c88ad5db 738
739 if (lhcPeriod.Length() == 0)
740 {
741 Log("SHUTTLE","CopyFilesToGrid - LHCPeriod not found in logbook!");
742 return 0;
743 }
744
a1c5723b 745 // TODO partitions with one detector only write data into LHCperiod_DET
2694f253 746 TString partition = GetRunParameter("detector");
a1c5723b 747
748 if (partition.Length() > 0 && partition != "ALICE")
749 {
750 lhcPeriod.Append(Form("_%s", partition.Data()));
751 }
752
b8cf5e0f 753 dir = Form("%s/GRP/RunMetadata%s%d/%s/%09d/raw",
754 localBaseFolder.Data(), fConfig->GetAlienPath(), GetCurrentYear(),
c88ad5db 755 lhcPeriod.Data(), GetCurrentRun());
b8cf5e0f 756 alienDir = dir(dir.Index(fConfig->GetAlienPath()), dir.Length());
675f64cd 757
c88ad5db 758 begin = "";
759 }
760 else
761 {
762 Log("SHUTTLE", "CopyFilesToGrid - Unexpected: type label must be reference or metadata!");
763 return kFALSE;
764 }
765
9827400b 766 TSystemDirectory* baseDir = new TSystemDirectory("/", dir);
3d8bc902 767 if (!baseDir)
768 return kTRUE;
769
2d9019b4 770 TList* dirList = baseDir->GetListOfFiles();
771 delete baseDir;
772
773 if (!dirList) return kTRUE;
774
775 if (dirList->GetEntries() < 3)
3d8bc902 776 {
2d9019b4 777 delete dirList;
9827400b 778 return kTRUE;
3d8bc902 779 }
2d9019b4 780
546242fb 781 if (!gGrid)
782 {
c88ad5db 783 Log("SHUTTLE", "CopyFilesToGrid - Connection to Grid failed: Cannot continue!");
2d9019b4 784 delete dirList;
546242fb 785 return kFALSE;
786 }
787
2d9019b4 788 Int_t nDirs = 0, nTransfer = 0;
789 TIter dirIter(dirList);
790 TSystemFile* entry = 0;
791
9827400b 792 Bool_t success = kTRUE;
3d8bc902 793 Bool_t first = kTRUE;
9827400b 794
2d9019b4 795 while ((entry = dynamic_cast<TSystemFile*> (dirIter.Next())))
796 {
9827400b 797 if (entry->IsDirectory())
798 continue;
799
800 TString fileName(entry->GetName());
801 if (!fileName.BeginsWith(begin))
802 continue;
803
2d9019b4 804 nDirs++;
805
3d8bc902 806 if (first)
807 {
808 first = kFALSE;
c88ad5db 809 // check that folder exists, otherwise create it
3d8bc902 810 TGridResult* result = gGrid->Ls(alienDir.Data(), "a");
811
812 if (!result)
2d9019b4 813 {
814 delete dirList;
3d8bc902 815 return kFALSE;
2d9019b4 816 }
3d8bc902 817
546242fb 818 if (!result->GetFileName(1)) // TODO: It looks like element 0 is always 0!!
3d8bc902 819 {
675f64cd 820 // TODO It does not work currently! Bug in TAliEn::Mkdir
821 // TODO Manually fixed in local root v5-16-00
c88ad5db 822 if (!gGrid->Mkdir(alienDir.Data(),"-p",0))
3d8bc902 823 {
c88ad5db 824 Log("SHUTTLE", Form("CopyFilesToGrid - Cannot create directory %s",
3d8bc902 825 alienDir.Data()));
2d9019b4 826 delete dirList;
3d8bc902 827 return kFALSE;
546242fb 828 } else {
c88ad5db 829 Log("SHUTTLE",Form("CopyFilesToGrid - Folder %s created", alienDir.Data()));
3d8bc902 830 }
831
546242fb 832 } else {
c88ad5db 833 Log("SHUTTLE",Form("CopyFilesToGrid - Folder %s found", alienDir.Data()));
3d8bc902 834 }
835 }
836
9827400b 837 TString fullLocalPath;
838 fullLocalPath.Form("%s/%s", dir.Data(), fileName.Data());
839
840 TString fullGridPath;
841 fullGridPath.Form("alien://%s/%s", alienDir.Data(), fileName.Data());
842
a986b218 843 Bool_t result = TFile::Cp(fullLocalPath, fullGridPath);
9827400b 844
845 if (result)
846 {
c88ad5db 847 Log("SHUTTLE", Form("CopyFilesToGrid - Copying local file %s to %s succeeded!",
848 fullLocalPath.Data(), fullGridPath.Data()));
9827400b 849 RemoveFile(fullLocalPath);
2d9019b4 850 nTransfer++;
9827400b 851 }
852 else
853 {
c88ad5db 854 Log("SHUTTLE", Form("CopyFilesToGrid - Copying local file %s to %s FAILED!",
855 fullLocalPath.Data(), fullGridPath.Data()));
9827400b 856 success = kFALSE;
857 }
858 }
2d9019b4 859
c88ad5db 860 Log("SHUTTLE", Form("CopyFilesToGrid - %d (over %d) files in folder %s copied to Grid.",
861 nTransfer, nDirs, dir.Data()));
2d9019b4 862
863
864 delete dirList;
9827400b 865 return success;
866}
867
2d9019b4 868//______________________________________________________________________________________________
869const char* AliShuttle::GetRefFilePrefix(const char* base, const char* detector)
870{
871 //
872 // Get folder name of reference files
873 //
874
875 TString offDetStr(GetOfflineDetName(detector));
3dd835d8 876 static TString dir;
2d9019b4 877 if (offDetStr == "ITS" || offDetStr == "MUON" || offDetStr == "PHOS")
878 {
879 dir.Form("%s/%s/%s", base, offDetStr.Data(), detector);
880 } else {
881 dir.Form("%s/%s", base, offDetStr.Data());
882 }
883
884 return dir.Data();
2d9019b4 885}
c88ad5db 886
3301427a 887//______________________________________________________________________________________________
888void AliShuttle::CleanLocalStorage(const TString& uri)
889{
9827400b 890 //
891 // Called in case the preprocessor is declared failed. Remove remaining objects from the local storages.
892 //
3301427a 893
894 const char* type = 0;
895 if(uri == fgkLocalCDB) {
896 type = "OCDB";
897 } else if(uri == fgkLocalRefStorage) {
546242fb 898 type = "Reference";
3301427a 899 } else {
900 AliError(Form("Invalid storage URI: %s", uri.Data()));
901 return;
902 }
903
904 AliCDBManager* man = AliCDBManager::Instance();
b948db8d 905
3301427a 906 // open local storage
907 AliCDBStorage *localSto = man->GetStorage(uri);
908 if(!localSto) {
909 Log("SHUTTLE",
910 Form("CleanLocalStorage - cannot activate local %s storage", type));
911 return;
912 }
913
914 TString filename(Form("%s/%s/*/Run*_v%d_s*.root",
546242fb 915 localSto->GetBaseFolder().Data(), GetOfflineDetName(fCurrentDetector.Data()), GetCurrentRun()));
3301427a 916
c88ad5db 917 AliDebug(2, Form("filename = %s", filename.Data()));
3301427a 918
c88ad5db 919 Log("SHUTTLE", Form("Removing remaining local files for run %d and detector %s ...",
3301427a 920 GetCurrentRun(), fCurrentDetector.Data()));
921
922 RemoveFile(filename.Data());
923
924}
925
926//______________________________________________________________________________________________
927void AliShuttle::RemoveFile(const char* filename)
928{
9827400b 929 //
930 // removes local file
931 //
3301427a 932
933 TString command(Form("rm -f %s", filename));
934
935 Int_t result = gSystem->Exec(command.Data());
936 if(result != 0)
937 {
938 Log("SHUTTLE", Form("RemoveFile - %s: Cannot remove file %s!",
939 fCurrentDetector.Data(), filename));
940 }
73abe331 941}
942
b948db8d 943//______________________________________________________________________________________________
5164a766 944AliShuttleStatus* AliShuttle::ReadShuttleStatus()
945{
9827400b 946 //
947 // Reads the AliShuttleStatus from the CDB
948 //
5164a766 949
2bb7b766 950 if (fStatusEntry){
951 delete fStatusEntry;
952 fStatusEntry = 0;
953 }
5164a766 954
3ebbf3c4 955 Int_t path1 = GetCurrentRun()/10000;
e6608c2e 956 try{
957 fStatusEntry = AliCDBManager::Instance()->GetStorage(GetLocalCDB())
958 ->Get(Form("/SHUTTLE/%s/%d", fCurrentDetector.Data(), path1), GetCurrentRun());
959 } catch(std::exception& x) {
e3b6a6e9 960 AliInfo(TString::Format("%s",x.what()));
e6608c2e 961 }
5164a766 962
2bb7b766 963 if (!fStatusEntry) return 0;
964 fStatusEntry->SetOwner(1);
5164a766 965
2bb7b766 966 AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
967 if (!status) {
968 AliError("Invalid object stored to CDB!");
969 return 0;
970 }
5164a766 971
2bb7b766 972 return status;
5164a766 973}
974
975//______________________________________________________________________________________________
7bfb2090 976Bool_t AliShuttle::WriteShuttleStatus(AliShuttleStatus* status)
5164a766 977{
9827400b 978 //
979 // writes the status for one subdetector
980 //
2bb7b766 981
982 if (fStatusEntry){
983 delete fStatusEntry;
984 fStatusEntry = 0;
985 }
5164a766 986
2bb7b766 987 Int_t run = GetCurrentRun();
3ebbf3c4 988 Int_t path1 = run/10000;
989 TString path1_string = Form("%d",path1);
5164a766 990
3ebbf3c4 991 AliCDBId id(AliCDBPath("SHUTTLE", fCurrentDetector, path1_string), run, run);
5164a766 992
2bb7b766 993 fStatusEntry = new AliCDBEntry(status, id, new AliCDBMetaData);
994 fStatusEntry->SetOwner(1);
5164a766 995
924fb6e9 996 Int_t logLevel = AliLog::GetGlobalLogLevel();
997 AliLog::SetGlobalLogLevel(AliLog::kError);
998
2bb7b766 999 UInt_t result = AliCDBManager::Instance()->GetStorage(fgkLocalCDB)->Put(fStatusEntry);
7bfb2090 1000
924fb6e9 1001 AliLog::SetGlobalLogLevel((AliLog::EType_t)logLevel);
1002
1003 if (!result) {
3301427a 1004 Log("SHUTTLE", Form("WriteShuttleStatus - Failed for %s, run %d",
1005 fCurrentDetector.Data(), run));
2bb7b766 1006 return kFALSE;
1007 }
e7f62f16 1008
8e828d39 1009 SendMLDetInfo();
7bfb2090 1010
2bb7b766 1011 return kTRUE;
5164a766 1012}
1013
1014//______________________________________________________________________________________________
1015void AliShuttle::UpdateShuttleStatus(AliShuttleStatus::Status newStatus, Bool_t increaseCount)
1016{
9827400b 1017 //
1018 // changes the AliShuttleStatus for the given detector and run to the given status
1019 //
5164a766 1020
2bb7b766 1021 if (!fStatusEntry){
1022 AliError("UNEXPECTED: fStatusEntry empty");
1023 return;
1024 }
5164a766 1025
2bb7b766 1026 AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
5164a766 1027
2bb7b766 1028 if (!status){
c88ad5db 1029 Log("SHUTTLE", "UpdateShuttleStatus - UNEXPECTED: status could not be read from current CDB entry");
2bb7b766 1030 return;
1031 }
5164a766 1032
2c15234c 1033 TString actionStr = Form("UpdateShuttleStatus - %s: Changing state from %s to %s",
eba76848 1034 fCurrentDetector.Data(),
36c99a6a 1035 status->GetStatusName(),
eba76848 1036 status->GetStatusName(newStatus));
cb343cfd 1037 Log("SHUTTLE", actionStr);
1038 SetLastAction(actionStr);
5164a766 1039
2bb7b766 1040 status->SetStatus(newStatus);
1041 if (increaseCount) status->IncreaseCount();
5164a766 1042
924fb6e9 1043 Int_t logLevel = AliLog::GetGlobalLogLevel();
1044 AliLog::SetGlobalLogLevel(AliLog::kError);
1045
2bb7b766 1046 AliCDBManager::Instance()->GetStorage(fgkLocalCDB)->Put(fStatusEntry);
e7f62f16 1047
924fb6e9 1048 AliLog::SetGlobalLogLevel((AliLog::EType_t)logLevel);
1049
8e828d39 1050 SendMLDetInfo();
5164a766 1051}
e7f62f16 1052
1053//______________________________________________________________________________________________
8e828d39 1054void AliShuttle::SendMLDetInfo()
e7f62f16 1055{
1056 //
1057 // sends ML information about the current status of the current detector being processed
1058 //
1059
1060 AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
1061
1062 if (!status){
8e828d39 1063 Log("SHUTTLE", "SendMLDetInfo - UNEXPECTED: status could not be read from current CDB entry");
e7f62f16 1064 return;
1065 }
1066
1067 TMonaLisaText mlStatus(Form("%s_status", fCurrentDetector.Data()), status->GetStatusName());
1068 TMonaLisaValue mlRetryCount(Form("%s_count", fCurrentDetector.Data()), status->GetCount());
1069
1070 TList mlList;
1071 mlList.Add(&mlStatus);
1072 mlList.Add(&mlRetryCount);
1073
ee6f7523 1074 TString mlID;
1075 mlID.Form("%d", GetCurrentRun());
1076 fMonaLisa->SendParameters(&mlList, mlID);
e7f62f16 1077}
1078
5164a766 1079//______________________________________________________________________________________________
1080Bool_t AliShuttle::ContinueProcessing()
1081{
9827400b 1082 // this function reads the AliShuttleStatus information from CDB and
1083 // checks if the processing should be continued
1084 // if yes it returns kTRUE and updates the AliShuttleStatus with nextStatus
2bb7b766 1085
926cbc0e 1086 if (!fConfig->HostProcessDetector(fCurrentDetector))
1087 return kFALSE;
57c1a579 1088
1089 AliPreprocessor* aPreprocessor =
1090 dynamic_cast<AliPreprocessor*> (fPreprocessorMap.GetValue(fCurrentDetector));
1091 if (!aPreprocessor)
1092 {
e55e9b46 1093 Log("SHUTTLE", Form("ContinueProcessing - %s: no preprocessor registered", fCurrentDetector.Data()));
1094 return kFALSE;
57c1a579 1095 }
1096
2bb7b766 1097 AliShuttleLogbookEntry::Status entryStatus =
eba76848 1098 fLogbookEntry->GetDetectorStatus(fCurrentDetector);
2bb7b766 1099
5e993b6f 1100 if (entryStatus != AliShuttleLogbookEntry::kUnprocessed) {
c88ad5db 1101 Log("SHUTTLE", Form("ContinueProcessing - %s is %s",
2bb7b766 1102 fCurrentDetector.Data(),
1103 fLogbookEntry->GetDetectorStatusName(entryStatus)));
1104 return kFALSE;
1105 }
1106
1107 // if we get here, according to Shuttle logbook subdetector is in UNPROCESSED state
be48e3ea 1108
1109 // check if current run is first unprocessed run for current detector
1110 if (fConfig->StrictRunOrder(fCurrentDetector) &&
1111 !fFirstUnprocessed[GetDetPos(fCurrentDetector)])
1112 {
86aa42c3 1113 if (fTestMode == kNone)
1114 {
c88ad5db 1115 Log("SHUTTLE", Form("ContinueProcessing - %s requires strict run ordering"
0a0b087a 1116 " but this is not the first unprocessed run!",fCurrentDetector.Data()));
86aa42c3 1117 return kFALSE;
1118 }
1119 else
1120 {
c88ad5db 1121 Log("SHUTTLE", Form("ContinueProcessing - In TESTMODE - "
1122 "Although %s requires strict run ordering "
1123 "and this is not the first unprocessed run, "
0a0b087a 1124 "the SHUTTLE continues",fCurrentDetector.Data()));
86aa42c3 1125 }
be48e3ea 1126 }
1127
926cbc0e 1128 // Is the subdetector processed first time for this run?
1129 fFirstProcessing = kFALSE;
1130
2bb7b766 1131 AliShuttleStatus* status = ReadShuttleStatus();
1132 if (!status) {
1133 // first time
1134 Log("SHUTTLE", Form("ContinueProcessing - %s: Processing first time",
1135 fCurrentDetector.Data()));
1136 status = new AliShuttleStatus(AliShuttleStatus::kStarted);
926cbc0e 1137 fFirstProcessing = kTRUE;
2bb7b766 1138 return WriteShuttleStatus(status);
1139 }
1140
ffa25f20 1141 // The following case shouldn't happen if Shuttle Logbook was correctly updated.
2bb7b766 1142 // If it happens it may mean Logbook updating failed... let's do it now!
1143 if (status->GetStatus() == AliShuttleStatus::kDone ||
ffa25f20 1144 status->GetStatus() == AliShuttleStatus::kFailed ||
1145 status->GetStatus() == AliShuttleStatus::kSkipped) {
2bb7b766 1146 Log("SHUTTLE", Form("ContinueProcessing - %s is already %s. Updating Shuttle Logbook",
1147 fCurrentDetector.Data(),
1148 status->GetStatusName(status->GetStatus())));
ffa25f20 1149
1150 if (status->GetStatus() == AliShuttleStatus::kSkipped)
1151 {
1152 UpdateShuttleLogbook(fCurrentDetector.Data(), "DONE");
1153 }
1154 else
1155 UpdateShuttleLogbook(fCurrentDetector.Data(), status->GetStatusName(status->GetStatus()));
1156
2bb7b766 1157 return kFALSE;
1158 }
1159
5e993b6f 1160 if (status->GetStatus() == AliShuttleStatus::kStoreStarted || status->GetStatus() == AliShuttleStatus::kStoreDelayed ||status->GetStatus() == AliShuttleStatus::kStoreError) {
2bb7b766 1161 Log("SHUTTLE",
c88ad5db 1162 Form("ContinueProcessing - %s: Grid storage of one or more "
1163 "objects failed. Trying again now",
2bb7b766 1164 fCurrentDetector.Data()));
5e993b6f 1165 StoreOCDB();
2bb7b766 1166 return kFALSE;
1167 }
1168
1169 // if we get here, there is a restart
57c1a579 1170 Bool_t cont = kFALSE;
2bb7b766 1171
1172 // abort conditions
cb343cfd 1173 if (status->GetCount() >= fConfig->GetMaxRetries()) {
57c1a579 1174 Log("SHUTTLE", Form("ContinueProcessing - %s failed %d times in status %s - "
1175 "Updating Shuttle Logbook", fCurrentDetector.Data(),
2bb7b766 1176 status->GetCount(), status->GetStatusName()));
1177 UpdateShuttleLogbook(fCurrentDetector.Data(), "FAILED");
e7f62f16 1178 UpdateShuttleStatus(AliShuttleStatus::kFailed);
3301427a 1179
1180 // there may still be objects in local OCDB and reference storage
1181 // and FXS databases may be not updated: do it now!
9827400b 1182
1183 // TODO Currently disabled, we want to keep files in case of failure!
1184 // CleanLocalStorage(fgkLocalCDB);
1185 // CleanLocalStorage(fgkLocalRefStorage);
1186 // UpdateTableFailCase();
1187
1188 // Send mail to detector expert!
c88ad5db 1189 Log("SHUTTLE", Form("ContinueProcessing - Sending mail to %s expert...",
926cbc0e 1190 fCurrentDetector.Data()));
fe6a3257 1191 // det experts in to
1192 TString to="";
1193 TIter *iterExperts = 0;
1194 iterExperts = new TIter(fConfig->GetResponsibles(fCurrentDetector));
1195 TObjString *anExpert=0;
1196 while ((anExpert = (TObjString*) iterExperts->Next()))
1197 {
1198 to += Form("%s, \n", anExpert->GetName());
1199 }
1200 delete iterExperts;
1201
1202 if (to.Length() > 0)
1203 to.Remove(to.Length()-3);
1204 AliDebug(2, Form("to: %s",to.Data()));
1205
1206 if (to.IsNull()) {
1207 Log("SHUTTLE", Form("List of %s responsibles not set!", fCurrentDetector.Data()));
1208 return kFALSE;
1209 }
1210
1211 Log(fCurrentDetector.Data(), Form("ContinueProcessing - Sending mail to %s expert(s):",
1212 fCurrentDetector.Data()));
1213 Log(fCurrentDetector.Data(), Form("\n%s", to.Data()));
339adafa 1214 if (!SendMail(kPPEMail))
9827400b 1215 Log("SHUTTLE", Form("ContinueProcessing - Could not send mail to %s expert",
926cbc0e 1216 fCurrentDetector.Data()));
3301427a 1217
57c1a579 1218 } else {
1219 Log("SHUTTLE", Form("ContinueProcessing - %s: restarting. "
1220 "Aborted before with %s. Retry number %d.", fCurrentDetector.Data(),
1221 status->GetStatusName(), status->GetCount()));
9827400b 1222 Bool_t increaseCount = kTRUE;
c88ad5db 1223 if (status->GetStatus() == AliShuttleStatus::kDCSError ||
8da81210 1224 status->GetStatus() == AliShuttleStatus::kDCSStarted ||
5ca8f352 1225 status->GetStatus() == AliShuttleStatus::kFXSError ||
1226 status->GetStatus() == AliShuttleStatus::kOCDBError)
c88ad5db 1227 increaseCount = kFALSE;
675f64cd 1228
9827400b 1229 UpdateShuttleStatus(AliShuttleStatus::kStarted, increaseCount);
57c1a579 1230 cont = kTRUE;
2bb7b766 1231 }
1232
57c1a579 1233 return cont;
5164a766 1234}
1235
8e828d39 1236//______________________________________________________________________________________________
1237void AliShuttle::SendMLRunInfo(const char* status)
1238{
1239 //
1240 // Send information about this run to ML
1241
1242 TMonaLisaText mlStatus("SHUTTLE_status", status);
1243 TString runType(fLogbookEntry->GetRunType());
1244 if (strlen(fLogbookEntry->GetRunParameter("log")) > 0){
1245
1246 runType += "(";
1247 runType += fLogbookEntry->GetRunParameter("log");
1248 runType += ")";
1249 }
728290a4 1250 if (fLogbookEntry->GetDATestMode()){
1251 runType += " (DATest)";
1252 }
8e828d39 1253 TMonaLisaText mlRunType("SHUTTLE_runtype", runType);
1254
1255 TList mlList;
1256 mlList.Add(&mlStatus);
1257 mlList.Add(&mlRunType);
1258
1259 TString mlID;
1260 mlID.Form("%d", GetCurrentRun());
1261 fMonaLisa->SendParameters(&mlList, mlID);
1262}
1263
ef83773f 1264//______________________________________________________________________________________________
1265Int_t AliShuttle::GetMem(Int_t pid)
1266{
1267 // invokes ps to get the memory consumption of the process <pid>
1268 // returns -1 in case of error
1269
1270 TString checkStr;
1271 checkStr.Form("ps -o vsize --pid %d | tail -n 1", pid);
1272 FILE* pipe = gSystem->OpenPipe(checkStr, "r");
1273 if (!pipe)
1274 {
1275 Log("SHUTTLE", Form("Process - Error: "
1276 "Could not open pipe to %s", checkStr.Data()));
1277 return -1;
1278 }
1279
1280 char buffer[100];
1281 if (!fgets(buffer, 100, pipe))
1282 {
1283 Log("SHUTTLE", "Process - Error: ps did not return anything");
1284 gSystem->ClosePipe(pipe);
1285 return -1;
1286 }
1287 gSystem->ClosePipe(pipe);
1288
1289 //Log("SHUTTLE", Form("ps returned %s", buffer));
1290
1291 Int_t mem = 0;
1292 if ((sscanf(buffer, "%d\n", &mem) != 1) || !mem)
1293 {
1294 Log("SHUTTLE", "Process - Error: Could not parse output of ps");
1295 return -1;
1296 }
1297
1298 return mem;
1299}
1300
5164a766 1301//______________________________________________________________________________________________
2bb7b766 1302Bool_t AliShuttle::Process(AliShuttleLogbookEntry* entry)
58bc3020 1303{
73abe331 1304 //
b948db8d 1305 // Makes data retrieval for all detectors in the configuration.
2bb7b766 1306 // entry: Shuttle logbook entry, contains run paramenters and status of detectors
1307 // (Unprocessed, Inactive, Failed or Done).
d477ad88 1308 // Returns kFALSE in case of error occured and kTRUE otherwise
73abe331 1309 //
1310
9827400b 1311 if (!entry) return kFALSE;
2bb7b766 1312
1313 fLogbookEntry = entry;
1314
c88ad5db 1315 Log("SHUTTLE", Form("\t\t\t^*^*^*^*^*^*^*^*^*^*^*^* run %d: START ^*^*^*^*^*^*^*^*^*^*^*^*",
9827400b 1316 GetCurrentRun()));
2bb7b766 1317
339adafa 1318 CountOpenRuns();
1319
8e828d39 1320 // Send the information to ML
1321 SendMLRunInfo("Processing");
3301427a 1322
9827400b 1323 if (fLogbookEntry->IsDone())
1324 {
1325 Log("SHUTTLE","Process - Shuttle is already DONE. Updating logbook");
1326 UpdateShuttleLogbook("shuttle_done");
1327 fLogbookEntry = 0;
1328 return kTRUE;
1329 }
1330
1331 // read test mode if flag is set
1332 if (fReadTestMode)
1333 {
3d8bc902 1334 fTestMode = kNone;
9827400b 1335 TString logEntry(entry->GetRunParameter("log"));
1336 //printf("log entry = %s\n", logEntry.Data());
1337 TString searchStr("Testmode: ");
1338 Int_t pos = logEntry.Index(searchStr.Data());
1339 //printf("%d\n", pos);
1340 if (pos >= 0)
1341 {
1342 TSubString subStr = logEntry(pos + searchStr.Length(), logEntry.Length());
1343 //printf("%s\n", subStr.String().Data());
1344 TString newStr(subStr.Data());
1345 TObjArray* token = newStr.Tokenize(' ');
1346 if (token)
1347 {
1348 //token->Print();
1349 TObjString* tmpStr = dynamic_cast<TObjString*> (token->First());
1350 if (tmpStr)
1351 {
1352 Int_t testMode = tmpStr->String().Atoi();
1353 if (testMode > 0)
1354 {
c88ad5db 1355 Log("SHUTTLE", Form("Process - Enabling test mode %d", testMode));
9827400b 1356 SetTestMode((TestMode) testMode);
1357 }
1358 }
1359 delete token;
1360 }
1361 }
1362 }
c88ad5db 1363
eba76848 1364 fLogbookEntry->Print("all");
57f50b3c 1365
1366 // Initialization
d477ad88 1367 Bool_t hasError = kFALSE;
5164a766 1368
728290a4 1369 // Set the CDB and Reference folders according to the year
1370
1371 // build cdb paths (repeat each time, run might be a DATest run)
1372 if (!fLogbookEntry->GetDATestMode()){
1373 fgkMainCDB.Form("alien://folder=%s%d/OCDB?user=alidaq?cacheFold=/tmp/OCDBCache",
1374 fConfig->GetAlienPath(), GetCurrentYear());
1375
1376 fgkMainRefStorage.Form("alien://folder=%s%d/Reference?user=alidaq?cacheFold=/tmp/OCDBCache",
1377 fConfig->GetAlienPath(), GetCurrentYear());
1378 }
1379 else {
1380 fgkMainCDB.Form("alien://folder=%s%d/DATest/OCDB?user=alidaq?cacheFold=/tmp/OCDBCache",
1381 fConfig->GetAlienPath(), GetCurrentYear());
1382
1383 fgkMainRefStorage.Form("alien://folder=%s%d/DATest/Reference?user=alidaq?cacheFold=/tmp/OCDBCache",
1384 fConfig->GetAlienPath(), GetCurrentYear());
1385 }
1386
1387 AliDebug(2,Form("Main CDB storage = %s",fgkMainCDB.Data()));
1388 AliDebug(2,Form("Main Reference storage = %s",fgkMainRefStorage.Data()));
1389
57f50b3c 1390 // Loop on detectors in the configuration
b948db8d 1391 TIter iter(fConfig->GetDetectors());
2bb7b766 1392 TObjString* aDetector = 0;
b948db8d 1393
4508ab8b 1394 Bool_t first = kTRUE;
1395
be48e3ea 1396 while ((aDetector = (TObjString*) iter.Next()))
1397 {
7bfb2090 1398 fCurrentDetector = aDetector->String();
5164a766 1399
5e993b6f 1400 if (ContinueProcessing() == kFALSE)
1401 continue;
4508ab8b 1402
1403 if (first)
1404 {
1405 // only read QueryCDB when needed and only once
1406 AliCDBStorage *mainCDBSto = AliCDBManager::Instance()->GetStorage(fgkMainCDB);
1407 if(mainCDBSto) mainCDBSto->QueryCDB(GetCurrentRun());
1408 AliCDBStorage *mainRefSto = AliCDBManager::Instance()->GetStorage(fgkMainRefStorage);
1409 if(mainRefSto) mainRefSto->QueryCDB(GetCurrentRun());
1410 first = kFALSE;
1411 }
9e080f92 1412
c88ad5db 1413 Log("SHUTTLE", Form("\t\t\t****** run %d - %s: START ******",
2bb7b766 1414 GetCurrentRun(), aDetector->GetName()));
1415
6e25f828 1416 for(Int_t iSys=0;iSys<4;iSys++) fFXSCalled[iSys]=kFALSE;
ef83773f 1417
1418 Int_t initialMem = GetMem(getpid());
1419 Log("SHUTTLE", Form("Memory consumption before forking is %d", initialMem));
9d733021 1420
c88ad5db 1421 Log(fCurrentDetector.Data(), "Process - Starting processing");
85a80aa9 1422
be48e3ea 1423 Int_t pid = fork();
1424
1425 if (pid < 0)
1426 {
c88ad5db 1427 Log("SHUTTLE", "Process - ERROR: Forking failed");
be48e3ea 1428 }
1429 else if (pid > 0)
1430 {
1431 // parent
c88ad5db 1432 Log("SHUTTLE", Form("Process - In parent process of %d - %s: Starting monitoring",
be48e3ea 1433 GetCurrentRun(), aDetector->GetName()));
1434
1435 Long_t begin = time(0);
1436
1437 int status; // to be used with waitpid, on purpose an int (not Int_t)!
1438 while (waitpid(pid, &status, WNOHANG) == 0)
1439 {
1440 Long_t expiredTime = time(0) - begin;
1441
01c76120 1442 // the run-dependent timeout is the timeout from the configuration plus a twentieth of
1443 // the run duration, e.g. 3 additional minutes for 1h run or 1/2h for a 10h run
1444 Int_t runDepTimeOut = fConfig->GetPPTimeOut() + (GetCurrentEndTime() - GetCurrentStartTime()) * 0.05;
1445 if (expiredTime > runDepTimeOut)
be48e3ea 1446 {
56d3e9e4 1447 TString logMsg;
1448 AliShuttleStatus *currentStatus = ReadShuttleStatus();
1449 AliShuttleStatus::Status newStatus = AliShuttleStatus::kInvalid;
1450
838d9827 1451 if (currentStatus->GetStatus() == AliShuttleStatus::kDCSStarted)
1452 {
1453 // in case the pp goes in TimeOut while retrieving the DCS DPs
1454 // set status to kDCSError
1455
0a0b087a 1456 logMsg.Form("Process - Process of %s timed out while retrieving the DCS DataPoints. Run time: %ld seconds. Killing... and setting status to DCSError.",
838d9827 1457 fCurrentDetector.Data(), expiredTime);
1458 newStatus = AliShuttleStatus::kDCSError;
1459 }
1460 else if (currentStatus->GetStatus() <= AliShuttleStatus::kPPDone)
56d3e9e4 1461 {
1462 // in case pp not yet done set status to kPPTimeOut
1463
0a0b087a 1464 logMsg.Form("Process - Process of %s timed out. Run time: %ld seconds. Killing...",
56d3e9e4 1465 fCurrentDetector.Data(), expiredTime);
1466 newStatus = AliShuttleStatus::kPPTimeOut;
1467 }
1468 else if (currentStatus->GetStatus() == AliShuttleStatus::kStoreStarted)
1469 {
1470 // in case the pp goes in TimeOut while storing the objects in the OCDB
1471 // set status to kStoreError
1472
0a0b087a 1473 logMsg.Form("Process - Process of %s timed out while storing the OCDB object. Run time: %ld seconds. Killing... and setting status to StoreError.",
56d3e9e4 1474 fCurrentDetector.Data(), expiredTime);
1475 newStatus = AliShuttleStatus::kStoreError;
1476 }
1477 else
1478 {
1479 // in other cases don't change the status
1480
0a0b087a 1481 logMsg.Form("Process - Process of %s timed out in status = %s. Run time: %ld seconds. Killing... without changing the status",
56d3e9e4 1482 fCurrentDetector.Data(), currentStatus->GetStatusName(), expiredTime);
1483 }
1484
1485 Log("SHUTTLE", logMsg);
1486 Log(fCurrentDetector, logMsg);
be48e3ea 1487
1488 kill(pid, 9);
1489
56d3e9e4 1490 if (newStatus != AliShuttleStatus::kInvalid)
1491 UpdateShuttleStatus(newStatus);
be48e3ea 1492 hasError = kTRUE;
1493
1494 gSystem->Sleep(1000);
1495 }
1496 else
1497 {
be48e3ea 1498 gSystem->Sleep(1000);
9827400b 1499
ef83773f 1500 Int_t mem = GetMem(pid);
1501
1502 if (mem < 0)
9827400b 1503 continue;
9827400b 1504
ef83773f 1505 mem -= initialMem;
1506 if (mem < 0)
1507 mem = 0;
9827400b 1508
1509 if (expiredTime % 60 == 0)
ee6f7523 1510 {
c88ad5db 1511 Log("SHUTTLE", Form("Process - %s: Checking process. "
0a0b087a 1512 "Run time: %ld seconds - Memory consumption: %d KB",
c88ad5db 1513 fCurrentDetector.Data(), expiredTime, mem));
ee6f7523 1514 SendAlive();
1515 }
9827400b 1516
1517 if (mem > fConfig->GetPPMaxMem())
1518 {
1519 TString tmp;
c88ad5db 1520 tmp.Form("Process - Process exceeds maximum allowed memory "
1521 "(%d KB > %d KB). Killing...",
9827400b 1522 mem, fConfig->GetPPMaxMem());
1523 Log("SHUTTLE", tmp);
1524 Log(fCurrentDetector, tmp);
1525
1526 kill(pid, 9);
1527
1528 UpdateShuttleStatus(AliShuttleStatus::kPPOutOfMemory);
1529 hasError = kTRUE;
1530
1531 gSystem->Sleep(1000);
1532 }
be48e3ea 1533 }
1534 }
1535
c88ad5db 1536 Log("SHUTTLE", Form("Process - In parent process of %d - %s: Client has terminated.",
be48e3ea 1537 GetCurrentRun(), aDetector->GetName()));
1538
1539 if (WIFEXITED(status))
1540 {
1541 Int_t returnCode = WEXITSTATUS(status);
1542
c88ad5db 1543 Log("SHUTTLE", Form("Process - %s: the return code is %d", fCurrentDetector.Data(),
3301427a 1544 returnCode));
be48e3ea 1545
9827400b 1546 if (returnCode == 0) hasError = kTRUE;
be48e3ea 1547 }
1548 }
1549 else if (pid == 0)
1550 {
26b1866e 1551 // child
1552 Log("SHUTTLE", Form("Process - In child process of %d - %s", GetCurrentRun(),
c88ad5db 1553 aDetector->GetName()));
be48e3ea 1554
c88ad5db 1555 Log("SHUTTLE", Form("Process - Redirecting output to %s log",fCurrentDetector.Data()));
ffa29e93 1556
546242fb 1557 if ((freopen(GetLogFileName(fCurrentDetector), "a", stdout)) == 0)
ffa29e93 1558 {
c88ad5db 1559 Log("SHUTTLE", "Process - Could not freopen stdout");
ffa29e93 1560 }
1561 else
1562 {
1563 fOutputRedirected = kTRUE;
1564 if ((dup2(fileno(stdout), fileno(stderr))) < 0)
c88ad5db 1565 Log("SHUTTLE", "Process - Could not redirect stderr");
ffa29e93 1566
1567 }
51c3744e 1568
1569 Log("SHUTTLE", "Executing TGrid::Connect");
1570 TGrid::Connect("alien://");
ffa29e93 1571
5bac2bde 1572 TString wd = gSystem->WorkingDirectory();
3ebbf3c4 1573 Int_t dir_lev1 = GetCurrentRun()/10000;
1574 TString tmpDir = Form("%s/%d/%d/%s_process", GetShuttleTempDir(),
1575 dir_lev1, GetCurrentRun(), fCurrentDetector.Data());
5bac2bde 1576
d524ade6 1577 Int_t result = gSystem->GetPathInfo(tmpDir.Data(), 0, (Long64_t*) 0, 0, 0);
1578 if (!result) // temp dir already exists!
1579 {
1580 Log(fCurrentDetector.Data(),
1581 Form("Process - %s dir already exists! Removing...", tmpDir.Data()));
1582 gSystem->Exec(Form("rm -rf %s",tmpDir.Data()));
675f64cd 1583 }
1584
1585 if (gSystem->mkdir(tmpDir.Data(), 1))
1586 {
1587 Log(fCurrentDetector.Data(), "Process - could not make temp directory!!");
1588 gSystem->Exit(1);
d524ade6 1589 }
1590
1591 if (!gSystem->ChangeDirectory(tmpDir.Data()))
1592 {
1593 Log(fCurrentDetector.Data(), "Process - could not change directory!!");
1594 gSystem->Exit(1);
1595 }
5bac2bde 1596
ffa25f20 1597 Int_t success = ProcessCurrentDetector();
26b1866e 1598
5bac2bde 1599 gSystem->ChangeDirectory(wd.Data());
b1d18693 1600
ffa25f20 1601 if (success == 1) // Preprocessor finished successfully!
9827400b 1602 {
fb40ead4 1603 // remove temporary folder or DCS map
1604 if (!fConfig->KeepTempFolder())
1605 {
1606 gSystem->Exec(Form("rm -rf %s",tmpDir.Data()));
1607 } else if (!fConfig->KeepDCSMap())
1608 {
1609 gSystem->Exec(Form("rm -f %s/DCSMap.root",tmpDir.Data()));
1610 }
b1d18693 1611
3301427a 1612 // Update time_processed field in FXS DB
1613 if (UpdateTable() == kFALSE)
5bac2bde 1614 Log("SHUTTLE", Form("Process - %s: Could not update FXS databases!",
1615 fCurrentDetector.Data()));
3301427a 1616
1617 // Transfer the data from local storage to main storage (Grid)
3301427a 1618 if (StoreOCDB() == kFALSE)
9827400b 1619 success = kFALSE;
5e993b6f 1620 }
ffa25f20 1621 else if (success == 0)
c88ad5db 1622 {
1623 Log("SHUTTLE",
5ca8f352 1624 Form("\t\t\t****** run %d - %s: ERROR ******",
c88ad5db 1625 GetCurrentRun(), aDetector->GetName()));
be48e3ea 1626 }
1627
6e25f828 1628 for (UInt_t iSys=0; iSys<4; iSys++)
4b95672b 1629 {
1630 if (fFXSCalled[iSys]) fFXSlist[iSys].Clear();
1631 }
1632
c88ad5db 1633 Log("SHUTTLE", Form("Process - Client process of %d - %s is exiting now with %d.",
9827400b 1634 GetCurrentRun(), aDetector->GetName(), success));
be48e3ea 1635
1636 // the client exits here
9827400b 1637 gSystem->Exit(success);
be48e3ea 1638
1639 AliError("We should never get here!!!");
1640 }
7bfb2090 1641 }
5164a766 1642
c88ad5db 1643 Log("SHUTTLE", Form("\t\t\t^*^*^*^*^*^*^*^*^*^*^*^* run %d: FINISH ^*^*^*^*^*^*^*^*^*^*^*^*",
2bb7b766 1644 GetCurrentRun()));
1645
1646 //check if shuttle is done for this run, if so update logbook
1647 TObjArray checkEntryArray;
1648 checkEntryArray.SetOwner(1);
9e080f92 1649 TString whereClause = Form("where run=%d", GetCurrentRun());
b0e53b15 1650 if (!QueryShuttleLogbook(whereClause.Data(), checkEntryArray) ||
1651 checkEntryArray.GetEntries() == 0) {
9e080f92 1652 Log("SHUTTLE", Form("Process - Warning: Cannot check status of run %d on Shuttle logbook!",
1653 GetCurrentRun()));
1654 return hasError == kFALSE;
1655 }
b948db8d 1656
9e080f92 1657 AliShuttleLogbookEntry* checkEntry = dynamic_cast<AliShuttleLogbookEntry*>
1658 (checkEntryArray.At(0));
2bb7b766 1659
9e080f92 1660 if (checkEntry)
1661 {
1662 if (checkEntry->IsDone())
be48e3ea 1663 {
9e080f92 1664 Log("SHUTTLE","Process - Shuttle is DONE. Updating logbook");
1665 UpdateShuttleLogbook("shuttle_done");
1666 }
1667 else
1668 {
1669 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
be48e3ea 1670 {
9e080f92 1671 if (checkEntry->GetDetectorStatus(iDet) == AliShuttleLogbookEntry::kUnprocessed)
be48e3ea 1672 {
9e080f92 1673 AliDebug(2, Form("Run %d: setting %s as \"not first time unprocessed\"",
1674 checkEntry->GetRun(), GetDetName(iDet)));
1675 fFirstUnprocessed[iDet] = kFALSE;
be48e3ea 1676 }
1677 }
8e828d39 1678 SendMLRunInfo("Pending");
2bb7b766 1679 }
1680 }
1681
1682 fLogbookEntry = 0;
85a80aa9 1683
a7160fe9 1684 return hasError == kFALSE;
73abe331 1685}
1686
b948db8d 1687//______________________________________________________________________________________________
ffa25f20 1688Int_t AliShuttle::ProcessCurrentDetector()
73abe331 1689{
1690 //
2bb7b766 1691 // Makes data retrieval just for a specific detector (fCurrentDetector).
73abe331 1692 // Threre should be a configuration for this detector.
73abe331 1693
1d172743 1694 Log("SHUTTLE", Form("ProcessCurrentDetector - Retrieving values for %s, run %d",
1695 fCurrentDetector.Data(), GetCurrentRun()));
73abe331 1696
d524ade6 1697 TString wd = gSystem->WorkingDirectory();
1698
2d9019b4 1699 if (!CleanReferenceStorage(fCurrentDetector.Data()))
ffa25f20 1700 return 0;
d524ade6 1701
1702 gSystem->ChangeDirectory(wd.Data());
1703
3301427a 1704 // call preprocessor
1705 AliPreprocessor* aPreprocessor =
1706 dynamic_cast<AliPreprocessor*> (fPreprocessorMap.GetValue(fCurrentDetector));
1707
8579c6fb 1708 // check if the preprocessor wants to process this run type
1709 if (aPreprocessor->ProcessRunType() == kFALSE)
ffa25f20 1710 {
1711 UpdateShuttleStatus(AliShuttleStatus::kSkipped);
1712 UpdateShuttleLogbook(fCurrentDetector, "DONE");
bd23d48b 1713 if (!UpdateTableSkippedCase(fCurrentDetector.Data()))
1714 {
1715 AliError(Form("Could not update FXS tables for run %d !", GetCurrentRun()));
1716 }
ffa25f20 1717 Log(fCurrentDetector, Form("ProcessCurrentDetector - %s preprocessor is not interested in this run type", fCurrentDetector.Data()));
1718
1719 return 2;
1720 }
1721
5ca8f352 1722 // checking if OCDB is reachable
1723 AliCDBEntry* testEntry = GetFromOCDB("SHUTTLE","GRP/CTP/DummyConfig");
1724 if (!testEntry){
1725 // OCDB is not accessible, going in OCDBError for current detector
1726 AliError("OCDB Test entry not accessible");
1727 UpdateShuttleStatus(AliShuttleStatus::kOCDBError);
1728 return 0;
1729 }
1730
ffa25f20 1731 TMap* dcsMap = new TMap();
1732
3301427a 1733 aPreprocessor->Initialize(GetCurrentRun(), GetCurrentStartTime(), GetCurrentEndTime());
1734
1735 Bool_t processDCS = aPreprocessor->ProcessDCS();
d477ad88 1736
651fdaab 1737 if (!processDCS)
1738 {
1d172743 1739 Log(fCurrentDetector, "ProcessCurrentDetector -"
1740 " The preprocessor requested to skip the retrieval of DCS values");
651fdaab 1741 }
8b739301 1742 else if (fTestMode & kSkipDCS)
2c15234c 1743 {
1d172743 1744 Log(fCurrentDetector, "ProcessCurrentDetector - In TESTMODE: Skipping DCS processing");
9827400b 1745 }
1746 else if (fTestMode & kErrorDCS)
1747 {
1d172743 1748 Log(fCurrentDetector, "ProcessCurrentDetector - In TESTMODE: Simulating DCS error");
3d8bc902 1749 UpdateShuttleStatus(AliShuttleStatus::kDCSStarted);
9827400b 1750 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1d172743 1751 delete dcsMap;
ffa25f20 1752 return 0;
2c15234c 1753 } else {
3301427a 1754
1755 UpdateShuttleStatus(AliShuttleStatus::kDCSStarted);
1756
1d172743 1757 // Query DCS archive
1758 Int_t nServers = fConfig->GetNServers(fCurrentDetector);
a038aa70 1759
1d172743 1760 for (int iServ=0; iServ<nServers; iServ++)
2c15234c 1761 {
1d172743 1762
1763 TString host(fConfig->GetDCSHost(fCurrentDetector, iServ));
1764 Int_t port = fConfig->GetDCSPort(fCurrentDetector, iServ);
542b6cc8 1765 Int_t multiSplit = fConfig->GetMultiSplit(fCurrentDetector, iServ);
1766
1790d4b7 1767 Log(fCurrentDetector, Form("ProcessCurrentDetector -"
1768 " Querying DCS Amanda server %s:%d (%d of %d)",
1769 host.Data(), port, iServ+1, nServers));
1d172743 1770
1771 TMap* aliasMap = 0;
1772 TMap* dpMap = 0;
26b1866e 1773
1d172743 1774 if (fConfig->GetDCSAliases(fCurrentDetector, iServ)->GetEntries() > 0)
2c15234c 1775 {
5ed060b1 1776 Log(fCurrentDetector, Form("Querying %d DCS aliases", fConfig->GetDCSAliases(fCurrentDetector, iServ)->GetEntries()));
1d172743 1777 aliasMap = GetValueSet(host, port,
542b6cc8 1778 fConfig->GetDCSAliases(fCurrentDetector, iServ),
1779 kAlias, multiSplit);
1d172743 1780 if (!aliasMap)
1781 {
1782 Log(fCurrentDetector,
1783 Form("ProcessCurrentDetector -"
675f64cd 1784 " Error retrieving DCS aliases from server %s."
1785 " Sending mail to DCS experts!", host.Data()));
1d172743 1786 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
675f64cd 1787
339adafa 1788 if (!SendMail(kDCSEMail))
fb40ead4 1789 Log("SHUTTLE", Form("ProcessCurrentDetector - "
95d4aaef 1790 "Could not send mail to DCS experts!"));
675f64cd 1791
a038aa70 1792 delete dcsMap;
ffa25f20 1793 return 0;
1d172743 1794 }
2c15234c 1795 }
a038aa70 1796
1d172743 1797 if (fConfig->GetDCSDataPoints(fCurrentDetector, iServ)->GetEntries() > 0)
a038aa70 1798 {
5ed060b1 1799 Log(fCurrentDetector, Form("Querying %d DCS data points", fConfig->GetDCSDataPoints(fCurrentDetector, iServ)->GetEntries()));
1d172743 1800 dpMap = GetValueSet(host, port,
542b6cc8 1801 fConfig->GetDCSDataPoints(fCurrentDetector, iServ),
1802 kDP, multiSplit);
1d172743 1803 if (!dpMap)
1804 {
1805 Log(fCurrentDetector,
1806 Form("ProcessCurrentDetector -"
675f64cd 1807 " Error retrieving DCS data points from server %s."
1808 " Sending mail to DCS experts!", host.Data()));
1d172743 1809 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
675f64cd 1810
339adafa 1811 if (!SendMail(kDCSEMail))
fb40ead4 1812 Log("SHUTTLE", Form("ProcessCurrentDetector - "
95d4aaef 1813 "Could not send mail to DCS experts!"));
675f64cd 1814
1d172743 1815 if (aliasMap) delete aliasMap;
1816 delete dcsMap;
ffa25f20 1817 return 0;
1d172743 1818 }
a038aa70 1819 }
1d172743 1820
1821 // merge aliasMap and dpMap into dcsMap
1822 if(aliasMap) {
1823 TIter iter(aliasMap);
a038aa70 1824 TObjString* key = 0;
1825 while ((key = (TObjString*) iter.Next()))
1d172743 1826 dcsMap->Add(key, aliasMap->GetValue(key->String()));
1827
1828 aliasMap->SetOwner(kFALSE);
1829 delete aliasMap;
1830 }
1831
1832 if(dpMap) {
1833 TIter iter(dpMap);
1834 TObjString* key = 0;
1835 while ((key = (TObjString*) iter.Next()))
1836 dcsMap->Add(key, dpMap->GetValue(key->String()));
1837
1838 dpMap->SetOwner(kFALSE);
1839 delete dpMap;
a038aa70 1840 }
73abe331 1841 }
1842 }
dc25836b 1843
b1d18693 1844 // save map into file, to help debugging in case of preprocessor error
fbc112e3 1845 TFile* f = TFile::Open("DCSMap.root","recreate");
b1d18693 1846 f->cd();
1847 dcsMap->Write("DCSMap", TObject::kSingleKey);
1848 f->Close();
fbc112e3 1849 delete f;
b1d18693 1850
2bb7b766 1851 // DCS Archive DB processing successful. Call Preprocessor!
85a80aa9 1852 UpdateShuttleStatus(AliShuttleStatus::kPPStarted);
a7160fe9 1853
339adafa 1854 fFXSError = -1; // this variable is kTRUE after ::Process if an FXS error occured
8da81210 1855
a038aa70 1856 UInt_t returnValue = aPreprocessor->Process(dcsMap);
8da81210 1857
339adafa 1858 if (fFXSError!=-1) {
8da81210 1859 UpdateShuttleStatus(AliShuttleStatus::kFXSError);
339adafa 1860 SendMail(kFXSEMail, fFXSError);
8da81210 1861 dcsMap->DeleteAll();
1862 delete dcsMap;
ffa25f20 1863 return 0;
8da81210 1864 }
b948db8d 1865
3301427a 1866 if (returnValue > 0) // Preprocessor error!
1867 {
c88ad5db 1868 Log(fCurrentDetector, Form("ProcessCurrentDetector - "
1869 "Preprocessor failed. Process returned %d.", returnValue));
cb343cfd 1870 UpdateShuttleStatus(AliShuttleStatus::kPPError);
a038aa70 1871 dcsMap->DeleteAll();
1872 delete dcsMap;
ffa25f20 1873 return 0;
9827400b 1874 }
1875
1876 // preprocessor ok!
1877 UpdateShuttleStatus(AliShuttleStatus::kPPDone);
1878 Log(fCurrentDetector, Form("ProcessCurrentDetector - %s preprocessor returned success",
1879 fCurrentDetector.Data()));
b948db8d 1880
a038aa70 1881 dcsMap->DeleteAll();
1882 delete dcsMap;
b948db8d 1883
ffa25f20 1884 return 1;
2bb7b766 1885}
1886
fbc112e3 1887//______________________________________________________________________________________________
1888void AliShuttle::CountOpenRuns()
1889{
1890 // Query DAQ's Shuttle logbook and sends the number of open runs to ML
1891
982278d6 1892 SendAlive();
1893
fbc112e3 1894 // check connection, in case connect
efec19bd 1895 if (!Connect(4))
fbc112e3 1896 return;
1897
1898 TString sqlQuery;
1899 sqlQuery = Form("select count(*) from %s where shuttle_done=0", fConfig->GetShuttlelbTable());
1900
efec19bd 1901 TSQLResult* aResult = fServer[4]->Query(sqlQuery);
fbc112e3 1902 if (!aResult) {
1903 AliError(Form("Can't execute query <%s>!", sqlQuery.Data()));
1904 return;
1905 }
1906
1907 AliDebug(2,Form("Query = %s", sqlQuery.Data()));
1908
1909 if (aResult->GetRowCount() == 0) {
1910 AliError(Form("No result for query %s received", sqlQuery.Data()));
1911 return;
1912 }
1913
1914 if (aResult->GetFieldCount() != 1) {
1915 AliError(Form("Invalid field count for query %s received", sqlQuery.Data()));
1916 return;
1917 }
1918
1919 TSQLRow* aRow = aResult->Next();
1920 if (!aRow) {
1921 AliError(Form("Could not receive result of query %s", sqlQuery.Data()));
1922 return;
1923 }
1924
1925 TString result(aRow->GetField(0), aRow->GetFieldLength(0));
1926 Int_t count = result.Atoi();
1927
1928 Log("SHUTTLE", Form("%d unprocessed runs", count));
1929
1930 delete aRow;
1931 delete aResult;
1932
1933 TMonaLisaValue mlStatus("SHUTTLE_openruns", count);
1934
1935 TList mlList;
1936 mlList.Add(&mlStatus);
1937
1938 fMonaLisa->SendParameters(&mlList, "__PROCESSINGINFO__");
1939}
1940
2bb7b766 1941//______________________________________________________________________________________________
1942Bool_t AliShuttle::QueryShuttleLogbook(const char* whereClause,
1943 TObjArray& entries)
1944{
9827400b 1945 // Query DAQ's Shuttle logbook and fills detector status object.
1946 // Call QueryRunParameters to query DAQ logbook for run parameters.
1947 //
2bb7b766 1948
fc5a4708 1949 entries.SetOwner(1);
1950
2bb7b766 1951 // check connection, in case connect
efec19bd 1952 if (!Connect(4)) return kFALSE;
2bb7b766 1953
1954 TString sqlQuery;
441b0e9c 1955 sqlQuery = Form("select * from %s %s order by run", fConfig->GetShuttlelbTable(), whereClause);
2bb7b766 1956
efec19bd 1957 TSQLResult* aResult = fServer[4]->Query(sqlQuery);
2bb7b766 1958 if (!aResult) {
1959 AliError(Form("Can't execute query <%s>!", sqlQuery.Data()));
1960 return kFALSE;
1961 }
1962
fc5a4708 1963 AliDebug(2,Form("Query = %s", sqlQuery.Data()));
1964
2bb7b766 1965 if(aResult->GetRowCount() == 0) {
c88ad5db 1966 Log("SHUTTLE", "No entries in Shuttle Logbook match request");
9827400b 1967 delete aResult;
1968 return kTRUE;
2bb7b766 1969 }
1970
1971 // TODO Check field count!
5b23e2da 1972 const UInt_t nCols = 26;
2bb7b766 1973 if (aResult->GetFieldCount() != (Int_t) nCols) {
c88ad5db 1974 Log("SHUTTLE", "Invalid SQL result field number!");
2bb7b766 1975 delete aResult;
1976 return kFALSE;
1977 }
1978
2bb7b766 1979 TSQLRow* aRow;
1980 while ((aRow = aResult->Next())) {
1981 TString runString(aRow->GetField(0), aRow->GetFieldLength(0));
1982 Int_t run = runString.Atoi();
1983
eba76848 1984 AliShuttleLogbookEntry *entry = QueryRunParameters(run);
1985 if (!entry)
1986 continue;
2bb7b766 1987
728290a4 1988 // DA test mode flag
1989 TString daTestModeString(aRow->GetField(2), aRow->GetFieldLength(2)); // field 2 = DA test mode flag
1990 Bool_t daTestMode = (Bool_t)daTestModeString.Atoi();
1991 entry->SetDATestMode(daTestMode);
1992
2bb7b766 1993 // loop on detectors
eba76848 1994 for(UInt_t ii = 0; ii < nCols; ii++)
1995 entry->SetDetectorStatus(aResult->GetFieldName(ii), aRow->GetField(ii));
2bb7b766 1996
eba76848 1997 entries.AddLast(entry);
2bb7b766 1998 delete aRow;
1999 }
2000
2bb7b766 2001 delete aResult;
2002 return kTRUE;
2003}
2004
2005//______________________________________________________________________________________________
eba76848 2006AliShuttleLogbookEntry* AliShuttle::QueryRunParameters(Int_t run)
2bb7b766 2007{
eba76848 2008 //
2009 // Retrieve run parameters written in the DAQ logbook and sets them into AliShuttleLogbookEntry object
2010 //
2bb7b766 2011
2012 // check connection, in case connect
efec19bd 2013 if (!Connect(4))
eba76848 2014 return 0;
2bb7b766 2015
2016 TString sqlQuery;
2c15234c 2017 sqlQuery.Form("select * from %s where run=%d", fConfig->GetDAQlbTable(), run);
2bb7b766 2018
efec19bd 2019 TSQLResult* aResult = fServer[4]->Query(sqlQuery);
2bb7b766 2020 if (!aResult) {
c88ad5db 2021 Log("SHUTTLE", Form("Can't execute query <%s>!", sqlQuery.Data()));
eba76848 2022 return 0;
2bb7b766 2023 }
2024
eba76848 2025 if (aResult->GetRowCount() == 0) {
2bb7b766 2026 Log("SHUTTLE", Form("QueryRunParameters - No entry in DAQ Logbook for run %d. Skipping", run));
2027 delete aResult;
eba76848 2028 return 0;
2bb7b766 2029 }
2030
eba76848 2031 if (aResult->GetRowCount() > 1) {
c88ad5db 2032 Log("SHUTTLE", Form("QueryRunParameters - UNEXPECTED: "
2033 "more than one entry in DAQ Logbook for run %d!", run));
2bb7b766 2034 delete aResult;
eba76848 2035 return 0;
2bb7b766 2036 }
2037
eba76848 2038 TSQLRow* aRow = aResult->Next();
2039 if (!aRow)
2040 {
c88ad5db 2041 Log("SHUTTLE", Form("QueryRunParameters - Could not retrieve row for run %d. Skipping", run));
eba76848 2042 delete aResult;
2043 return 0;
2044 }
2bb7b766 2045
eba76848 2046 AliShuttleLogbookEntry* entry = new AliShuttleLogbookEntry(run);
2bb7b766 2047
eba76848 2048 for (Int_t ii = 0; ii < aResult->GetFieldCount(); ii++)
2049 entry->SetRunParameter(aResult->GetFieldName(ii), aRow->GetField(ii));
2bb7b766 2050
c9db68c7 2051 delete aRow;
2052 delete aResult;
2053
eba76848 2054 UInt_t startTime = entry->GetStartTime();
2055 UInt_t endTime = entry->GetEndTime();
89bcf3b4 2056 Bool_t ecsSuccess = entry->GetECSSuccess();
1415d3f9 2057 TString runType = entry->GetRunType();
2058 TString tmpdaqstartTime = entry->GetRunParameter("DAQ_time_start");
f38b266c 2059 TString recordingFlagString = entry->GetRunParameter("GDCmStreamRecording");
2060 UInt_t recordingFlag = recordingFlagString.Atoi();
1415d3f9 2061 UInt_t daqstartTime = tmpdaqstartTime.Atoi();
c9db68c7 2062
af93e5d7 2063 UInt_t now = time(0);
2eb98462 2064 Int_t dcsDelay = fConfig->GetDCSDelay()+fConfig->GetDCSQueryOffset();
8e828d39 2065
2066 Bool_t skip = kFALSE;
2067
1415d3f9 2068 // runs are processed if
2069 // a) runType is PHYSICS and ecsSuccess is set
2070 // b) runType is not PHYSICS and (ecsSuccess is set or DAQ_time_start is non-0)
2071 // effectively this means that all runs are processed that started properly (ecsSucess behaviour is different for PHYSICS and non-PHYSICS runs (check with ECS!)
1bbcc21b 2072 if (startTime != 0 && endTime != 0) {
2073 if (endTime > startTime) {
2074 if (endTime >= now - dcsDelay) {
2075 Log("SHUTTLE", Form("Skipping run %d for now, because DCS buffer time is not yet expired", run));
2076 } else {
f38b266c 2077 if ((runType == "PHYSICS" || runType == "STANDALONE") && recordingFlag == 0){
2078 Log("SHUTTLE", Form("QueryRunParameters - Run type for run %d is %s but the recording is OFF - Skipping!", run, runType.Data()));
2079 skip = kTRUE;
2080 }
2081 else {
2082 if (runType == "PHYSICS") {
2083 if (ecsSuccess) {
2084 return entry;
2085 } else {
2086 Log("SHUTTLE", Form("QueryRunParameters - Run type for run %d is PHYSICS but ECS success flag not set (Reason = %s) - Skipping!", run, entry->GetRunParameter("eor_reason")));
2087 skip = kTRUE;
2088 }
1bbcc21b 2089 } else {
f38b266c 2090 if (ecsSuccess || daqstartTime > 0) {
2091 if (ecsSuccess == kFALSE)
2092 Log("SHUTTLE", Form("Processing run %d although in status ECS failure (Reason: %s), since run type != PHYSICS and DAQ_time_start != 0", run, entry->GetRunParameter("eor_reason")));
2093 return entry;
2094 } else {
2095 Log("SHUTTLE", Form("QueryRunParameters - Run type for run %d is %s, ECS success flag was not set (Reason = %s) and DAQ_time_start was NULL - Skipping!", run, runType.Data(), entry->GetRunParameter("eor_reason")));
2096 skip = kTRUE;
2097 }
1bbcc21b 2098 }
2099 }
2100 }
2101 } else {
2102 Log("SHUTTLE", Form("QueryRunParameters - Invalid parameters for run %d: startTime equal to endTime: %d %d - Skipping!", run, startTime, endTime));
2103 skip = kTRUE;
2104 }
1415d3f9 2105 } else {
2106 Log("SHUTTLE", Form("QueryRunParameters - Invalid parameters for Run %d: "
2107 "startTime = %d, endTime = %d. Skipping (Shuttle won't be marked as DONE)!",
2108 run, startTime, endTime));
89bcf3b4 2109 }
8e828d39 2110
2111 if (skip)
2112 {
2113 Log("SHUTTLE", Form("Marking SHUTTLE skipped for run %d", run));
2114 fLogbookEntry = entry;
2115 if (!UpdateShuttleLogbook("shuttle_skipped"))
2116 {
2117 AliError(Form("Could not update logbook for run %d !", run));
2118 }
bd23d48b 2119 if (!UpdateTableSkippedCase("ALL"))
2120 {
2121 AliError(Form("Could not update FXS tables for run %d !", run));
2122 }
8e828d39 2123 fLogbookEntry = 0;
2124 }
c9db68c7 2125
2126 delete entry;
2127 return 0;
2bb7b766 2128}
2129
a038aa70 2130//______________________________________________________________________________________________
2131TMap* AliShuttle::GetValueSet(const char* host, Int_t port, const TSeqCollection* entries,
542b6cc8 2132 DCSType type, Int_t multiSplit)
a038aa70 2133{
2134 // Retrieve all "entry" data points from the DCS server
2135 // host, port: TSocket connection parameters
2136 // entries: list of name of the alias or data point
2137 // type: kAlias or kDP
2138 // returns TMap of values, 0 when failure
542b6cc8 2139
2140 AliDCSClient client(host, port, fTimeout, fRetries, multiSplit);
b41b252a 2141
a038aa70 2142 TMap* result = 0;
b41b252a 2143 if (type == kAlias)
a038aa70 2144 {
5f3fe74e 2145 //result = client.GetAliasValues(entries, GetCurrentStartTime()-offset,
2146 // GetCurrentEndTime()+offset);
eff647d5 2147 result = client.GetAliasValues(entries, GetStartTimeDCSQuery(),
2148 GetEndTimeDCSQuery());
b41b252a 2149 }
2150 else if (type == kDP)
2151 {
5f3fe74e 2152 //result = client.GetDPValues(entries, GetCurrentStartTime()-offset,
2153 // GetCurrentEndTime()+offset);
eff647d5 2154 result = client.GetDPValues(entries, GetStartTimeDCSQuery(),
2155 GetEndTimeDCSQuery());
b41b252a 2156 }
a038aa70 2157
b41b252a 2158 if (result == 0)
2159 {
2160 Log(fCurrentDetector.Data(), Form("GetValueSet - Can't get entries! Reason: %s",
1790d4b7 2161 client.GetErrorString(client.GetResultErrorCode())));
2162 if (client.GetResultErrorCode() == AliDCSClient::fgkServerError)
2163 Log(fCurrentDetector.Data(), Form("GetValueSet - Server error code: %s",
2164 client.GetServerError().Data()));
a038aa70 2165
b41b252a 2166 return 0;
a038aa70 2167 }
b41b252a 2168
a038aa70 2169 return result;
2170}
b41b252a 2171
b948db8d 2172//______________________________________________________________________________________________
57f50b3c 2173const char* AliShuttle::GetFile(Int_t system, const char* detector,
2174 const char* id, const char* source)
b948db8d 2175{
9827400b 2176 // Get calibration file from file exchange servers
2177 // First queris the FXS database for the file name, using the run, detector, id and source info
2178 // then calls RetrieveFile(filename) for actual copy to local disk
2179 // run: current run being processed (given by Logbook entry fLogbookEntry)
2180 // detector: the Preprocessor name
2181 // id: provided as a parameter by the Preprocessor
2182 // source: provided by the Preprocessor through GetFileSources function
2183
2184 // check if test mode should simulate a FXS error
2185 if (fTestMode & kErrorFXSFiles)
2186 {
2187 Log(detector, Form("GetFile - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
2188 return 0;
2189 }
2190
57f50b3c 2191 // check connection, in case connect
9d733021 2192 if (!Connect(system))
eba76848 2193 {
9d733021 2194 Log(detector, Form("GetFile - Couldn't connect to %s FXS database", GetSystemName(system)));
339adafa 2195 fFXSError = system;
57f50b3c 2196 return 0;
2197 }
2198
2199 // Query preparation
9d733021 2200 TString sourceName(source);
d386d623 2201 Int_t nFields = 3;
2202 TString sqlQueryStart = Form("select filePath,size,fileChecksum from %s where",
2203 fConfig->GetFXSdbTable(system));
2204 TString whereClause = Form("run=%d and detector=\"%s\" and fileId=\"%s\"",
2205 GetCurrentRun(), detector, id);
2206
efec19bd 2207 if (system == kDAQ || system == kDQM)
9d733021 2208 {
d386d623 2209 whereClause += Form(" and DAQsource=\"%s\"", source);
57f50b3c 2210 }
9d733021 2211 else if (system == kDCS)
eba76848 2212 {
9d733021 2213 sourceName="none";
57f50b3c 2214 }
9d733021 2215 else if (system == kHLT)
9e080f92 2216 {
d386d623 2217 whereClause += Form(" and DDLnumbers=\"%s\"", source);
9e080f92 2218 }
2219
9e080f92 2220 TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
2221
2222 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2223
2224 // Query execution
2225 TSQLResult* aResult = 0;
9d733021 2226 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
9e080f92 2227 if (!aResult) {
8da81210 2228 Log(detector, Form("GetFile - Can't execute SQL query to %s database for: id = %s, source = %s",
9d733021 2229 GetSystemName(system), id, sourceName.Data()));
339adafa 2230 fFXSError = system;
9e080f92 2231 return 0;
2232 }
2233
8da81210 2234 if (aResult->GetRowCount() == 0)
9e080f92 2235 {
2236 Log(detector,
8da81210 2237 Form("GetFile - No entry in %s FXS db for: id = %s, source = %s",
9d733021 2238 GetSystemName(system), id, sourceName.Data()));
9e080f92 2239 delete aResult;
2240 return 0;
2241 }
2bb7b766 2242
9e080f92 2243 if (aResult->GetRowCount() > 1) {
2244 Log(detector,
8da81210 2245 Form("GetFile - More than one entry in %s FXS db for: id = %s, source = %s",
9d733021 2246 GetSystemName(system), id, sourceName.Data()));
339adafa 2247 fFXSError = system;
9e080f92 2248 delete aResult;
2249 return 0;
2250 }
2251
9d733021 2252 if (aResult->GetFieldCount() != nFields) {
9e080f92 2253 Log(detector,
9d733021 2254 Form("GetFileName - Wrong field count in %s FXS db for: id = %s, source = %s",
2255 GetSystemName(system), id, sourceName.Data()));
339adafa 2256 fFXSError = system;
9e080f92 2257 delete aResult;
2258 return 0;
2259 }
2260
2261 TSQLRow* aRow = dynamic_cast<TSQLRow*> (aResult->Next());
2262
2263 if (!aRow){
8da81210 2264 Log(detector, Form("GetFile - Empty set result in %s FXS db from query: id = %s, source = %s",
9d733021 2265 GetSystemName(system), id, sourceName.Data()));
339adafa 2266 fFXSError = system;
9e080f92 2267 delete aResult;
2268 return 0;
2269 }
2270
2271 TString filePath(aRow->GetField(0), aRow->GetFieldLength(0));
2272 TString fileSize(aRow->GetField(1), aRow->GetFieldLength(1));
d386d623 2273 TString fileChecksum(aRow->GetField(2), aRow->GetFieldLength(2));
9e080f92 2274
2275 delete aResult;
2276 delete aRow;
2277
d386d623 2278 AliDebug(2, Form("filePath = %s; size = %s, fileChecksum = %s",
2279 filePath.Data(), fileSize.Data(), fileChecksum.Data()));
9e080f92 2280
9e080f92 2281 // retrieved file is renamed to make it unique
3ebbf3c4 2282 Int_t dir_lev1 = GetCurrentRun()/10000;
2283 TString localFileName = Form("%s/%d/%d/%s_process/%s_%s_%d_%s_%s.shuttle",
2284 GetShuttleTempDir(), dir_lev1, GetCurrentRun(), detector,
d524ade6 2285 GetSystemName(system), detector, GetCurrentRun(),
2286 id, sourceName.Data());
3ebbf3c4 2287 Log("SHUTTLE",Form("file from FXS = %s",localFileName.Data()));
9d733021 2288
9e080f92 2289
9d733021 2290 // file retrieval from FXS
4b95672b 2291 UInt_t nRetries = 0;
2292 UInt_t maxRetries = 3;
2293 Bool_t result = kFALSE;
2294
2295 // copy!! if successful TSystem::Exec returns 0
8da81210 2296 while (nRetries++ < maxRetries) {
4b95672b 2297 AliDebug(2, Form("Trying to copy file. Retry # %d", nRetries));
2298 result = RetrieveFile(system, filePath.Data(), localFileName.Data());
8da81210 2299 if (!result)
4b95672b 2300 {
8da81210 2301 Log(detector, Form("GetFile - Copy of file %s from %s FXS failed",
9d733021 2302 filePath.Data(), GetSystemName(system)));
4b95672b 2303 continue;
4f0749a8 2304 }
9e080f92 2305
c98417a1 2306 if (fileSize.Length()>0)
2307 {
2308 // compare filesize of local file with the one stored in the FXS DB
926cbc0e 2309 Long_t size = -1;
2310 Int_t sizeComp = gSystem->GetPathInfo(localFileName.Data(), 0, &size, 0, 0);
c98417a1 2311
926cbc0e 2312 if (sizeComp != 0 || size != fileSize.Atoi())
c98417a1 2313 {
8da81210 2314 Log(detector, Form("GetFile - size of file %s does not match with local copy!",
c98417a1 2315 filePath.Data()));
2316 result = kFALSE;
2317 continue;
2318 }
2319
2320 } else {
2321 Log(fCurrentDetector, Form("GetFile - size of file %s not set in %s database, skipping comparison",
2322 filePath.Data(), GetSystemName(system)));
2323 }
2324
d386d623 2325 if (fileChecksum.Length()>0)
4b95672b 2326 {
2327 // compare md5sum of local file with the one stored in the FXS DB
95d4aaef 2328 if(fileChecksum.Contains(' ')) fileChecksum.Resize(fileChecksum.First(' '));
339adafa 2329 Int_t md5Comp = gSystem->Exec(Form("md5sum %s |grep %s > /dev/null 2> /dev/null",
d524ade6 2330 localFileName.Data(), fileChecksum.Data()));
9e080f92 2331
4b95672b 2332 if (md5Comp != 0)
2333 {
8da81210 2334 Log(detector, Form("GetFile - md5sum of file %s does not match with local copy!",
4b95672b 2335 filePath.Data()));
2336 result = kFALSE;
2337 continue;
2338 }
d386d623 2339 } else {
2340 Log(fCurrentDetector, Form("GetFile - md5sum of file %s not set in %s database, skipping comparison",
2341 filePath.Data(), GetSystemName(system)));
9d733021 2342 }
4b95672b 2343 if (result) break;
9e080f92 2344 }
2345
8da81210 2346 if (!result)
2347 {
339adafa 2348 fFXSError = system;
8da81210 2349 return 0;
2350 }
4b95672b 2351
9d733021 2352 fFXSCalled[system]=kTRUE;
2353 TObjString *fileParams = new TObjString(Form("%s#!?!#%s", id, sourceName.Data()));
2354 fFXSlist[system].Add(fileParams);
9e080f92 2355
675f64cd 2356 static TString staticLocalFileName;
2357 staticLocalFileName.Form("%s", localFileName.Data());
2358
c88ad5db 2359 Log(fCurrentDetector, Form("GetFile - Retrieved file with id %s and "
2360 "source %s from %s to %s", id, source,
d524ade6 2361 GetSystemName(system), localFileName.Data()));
675f64cd 2362
d524ade6 2363 return staticLocalFileName.Data();
2bb7b766 2364}
2365
2366//______________________________________________________________________________________________
9d733021 2367Bool_t AliShuttle::RetrieveFile(UInt_t system, const char* fxsFileName, const char* localFileName)
9e080f92 2368{
9827400b 2369 //
2370 // Copies file from FXS to local Shuttle machine
2371 //
2bb7b766 2372
9e080f92 2373 // check temp directory: trying to cd to temp; if it does not exist, create it
d524ade6 2374 AliDebug(2, Form("Copy file %s from %s FXS into %s",
2375 GetSystemName(system), fxsFileName, localFileName));
2376
2377 TString tmpDir(localFileName);
2378
2379 tmpDir = tmpDir(0,tmpDir.Last('/'));
9e080f92 2380
d524ade6 2381 Int_t noDir = gSystem->GetPathInfo(tmpDir.Data(), 0, (Long64_t*) 0, 0, 0);
2382 if (noDir) // temp dir does not exists!
2383 {
2384 if (gSystem->mkdir(tmpDir.Data(), 1))
2385 {
2386 Log(fCurrentDetector.Data(), "RetrieveFile - could not make temp directory!!");
9e080f92 2387 return kFALSE;
2388 }
9e080f92 2389 }
2390
339adafa 2391 TString command = Form("scp -oPort=%d -2 %s@%s:%s/%s %s",
9d733021 2392 fConfig->GetFXSPort(system),
2393 fConfig->GetFXSUser(system),
2394 fConfig->GetFXSHost(system),
339adafa 2395 fConfig->GetFXSBaseFolder(system),
9d733021 2396 fxsFileName,
9e080f92 2397 localFileName);
2398
2399 AliDebug(2, Form("%s",command.Data()));
2400
4b95672b 2401 Bool_t result = (gSystem->Exec(command.Data()) == 0);
9e080f92 2402
4b95672b 2403 return result;
9e080f92 2404}
2405
2406//______________________________________________________________________________________________
9d733021 2407TList* AliShuttle::GetFileSources(Int_t system, const char* detector, const char* id)
2408{
9827400b 2409 //
2410 // Get sources producing the condition file Id from file exchange servers
4a33bdd9 2411 // if id is NULL all sources are returned (distinct)
9827400b 2412 //
1bcd28db 2413
8884d71e 2414 if (id)
2415 {
2416 Log(detector, Form("GetFileSources - Querying %s FXS for files with id %s produced by %s", GetSystemName(system), id, detector));
2417 } else {
2418 Log(detector, Form("GetFileSources - Querying %s FXS for files produced by %s", GetSystemName(system), detector));
2419 }
9827400b 2420
2421 // check if test mode should simulate a FXS error
2422 if (fTestMode & kErrorFXSSources)
2423 {
2424 Log(detector, Form("GetFileSources - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
2425 return 0;
2426 }
2427
9d733021 2428 if (system == kDCS)
2429 {
c88ad5db 2430 Log(detector, "GetFileSources - WARNING: DCS system has only one source of data!");
6297b37d 2431 TList *list = new TList();
2432 list->SetOwner(1);
2433 list->Add(new TObjString(" "));
2434 return list;
9d733021 2435 }
9e080f92 2436
2437 // check connection, in case connect
9d733021 2438 if (!Connect(system))
2439 {
4a33bdd9 2440 Log(detector, Form("GetFileSources - Couldn't connect to %s FXS database", GetSystemName(system)));
339adafa 2441 fFXSError = system;
9d733021 2442 return NULL;
9e080f92 2443 }
2444
b827f957 2445 TString sourceName = "";
efec19bd 2446 if (system == kDAQ || system == kDQM)
9d733021 2447 {
2448 sourceName = "DAQsource";
2449 } else if (system == kHLT)
2450 {
2451 sourceName = "DDLnumbers";
2452 }
2453
4a33bdd9 2454 TString sqlQueryStart = Form("select distinct %s from %s where", sourceName.Data(), fConfig->GetFXSdbTable(system));
2455 TString whereClause = Form("run=%d and detector=\"%s\"",
2456 GetCurrentRun(), detector);
2457 if (id)
2458 whereClause += Form(" and fileId=\"%s\"", id);
9e080f92 2459 TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
2460
2461 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2462
2463 // Query execution
2464 TSQLResult* aResult;
9d733021 2465 aResult = fServer[system]->Query(sqlQuery);
9e080f92 2466 if (!aResult) {
9d733021 2467 Log(detector, Form("GetFileSources - Can't execute SQL query to %s database for id: %s",
2468 GetSystemName(system), id));
339adafa 2469 fFXSError = system;
9e080f92 2470 return 0;
2471 }
2472
86aa42c3 2473 TList *list = new TList();
2474 list->SetOwner(1);
2475
9d733021 2476 if (aResult->GetRowCount() == 0)
2477 {
9e080f92 2478 Log(detector,
9d733021 2479 Form("GetFileSources - No entry in %s FXS table for id: %s", GetSystemName(system), id));
9e080f92 2480 delete aResult;
86aa42c3 2481 return list;
9e080f92 2482 }
2483
1bcd28db 2484 Log(detector, Form("GetFileSources - Found %d sources", aResult->GetRowCount()));
9e080f92 2485
1bcd28db 2486 TSQLRow* aRow;
9d733021 2487 while ((aRow = aResult->Next()))
2488 {
9e080f92 2489
9d733021 2490 TString source(aRow->GetField(0), aRow->GetFieldLength(0));
2491 AliDebug(2, Form("%s = %s", sourceName.Data(), source.Data()));
2492 list->Add(new TObjString(source));
9e080f92 2493 delete aRow;
2494 }
9d733021 2495
9e080f92 2496 delete aResult;
2497
2498 return list;
2bb7b766 2499}
2500
4a33bdd9 2501//______________________________________________________________________________________________
2502TList* AliShuttle::GetFileIDs(Int_t system, const char* detector, const char* source)
2503{
2504 //
2505 // Get all ids of condition files produced by a given source from file exchange servers
2506 //
2507
1bcd28db 2508 Log(detector, Form("GetFileIDs - Retrieving ids with source %s with %s", source, GetSystemName(system)));
2509
4a33bdd9 2510 // check if test mode should simulate a FXS error
2511 if (fTestMode & kErrorFXSSources)
2512 {
2513 Log(detector, Form("GetFileIDs - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
2514 return 0;
2515 }
2516
2517 // check connection, in case connect
2518 if (!Connect(system))
2519 {
2520 Log(detector, Form("GetFileIDs - Couldn't connect to %s FXS database", GetSystemName(system)));
2521 return NULL;
2522 }
2523
b827f957 2524 TString sourceName = "";
4a33bdd9 2525 if (system == kDAQ)
2526 {
2527 sourceName = "DAQsource";
2528 } else if (system == kHLT)
2529 {
2530 sourceName = "DDLnumbers";
2531 }
2532
2533 TString sqlQueryStart = Form("select fileId from %s where", fConfig->GetFXSdbTable(system));
2534 TString whereClause = Form("run=%d and detector=\"%s\"",
2535 GetCurrentRun(), detector);
2536 if (sourceName.Length() > 0 && source)
2537 whereClause += Form(" and %s=\"%s\"", sourceName.Data(), source);
2538 TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
2539
2540 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2541
2542 // Query execution
2543 TSQLResult* aResult;
2544 aResult = fServer[system]->Query(sqlQuery);
2545 if (!aResult) {
2546 Log(detector, Form("GetFileIDs - Can't execute SQL query to %s database for source: %s",
2547 GetSystemName(system), source));
2548 return 0;
2549 }
2550
2551 TList *list = new TList();
2552 list->SetOwner(1);
2553
2554 if (aResult->GetRowCount() == 0)
2555 {
2556 Log(detector,
2557 Form("GetFileIDs - No entry in %s FXS table for source: %s", GetSystemName(system), source));
2558 delete aResult;
2559 return list;
2560 }
2561
1bcd28db 2562 Log(detector, Form("GetFileIDs - Found %d ids", aResult->GetRowCount()));
2563
4a33bdd9 2564 TSQLRow* aRow;
2565
2566 while ((aRow = aResult->Next()))
2567 {
2568
2569 TString id(aRow->GetField(0), aRow->GetFieldLength(0));
2570 AliDebug(2, Form("fileId = %s", id.Data()));
2571 list->Add(new TObjString(id));
2572 delete aRow;
2573 }
2574
2575 delete aResult;
2576
2577 return list;
2578}
2579
2bb7b766 2580//______________________________________________________________________________________________
9d733021 2581Bool_t AliShuttle::Connect(Int_t system)
2bb7b766 2582{
9827400b 2583 // Connect to MySQL Server of the system's FXS MySQL databases
2584 // DAQ Logbook, Shuttle Logbook and DAQ FXS db are on the same host
2585 //
57f50b3c 2586
9d733021 2587 // check connection: if already connected return
dd84c76d 2588
3a4ddf0e 2589 if(fServer[system] && fServer[system]->IsConnected()) {
dd84c76d 2590 // ping the server
2591 if (fServer[system]->PingVerify()==kTRUE){ // connection is still alive
2592 return kTRUE;
2593 }
2594 else{
2595 AliWarning(Form("Connection got lost to FXS database for %s. Closing and reconnecting.",
2596 AliShuttleInterface::GetSystemName(system)));
2597 fServer[system]->Close();
2598 delete fServer[system];
2599 fServer[system] = 0x0;
2600 }
3a4ddf0e 2601 }
57f50b3c 2602
9d733021 2603 TString dbHost, dbUser, dbPass, dbName;
57f50b3c 2604
efec19bd 2605 if (system < 4) // FXS db servers
9d733021 2606 {
2607 dbHost = Form("mysql://%s:%d", fConfig->GetFXSdbHost(system), fConfig->GetFXSdbPort(system));
2608 dbUser = fConfig->GetFXSdbUser(system);
2609 dbPass = fConfig->GetFXSdbPass(system);
2610 dbName = fConfig->GetFXSdbName(system);
2611 } else { // Run & Shuttle logbook servers
2612 // TODO Will the Shuttle logbook server be the same as the Run logbook server ???
2613 dbHost = Form("mysql://%s:%d", fConfig->GetDAQlbHost(), fConfig->GetDAQlbPort());
2614 dbUser = fConfig->GetDAQlbUser();
2615 dbPass = fConfig->GetDAQlbPass();
2616 dbName = fConfig->GetDAQlbDB();
2617 }
57f50b3c 2618
9d733021 2619 fServer[system] = TSQLServer::Connect(dbHost.Data(), dbUser.Data(), dbPass.Data());
efec19bd 2620 if (!fServer[system] || !fServer[system]->IsConnected()) {
2621 if(system < 4)
9d733021 2622 {
2623 AliError(Form("Can't establish connection to FXS database for %s",
2624 AliShuttleInterface::GetSystemName(system)));
2625 } else {
2626 AliError("Can't establish connection to Run logbook.");
57f50b3c 2627 }
9d733021 2628 if(fServer[system]) delete fServer[system];
2629 return kFALSE;
2bb7b766 2630 }
57f50b3c 2631
9d733021 2632 // Get tables
2633 TSQLResult* aResult=0;
2634 switch(system){
2635 case kDAQ:
2636 aResult = fServer[kDAQ]->GetTables(dbName.Data());
2637 break;
2638 case kDCS:
2639 aResult = fServer[kDCS]->GetTables(dbName.Data());
2640 break;
2641 case kHLT:
2642 aResult = fServer[kHLT]->GetTables(dbName.Data());
2643 break;
efec19bd 2644 case kDQM:
2645 aResult = fServer[kDQM]->GetTables(dbName.Data());
2646 break;
9d733021 2647 default:
efec19bd 2648 aResult = fServer[4]->GetTables(dbName.Data());
9d733021 2649 break;
2650 }
2651
2652 delete aResult;
2bb7b766 2653 return kTRUE;
2654}
57f50b3c 2655
9e080f92 2656//______________________________________________________________________________________________
9d733021 2657Bool_t AliShuttle::UpdateTable()
9e080f92 2658{
9827400b 2659 //
2660 // Update FXS table filling time_processed field in all rows corresponding to current run and detector
2661 //
9e080f92 2662
9d733021 2663 Bool_t result = kTRUE;
9e080f92 2664
6e25f828 2665 for (UInt_t system=0; system<4; system++)
9d733021 2666 {
2667 if(!fFXSCalled[system]) continue;
9e080f92 2668
9d733021 2669 // check connection, in case connect
2670 if (!Connect(system))
2671 {
2672 Log(fCurrentDetector, Form("UpdateTable - Couldn't connect to %s FXS database", GetSystemName(system)));
2673 result = kFALSE;
2674 continue;
9e080f92 2675 }
9e080f92 2676
9d733021 2677 TTimeStamp now; // now
2678
2679 // Loop on FXS list entries
2680 TIter iter(&fFXSlist[system]);
2681 TObjString *aFXSentry=0;
2682 while ((aFXSentry = dynamic_cast<TObjString*> (iter.Next())))
2683 {
2684 TString aFXSentrystr = aFXSentry->String();
2685 TObjArray *aFXSarray = aFXSentrystr.Tokenize("#!?!#");
2686 if (!aFXSarray || aFXSarray->GetEntries() != 2 )
2687 {
2688 Log(fCurrentDetector, Form("UpdateTable - error updating %s FXS entry. Check string: <%s>",
2689 GetSystemName(system), aFXSentrystr.Data()));
2690 if(aFXSarray) delete aFXSarray;
2691 result = kFALSE;
2692 continue;
2693 }
2694 const char* fileId = ((TObjString*) aFXSarray->At(0))->GetName();
2695 const char* source = ((TObjString*) aFXSarray->At(1))->GetName();
2696
2697 TString whereClause;
efec19bd 2698 if (system == kDAQ || system == kDQM)
9d733021 2699 {
2700 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\" and DAQsource=\"%s\";",
2701 GetCurrentRun(), fCurrentDetector.Data(), fileId, source);
2702 }
2703 else if (system == kDCS)
2704 {
2705 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\";",
2706 GetCurrentRun(), fCurrentDetector.Data(), fileId);
2707 }
2708 else if (system == kHLT)
2709 {
2710 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\" and DDLnumbers=\"%s\";",
2711 GetCurrentRun(), fCurrentDetector.Data(), fileId, source);
2712 }
2713
2714 delete aFXSarray;
9e080f92 2715
0a0b087a 2716 TString sqlQuery = Form("update %s set time_processed=%ld %s", fConfig->GetFXSdbTable(system),
2717 (ULong_t)now.GetSec(), whereClause.Data());
9e080f92 2718
9d733021 2719 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
9e080f92 2720
9d733021 2721 // Query execution
2722 TSQLResult* aResult;
2723 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2724 if (!aResult)
2725 {
2726 Log(fCurrentDetector, Form("UpdateTable - %s db: can't execute SQL query <%s>",
2727 GetSystemName(system), sqlQuery.Data()));
2728 result = kFALSE;
2729 continue;
2730 }
2731 delete aResult;
9e080f92 2732 }
9e080f92 2733 }
2734
9d733021 2735 return result;
9e080f92 2736}
57f50b3c 2737
bd23d48b 2738//_______________________________________________________________________________
2739Bool_t AliShuttle::UpdateTableSkippedCase(const char* detector)
2740{
2741 //
2742 // Update FXS table filling time_processed field in all rows corresponding to current run and detector
2743 // if detector = "ALL" update all detectors
2744 //
2745
2746 Bool_t result = kTRUE;
2747
7a782903 2748 TString detName(detector);
2749
6e25f828 2750 for (UInt_t system=0; system<4; system++)
bd23d48b 2751 {
2752
2753 // check connection, in case connect
2754 if (!Connect(system))
2755 {
2756 Log(fCurrentDetector, Form("UpdateTableSkippedCase - Couldn't connect to %s FXS database", GetSystemName(system)));
2757 result = kFALSE;
2758 continue;
2759 }
2760
2761 TTimeStamp now; // now
2762
2763 // Loop on FXS list entries
2764 TIter iter(&fFXSlist[system]);
2765
2766 TString whereClause;
7a782903 2767 if (detName == "ALL") whereClause = Form("where run=%d and time_processed IS NULL;",GetCurrentRun());
bd23d48b 2768 else whereClause = Form("where run=%d and detector=\"%s\" and time_processed IS NULL;",GetCurrentRun(), detector);
2769
4be2f262 2770 //Log("SHUTTLE",Form(" whereClause = %s ",whereClause.Data()));
bd23d48b 2771
0a0b087a 2772 TString sqlQuery = Form("update %s set time_processed=%ld %s", fConfig->GetFXSdbTable(system),
2773 (ULong_t)now.GetSec(), whereClause.Data());
bd23d48b 2774
2775 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2776
2777 // Query execution
2778 TSQLResult* aResult;
2779 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2780 if (!aResult)
2781 {
2782 Log("SHUTTLE", Form("UpdateTableSkippedCase - %s db: can't execute SQL query <%s>",
2783 GetSystemName(system), sqlQuery.Data()));
2784 result = kFALSE;
2785 continue;
2786 }
2787 delete aResult;
2788
2789 }
2790
2791 return result;
2792}
3301427a 2793//______________________________________________________________________________________________
2794Bool_t AliShuttle::UpdateTableFailCase()
2795{
9827400b 2796 // Update FXS table filling time_processed field in all rows corresponding to current run and detector
2797 // this is called in case the preprocessor is declared failed for the current run, because
2798 // the fields are updated only in case of success
3301427a 2799
2800 Bool_t result = kTRUE;
2801
6e25f828 2802 for (UInt_t system=0; system<4; system++)
3301427a 2803 {
2804 // check connection, in case connect
2805 if (!Connect(system))
2806 {
2807 Log(fCurrentDetector, Form("UpdateTableFailCase - Couldn't connect to %s FXS database",
2808 GetSystemName(system)));
2809 result = kFALSE;
2810 continue;
2811 }
2812
2813 TTimeStamp now; // now
2814
2815 // Loop on FXS list entries
2816
2817 TString whereClause = Form("where run=%d and detector=\"%s\";",
2818 GetCurrentRun(), fCurrentDetector.Data());
2819
2820
0a0b087a 2821 TString sqlQuery = Form("update %s set time_processed=%ld %s", fConfig->GetFXSdbTable(system),
2822 (ULong_t)now.GetSec(), whereClause.Data());
3301427a 2823
2824 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2825
2826 // Query execution
2827 TSQLResult* aResult;
2828 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2829 if (!aResult)
2830 {
2831 Log(fCurrentDetector, Form("UpdateTableFailCase - %s db: can't execute SQL query <%s>",
2832 GetSystemName(system), sqlQuery.Data()));
2833 result = kFALSE;
2834 continue;
2835 }
2836 delete aResult;
2837 }
2838
2839 return result;
2840}
2841
2bb7b766 2842//______________________________________________________________________________________________
2843Bool_t AliShuttle::UpdateShuttleLogbook(const char* detector, const char* status)
2844{
e7f62f16 2845 //
2846 // Update Shuttle logbook filling detector or shuttle_done column
2847 // ex. of usage: UpdateShuttleLogbook("PHOS", "DONE") or UpdateShuttleLogbook("shuttle_done")
2848 //
57f50b3c 2849
2bb7b766 2850 // check connection, in case connect
efec19bd 2851 if(!Connect(4)){
2bb7b766 2852 Log("SHUTTLE", "UpdateShuttleLogbook - Couldn't connect to DAQ Logbook.");
2853 return kFALSE;
57f50b3c 2854 }
2855
2bb7b766 2856 TString detName(detector);
2857 TString setClause;
8e828d39 2858 if (detName == "shuttle_done" || detName == "shuttle_skipped")
e7f62f16 2859 {
2bb7b766 2860 setClause = "set shuttle_done=1";
8e828d39 2861
ee6f7523 2862 if (detName == "shuttle_done")
b0e53b15 2863 {
8e828d39 2864 if (TouchFile() != kTRUE)
2156c755 2865 {
2866 SendMLRunInfo("Pending");
503ff24f 2867 return kFALSE;
2156c755 2868 }
8e828d39 2869
2870 SendMLRunInfo("Done");
b0e53b15 2871 }
8e828d39 2872 else
2873 SendMLRunInfo("Skipped");
2874 }
2875 else {
2bb7b766 2876 TString statusStr(status);
2877 if(statusStr.Contains("done", TString::kIgnoreCase) ||
2878 statusStr.Contains("failed", TString::kIgnoreCase)){
eba76848 2879 setClause = Form("set %s=\"%s\"", detector, status);
2bb7b766 2880 } else {
2881 Log("SHUTTLE",
2882 Form("UpdateShuttleLogbook - Invalid status <%s> for detector %s",
2883 status, detector));
2884 return kFALSE;
2885 }
2886 }
57f50b3c 2887
2bb7b766 2888 TString whereClause = Form("where run=%d", GetCurrentRun());
2889
441b0e9c 2890 TString sqlQuery = Form("update %s %s %s",
2891 fConfig->GetShuttlelbTable(), setClause.Data(), whereClause.Data());
57f50b3c 2892
2bb7b766 2893 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2894
2895 // Query execution
2896 TSQLResult* aResult;
efec19bd 2897 aResult = dynamic_cast<TSQLResult*> (fServer[4]->Query(sqlQuery));
2bb7b766 2898 if (!aResult) {
2899 Log("SHUTTLE", Form("UpdateShuttleLogbook - Can't execute query <%s>", sqlQuery.Data()));
2900 return kFALSE;
57f50b3c 2901 }
2bb7b766 2902 delete aResult;
57f50b3c 2903
2904 return kTRUE;
2905}
2906
2907//______________________________________________________________________________________________
2bb7b766 2908Int_t AliShuttle::GetCurrentRun() const
2909{
9827400b 2910 //
2911 // Get current run from logbook entry
2912 //
57f50b3c 2913
2bb7b766 2914 return fLogbookEntry ? fLogbookEntry->GetRun() : -1;
57f50b3c 2915}
2916
2917//______________________________________________________________________________________________
2bb7b766 2918UInt_t AliShuttle::GetCurrentStartTime() const
2919{
9827400b 2920 //
2921 // get current start time
2922 //
57f50b3c 2923
2bb7b766 2924 return fLogbookEntry ? fLogbookEntry->GetStartTime() : 0;
57f50b3c 2925}
2926
2927//______________________________________________________________________________________________
2bb7b766 2928UInt_t AliShuttle::GetCurrentEndTime() const
2929{
9827400b 2930 //
2931 // get current end time from logbook entry
2932 //
57f50b3c 2933
2bb7b766 2934 return fLogbookEntry ? fLogbookEntry->GetEndTime() : 0;
57f50b3c 2935}
675f64cd 2936//______________________________________________________________________________________________
2937UInt_t AliShuttle::GetCurrentYear() const
2938{
2939 //
2940 // Get current year from logbook entry
2941 //
2942
2943 if (!fLogbookEntry) return 0;
2944
2945 TTimeStamp startTime(GetCurrentStartTime());
2946 TString year = Form("%d",startTime.GetDate());
2947 year = year(0,4);
2948
2949 return year.Atoi();
2950}
2951
2952//______________________________________________________________________________________________
2953const char* AliShuttle::GetLHCPeriod() const
2954{
2955 //
2956 // Get current LHC period from logbook entry
2957 //
2958
2959 if (!fLogbookEntry) return 0;
2960
2961 return fLogbookEntry->GetRunParameter("LHCperiod");
2962}
2963
b948db8d 2964//______________________________________________________________________________________________
6a150f83 2965void AliShuttle::Log(const char* detector, const char* message, UInt_t level)
b948db8d 2966{
9827400b 2967 //
2968 // Fill log string with a message
2969 //
7d4cf768 2970
3ebbf3c4 2971 TString logRunDir = GetShuttleLogDir();
2972 if (GetCurrentRun() >=0) {
2973 Int_t logDir_lev1 = GetCurrentRun()/10000;
2974 logRunDir += Form("/%d/%d", logDir_lev1, GetCurrentRun());
2975 }
7d4cf768 2976 void* dir = gSystem->OpenDirectory(logRunDir.Data());
84090f85 2977 if (dir == NULL) {
7d4cf768 2978 if (gSystem->mkdir(logRunDir.Data(), kTRUE)) {
36c99a6a 2979 AliError(Form("Can't open directory <%s>", GetShuttleLogDir()));
84090f85 2980 return;
2981 }
b948db8d 2982
84090f85 2983 } else {
2984 gSystem->FreeDirectory(dir);
2985 }
b948db8d 2986
0b025a52 2987 TString toLog = Form("%s UTC (%d): %s - ", TTimeStamp(time(0)).AsString("s"), getpid(), detector);
e7f62f16 2988 if (GetCurrentRun() >= 0)
2989 toLog += Form("run %d - ", GetCurrentRun());
2bb7b766 2990 toLog += Form("%s", message);
2991
6a150f83 2992 AliLog::Message(level, toLog, MODULENAME(), ClassName(), FUNCTIONNAME(), __FILE__, __LINE__);
ffa29e93 2993
2994 // if we redirect the log output already to the file, leave here
2995 if (fOutputRedirected && strcmp(detector, "SHUTTLE") != 0)
2996 return;
b948db8d 2997
ffa29e93 2998 TString fileName = GetLogFileName(detector);
e7f62f16 2999
84090f85 3000 gSystem->ExpandPathName(fileName);
3001
3002 ofstream logFile;
3003 logFile.open(fileName, ofstream::out | ofstream::app);
3004
3005 if (!logFile.is_open()) {
3006 AliError(Form("Could not open file %s", fileName.Data()));
3007 return;
3008 }
7bfb2090 3009
84090f85 3010 logFile << toLog.Data() << "\n";
b948db8d 3011
84090f85 3012 logFile.close();
b948db8d 3013}
2bb7b766 3014
ffa29e93 3015//______________________________________________________________________________________________
3016TString AliShuttle::GetLogFileName(const char* detector) const
3017{
3018 //
3019 // returns the name of the log file for a given sub detector
3020 //
3021
3022 TString fileName;
3023
3024 if (GetCurrentRun() >= 0)
7d4cf768 3025 {
3ebbf3c4 3026 Int_t logDir_lev1 = GetCurrentRun()/10000;
3027 fileName.Form("%s/%d/%d/%s.log", GetShuttleLogDir(), logDir_lev1, GetCurrentRun(),
3028 detector);
7d4cf768 3029 } else {
ffa29e93 3030 fileName.Form("%s/%s.log", GetShuttleLogDir(), detector);
7d4cf768 3031 }
ffa29e93 3032
3033 return fileName;
3034}
3035
ee6f7523 3036//______________________________________________________________________________________________
3037void AliShuttle::SendAlive()
3038{
3039 // sends alive message to ML
3040
3041 TMonaLisaText mlStatus("SHUTTLE_status", "Alive");
3042
3043 TList mlList;
3044 mlList.Add(&mlStatus);
3045
3046 fMonaLisa->SendParameters(&mlList, "__PROCESSINGINFO__");
3047}
3048
2bb7b766 3049//______________________________________________________________________________________________
3050Bool_t AliShuttle::Collect(Int_t run)
3051{
9827400b 3052 //
3053 // Collects conditions data for all UNPROCESSED run written to DAQ LogBook in case of run = -1 (default)
3054 // If a dedicated run is given this run is processed
3055 //
3056 // In operational mode, this is the Shuttle function triggered by the EOR signal.
3057 //
2bb7b766 3058
eba76848 3059 if (run == -1)
3060 Log("SHUTTLE","Collect - Shuttle called. Collecting conditions data for unprocessed runs");
3061 else
3062 Log("SHUTTLE", Form("Collect - Shuttle called. Collecting conditions data for run %d", run));
cb343cfd 3063
3064 SetLastAction("Starting");
2bb7b766 3065
ee6f7523 3066 // create ML instance
3067 if (!fMonaLisa)
3068 fMonaLisa = new TMonaLisaWriter(fConfig->GetMonitorHost(), fConfig->GetMonitorTable());
3069
fbc112e3 3070 CountOpenRuns();
ee6f7523 3071
2bb7b766 3072 TString whereClause("where shuttle_done=0");
eba76848 3073 if (run != -1)
3074 whereClause += Form(" and run=%d", run);
2bb7b766 3075
3076 TObjArray shuttleLogbookEntries;
be48e3ea 3077 if (!QueryShuttleLogbook(whereClause, shuttleLogbookEntries))
3078 {
cb343cfd 3079 Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook");
2bb7b766 3080 return kFALSE;
3081 }
3082
9e080f92 3083 if (shuttleLogbookEntries.GetEntries() == 0)
3084 {
3085 if (run == -1)
3086 Log("SHUTTLE","Collect - Found no UNPROCESSED runs in Shuttle logbook");
3087 else
3088 Log("SHUTTLE", Form("Collect - Run %d is already DONE "
3089 "or it does not exist in Shuttle logbook", run));
3090 return kTRUE;
3091 }
3092
be48e3ea 3093 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
3094 fFirstUnprocessed[iDet] = kTRUE;
3095
fc5a4708 3096 if (run != -1)
be48e3ea 3097 {
3098 // query Shuttle logbook for earlier runs, check if some detectors are unprocessed,
3099 // flag them into fFirstUnprocessed array
e3ae8d33 3100 TString whereClauseBis(Form("where shuttle_done=0 and run < %d", run));
be48e3ea 3101 TObjArray tmpLogbookEntries;
e3ae8d33 3102 if (!QueryShuttleLogbook(whereClauseBis, tmpLogbookEntries))
be48e3ea 3103 {
3104 Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook");
3105 return kFALSE;
3106 }
3107
3108 TIter iter(&tmpLogbookEntries);
3109 AliShuttleLogbookEntry* anEntry = 0;
3110 while ((anEntry = dynamic_cast<AliShuttleLogbookEntry*> (iter.Next())))
3111 {
3112 for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
3113 {
3114 if (anEntry->GetDetectorStatus(iDet) == AliShuttleLogbookEntry::kUnprocessed)
3115 {
3116 AliDebug(2, Form("Run %d: setting %s as \"not first time unprocessed\"",
3117 anEntry->GetRun(), GetDetName(iDet)));
3118 fFirstUnprocessed[iDet] = kFALSE;
3119 }
3120 }
3121
3122 }
3123
3124 }
3125
3126 if (!RetrieveConditionsData(shuttleLogbookEntries))
3127 {
cb343cfd 3128 Log("SHUTTLE", "Collect - Process of at least one run failed");
a3ca69fe 3129 CountOpenRuns();
2bb7b766 3130 return kFALSE;
3131 }
3132
36c99a6a 3133 Log("SHUTTLE", "Collect - Requested run(s) successfully processed");
a3ca69fe 3134 CountOpenRuns();
eba76848 3135 return kTRUE;
2bb7b766 3136}
3137
2bb7b766 3138//______________________________________________________________________________________________
3139Bool_t AliShuttle::RetrieveConditionsData(const TObjArray& dateEntries)
3140{
9827400b 3141 //
3142 // Retrieve conditions data for all runs that aren't processed yet
3143 //
2bb7b766 3144
3145 Bool_t hasError = kFALSE;
3146
3147 TIter iter(&dateEntries);
3148 AliShuttleLogbookEntry* anEntry;
3149
3150 while ((anEntry = (AliShuttleLogbookEntry*) iter.Next())){
3151 if (!Process(anEntry)){
3152 hasError = kTRUE;
3153 }
4b95672b 3154
3155 // clean SHUTTLE temp directory
d524ade6 3156 //TString filename = Form("%s/*.shuttle", GetShuttleTempDir());
3157 //RemoveFile(filename.Data());
2bb7b766 3158 }
3159
3160 return hasError == kFALSE;
3161}
cb343cfd 3162
3163//______________________________________________________________________________________________
3164ULong_t AliShuttle::GetTimeOfLastAction() const
3165{
9827400b 3166 //
3167 // Gets time of last action
3168 //
3169
cb343cfd 3170 ULong_t tmp;
36c99a6a 3171
cb343cfd 3172 fMonitoringMutex->Lock();
be48e3ea 3173
cb343cfd 3174 tmp = fLastActionTime;
36c99a6a 3175
cb343cfd 3176 fMonitoringMutex->UnLock();
36c99a6a 3177
cb343cfd 3178 return tmp;
3179}
3180
3181//______________________________________________________________________________________________
3182const TString AliShuttle::GetLastAction() const
3183{
9827400b 3184 //
cb343cfd 3185 // returns a string description of the last action
9827400b 3186 //
cb343cfd 3187
3188 TString tmp;
36c99a6a 3189
cb343cfd 3190 fMonitoringMutex->Lock();
3191
3192 tmp = fLastAction;
3193
3194 fMonitoringMutex->UnLock();
3195
36c99a6a 3196 return tmp;
cb343cfd 3197}
3198
3199//______________________________________________________________________________________________
3200void AliShuttle::SetLastAction(const char* action)
3201{
9827400b 3202 //
cb343cfd 3203 // updates the monitoring variables
9827400b 3204 //
36c99a6a 3205
cb343cfd 3206 fMonitoringMutex->Lock();
36c99a6a 3207
cb343cfd 3208 fLastAction = action;
3209 fLastActionTime = time(0);
3210
3211 fMonitoringMutex->UnLock();
3212}
eba76848 3213
3214//______________________________________________________________________________________________
3215const char* AliShuttle::GetRunParameter(const char* param)
3216{
9827400b 3217 //
3218 // returns run parameter read from DAQ logbook
3219 //
eba76848 3220
3221 if(!fLogbookEntry) {
3222 AliError("No logbook entry!");
3223 return 0;
3224 }
3225
3226 return fLogbookEntry->GetRunParameter(param);
3227}
57c1a579 3228
d386d623 3229//______________________________________________________________________________________________
9827400b 3230AliCDBEntry* AliShuttle::GetFromOCDB(const char* detector, const AliCDBPath& path)
d386d623 3231{
9827400b 3232 //
3233 // returns object from OCDB valid for current run
3234 //
d386d623 3235
9827400b 3236 if (fTestMode & kErrorOCDB)
3237 {
3238 Log(detector, "GetFromOCDB - In TESTMODE - Simulating error with OCDB");
3239 return 0;
3240 }
3241
d386d623 3242 AliCDBStorage *sto = AliCDBManager::Instance()->GetStorage(fgkMainCDB);
3243 if (!sto)
3244 {
9827400b 3245 Log(detector, "GetFromOCDB - Cannot activate main OCDB for query!");
d386d623 3246 return 0;
3247 }
3248
3249 return dynamic_cast<AliCDBEntry*> (sto->Get(path, GetCurrentRun()));
3250}
3251
57c1a579 3252//______________________________________________________________________________________________
339adafa 3253Bool_t AliShuttle::SendMail(EMailTarget target, Int_t system)
57c1a579 3254{
9827400b 3255 //
3256 // sends a mail to the subdetector expert in case of preprocessor error
3257 //
3258
3259 if (fTestMode != kNone)
3260 return kTRUE;
fb40ead4 3261
926cbc0e 3262 if (!fConfig->SendMail())
3263 return kTRUE;
57c1a579 3264
339adafa 3265 if (target == kDCSEMail || target == kFXSEMail) {
3266 if (!fFirstProcessing)
3a4ddf0e 3267 return kTRUE;
36c99a6a 3268 }
3269
7bdfe1fa 3270 Int_t runMode = (Int_t)fConfig->GetRunMode();
3271 TString tmpStr;
3272 if (runMode == 0) tmpStr = " Nightly Test:";
3273 else tmpStr = " Data Taking:";
fbc112e3 3274 void* dir = gSystem->OpenDirectory(GetShuttleLogDir());
3275 if (dir == NULL)
3276 {
3277 if (gSystem->mkdir(GetShuttleLogDir(), kTRUE))
3278 {
3279 Log("SHUTTLE", Form("SendMail - Can't open directory <%s>", GetShuttleLogDir()));
3280 return kFALSE;
3281 }
3282
3283 } else {
3284 gSystem->FreeDirectory(dir);
3285 }
3286
339adafa 3287 // det experts in to
3288 TString to="";
3835a613 3289 TIter *iterExperts = 0;
339adafa 3290 if (target == kDCSEMail) {
3291 iterExperts = new TIter(fConfig->GetAdmins(AliShuttleConfig::kAmanda));
3292 }
3293 else if (target == kFXSEMail) {
3294 iterExperts = new TIter(fConfig->GetAdmins(system));
3295 }
3835a613 3296 if (iterExperts) {
3297 TObjString *anExpert=0;
3298 while ((anExpert = (TObjString*) iterExperts->Next()))
3299 {
3300 to += Form("%s,", anExpert->GetName());
3301 }
3302 delete iterExperts;
339adafa 3303 }
3835a613 3304
3305 // add subdetector experts
3306 iterExperts = new TIter(fConfig->GetResponsibles(fCurrentDetector));
339adafa 3307 TObjString *anExpert=0;
3308 while ((anExpert = (TObjString*) iterExperts->Next()))
4508ab8b 3309 {
339adafa 3310 to += Form("%s,", anExpert->GetName());
3311 }
3312 delete iterExperts;
3835a613 3313
339adafa 3314 if (to.Length() > 0)
3315 to.Remove(to.Length()-1);
3316 AliDebug(2, Form("to: %s",to.Data()));
4508ab8b 3317
339adafa 3318 if (to.IsNull()) {
3319 Log("SHUTTLE", Form("List of %d responsibles not set!", (Int_t) target));
3320 return kFALSE;
3321 }
3322
3323 // SHUTTLE responsibles in cc
fb40ead4 3324 TString cc="";
3325 TIter iterAdmins(fConfig->GetAdmins(AliShuttleConfig::kGlobal));
3326 TObjString *anAdmin=0;
3327 while ((anAdmin = (TObjString*) iterAdmins.Next()))
3328 {
3329 cc += Form("%s,", anAdmin->GetName());
3330 }
3331 if (cc.Length() > 0)
c19963db 3332 cc.Remove(cc.Length()-1);
fb40ead4 3333 AliDebug(2, Form("cc: %s",to.Data()));
57c1a579 3334
339adafa 3335 // mail body
675f64cd 3336 TString bodyFileName;
3337 bodyFileName.Form("%s/mail.body", GetShuttleLogDir());
3338 gSystem->ExpandPathName(bodyFileName);
3339
3340 ofstream mailBody;
3341 mailBody.open(bodyFileName, ofstream::out);
3342
3343 if (!mailBody.is_open())
3344 {
339adafa 3345 Log("SHUTTLE", Form("Could not open mail body file %s", bodyFileName.Data()));
675f64cd 3346 return kFALSE;
3347 }
3348
675f64cd 3349
339adafa 3350 TString subject;
3351 TString body;
675f64cd 3352
339adafa 3353 if (target == kDCSEMail){
af93e5d7 3354 subject = Form("%s CRITICAL Retrieval of data points for %s FAILED in run %d !",
7bdfe1fa 3355 tmpStr.Data(), fCurrentDetector.Data(), GetCurrentRun());
339adafa 3356 AliDebug(2, Form("subject: %s", subject.Data()));
3357
3358 body = Form("Dear DCS experts, \n\n");
3359 body += Form("SHUTTLE couldn\'t retrieve the data points for detector %s "
3360 "in run %d!!\n\n", fCurrentDetector.Data(), GetCurrentRun());
fb40ead4 3361 }
339adafa 3362 else if (target == kFXSEMail){
af93e5d7 3363 subject = Form("%s CRITICAL FXS communication for %s FAILED in run %d !",
7bdfe1fa 3364 tmpStr.Data(), fCurrentDetector.Data(), GetCurrentRun());
339adafa 3365 AliDebug(2, Form("subject: %s", subject.Data()));
3366 TString sys;
3367 if (system == kDAQ) sys="DAQ";
3368 else if (system == kDCS) sys="DCS";
3369 else if (system == kHLT) sys="HLT";
3d2b6cdd 3370 else if (system == kDQM) sys="DQM";
339adafa 3371 else return kFALSE;
9c0e2d64 3372 body = Form("Dear %s FXS experts, \n\n",sys.Data());
339adafa 3373 body += Form("SHUTTLE couldn\'t retrieve data from the FXS for detector %s "
9c0e2d64 3374 "in run %d!!\n\n", fCurrentDetector.Data(), GetCurrentRun());
8662f0a8 3375 body += Form("The contacted server was:\nDB: %s\nFXS:%s\n\n", fConfig->GetFXSdbHost(system), fConfig->GetFXSHost(system));
339adafa 3376 }
3377 else {
7bdfe1fa 3378 subject = Form("%s %s Shuttle preprocessor FAILED in run %d (run type = %s)!",
3379 tmpStr.Data(), fCurrentDetector.Data(), GetCurrentRun(), GetRunType());
339adafa 3380 AliDebug(2, Form("subject: %s", subject.Data()));
3381
3382 body = Form("Dear %s expert(s), \n\n", fCurrentDetector.Data());
3383 body += Form("SHUTTLE just detected that your preprocessor "
3384 "failed processing run %d (run type = %s)!!\n\n",
3385 GetCurrentRun(), GetRunType());
3386 }
675f64cd 3387
7d4cf768 3388 body += Form("Please check %s status on the SHUTTLE monitoring page: \n\n",
3389 fCurrentDetector.Data());
b0e53b15 3390 if (fConfig->GetRunMode() == AliShuttleConfig::kTest)
3391 {
8e828d39 3392 body += Form("\thttp://pcalimonitor.cern.ch/shuttle.jsp?time=24 \n\n");
b0e53b15 3393 } else {
8e828d39 3394 body += Form("\thttp://pcalimonitor.cern.ch/shuttle.jsp?instance=PROD&time=24 \n\n");
b0e53b15 3395 }
339adafa 3396
3397
7d4cf768 3398 TString logFolder = "logs";
3399 if (fConfig->GetRunMode() == AliShuttleConfig::kProd)
3400 logFolder += "_PROD";
3401
3402
675f64cd 3403 body += Form("Find the %s log for the current run on \n\n"
29fb87f4 3404 "\thttp://pcalishuttle02.cern.ch/%s/%d/%d/%s.log \n\n",
3ebbf3c4 3405 fCurrentDetector.Data(), logFolder.Data(), GetCurrentRun()/10000,
3406 GetCurrentRun(), fCurrentDetector.Data());
fe6a3257 3407 body += Form("The last 15 lines of %s log file are following:\n\n", fCurrentDetector.Data());
675f64cd 3408
3409 AliDebug(2, Form("Body begin: %s", body.Data()));
3410
3411 mailBody << body.Data();
3412 mailBody.close();
3413 mailBody.open(bodyFileName, ofstream::out | ofstream::app);
3414
3ebbf3c4 3415 TString logFileName = Form("%s/%d/%d/%s.log", GetShuttleLogDir(),
3416 GetCurrentRun()/10000, GetCurrentRun(), fCurrentDetector.Data());
fe6a3257 3417 TString tailCommand = Form("tail -n 15 %s >> %s", logFileName.Data(), bodyFileName.Data());
675f64cd 3418 if (gSystem->Exec(tailCommand.Data()))
3419 {
3420 mailBody << Form("%s log file not found ...\n\n", fCurrentDetector.Data());
3421 }
3422
3423 TString endBody = Form("------------------------------------------------------\n\n");
36c99a6a 3424 endBody += Form("In case of problems please contact the SHUTTLE core team.\n\n");
3425 endBody += "Please do not answer this message directly, it is automatically generated.\n\n";
546242fb 3426 endBody += "Greetings,\n\n \t\t\tthe SHUTTLE\n";
57c1a579 3427
909732f7 3428 AliDebug(2, Form("Body end: %s", endBody.Data()));
57c1a579 3429
3430 mailBody << endBody.Data();
3431
3432 mailBody.close();
3433
3434 // send mail!
3435 TString mailCommand = Form("mail -s \"%s\" -c %s %s < %s",
3436 subject.Data(),
3437 cc.Data(),
3438 to.Data(),
3439 bodyFileName.Data());
909732f7 3440 AliDebug(2, Form("mail command: %s", mailCommand.Data()));
57c1a579 3441
3442 Bool_t result = gSystem->Exec(mailCommand.Data());
3443
3444 return result == 0;
3445}
441b0e9c 3446//______________________________________________________________________________________________
9827400b 3447const char* AliShuttle::GetRunType()
441b0e9c 3448{
9827400b 3449 //
3450 // returns run type read from "run type" logbook
3451 //
441b0e9c 3452
3453 if(!fLogbookEntry) {
3454 AliError("No logbook entry!");
3455 return 0;
3456 }
3457
9827400b 3458 return fLogbookEntry->GetRunType();
441b0e9c 3459}
3460
4859271b 3461//______________________________________________________________________________________________
3462Bool_t AliShuttle::GetHLTStatus()
3463{
3464 // Return HLT status (ON=1 OFF=0)
af76b20d 3465 // Converts the HLT status from the mode string read in the run logbook (not just a bool)
4859271b 3466
3467 if(!fLogbookEntry) {
3468 AliError("No logbook entry!");
3469 return 0;
3470 }
3471
af76b20d 3472 // TODO implement when HLTMode is inserted in run logbook
b4ebc2d5 3473 TString hltMode = fLogbookEntry->GetRunParameter("HLTmode");
af76b20d 3474 TSubString firstChar = hltMode(0,1);
3475 AliDebug(2,Form("First char = %s ",firstChar.Data()));
3476 if (firstChar == "A") {
3477 return kFALSE;
3478 }
3479 else if ((firstChar == "B") || (firstChar == "C") || (firstChar == "D") || (firstChar == "E")) {
3480 return kTRUE;
3481 }
3482 else {
3483 Log("SHUTTLE","Unexpected HLT mode! Returning 0....");
3484 return kFALSE;
3485 }
4859271b 3486}
ca8ea066 3487
3488//______________________________________________________________________________________________
3489const char* AliShuttle::GetTriggerConfiguration()
3490{
3491 // Receives the trigger configuration from the DAQ logbook for the current run
3492
3493 // check connection, if needed reconnect
efec19bd 3494 if (!Connect(4))
ca8ea066 3495 return 0;
3496
3497 TString sqlQuery;
3498 sqlQuery.Form("SELECT configFile FROM logbook_trigger_config WHERE run = %d", GetCurrentRun());
efec19bd 3499 TSQLResult* result = fServer[4]->Query(sqlQuery);
ca8ea066 3500 if (!result)
3501 {
3502 Log("SHUTTLE", Form("ERROR: Can't execute query <%s>!", sqlQuery.Data()));
3503 return 0;
3504 }
3505
3506 if (result->GetRowCount() == 0)
3507 {
ff0191c7 3508 Log("SHUTTLE", "WARNING: Trigger configuration not found in logbook_trigger_config");
ca8ea066 3509 delete result;
3510 return 0;
3511 }
3512
3513 TSQLRow* row = result->Next();
3514 if (!row)
3515 {
3516 Log("SHUTTLE", "ERROR: Could not receive logbook_trigger_config data");
3517 delete result;
3518 return 0;
3519 }
3520
3521 // static, so that pointer remains valid when it is returned to the calling class
3522 static TString triggerConfig(row->GetField(0));
3523
3524 delete row;
3525 row = 0;
3526
3527 delete result;
3528 result = 0;
3529
3530 Log("SHUTTLE", Form("Found trigger configuration: %s", triggerConfig.Data()));
3531
3532 return triggerConfig;
3533}
3534
2c5f9d06 3535//______________________________________________________________________________________________
3536const char* AliShuttle::GetCTPTimeParams()
3537{
3538 // Receives the CTP time parameters from the DAQ logbook for the current run
3539
3540 // check connection, if needed reconnect
efec19bd 3541 if (!Connect(4))
2c5f9d06 3542 return 0;
3543
3544 TString sqlQuery;
3545 sqlQuery.Form("SELECT alignmentFile FROM logbook_trigger_config WHERE run = %d", GetCurrentRun());
efec19bd 3546 TSQLResult* result = fServer[4]->Query(sqlQuery);
2c5f9d06 3547 if (!result)
3548 {
3549 Log("SHUTTLE", Form("ERROR: Can't execute query <%s>!", sqlQuery.Data()));
3550 return 0;
3551 }
3552
3553 if (result->GetRowCount() == 0)
3554 {
ff0191c7 3555 Log("SHUTTLE", "WARNING: CTP time params not found in logbook_trigger_config");
2c5f9d06 3556 delete result;
3557 return 0;
3558 }
3559
3560 TSQLRow* row = result->Next();
3561 if (!row)
3562 {
3563 Log("SHUTTLE", "ERROR: Could not receive logbook_trigger_config data");
3564 delete result;
3565 return 0;
3566 }
3567
3568 // static, so that pointer remains valid when it is returned to the calling class
3569 static TString triggerTimeParams(row->GetField(0));
3570
3571 delete row;
3572 row = 0;
3573
3574 delete result;
3575 result = 0;
3576
a191c286 3577 Log("SHUTTLE", Form("Found trigger time parameters: %s", triggerTimeParams.Data()));
2c5f9d06 3578
3579 return triggerTimeParams;
3580}
3581
d386d623 3582//______________________________________________________________________________________________
b48d2542 3583const char* AliShuttle::GetTriggerDetectorMask()
3584{
3585 // Receives the trigger detector mask from DAQ logbook
3586
3587 // check connection, if needed reconnect
efec19bd 3588 if (!Connect(4))
b48d2542 3589 return 0;
3590
3591 TString sqlQuery;
3592 sqlQuery.Form("SELECT BIN(BIT_OR(inputDetectorMask)) from logbook_trigger_clusters WHERE run = %d;", GetCurrentRun());
efec19bd 3593 TSQLResult* result = fServer[4]->Query(sqlQuery);
b48d2542 3594 if (!result)
3595 {
3596 Log("SHUTTLE", Form("ERROR: Can't execute query <%s>!", sqlQuery.Data()));
3597 return 0;
3598 }
3599
3600 if (result->GetRowCount() == 0)
3601 {
3602 Log("SHUTTLE", "ERROR: Trigger Detector Mask not found in logbook_trigger_clusters");
3603 delete result;
3604 return 0;
3605 }
3606
3607 TSQLRow* row = result->Next();
3608 if (!row)
3609 {
3610 Log("SHUTTLE", "ERROR: Could not receive logbook_trigger_clusters data");
3611 delete result;
3612 return 0;
3613 }
3614
3615 // static, so that pointer remains valid when it is returned to the calling class
3616 static TString triggerDetectorMask(row->GetField(0));
3617
3618 delete row;
3619 row = 0;
3620
3621 delete result;
3622 result = 0;
3623
2e7d9963 3624 Log("SHUTTLE", Form("Found Trigger Detector Mask: %s", triggerDetectorMask.Data()));
b48d2542 3625
3626 return triggerDetectorMask;
3627}
3628
3629//______________________________________________________________________________________________
d386d623 3630void AliShuttle::SetShuttleTempDir(const char* tmpDir)
3631{
9827400b 3632 //
3633 // sets Shuttle temp directory
3634 //
d386d623 3635
3636 fgkShuttleTempDir = gSystem->ExpandPathName(tmpDir);
3637}
3638
3639//______________________________________________________________________________________________
3640void AliShuttle::SetShuttleLogDir(const char* logDir)
3641{
9827400b 3642 //
3643 // sets Shuttle log directory
3644 //
d386d623 3645
3646 fgkShuttleLogDir = gSystem->ExpandPathName(logDir);
3647}
503ff24f 3648//______________________________________________________________________________________________
3649Bool_t AliShuttle::TouchFile()
3650{
3651 //
3652 // touching a file on the grid if run has been DONE
3653 //
3654
3655 if (!gGrid)
3656 {
3657 Log("SHUTTLE",Form("No TGrid connection estabilished!"));
3658 Log("SHUTTLE",Form("Could not touch file for run %i",GetCurrentRun()));
3659 return kFALSE;
3660 }
3661
b8cf5e0f 3662 TString dir;
728290a4 3663 dir.Form("%s%d/SHUTTLE_DONE", fConfig->GetAlienPath(), GetCurrentYear());
b8cf5e0f 3664 // checking whether directory for touch command exists
aca77fbf 3665 TGridResult* resultLs = gGrid->Ls(dir.Data());
3666 if (!resultLs){ // unfortunately we don't get this for ls of a non existing dir
29f58d16 3667 Log("SHUTTLE",Form("No result for \"Ls(\"%s\")\", returning without touching", dir.Data()));
b8cf5e0f 3668 return kFALSE;
3669 }
aca77fbf 3670
3671 if ( resultLs->GetEntries() == 1 && !resultLs->GetFileName(0) ) {
3672 // this is what we currently get for ls of a non existing dir
b8cf5e0f 3673 Log("SHUTTLE",Form("No directory %s found, creating it",dir.Data()));
3674
3675 // creating the directory
3676
3677 Bool_t boolMkdir = gGrid->Mkdir(dir.Data());
3678 if (!boolMkdir) {
3679 Log("SHUTTLE",Form("Impossible to create dir %s in alien catalogue for run %i!",dir.Data(),GetCurrentRun()));
97d38a5a 3680 delete resultLs;
3681 resultLs = 0x0;
b8cf5e0f 3682 return kFALSE;
3683 }
3684 Log("SHUTTLE",Form("Directory %s successfully created in alien catalogue for run %i",dir.Data(),GetCurrentRun()));
3685 }
3686 else {
3687 Log("SHUTTLE",Form("Directory %s correctly found for run %i",dir.Data(),GetCurrentRun()));
3688 }
3689
97d38a5a 3690 delete resultLs;
3691 resultLs = 0x0;
3692
503ff24f 3693 TString command;
b8cf5e0f 3694 command.Form("touch %s/%i", dir.Data(), GetCurrentRun());
e660ff60 3695 Log("SHUTTLE", Form("Creating entry in file catalog: %s", command.Data()));
503ff24f 3696 TGridResult *resultTouch = dynamic_cast<TGridResult*>(gGrid->Command(command));
b8cf5e0f 3697 if (!resultTouch){
3698 Log("SHUTTLE",Form("No result for touching command, returning without touching for run %i",GetCurrentRun()));
3699 return kFALSE;
503ff24f 3700 }
b8cf5e0f 3701 TMap *mapTouch = dynamic_cast<TMap*>(resultTouch->At(0));
3702 if (!mapTouch){
3703 Log("SHUTTLE",Form("No map for touching command, returning without touching for run %i",GetCurrentRun()));
97d38a5a 3704 delete resultTouch;
3705 resultTouch = 0x0;
b8cf5e0f 3706 return kFALSE;
3707 }
3708 TObjString *valueTouch = dynamic_cast<TObjString*>(mapTouch->GetValue("__result__"));
3709 if (!valueTouch){
3710 Log("SHUTTLE",Form("No value for \"__result__\" key set in the map for touching command, returning without touching for run %i",GetCurrentRun()));
97d38a5a 3711 delete resultTouch;
3712 resultTouch = 0x0;
b8cf5e0f 3713 return kFALSE;
503ff24f 3714 }
b8cf5e0f 3715 if (valueTouch->GetString()!="1"){
3716 Log("SHUTTLE",Form("Failing the touching command, returning without touching for run %i",GetCurrentRun()));
97d38a5a 3717 delete resultTouch;
3718 resultTouch = 0x0;
b8cf5e0f 3719 return kFALSE;
3720 }
97d38a5a 3721 delete resultTouch;
3722 resultTouch = 0x0;
98400bd9 3723 Log("SHUTTLE", "Sucessfully touched the file");
b8cf5e0f 3724 return kTRUE;
503ff24f 3725}
2eb98462 3726//______________________________________________________________________________________________
f100adeb 3727UInt_t AliShuttle::GetStartTimeDCSQuery()
2eb98462 3728{
3729 // Return Start Time for the DCS query
3730 //
3731 // The call is delegated to AliShuttleInterface
3732
3d24ad5a 3733 return GetCurrentStartTime()-fConfig->GetDCSQueryOffset();
2eb98462 3734}
3735//______________________________________________________________________________________________
f100adeb 3736UInt_t AliShuttle::GetEndTimeDCSQuery()
2eb98462 3737{
3738 // Return End Time for the DCS query
3739 //
3740 // The call is delegated to AliShuttleInterface
3741
3742 return GetCurrentEndTime()+fConfig->GetDCSQueryOffset();
3743}
1f0f7c2e 3744//______________________________________________________________________________________________
3745void AliShuttle::SendMLFromDet(const char* value)
3746{
3747 //
3748 // Sending an information coming from the current detector to ML
3749 //
3750
3751 TMonaLisaText mlText(Form("%s_RunCondition", fCurrentDetector.Data()), value);
3752
3753 TList mlList;
3754 mlList.Add(&mlText);
3755
3756 TString mlID;
3757 mlID.Form("%d", GetCurrentRun());
3758 fMonaLisa->SendParameters(&mlList, mlID);
3759
3760 return;
3761}
6ecb073a 3762//______________________________________________________________________________________________
3763TString* AliShuttle::GetLTUConfig(const char* det)
3764{
3765 //
3766 // Getting ltuFineDelay1, ltuFineDelay2, ltuBCDelay for detector det from logbook_detectors table in logbook
3767 //
3768
efec19bd 3769 if (!Connect(4))
6ecb073a 3770 return 0;
3771
3772 TString sqlQuery;
3773 sqlQuery.Form("select LTUFineDelay1, LTUFineDelay2, LTUBCDelayAdd from logbook_detectors WHERE run_number = %d and detector = \"%s\";", GetCurrentRun(),det);
3774
efec19bd 3775 TSQLResult* result = fServer[4]->Query(sqlQuery);
6ecb073a 3776 if (!result){
3777 Log("SHUTTLE","ERROR: No result found for the LTU configuration query");
3778 return 0x0;
3779 }
3780 if (result->GetRowCount() == 0){
3781 Log("SHUTTLE",Form("ERROR: LTU configuration not found in logbook_detectors for detector %s, returning null pointer",det));
3782 delete result;
3783 return 0x0;
3784 }
3785 if (result->GetFieldCount() != 3){
3786 Log("SHUTTLE",Form("ERROR: not all the required fields are there for the LTU configuration for detector %s (only %d found), returning a null pointer",det, result->GetFieldCount()));
3787 delete result;
3788 return 0x0;
3789 }
3790 TSQLRow* row = result->Next();
3791 if (!row){
3792 Printf("ERROR: Could not receive logbook_detectors data, returning null pointer");
3793 delete result;
3794 return 0x0;
3795 }
3796 TString* ltuConfigString = new TString[3];
3797
3798 ltuConfigString[0] = row->GetField(0);
3799 ltuConfigString[1] = row->GetField(1);
3800 ltuConfigString[2] = row->GetField(2);
503ff24f 3801
6ecb073a 3802 return ltuConfigString;
3803
3804}