]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/AliShuttle.cxx
updated comment
[u/mrichter/AliRoot.git] / SHUTTLE / AliShuttle.cxx
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
16 /*
17 $Log$
18 Revision 1.37  2007/04/10 16:53:14  jgrosseo
19 redirecting sub detector stdout, stderr to sub detector log file
20
21 Revision 1.35  2007/04/04 16:26:38  acolla
22 1. Re-organization of function calls in TestPreprocessor to make it more meaningful.
23 2. Added missing dependency in test preprocessors.
24 3. in AliShuttle.cxx: processing time and memory consumption info on a single line.
25
26 Revision 1.34  2007/04/04 10:33:36  jgrosseo
27 1) Storing of files to the Grid is now done _after_ your preprocessors succeeded. This is transparent, which means that you can still use the same functions (Store, StoreReferenceData) to store files to the Grid. However, the Shuttle first stores them locally and transfers them after the preprocessor finished. The return code of these two functions has changed from UInt_t to Bool_t which gives you the success of the storing.
28 In case of an error with the Grid, the Shuttle will retry the storing later, the preprocessor does not need to be run again.
29
30 2) The meaning of the return code of the preprocessor has changed. 0 is now success and any other value means failure. This value is stored in the log and you can use it to keep details about the error condition.
31
32 3) New function StoreReferenceFile to _directly_ store a file (without opening it) to the reference storage.
33
34 4) The memory usage of the preprocessor is monitored. If it exceeds 2 GB it is terminated.
35
36 5) New function AliPreprocessor::ProcessDCS(). If you do not need to have DCS data in all cases, you can skip the processing by implemting this function and returning kFALSE under certain conditions. E.g. if there is a certain run type.
37 If you always need DCS data (like before), you do not need to implement it.
38
39 6) The run type has been added to the monitoring page
40
41 Revision 1.33  2007/04/03 13:56:01  acolla
42 Grid Storage at the end of preprocessing. Added virtual method to disable DCS query according to the
43 run type.
44
45 Revision 1.32  2007/02/28 10:41:56  acolla
46 Run type field added in SHUTTLE framework. Run type is read from "run type" logbook and retrieved by
47 AliPreprocessor::GetRunType() function.
48 Added some ldap definition files.
49
50 Revision 1.30  2007/02/13 11:23:21  acolla
51 Moved getters and setters of Shuttle's main OCDB/Reference, local
52 OCDB/Reference, temp and log folders to AliShuttleInterface
53
54 Revision 1.27  2007/01/30 17:52:42  jgrosseo
55 adding monalisa monitoring
56
57 Revision 1.26  2007/01/23 19:20:03  acolla
58 Removed old ldif files, added TOF, MCH ldif files. Added some options in
59 AliShuttleConfig::Print. Added in Ali Shuttle: SetShuttleTempDir and
60 SetShuttleLogDir
61
62 Revision 1.25  2007/01/15 19:13:52  acolla
63 Moved some AliInfo to AliDebug in SendMail function
64
65 Revision 1.21  2006/12/07 08:51:26  jgrosseo
66 update (alberto):
67 table, db names in ldap configuration
68 added GRP preprocessor
69 DCS data can also be retrieved by data point
70
71 Revision 1.20  2006/11/16 16:16:48  jgrosseo
72 introducing strict run ordering flag
73 removed giving preprocessor name to preprocessor, they have to know their name themselves ;-)
74
75 Revision 1.19  2006/11/06 14:23:04  jgrosseo
76 major update (Alberto)
77 o) reading of run parameters from the logbook
78 o) online offline naming conversion
79 o) standalone DCSclient package
80
81 Revision 1.18  2006/10/20 15:22:59  jgrosseo
82 o) Adding time out to the execution of the preprocessors: The Shuttle forks and the parent process monitors the child
83 o) Merging Collect, CollectAll, CollectNew function
84 o) Removing implementation of empty copy constructors (declaration still there!)
85
86 Revision 1.17  2006/10/05 16:20:55  jgrosseo
87 adapting to new CDB classes
88
89 Revision 1.16  2006/10/05 15:46:26  jgrosseo
90 applying to the new interface
91
92 Revision 1.15  2006/10/02 16:38:39  jgrosseo
93 update (alberto):
94 fixed memory leaks
95 storing of objects that failed to be stored to the grid before
96 interfacing of shuttle status table in daq system
97
98 Revision 1.14  2006/08/29 09:16:05  jgrosseo
99 small update
100
101 Revision 1.13  2006/08/15 10:50:00  jgrosseo
102 effc++ corrections (alberto)
103
104 Revision 1.12  2006/08/08 14:19:29  jgrosseo
105 Update to shuttle classes (Alberto)
106
107 - Possibility to set the full object's path in the Preprocessor's and
108 Shuttle's  Store functions
109 - Possibility to extend the object's run validity in the same classes
110 ("startValidity" and "validityInfinite" parameters)
111 - Implementation of the StoreReferenceData function to store reference
112 data in a dedicated CDB storage.
113
114 Revision 1.11  2006/07/21 07:37:20  jgrosseo
115 last run is stored after each run
116
117 Revision 1.10  2006/07/20 09:54:40  jgrosseo
118 introducing status management: The processing per subdetector is divided into several steps,
119 after each step the status is stored on disk. If the system crashes in any of the steps the Shuttle
120 can keep track of the number of failures and skips further processing after a certain threshold is
121 exceeded. These thresholds can be configured in LDAP.
122
123 Revision 1.9  2006/07/19 10:09:55  jgrosseo
124 new configuration, accesst to DAQ FES (Alberto)
125
126 Revision 1.8  2006/07/11 12:44:36  jgrosseo
127 adding parameters for extended validity range of data produced by preprocessor
128
129 Revision 1.7  2006/07/10 14:37:09  jgrosseo
130 small fix + todo comment
131
132 Revision 1.6  2006/07/10 13:01:41  jgrosseo
133 enhanced storing of last sucessfully processed run (alberto)
134
135 Revision 1.5  2006/07/04 14:59:57  jgrosseo
136 revision of AliDCSValue: Removed wrapper classes, reduced storage size per value by factor 2
137
138 Revision 1.4  2006/06/12 09:11:16  jgrosseo
139 coding conventions (Alberto)
140
141 Revision 1.3  2006/06/06 14:26:40  jgrosseo
142 o) removed files that were moved to STEER
143 o) shuttle updated to follow the new interface (Alberto)
144
145 Revision 1.2  2006/03/07 07:52:34  hristov
146 New version (B.Yordanov)
147
148 Revision 1.6  2005/11/19 17:19:14  byordano
149 RetrieveDATEEntries and RetrieveConditionsData added
150
151 Revision 1.5  2005/11/19 11:09:27  byordano
152 AliShuttle declaration added
153
154 Revision 1.4  2005/11/17 17:47:34  byordano
155 TList changed to TObjArray
156
157 Revision 1.3  2005/11/17 14:43:23  byordano
158 import to local CVS
159
160 Revision 1.1.1.1  2005/10/28 07:33:58  hristov
161 Initial import as subdirectory in AliRoot
162
163 Revision 1.2  2005/09/13 08:41:15  byordano
164 default startTime endTime added
165
166 Revision 1.4  2005/08/30 09:13:02  byordano
167 some docs added
168
169 Revision 1.3  2005/08/29 21:15:47  byordano
170 some docs added
171
172 */
173
174 //
175 // This class is the main manager for AliShuttle. 
176 // It organizes the data retrieval from DCS and call the 
177 // interface methods of AliPreprocessor.
178 // For every detector in AliShuttleConfgi (see AliShuttleConfig),
179 // data for its set of aliases is retrieved. If there is registered
180 // AliPreprocessor for this detector then it will be used
181 // accroding to the schema (see AliPreprocessor).
182 // If there isn't registered AliPreprocessor than the retrieved
183 // data is stored automatically to the undelying AliCDBStorage.
184 // For detSpec is used the alias name.
185 //
186
187 #include "AliShuttle.h"
188
189 #include "AliCDBManager.h"
190 #include "AliCDBStorage.h"
191 #include "AliCDBId.h"
192 #include "AliCDBRunRange.h"
193 #include "AliCDBPath.h"
194 #include "AliCDBEntry.h"
195 #include "AliShuttleConfig.h"
196 #include "DCSClient/AliDCSClient.h"
197 #include "AliLog.h"
198 #include "AliPreprocessor.h"
199 #include "AliShuttleStatus.h"
200 #include "AliShuttleLogbookEntry.h"
201
202 #include <TSystem.h>
203 #include <TObject.h>
204 #include <TString.h>
205 #include <TTimeStamp.h>
206 #include <TObjString.h>
207 #include <TSQLServer.h>
208 #include <TSQLResult.h>
209 #include <TSQLRow.h>
210 #include <TMutex.h>
211 #include <TSystemDirectory.h>
212 #include <TSystemFile.h>
213 #include <TFileMerger.h>
214 #include <TGrid.h>
215 #include <TGridResult.h>
216
217 #include <TMonaLisaWriter.h>
218
219 #include <fstream>
220
221 #include <sys/types.h>
222 #include <sys/wait.h>
223
224 ClassImp(AliShuttle)
225
226 //______________________________________________________________________________________________
227 AliShuttle::AliShuttle(const AliShuttleConfig* config,
228                 UInt_t timeout, Int_t retries):
229 fConfig(config),
230 fTimeout(timeout), fRetries(retries),
231 fPreprocessorMap(),
232 fLogbookEntry(0),
233 fCurrentDetector(),
234 fStatusEntry(0),
235 fMonitoringMutex(0),
236 fLastActionTime(0),
237 fLastAction(),
238 fMonaLisa(0),
239 fTestMode(kNone),
240 fReadTestMode(kFALSE),
241 fOutputRedirected(kFALSE)
242 {
243         //
244         // config: AliShuttleConfig used
245         // timeout: timeout used for AliDCSClient connection
246         // retries: the number of retries in case of connection error.
247         //
248
249         if (!fConfig->IsValid()) AliFatal("********** !!!!! Invalid configuration !!!!! **********");
250         for(int iSys=0;iSys<4;iSys++) {
251                 fServer[iSys]=0;
252                 if (iSys < 3)
253                         fFXSlist[iSys].SetOwner(kTRUE);
254         }
255         fPreprocessorMap.SetOwner(kTRUE);
256
257         for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
258                 fFirstUnprocessed[iDet] = kFALSE;
259
260         fMonitoringMutex = new TMutex();
261 }
262
263 //______________________________________________________________________________________________
264 AliShuttle::~AliShuttle()
265 {
266         //
267         // destructor
268         //
269
270         fPreprocessorMap.DeleteAll();
271         for(int iSys=0;iSys<4;iSys++)
272                 if(fServer[iSys]) {
273                         fServer[iSys]->Close();
274                         delete fServer[iSys];
275                         fServer[iSys] = 0;
276                 }
277
278         if (fStatusEntry){
279                 delete fStatusEntry;
280                 fStatusEntry = 0;
281         }
282         
283         if (fMonitoringMutex) 
284         {
285                 delete fMonitoringMutex;
286                 fMonitoringMutex = 0;
287         }
288 }
289
290 //______________________________________________________________________________________________
291 void AliShuttle::RegisterPreprocessor(AliPreprocessor* preprocessor)
292 {
293         //
294         // Registers new AliPreprocessor.
295         // It uses GetName() for indentificator of the pre processor.
296         // The pre processor is registered it there isn't any other
297         // with the same identificator (GetName()).
298         //
299
300         const char* detName = preprocessor->GetName();
301         if(GetDetPos(detName) < 0)
302                 AliFatal(Form("********** !!!!! Invalid detector name: %s !!!!! **********", detName));
303
304         if (fPreprocessorMap.GetValue(detName)) {
305                 AliWarning(Form("AliPreprocessor %s is already registered!", detName));
306                 return;
307         }
308
309         fPreprocessorMap.Add(new TObjString(detName), preprocessor);
310 }
311 //______________________________________________________________________________________________
312 Bool_t AliShuttle::Store(const AliCDBPath& path, TObject* object,
313                 AliCDBMetaData* metaData, Int_t validityStart, Bool_t validityInfinite)
314 {
315         // Stores a CDB object in the storage for offline reconstruction. Objects that are not needed for
316         // offline reconstruction, but should be stored anyway (e.g. for debugging) should NOT be stored
317         // using this function. Use StoreReferenceData instead!
318         // It calls StoreLocally function which temporarily stores the data locally; when the preprocessor
319         // finishes the data are transferred to the main storage (Grid).
320
321         return StoreLocally(fgkLocalCDB, path, object, metaData, validityStart, validityInfinite);
322 }
323
324 //______________________________________________________________________________________________
325 Bool_t AliShuttle::StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData)
326 {
327         // Stores a CDB object in the storage for reference data. This objects will not be available during
328         // offline reconstrunction. Use this function for reference data only!
329         // It calls StoreLocally function which temporarily stores the data locally; when the preprocessor
330         // finishes the data are transferred to the main storage (Grid).
331
332         return StoreLocally(fgkLocalRefStorage, path, object, metaData);
333 }
334
335 //______________________________________________________________________________________________
336 Bool_t AliShuttle::StoreLocally(const TString& localUri,
337                         const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData,
338                         Int_t validityStart, Bool_t validityInfinite)
339 {
340         // Store object temporarily in local storage. Parameters are passed by Store and StoreReferenceData functions.
341         // when the preprocessor finishes the data are transferred to the main storage (Grid).
342         // The parameters are:
343         //   1) Uri of the backup storage (Local)
344         //   2) the object's path.
345         //   3) the object to be stored
346         //   4) the metaData to be associated with the object
347         //   5) the validity start run number w.r.t. the current run,
348         //      if the data is valid only for this run leave the default 0
349         //   6) specifies if the calibration data is valid for infinity (this means until updated),
350         //      typical for calibration runs, the default is kFALSE
351         //
352         // returns 0 if fail, 1 otherwise
353
354         if (fTestMode & kErrorStorage)
355         {
356                 Log(fCurrentDetector, "StoreLocally - In TESTMODE - Simulating error while storing locally");
357                 return kFALSE;
358         }
359         
360         const char* cdbType = (localUri == fgkLocalCDB) ? "CDB" : "Reference";
361
362         Int_t firstRun = GetCurrentRun() - validityStart;
363         if(firstRun < 0) {
364                 AliWarning("First valid run happens to be less than 0! Setting it to 0.");
365                 firstRun=0;
366         }
367
368         Int_t lastRun = -1;
369         if(validityInfinite) {
370                 lastRun = AliCDBRunRange::Infinity();
371         } else {
372                 lastRun = GetCurrentRun();
373         }
374
375         // Version is set to current run, it will be used later to transfer data to Grid
376         AliCDBId id(path, firstRun, lastRun, GetCurrentRun(), -1);
377
378         if(! dynamic_cast<TObjString*> (metaData->GetProperty("RunUsed(TObjString)"))){
379                 TObjString runUsed = Form("%d", GetCurrentRun());
380                 metaData->SetProperty("RunUsed(TObjString)", runUsed.Clone());
381         }
382
383         Bool_t result = kFALSE;
384
385         if (!(AliCDBManager::Instance()->GetStorage(localUri))) {
386                 Log("SHUTTLE", Form("StoreLocally - Cannot activate local %s storage", cdbType));
387         } else {
388                 result = AliCDBManager::Instance()->GetStorage(localUri)
389                                         ->Put(object, id, metaData);
390         }
391
392         if(!result) {
393
394                 Log(fCurrentDetector, Form("StoreLocally - Can't store object <%s>!", id.ToString().Data()));
395         }
396
397         return result;
398 }
399
400 //______________________________________________________________________________________________
401 Bool_t AliShuttle::StoreOCDB()
402 {
403         //
404         // Called when preprocessor ends successfully or when previous storage attempt failed (kStoreError status)
405         // Calls underlying StoreOCDB(const char*) function twice, for OCDB and Reference storage.
406         // Then calls StoreRefFilesToGrid to store reference files. 
407         //
408         
409         if (fTestMode & kErrorGrid)
410         {
411                 Log("SHUTTLE", "StoreOCDB - In TESTMODE - Simulating error while storing in the Grid");
412                 Log(fCurrentDetector, "StoreOCDB - In TESTMODE - Simulating error while storing in the Grid");
413                 return kFALSE;
414         }
415         
416         AliInfo("Storing OCDB data ...");
417         Bool_t resultCDB = StoreOCDB(fgkMainCDB);
418
419         AliInfo("Storing reference data ...");
420         Bool_t resultRef = StoreOCDB(fgkMainRefStorage);
421         
422         AliInfo("Storing reference files ...");
423         Bool_t resultRefFiles = StoreRefFilesToGrid();
424         
425         return resultCDB && resultRef && resultRefFiles;
426 }
427
428 //______________________________________________________________________________________________
429 Bool_t AliShuttle::StoreOCDB(const TString& gridURI)
430 {
431         //
432         // Called by StoreOCDB(), performs actual storage to the main OCDB and reference storages (Grid)
433         //
434
435         TObjArray* gridIds=0;
436
437         Bool_t result = kTRUE;
438
439         const char* type = 0;
440         TString localURI;
441         if(gridURI == fgkMainCDB) {
442                 type = "OCDB";
443                 localURI = fgkLocalCDB;
444         } else if(gridURI == fgkMainRefStorage) {
445                 type = "reference";
446                 localURI = fgkLocalRefStorage;
447         } else {
448                 AliError(Form("Invalid storage URI: %s", gridURI.Data()));
449                 return kFALSE;
450         }
451
452         AliCDBManager* man = AliCDBManager::Instance();
453
454         AliCDBStorage *gridSto = man->GetStorage(gridURI);
455         if(!gridSto) {
456                 Log("SHUTTLE",
457                         Form("StoreOCDB - cannot activate main %s storage", type));
458                 return kFALSE;
459         }
460
461         gridIds = gridSto->GetQueryCDBList();
462
463         // get objects previously stored in local CDB
464         AliCDBStorage *localSto = man->GetStorage(localURI);
465         if(!localSto) {
466                 Log("SHUTTLE",
467                         Form("StoreOCDB - cannot activate local %s storage", type));
468                 return kFALSE;
469         }
470         AliCDBPath aPath(GetOfflineDetName(fCurrentDetector.Data()),"*","*");
471         // Local objects were stored with current run as Grid version!
472         TList* localEntries = localSto->GetAll(aPath.GetPath(), GetCurrentRun(), GetCurrentRun());
473         localEntries->SetOwner(1);
474
475         // loop on local stored objects
476         TIter localIter(localEntries);
477         AliCDBEntry *aLocEntry = 0;
478         while((aLocEntry = dynamic_cast<AliCDBEntry*> (localIter.Next()))){
479                 aLocEntry->SetOwner(1);
480                 AliCDBId aLocId = aLocEntry->GetId();
481                 aLocEntry->SetVersion(-1);
482                 aLocEntry->SetSubVersion(-1);
483
484                 // If local object is valid up to infinity we store it only if it is
485                 // the first unprocessed run!
486                 if (aLocId.GetLastRun() == AliCDBRunRange::Infinity() &&
487                         !fFirstUnprocessed[GetDetPos(fCurrentDetector)])
488                 {
489                         Log("SHUTTLE", Form("StoreOCDB - %s: object %s has validity infinite but "
490                                                 "there are previous unprocessed runs!",
491                                                 fCurrentDetector.Data(), aLocId.GetPath().Data()));
492                         continue;
493                 }
494
495                 // loop on Grid valid Id's
496                 Bool_t store = kTRUE;
497                 TIter gridIter(gridIds);
498                 AliCDBId* aGridId = 0;
499                 while((aGridId = dynamic_cast<AliCDBId*> (gridIter.Next()))){
500                         if(aGridId->GetPath() != aLocId.GetPath()) continue;
501                         // skip all objects valid up to infinity
502                         if(aGridId->GetLastRun() == AliCDBRunRange::Infinity()) continue;
503                         // if we get here, it means there's already some more recent object stored on Grid!
504                         store = kFALSE;
505                         break;
506                 }
507
508                 // If we get here, the file can be stored!
509                 Bool_t storeOk = gridSto->Put(aLocEntry);
510                 if(!store || storeOk){
511
512                         if (!store)
513                         {
514                                 Log(fCurrentDetector.Data(),
515                                         Form("StoreOCDB - A more recent object already exists in %s storage: <%s>",
516                                                 type, aGridId->ToString().Data()));
517                         } else {
518                                 Log("SHUTTLE",
519                                         Form("StoreOCDB - Object <%s> successfully put into %s storage",
520                                                 aLocId.ToString().Data(), type));
521                         }
522
523                         // removing local filename...
524                         TString filename;
525                         localSto->IdToFilename(aLocId, filename);
526                         AliInfo(Form("Removing local file %s", filename.Data()));
527                         RemoveFile(filename.Data());
528                         continue;
529                 } else  {
530                         Log("SHUTTLE",
531                                 Form("StoreOCDB - Grid %s storage of object <%s> failed",
532                                         type, aLocId.ToString().Data()));
533                         result = kFALSE;
534                 }
535         }
536         localEntries->Clear();
537
538         return result;
539 }
540
541 //______________________________________________________________________________________________
542 Bool_t AliShuttle::StoreReferenceFile(const char* detector, const char* localFile, const char* gridFileName)
543 {
544         //
545         // Stores reference file directly (without opening it). This function stores the file locally.
546         //
547         // The file is stored under the following location: 
548         // <base folder of local reference storage>/<DET>/<RUN#>_<gridFileName>
549         // where <gridFileName> is the second parameter given to the function
550         // 
551         
552         if (fTestMode & kErrorStorage)
553         {
554                 Log(fCurrentDetector, "StoreReferenceFile - In TESTMODE - Simulating error while storing locally");
555                 return kFALSE;
556         }
557         
558         AliCDBManager* man = AliCDBManager::Instance();
559         AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
560         
561         TString localBaseFolder = sto->GetBaseFolder();
562         
563         TString targetDir;
564         targetDir.Form("%s/%s", localBaseFolder.Data(), detector);
565         
566         TString target;
567         target.Form("%s/%d_%s", targetDir.Data(), GetCurrentRun(), gridFileName);
568         
569         Int_t result = gSystem->GetPathInfo(targetDir, 0, (Long64_t*) 0, 0, 0);
570         if (result)
571         {
572                 result = gSystem->mkdir(targetDir, kTRUE);
573                 if (result != 0)
574                 {
575                         Log("SHUTTLE", Form("StoreReferenceFile - Error creating base directory %s", targetDir.Data()));
576                         return kFALSE;
577                 }
578         }
579                 
580         result = gSystem->CopyFile(localFile, target);
581
582         if (result == 0)
583         {
584                 Log("SHUTTLE", Form("StoreReferenceFile - Stored file %s locally to %s", localFile, target.Data()));
585                 return kTRUE;
586         }
587         else
588         {
589                 Log("SHUTTLE", Form("StoreReferenceFile - Storing file %s locally to %s failed", localFile, target.Data()));
590                 return kFALSE;
591         }       
592 }
593
594 //______________________________________________________________________________________________
595 Bool_t AliShuttle::StoreRefFilesToGrid()
596 {
597         //
598         // Transfers the reference file to the Grid.
599         //
600         // The file is stored under the following location: 
601         // <base folder of reference storage>/<DET>/<RUN#>_<gridFileName>
602         // where <gridFileName> is the second parameter given to the function
603         //      
604         
605         AliCDBManager* man = AliCDBManager::Instance();
606         AliCDBStorage* sto = man->GetStorage(fgkLocalRefStorage);
607         if (!sto)
608                 return kFALSE;
609         TString localBaseFolder = sto->GetBaseFolder();
610                 
611         TString dir;
612         dir.Form("%s/%s", localBaseFolder.Data(), GetOfflineDetName(fCurrentDetector));
613         
614         AliCDBStorage* gridSto = man->GetStorage(fgkMainRefStorage);
615         if (!gridSto)
616                 return kFALSE;
617         TString gridBaseFolder = gridSto->GetBaseFolder();
618         TString alienDir;
619         alienDir.Form("%s%s", gridBaseFolder.Data(), GetOfflineDetName(fCurrentDetector));
620         
621         if (!gGrid) 
622                 return kFALSE;
623         
624         TString begin;
625         begin.Form("%d_", GetCurrentRun());
626         
627         TSystemDirectory* baseDir = new TSystemDirectory("/", dir);
628         if (!baseDir)
629                 return kTRUE;
630                 
631         TList* dirList            = baseDir->GetListOfFiles();
632         if (!dirList)
633         {
634                 delete baseDir;
635                 return kTRUE;
636         }
637                 
638         Int_t nDirs               = dirList->GetEntries();
639         
640         Bool_t success = kTRUE;
641         Bool_t first = kTRUE;
642         
643         for (Int_t iDir=0; iDir<nDirs; ++iDir)
644         {
645                 TSystemFile* entry = dynamic_cast<TSystemFile*> (dirList->At(iDir));
646                 if (!entry)
647                         continue;
648                         
649                 if (entry->IsDirectory())
650                         continue;
651                         
652                 TString fileName(entry->GetName());
653                 if (!fileName.BeginsWith(begin))
654                         continue;
655                         
656                 if (first)
657                 {
658                         first = kFALSE;
659                         // check that DET folder exists, otherwise create it
660                         TGridResult* result = gGrid->Ls(alienDir.Data(), "a");
661                         
662                         if (!result)
663                                 return kFALSE;
664                         
665                         if (!result->GetFileName(0)) 
666                         {
667                                 if (!gGrid->Mkdir(alienDir.Data(),"",0))
668                                 {
669                                         Log("SHUTTLE", Form("StoreRefFilesToGrid - Cannot create directory %s",
670                                                         alienDir.Data()));
671                                         delete baseDir;
672                                         return kFALSE;
673                                 }
674                                 
675                         }
676                 }
677                         
678                 TString fullLocalPath;
679                 fullLocalPath.Form("%s/%s", dir.Data(), fileName.Data());
680                 
681                 TString fullGridPath;
682                 fullGridPath.Form("alien://%s/%s", alienDir.Data(), fileName.Data());
683
684                 Log("SHUTTLE", Form("StoreRefFilesToGrid - Copying local file %s to %s", fullLocalPath.Data(), fullGridPath.Data()));
685                 
686                 TFileMerger fileMerger;
687                 Bool_t result = fileMerger.Cp(fullLocalPath, fullGridPath);
688                 
689                 if (result)
690                 {
691                         Log("SHUTTLE", Form("StoreRefFilesToGrid - Copying local file %s to %s succeeded", fullLocalPath.Data(), fullGridPath.Data()));
692                         RemoveFile(fullLocalPath);
693                 }
694                 else
695                 {
696                         Log("SHUTTLE", Form("StoreRefFilesToGrid - Copying local file %s to %s failed", fullLocalPath.Data(), fullGridPath.Data()));
697                         success = kFALSE;
698                 }
699         }
700         
701         delete baseDir;
702         
703         return success;
704 }
705
706 //______________________________________________________________________________________________
707 void AliShuttle::CleanLocalStorage(const TString& uri)
708 {
709         //
710         // Called in case the preprocessor is declared failed. Remove remaining objects from the local storages.
711         //
712
713         const char* type = 0;
714         if(uri == fgkLocalCDB) {
715                 type = "OCDB";
716         } else if(uri == fgkLocalRefStorage) {
717                 type = "reference";
718         } else {
719                 AliError(Form("Invalid storage URI: %s", uri.Data()));
720                 return;
721         }
722
723         AliCDBManager* man = AliCDBManager::Instance();
724
725         // open local storage
726         AliCDBStorage *localSto = man->GetStorage(uri);
727         if(!localSto) {
728                 Log("SHUTTLE",
729                         Form("CleanLocalStorage - cannot activate local %s storage", type));
730                 return;
731         }
732
733         TString filename(Form("%s/%s/*/Run*_v%d_s*.root",
734                 localSto->GetBaseFolder().Data(), fCurrentDetector.Data(), GetCurrentRun()));
735
736         AliInfo(Form("filename = %s", filename.Data()));
737
738         AliInfo(Form("Removing remaining local files from run %d and detector %s ...",
739                 GetCurrentRun(), fCurrentDetector.Data()));
740
741         RemoveFile(filename.Data());
742
743 }
744
745 //______________________________________________________________________________________________
746 void AliShuttle::RemoveFile(const char* filename)
747 {
748         //
749         // removes local file
750         //
751
752         TString command(Form("rm -f %s", filename));
753
754         Int_t result = gSystem->Exec(command.Data());
755         if(result != 0)
756         {
757                 Log("SHUTTLE", Form("RemoveFile - %s: Cannot remove file %s!",
758                         fCurrentDetector.Data(), filename));
759         }
760 }
761
762 //______________________________________________________________________________________________
763 AliShuttleStatus* AliShuttle::ReadShuttleStatus()
764 {
765         //
766         // Reads the AliShuttleStatus from the CDB
767         //
768
769         if (fStatusEntry){
770                 delete fStatusEntry;
771                 fStatusEntry = 0;
772         }
773
774         fStatusEntry = AliCDBManager::Instance()->GetStorage(GetLocalCDB())
775                 ->Get(Form("/SHUTTLE/STATUS/%s", fCurrentDetector.Data()), GetCurrentRun());
776
777         if (!fStatusEntry) return 0;
778         fStatusEntry->SetOwner(1);
779
780         AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
781         if (!status) {
782                 AliError("Invalid object stored to CDB!");
783                 return 0;
784         }
785
786         return status;
787 }
788
789 //______________________________________________________________________________________________
790 Bool_t AliShuttle::WriteShuttleStatus(AliShuttleStatus* status)
791 {
792         //
793         // writes the status for one subdetector
794         //
795
796         if (fStatusEntry){
797                 delete fStatusEntry;
798                 fStatusEntry = 0;
799         }
800
801         Int_t run = GetCurrentRun();
802
803         AliCDBId id(AliCDBPath("SHUTTLE", "STATUS", fCurrentDetector), run, run);
804
805         fStatusEntry = new AliCDBEntry(status, id, new AliCDBMetaData);
806         fStatusEntry->SetOwner(1);
807
808         UInt_t result = AliCDBManager::Instance()->GetStorage(fgkLocalCDB)->Put(fStatusEntry);
809
810         if (!result) {
811                 Log("SHUTTLE", Form("WriteShuttleStatus - Failed for %s, run %d",
812                                                 fCurrentDetector.Data(), run));
813                 return kFALSE;
814         }
815         
816         SendMLInfo();
817
818         return kTRUE;
819 }
820
821 //______________________________________________________________________________________________
822 void AliShuttle::UpdateShuttleStatus(AliShuttleStatus::Status newStatus, Bool_t increaseCount)
823 {
824         //
825         // changes the AliShuttleStatus for the given detector and run to the given status
826         //
827
828         if (!fStatusEntry){
829                 AliError("UNEXPECTED: fStatusEntry empty");
830                 return;
831         }
832
833         AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
834
835         if (!status){
836                 Log("SHUTTLE", "UNEXPECTED: status could not be read from current CDB entry");
837                 return;
838         }
839
840         TString actionStr = Form("UpdateShuttleStatus - %s: Changing state from %s to %s",
841                                 fCurrentDetector.Data(),
842                                 status->GetStatusName(),
843                                 status->GetStatusName(newStatus));
844         Log("SHUTTLE", actionStr);
845         SetLastAction(actionStr);
846
847         status->SetStatus(newStatus);
848         if (increaseCount) status->IncreaseCount();
849
850         AliCDBManager::Instance()->GetStorage(fgkLocalCDB)->Put(fStatusEntry);
851
852         SendMLInfo();
853 }
854
855 //______________________________________________________________________________________________
856 void AliShuttle::SendMLInfo()
857 {
858         //
859         // sends ML information about the current status of the current detector being processed
860         //
861         
862         AliShuttleStatus* status = dynamic_cast<AliShuttleStatus*> (fStatusEntry->GetObject());
863         
864         if (!status){
865                 Log("SHUTTLE", "SendMLInfo - UNEXPECTED: status could not be read from current CDB entry");
866                 return;
867         }
868         
869         TMonaLisaText  mlStatus(Form("%s_status", fCurrentDetector.Data()), status->GetStatusName());
870         TMonaLisaValue mlRetryCount(Form("%s_count", fCurrentDetector.Data()), status->GetCount());
871
872         TList mlList;
873         mlList.Add(&mlStatus);
874         mlList.Add(&mlRetryCount);
875
876         fMonaLisa->SendParameters(&mlList);
877 }
878
879 //______________________________________________________________________________________________
880 Bool_t AliShuttle::ContinueProcessing()
881 {
882         // this function reads the AliShuttleStatus information from CDB and
883         // checks if the processing should be continued
884         // if yes it returns kTRUE and updates the AliShuttleStatus with nextStatus
885
886         if (!fConfig->HostProcessDetector(fCurrentDetector)) return kFALSE;
887
888         AliPreprocessor* aPreprocessor =
889                 dynamic_cast<AliPreprocessor*> (fPreprocessorMap.GetValue(fCurrentDetector));
890         if (!aPreprocessor)
891         {
892                 AliInfo(Form("%s: no preprocessor registered", fCurrentDetector.Data()));
893                 return kFALSE;
894         }
895
896         AliShuttleLogbookEntry::Status entryStatus =
897                 fLogbookEntry->GetDetectorStatus(fCurrentDetector);
898
899         if(entryStatus != AliShuttleLogbookEntry::kUnprocessed) {
900                 AliInfo(Form("ContinueProcessing - %s is %s",
901                                 fCurrentDetector.Data(),
902                                 fLogbookEntry->GetDetectorStatusName(entryStatus)));
903                 return kFALSE;
904         }
905
906         // if we get here, according to Shuttle logbook subdetector is in UNPROCESSED state
907
908         // check if current run is first unprocessed run for current detector
909         if (fConfig->StrictRunOrder(fCurrentDetector) &&
910                 !fFirstUnprocessed[GetDetPos(fCurrentDetector)])
911         {
912                 Log("SHUTTLE", Form("ContinueProcessing - %s requires strict run ordering but this is not the first unprocessed run!"));
913                 return kFALSE;
914         }
915
916         AliShuttleStatus* status = ReadShuttleStatus();
917         if (!status) {
918                 // first time
919                 Log("SHUTTLE", Form("ContinueProcessing - %s: Processing first time",
920                                 fCurrentDetector.Data()));
921                 status = new AliShuttleStatus(AliShuttleStatus::kStarted);
922                 return WriteShuttleStatus(status);
923         }
924
925         // The following two cases shouldn't happen if Shuttle Logbook was correctly updated.
926         // If it happens it may mean Logbook updating failed... let's do it now!
927         if (status->GetStatus() == AliShuttleStatus::kDone ||
928             status->GetStatus() == AliShuttleStatus::kFailed){
929                 Log("SHUTTLE", Form("ContinueProcessing - %s is already %s. Updating Shuttle Logbook",
930                                         fCurrentDetector.Data(),
931                                         status->GetStatusName(status->GetStatus())));
932                 UpdateShuttleLogbook(fCurrentDetector.Data(),
933                                         status->GetStatusName(status->GetStatus()));
934                 return kFALSE;
935         }
936
937         if (status->GetStatus() == AliShuttleStatus::kStoreError) {
938                 Log("SHUTTLE",
939                         Form("ContinueProcessing - %s: Grid storage of one or more objects failed. Trying again now",
940                                 fCurrentDetector.Data()));
941                 UpdateShuttleStatus(AliShuttleStatus::kStoreStarted);
942                 if (StoreOCDB()){
943                         Log("SHUTTLE", Form("ContinueProcessing - %s: all objects successfully stored into main storage",
944                                 fCurrentDetector.Data()));
945                         UpdateShuttleStatus(AliShuttleStatus::kDone);
946                         UpdateShuttleLogbook(fCurrentDetector.Data(), "DONE");
947                 } else {
948                         Log("SHUTTLE",
949                                 Form("ContinueProcessing - %s: Grid storage failed again",
950                                         fCurrentDetector.Data()));
951                         UpdateShuttleStatus(AliShuttleStatus::kStoreError);
952                 }
953                 return kFALSE;
954         }
955
956         // if we get here, there is a restart
957         Bool_t cont = kFALSE;
958
959         // abort conditions
960         if (status->GetCount() >= fConfig->GetMaxRetries()) {
961                 Log("SHUTTLE", Form("ContinueProcessing - %s failed %d times in status %s - "
962                                 "Updating Shuttle Logbook", fCurrentDetector.Data(),
963                                 status->GetCount(), status->GetStatusName()));
964                 UpdateShuttleLogbook(fCurrentDetector.Data(), "FAILED");
965                 UpdateShuttleStatus(AliShuttleStatus::kFailed);
966
967                 // there may still be objects in local OCDB and reference storage
968                 // and FXS databases may be not updated: do it now!
969                 
970                 // TODO Currently disabled, we want to keep files in case of failure!
971                 // CleanLocalStorage(fgkLocalCDB);
972                 // CleanLocalStorage(fgkLocalRefStorage);
973                 // UpdateTableFailCase();
974                 
975                 // Send mail to detector expert!
976                 AliInfo(Form("Sending mail to %s expert...", fCurrentDetector.Data()));
977                 if (!SendMail())
978                         Log("SHUTTLE", Form("ContinueProcessing - Could not send mail to %s expert",
979                                         fCurrentDetector.Data()));
980
981         } else {
982                 Log("SHUTTLE", Form("ContinueProcessing - %s: restarting. "
983                                 "Aborted before with %s. Retry number %d.", fCurrentDetector.Data(),
984                                 status->GetStatusName(), status->GetCount()));
985                 Bool_t increaseCount = kTRUE;
986                 if (status->GetStatus() == AliShuttleStatus::kDCSError || status->GetStatus() == AliShuttleStatus::kDCSStarted)
987                         increaseCount = kFALSE;
988                 UpdateShuttleStatus(AliShuttleStatus::kStarted, increaseCount);
989                 cont = kTRUE;
990         }
991
992         return cont;
993 }
994
995 //______________________________________________________________________________________________
996 Bool_t AliShuttle::Process(AliShuttleLogbookEntry* entry)
997 {
998         //
999         // Makes data retrieval for all detectors in the configuration.
1000         // entry: Shuttle logbook entry, contains run paramenters and status of detectors
1001         // (Unprocessed, Inactive, Failed or Done).
1002         // Returns kFALSE in case of error occured and kTRUE otherwise
1003         //
1004
1005         if (!entry) return kFALSE;
1006
1007         fLogbookEntry = entry;
1008
1009         AliInfo(Form("\n\n \t\t\t^*^*^*^*^*^*^*^*^*^*^*^* run %d: START ^*^*^*^*^*^*^*^*^*^*^*^* \n",
1010                                         GetCurrentRun()));
1011
1012         // create ML instance that monitors this run
1013         fMonaLisa = new TMonaLisaWriter(Form("%d", GetCurrentRun()), "SHUTTLE", "aliendb1.cern.ch");
1014         // disable monitoring of other parameters that come e.g. from TFile
1015         gMonitoringWriter = 0;
1016
1017         // Send the information to ML
1018         TMonaLisaText  mlStatus("SHUTTLE_status", "Processing");
1019         TMonaLisaText  mlRunType("SHUTTLE_runtype", Form("%s (%s)", entry->GetRunType(), entry->GetRunParameter("log")));
1020
1021         TList mlList;
1022         mlList.Add(&mlStatus);
1023         mlList.Add(&mlRunType);
1024
1025         fMonaLisa->SendParameters(&mlList);
1026
1027         if (fLogbookEntry->IsDone())
1028         {
1029                 Log("SHUTTLE","Process - Shuttle is already DONE. Updating logbook");
1030                 UpdateShuttleLogbook("shuttle_done");
1031                 fLogbookEntry = 0;
1032                 return kTRUE;
1033         }
1034
1035         // read test mode if flag is set
1036         if (fReadTestMode)
1037         {
1038                 fTestMode = kNone;
1039                 TString logEntry(entry->GetRunParameter("log"));
1040                 //printf("log entry = %s\n", logEntry.Data());
1041                 TString searchStr("Testmode: ");
1042                 Int_t pos = logEntry.Index(searchStr.Data());
1043                 //printf("%d\n", pos);
1044                 if (pos >= 0)
1045                 {
1046                         TSubString subStr = logEntry(pos + searchStr.Length(), logEntry.Length());
1047                         //printf("%s\n", subStr.String().Data());
1048                         TString newStr(subStr.Data());
1049                         TObjArray* token = newStr.Tokenize(' ');
1050                         if (token)
1051                         {
1052                                 //token->Print();
1053                                 TObjString* tmpStr = dynamic_cast<TObjString*> (token->First());
1054                                 if (tmpStr)
1055                                 {
1056                                         Int_t testMode = tmpStr->String().Atoi();
1057                                         if (testMode > 0)
1058                                         {
1059                                                 Log("SHUTTLE", Form("Enabling test mode %d", testMode));
1060                                                 SetTestMode((TestMode) testMode);
1061                                         }
1062                                 }
1063                                 delete token;          
1064                         }
1065                 }
1066         }
1067         
1068         Log("SHUTTLE", Form("The test mode flag is %d", (Int_t) fTestMode));
1069         
1070         fLogbookEntry->Print("all");
1071
1072         // Initialization
1073         Bool_t hasError = kFALSE;
1074
1075         AliCDBStorage *mainCDBSto = AliCDBManager::Instance()->GetStorage(fgkMainCDB);
1076         if(mainCDBSto) mainCDBSto->QueryCDB(GetCurrentRun());
1077         AliCDBStorage *mainRefSto = AliCDBManager::Instance()->GetStorage(fgkMainRefStorage);
1078         if(mainRefSto) mainRefSto->QueryCDB(GetCurrentRun());
1079
1080         // Loop on detectors in the configuration
1081         TIter iter(fConfig->GetDetectors());
1082         TObjString* aDetector = 0;
1083
1084         while ((aDetector = (TObjString*) iter.Next()))
1085         {
1086                 fCurrentDetector = aDetector->String();
1087
1088                 if (ContinueProcessing() == kFALSE) continue;
1089
1090                 AliInfo(Form("\n\n \t\t\t****** run %d - %s: START  ******",
1091                                                 GetCurrentRun(), aDetector->GetName()));
1092
1093                 for(Int_t iSys=0;iSys<3;iSys++) fFXSCalled[iSys]=kFALSE;
1094
1095                 Log(fCurrentDetector.Data(), "Starting processing");
1096
1097                 Int_t pid = fork();
1098
1099                 if (pid < 0)
1100                 {
1101                         Log("SHUTTLE", "ERROR: Forking failed");
1102                 }
1103                 else if (pid > 0)
1104                 {
1105                         // parent
1106                         AliInfo(Form("In parent process of %d - %s: Starting monitoring",
1107                                                         GetCurrentRun(), aDetector->GetName()));
1108
1109                         Long_t begin = time(0);
1110
1111                         int status; // to be used with waitpid, on purpose an int (not Int_t)!
1112                         while (waitpid(pid, &status, WNOHANG) == 0)
1113                         {
1114                                 Long_t expiredTime = time(0) - begin;
1115
1116                                 if (expiredTime > fConfig->GetPPTimeOut())
1117                                 {
1118                                         TString tmp;
1119                                         tmp.Form("Process of %s time out. Run time: %d seconds. Killing...",
1120                                                                 fCurrentDetector.Data(), expiredTime);
1121                                         Log("SHUTTLE", tmp);
1122                                         Log(fCurrentDetector, tmp);
1123
1124                                         kill(pid, 9);
1125
1126                                         UpdateShuttleStatus(AliShuttleStatus::kPPTimeOut);
1127                                         hasError = kTRUE;
1128
1129                                         gSystem->Sleep(1000);
1130                                 }
1131                                 else
1132                                 {
1133                                         gSystem->Sleep(1000);
1134                                         
1135                                         TString checkStr;
1136                                         checkStr.Form("ps -o vsize --pid %d | tail -n 1", pid);
1137                                         FILE* pipe = gSystem->OpenPipe(checkStr, "r");
1138                                         if (!pipe)
1139                                         {
1140                                                 Log("SHUTTLE", Form("Error: Could not open pipe to %s", checkStr.Data()));
1141                                                 continue;
1142                                         }
1143                                                 
1144                                         char buffer[100];
1145                                         if (!fgets(buffer, 100, pipe))
1146                                         {
1147                                                 Log("SHUTTLE", "Error: ps did not return anything");
1148                                                 gSystem->ClosePipe(pipe);
1149                                                 continue;
1150                                         }
1151                                         gSystem->ClosePipe(pipe);
1152                                         
1153                                         //Log("SHUTTLE", Form("ps returned %s", buffer));
1154                                         
1155                                         Int_t mem = 0;
1156                                         if ((sscanf(buffer, "%d\n", &mem) != 1) || !mem)
1157                                         {
1158                                                 Log("SHUTTLE", "Error: Could not parse output of ps");
1159                                                 continue;
1160                                         }
1161                                         
1162                                         if (expiredTime % 60 == 0)
1163                                                 Log("SHUTTLE", Form("%s: Checking process. Run time: %d seconds - Memory consumption: %d KB",
1164                                                                 fCurrentDetector.Data(), expiredTime, mem));
1165                                         
1166                                         if (mem > fConfig->GetPPMaxMem())
1167                                         {
1168                                                 TString tmp;
1169                                                 tmp.Form("Process exceeds maximum allowed memory (%d KB > %d KB). Killing...",
1170                                                         mem, fConfig->GetPPMaxMem());
1171                                                 Log("SHUTTLE", tmp);
1172                                                 Log(fCurrentDetector, tmp);
1173         
1174                                                 kill(pid, 9);
1175         
1176                                                 UpdateShuttleStatus(AliShuttleStatus::kPPOutOfMemory);
1177                                                 hasError = kTRUE;
1178         
1179                                                 gSystem->Sleep(1000);
1180                                         }
1181                                 }
1182                         }
1183
1184                         AliInfo(Form("In parent process of %d - %s: Client has terminated.",
1185                                                                 GetCurrentRun(), aDetector->GetName()));
1186
1187                         if (WIFEXITED(status))
1188                         {
1189                                 Int_t returnCode = WEXITSTATUS(status);
1190
1191                                 Log("SHUTTLE", Form("%s: the return code is %d", fCurrentDetector.Data(),
1192                                                                                 returnCode));
1193
1194                                 if (returnCode == 0) hasError = kTRUE;
1195                         }
1196                 }
1197                 else if (pid == 0)
1198                 {
1199                         // client
1200                         AliInfo(Form("In client process of %d - %s", GetCurrentRun(), aDetector->GetName()));
1201
1202                         AliInfo("Redirecting output...");
1203
1204                         if ((freopen(GetLogFileName(fCurrentDetector), "w", stdout)) == 0)
1205                         {
1206                                 Log("SHUTTLE", "Could not freopen stdout");
1207                         }
1208                         else
1209                         {
1210                                 fOutputRedirected = kTRUE;
1211                                 if ((dup2(fileno(stdout), fileno(stderr))) < 0)
1212                                         Log("SHUTTLE", "Could not redirect stderr");
1213                                 
1214                         }
1215                         
1216                         Bool_t success = ProcessCurrentDetector();
1217                         if (success) // Preprocessor finished successfully!
1218                         { 
1219                                 // Update time_processed field in FXS DB
1220                                 if (UpdateTable() == kFALSE)
1221                                         Log("SHUTTLE", Form("Process - %s: Could not update FXS databases!"));
1222
1223                                 // Transfer the data from local storage to main storage (Grid)
1224                                 UpdateShuttleStatus(AliShuttleStatus::kStoreStarted);
1225                                 if (StoreOCDB() == kFALSE)
1226                                 {
1227                                         AliInfo(Form("\n \t\t\t****** run %d - %s: STORAGE ERROR ****** \n\n",
1228                                                         GetCurrentRun(), aDetector->GetName()));
1229                                         UpdateShuttleStatus(AliShuttleStatus::kStoreError);
1230                                         success = kFALSE;
1231                                 } else {
1232                                         AliInfo(Form("\n \t\t\t****** run %d - %s: DONE ****** \n\n",
1233                                                         GetCurrentRun(), aDetector->GetName()));
1234                                         UpdateShuttleStatus(AliShuttleStatus::kDone);
1235                                         UpdateShuttleLogbook(fCurrentDetector, "DONE");
1236                                 }
1237                         }
1238
1239                         for (UInt_t iSys=0; iSys<3; iSys++)
1240                         {
1241                                 if (fFXSCalled[iSys]) fFXSlist[iSys].Clear();
1242                         }
1243
1244                         AliInfo(Form("Client process of %d - %s is exiting now with %d.",
1245                                                         GetCurrentRun(), aDetector->GetName(), success));
1246
1247                         // the client exits here
1248                         gSystem->Exit(success);
1249
1250                         AliError("We should never get here!!!");
1251                 }
1252         }
1253
1254         AliInfo(Form("\n\n \t\t\t^*^*^*^*^*^*^*^*^*^*^*^* run %d: FINISH ^*^*^*^*^*^*^*^*^*^*^*^* \n",
1255                                                         GetCurrentRun()));
1256
1257         //check if shuttle is done for this run, if so update logbook
1258         TObjArray checkEntryArray;
1259         checkEntryArray.SetOwner(1);
1260         TString whereClause = Form("where run=%d", GetCurrentRun());
1261         if (!QueryShuttleLogbook(whereClause.Data(), checkEntryArray) || checkEntryArray.GetEntries() == 0) {
1262                 Log("SHUTTLE", Form("Process - Warning: Cannot check status of run %d on Shuttle logbook!",
1263                                                 GetCurrentRun()));
1264                 return hasError == kFALSE;
1265         }
1266
1267         AliShuttleLogbookEntry* checkEntry = dynamic_cast<AliShuttleLogbookEntry*>
1268                                                 (checkEntryArray.At(0));
1269
1270         if (checkEntry)
1271         {
1272                 if (checkEntry->IsDone())
1273                 {
1274                         Log("SHUTTLE","Process - Shuttle is DONE. Updating logbook");
1275                         UpdateShuttleLogbook("shuttle_done");
1276                 }
1277                 else
1278                 {
1279                         for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
1280                         {
1281                                 if (checkEntry->GetDetectorStatus(iDet) == AliShuttleLogbookEntry::kUnprocessed)
1282                                 {
1283                                         AliDebug(2, Form("Run %d: setting %s as \"not first time unprocessed\"",
1284                                                         checkEntry->GetRun(), GetDetName(iDet)));
1285                                         fFirstUnprocessed[iDet] = kFALSE;
1286                                 }
1287                         }
1288                 }
1289         }
1290
1291         // remove ML instance
1292         delete fMonaLisa;
1293         fMonaLisa = 0;
1294
1295         fLogbookEntry = 0;
1296
1297         return hasError == kFALSE;
1298 }
1299
1300 //______________________________________________________________________________________________
1301 Bool_t AliShuttle::ProcessCurrentDetector()
1302 {
1303         //
1304         // Makes data retrieval just for a specific detector (fCurrentDetector).
1305         // Threre should be a configuration for this detector.
1306
1307         AliInfo(Form("Retrieving values for %s, run %d", fCurrentDetector.Data(), GetCurrentRun()));
1308
1309         TMap dcsMap;
1310         dcsMap.SetOwner(1);
1311
1312         Bool_t aDCSError = kFALSE;
1313
1314         // call preprocessor
1315         AliPreprocessor* aPreprocessor =
1316                 dynamic_cast<AliPreprocessor*> (fPreprocessorMap.GetValue(fCurrentDetector));
1317
1318         aPreprocessor->Initialize(GetCurrentRun(), GetCurrentStartTime(), GetCurrentEndTime());
1319
1320         Bool_t processDCS = aPreprocessor->ProcessDCS();
1321
1322         if (!processDCS || (fTestMode & kSkipDCS))
1323         {
1324                 Log(fCurrentDetector, "In TESTMODE - Skipping DCS processing!");
1325         } 
1326         else if (fTestMode & kErrorDCS)
1327         {
1328                 Log(fCurrentDetector, "In TESTMODE - Simulating DCS error");
1329                 UpdateShuttleStatus(AliShuttleStatus::kDCSStarted);
1330                 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1331                 return kFALSE;
1332         } else {
1333
1334                 UpdateShuttleStatus(AliShuttleStatus::kDCSStarted);
1335
1336                 TString host(fConfig->GetDCSHost(fCurrentDetector));
1337                 Int_t port = fConfig->GetDCSPort(fCurrentDetector);
1338
1339                 // Retrieval of Aliases
1340                 TObjString* anAlias = 0;
1341                 Int_t iAlias = 1;
1342                 Int_t nTotAliases= ((TMap*)fConfig->GetDCSAliases(fCurrentDetector))->GetEntries();
1343                 TIter iterAliases(fConfig->GetDCSAliases(fCurrentDetector));
1344                 while ((anAlias = (TObjString*) iterAliases.Next()))
1345                 {
1346                         TObjArray *valueSet = new TObjArray();
1347                         valueSet->SetOwner(1);
1348
1349                         if (((iAlias-1) % 500) == 0 || iAlias == nTotAliases)
1350                                 AliInfo(Form("Querying DCS archive: alias %s (%d of %d)",
1351                                                 anAlias->GetName(), iAlias++, nTotAliases));
1352                         aDCSError = (GetValueSet(host, port, anAlias->String(), valueSet, kAlias) == 0);
1353
1354                         if(!aDCSError)
1355                         {
1356                                 dcsMap.Add(anAlias->Clone(), valueSet);
1357                         } else {
1358                                 Log(fCurrentDetector,
1359                                         Form("ProcessCurrentDetector - Error while retrieving alias %s",
1360                                                 anAlias->GetName()));
1361                                 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1362                                 dcsMap.DeleteAll();
1363                                 return kFALSE;
1364                         }
1365                 }
1366
1367                 // Retrieval of Data Points
1368                 TObjString* aDP = 0;
1369                 Int_t iDP = 0;
1370                 Int_t nTotDPs= ((TMap*)fConfig->GetDCSDataPoints(fCurrentDetector))->GetEntries();
1371                 TIter iterDP(fConfig->GetDCSDataPoints(fCurrentDetector));
1372                 while ((aDP = (TObjString*) iterDP.Next()))
1373                 {
1374                         TObjArray *valueSet = new TObjArray();
1375                         valueSet->SetOwner(1);
1376                         if (((iDP-1) % 500) == 0 || iDP == nTotDPs)
1377                                 AliInfo(Form("Querying DCS archive: DP %s (%d of %d)",
1378                                                 aDP->GetName(), iDP++, nTotDPs));
1379                         aDCSError = (GetValueSet(host, port, aDP->String(), valueSet, kDP) == 0);
1380
1381                         if(!aDCSError)
1382                         {
1383                                 dcsMap.Add(aDP->Clone(), valueSet);
1384                         } else {
1385                                 Log(fCurrentDetector,
1386                                         Form("ProcessCurrentDetector - Error while retrieving data point %s",
1387                                                 aDP->GetName()));
1388                                 UpdateShuttleStatus(AliShuttleStatus::kDCSError);
1389                                 dcsMap.DeleteAll();
1390                                 return kFALSE;
1391                         }
1392                 }
1393         }
1394
1395         // DCS Archive DB processing successful. Call Preprocessor!
1396         UpdateShuttleStatus(AliShuttleStatus::kPPStarted);
1397
1398         UInt_t returnValue = aPreprocessor->Process(&dcsMap);
1399
1400         if (returnValue > 0) // Preprocessor error!
1401         {
1402                 Log(fCurrentDetector, Form("Preprocessor failed. Process returned %d.", returnValue));
1403                 UpdateShuttleStatus(AliShuttleStatus::kPPError);
1404                 dcsMap.DeleteAll();
1405                 return kFALSE;
1406         }
1407         
1408         // preprocessor ok!
1409         UpdateShuttleStatus(AliShuttleStatus::kPPDone);
1410         Log(fCurrentDetector, Form("ProcessCurrentDetector - %s preprocessor returned success",
1411                                 fCurrentDetector.Data()));
1412
1413         dcsMap.DeleteAll();
1414
1415         return kTRUE;
1416 }
1417
1418 //______________________________________________________________________________________________
1419 Bool_t AliShuttle::QueryShuttleLogbook(const char* whereClause,
1420                 TObjArray& entries)
1421 {
1422         // Query DAQ's Shuttle logbook and fills detector status object.
1423         // Call QueryRunParameters to query DAQ logbook for run parameters.
1424         //
1425
1426         entries.SetOwner(1);
1427
1428         // check connection, in case connect
1429         if(!Connect(3)) return kFALSE;
1430
1431         TString sqlQuery;
1432         sqlQuery = Form("select * from %s %s order by run", fConfig->GetShuttlelbTable(), whereClause);
1433
1434         TSQLResult* aResult = fServer[3]->Query(sqlQuery);
1435         if (!aResult) {
1436                 AliError(Form("Can't execute query <%s>!", sqlQuery.Data()));
1437                 return kFALSE;
1438         }
1439
1440         AliDebug(2,Form("Query = %s", sqlQuery.Data()));
1441
1442         if(aResult->GetRowCount() == 0) {
1443                 AliInfo("No entries in Shuttle Logbook match request");
1444                 delete aResult;
1445                 return kTRUE;
1446         }
1447
1448         // TODO Check field count!
1449         const UInt_t nCols = 22;
1450         if (aResult->GetFieldCount() != (Int_t) nCols) {
1451                 AliError("Invalid SQL result field number!");
1452                 delete aResult;
1453                 return kFALSE;
1454         }
1455
1456         TSQLRow* aRow;
1457         while ((aRow = aResult->Next())) {
1458                 TString runString(aRow->GetField(0), aRow->GetFieldLength(0));
1459                 Int_t run = runString.Atoi();
1460
1461                 AliShuttleLogbookEntry *entry = QueryRunParameters(run);
1462                 if (!entry)
1463                         continue;
1464
1465                 // loop on detectors
1466                 for(UInt_t ii = 0; ii < nCols; ii++)
1467                         entry->SetDetectorStatus(aResult->GetFieldName(ii), aRow->GetField(ii));
1468
1469                 entries.AddLast(entry);
1470                 delete aRow;
1471         }
1472
1473         delete aResult;
1474         return kTRUE;
1475 }
1476
1477 //______________________________________________________________________________________________
1478 AliShuttleLogbookEntry* AliShuttle::QueryRunParameters(Int_t run)
1479 {
1480         //
1481         // Retrieve run parameters written in the DAQ logbook and sets them into AliShuttleLogbookEntry object
1482         //
1483
1484         // check connection, in case connect
1485         if (!Connect(3))
1486                 return 0;
1487
1488         TString sqlQuery;
1489         sqlQuery.Form("select * from %s where run=%d", fConfig->GetDAQlbTable(), run);
1490
1491         TSQLResult* aResult = fServer[3]->Query(sqlQuery);
1492         if (!aResult) {
1493                 AliError(Form("Can't execute query <%s>!", sqlQuery.Data()));
1494                 return 0;
1495         }
1496
1497         if (aResult->GetRowCount() == 0) {
1498                 Log("SHUTTLE", Form("QueryRunParameters - No entry in DAQ Logbook for run %d. Skipping", run));
1499                 delete aResult;
1500                 return 0;
1501         }
1502
1503         if (aResult->GetRowCount() > 1) {
1504                 AliError(Form("More than one entry in DAQ Logbook for run %d. Skipping", run));
1505                 delete aResult;
1506                 return 0;
1507         }
1508
1509         TSQLRow* aRow = aResult->Next();
1510         if (!aRow)
1511         {
1512                 AliError(Form("Could not retrieve row for run %d. Skipping", run));
1513                 delete aResult;
1514                 return 0;
1515         }
1516
1517         AliShuttleLogbookEntry* entry = new AliShuttleLogbookEntry(run);
1518
1519         for (Int_t ii = 0; ii < aResult->GetFieldCount(); ii++)
1520                 entry->SetRunParameter(aResult->GetFieldName(ii), aRow->GetField(ii));
1521
1522         UInt_t startTime = entry->GetStartTime();
1523         UInt_t endTime = entry->GetEndTime();
1524
1525         if (!startTime || !endTime || startTime > endTime) {
1526                 Log("SHUTTLE",
1527                         Form("QueryRunParameters - Invalid parameters for Run %d: startTime = %d, endTime = %d",
1528                                 run, startTime, endTime));
1529                 delete entry;
1530                 delete aRow;
1531                 delete aResult;
1532                 return 0;
1533         }
1534
1535         delete aRow;
1536         delete aResult;
1537
1538         return entry;
1539 }
1540
1541 //______________________________________________________________________________________________
1542 Bool_t AliShuttle::GetValueSet(const char* host, Int_t port, const char* entry,
1543                                 TObjArray* valueSet, DCSType type)
1544 {
1545         // Retrieve all "entry" data points from the DCS server
1546         // host, port: TSocket connection parameters
1547         // entry: name of the alias or data point
1548         // valueSet: array of retrieved AliDCSValue's
1549         // type: kAlias or kDP
1550
1551         AliDCSClient client(host, port, fTimeout, fRetries);
1552         if (!client.IsConnected())
1553         {
1554                 return kFALSE;
1555         }
1556
1557         Int_t result=0;
1558
1559         if (type == kAlias)
1560         {
1561                 result = client.GetAliasValues(entry,
1562                         GetCurrentStartTime(), GetCurrentEndTime(), valueSet);
1563         } else
1564         if (type == kDP)
1565         {
1566                 result = client.GetDPValues(entry,
1567                         GetCurrentStartTime(), GetCurrentEndTime(), valueSet);
1568         }
1569
1570         if (result < 0)
1571         {
1572                 Log(fCurrentDetector.Data(), Form("GetValueSet - Can't get '%s'! Reason: %s",
1573                         entry, AliDCSClient::GetErrorString(result)));
1574
1575                 if (result == AliDCSClient::fgkServerError)
1576                 {
1577                         Log(fCurrentDetector.Data(), Form("GetValueSet - Server error: %s",
1578                                 client.GetServerError().Data()));
1579                 }
1580
1581                 return kFALSE;
1582         }
1583
1584         return kTRUE;
1585 }
1586
1587 //______________________________________________________________________________________________
1588 const char* AliShuttle::GetFile(Int_t system, const char* detector,
1589                 const char* id, const char* source)
1590 {
1591         // Get calibration file from file exchange servers
1592         // First queris the FXS database for the file name, using the run, detector, id and source info
1593         // then calls RetrieveFile(filename) for actual copy to local disk
1594         // run: current run being processed (given by Logbook entry fLogbookEntry)
1595         // detector: the Preprocessor name
1596         // id: provided as a parameter by the Preprocessor
1597         // source: provided by the Preprocessor through GetFileSources function
1598
1599         // check if test mode should simulate a FXS error
1600         if (fTestMode & kErrorFXSFiles)
1601         {
1602                 Log(detector, Form("GetFile - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
1603                 return 0;
1604         }
1605         
1606         // check connection, in case connect
1607         if (!Connect(system))
1608         {
1609                 Log(detector, Form("GetFile - Couldn't connect to %s FXS database", GetSystemName(system)));
1610                 return 0;
1611         }
1612
1613         // Query preparation
1614         TString sourceName(source);
1615         Int_t nFields = 3;
1616         TString sqlQueryStart = Form("select filePath,size,fileChecksum from %s where",
1617                                                                 fConfig->GetFXSdbTable(system));
1618         TString whereClause = Form("run=%d and detector=\"%s\" and fileId=\"%s\"",
1619                                                                 GetCurrentRun(), detector, id);
1620
1621         if (system == kDAQ)
1622         {
1623                 whereClause += Form(" and DAQsource=\"%s\"", source);
1624         }
1625         else if (system == kDCS)
1626         {
1627                 sourceName="none";
1628         }
1629         else if (system == kHLT)
1630         {
1631                 whereClause += Form(" and DDLnumbers=\"%s\"", source);
1632                 nFields = 3;
1633         }
1634
1635         TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
1636
1637         AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
1638
1639         // Query execution
1640         TSQLResult* aResult = 0;
1641         aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
1642         if (!aResult) {
1643                 Log(detector, Form("GetFileName - Can't execute SQL query to %s database for: id = %s, source = %s",
1644                                 GetSystemName(system), id, sourceName.Data()));
1645                 return 0;
1646         }
1647
1648         if(aResult->GetRowCount() == 0)
1649         {
1650                 Log(detector,
1651                         Form("GetFileName - No entry in %s FXS db for: id = %s, source = %s",
1652                                 GetSystemName(system), id, sourceName.Data()));
1653                 delete aResult;
1654                 return 0;
1655         }
1656
1657         if (aResult->GetRowCount() > 1) {
1658                 Log(detector,
1659                         Form("GetFileName - More than one entry in %s FXS db for: id = %s, source = %s",
1660                                 GetSystemName(system), id, sourceName.Data()));
1661                 delete aResult;
1662                 return 0;
1663         }
1664
1665         if (aResult->GetFieldCount() != nFields) {
1666                 Log(detector,
1667                         Form("GetFileName - Wrong field count in %s FXS db for: id = %s, source = %s",
1668                                 GetSystemName(system), id, sourceName.Data()));
1669                 delete aResult;
1670                 return 0;
1671         }
1672
1673         TSQLRow* aRow = dynamic_cast<TSQLRow*> (aResult->Next());
1674
1675         if (!aRow){
1676                 Log(detector, Form("GetFileName - Empty set result in %s FXS db from query: id = %s, source = %s",
1677                                 GetSystemName(system), id, sourceName.Data()));
1678                 delete aResult;
1679                 return 0;
1680         }
1681
1682         TString filePath(aRow->GetField(0), aRow->GetFieldLength(0));
1683         TString fileSize(aRow->GetField(1), aRow->GetFieldLength(1));
1684         TString fileChecksum(aRow->GetField(2), aRow->GetFieldLength(2));
1685
1686         delete aResult;
1687         delete aRow;
1688
1689         AliDebug(2, Form("filePath = %s; size = %s, fileChecksum = %s",
1690                                 filePath.Data(), fileSize.Data(), fileChecksum.Data()));
1691
1692         // retrieved file is renamed to make it unique
1693         TString localFileName = Form("%s_%s_%d_%s_%s.shuttle",
1694                                         GetSystemName(system), detector, GetCurrentRun(), id, sourceName.Data());
1695
1696
1697         // file retrieval from FXS
1698         UInt_t nRetries = 0;
1699         UInt_t maxRetries = 3;
1700         Bool_t result = kFALSE;
1701
1702         // copy!! if successful TSystem::Exec returns 0
1703         while(nRetries++ < maxRetries) {
1704                 AliDebug(2, Form("Trying to copy file. Retry # %d", nRetries));
1705                 result = RetrieveFile(system, filePath.Data(), localFileName.Data());
1706                 if(!result)
1707                 {
1708                         Log(detector, Form("GetFileName - Copy of file %s from %s FXS failed",
1709                                         filePath.Data(), GetSystemName(system)));
1710                         continue;
1711                 } else {
1712                         AliInfo(Form("File %s copied from %s FXS into %s/%s",
1713                                                 filePath.Data(), GetSystemName(system),
1714                                                 GetShuttleTempDir(), localFileName.Data()));
1715                 }
1716
1717                 if (fileChecksum.Length()>0)
1718                 {
1719                         // compare md5sum of local file with the one stored in the FXS DB
1720                         Int_t md5Comp = gSystem->Exec(Form("md5sum %s/%s |grep %s 2>&1 > /dev/null",
1721                                                 GetShuttleTempDir(), localFileName.Data(), fileChecksum.Data()));
1722
1723                         if (md5Comp != 0)
1724                         {
1725                                 Log(detector, Form("GetFileName - md5sum of file %s does not match with local copy!",
1726                                                         filePath.Data()));
1727                                 result = kFALSE;
1728                                 continue;
1729                         }
1730                 } else {
1731                         Log(fCurrentDetector, Form("GetFile - md5sum of file %s not set in %s database, skipping comparison",
1732                                                         filePath.Data(), GetSystemName(system)));
1733                 }
1734                 if (result) break;
1735         }
1736
1737         if(!result) return 0;
1738
1739         fFXSCalled[system]=kTRUE;
1740         TObjString *fileParams = new TObjString(Form("%s#!?!#%s", id, sourceName.Data()));
1741         fFXSlist[system].Add(fileParams);
1742
1743         static TString fullLocalFileName;
1744         fullLocalFileName = TString::Format("%s/%s", GetShuttleTempDir(), localFileName.Data());
1745
1746         AliInfo(Form("fullLocalFileName = %s", fullLocalFileName.Data()));
1747
1748         return fullLocalFileName.Data();
1749
1750 }
1751
1752 //______________________________________________________________________________________________
1753 Bool_t AliShuttle::RetrieveFile(UInt_t system, const char* fxsFileName, const char* localFileName)
1754 {
1755         //
1756         // Copies file from FXS to local Shuttle machine
1757         //
1758
1759         // check temp directory: trying to cd to temp; if it does not exist, create it
1760         AliDebug(2, Form("Copy file %s from %s FXS into %s/%s",
1761                         GetSystemName(system), fxsFileName, GetShuttleTempDir(), localFileName));
1762
1763         void* dir = gSystem->OpenDirectory(GetShuttleTempDir());
1764         if (dir == NULL) {
1765                 if (gSystem->mkdir(GetShuttleTempDir(), kTRUE)) {
1766                         AliError(Form("Can't open directory <%s>", GetShuttleTempDir()));
1767                         return kFALSE;
1768                 }
1769
1770         } else {
1771                 gSystem->FreeDirectory(dir);
1772         }
1773
1774         TString baseFXSFolder;
1775         if (system == kDAQ)
1776         {
1777                 baseFXSFolder = "FES/";
1778         }
1779         else if (system == kDCS)
1780         {
1781                 baseFXSFolder = "";
1782         }
1783         else if (system == kHLT)
1784         {
1785                 baseFXSFolder = "~/";
1786         }
1787
1788
1789         TString command = Form("scp -oPort=%d -2 %s@%s:%s%s %s/%s",
1790                 fConfig->GetFXSPort(system),
1791                 fConfig->GetFXSUser(system),
1792                 fConfig->GetFXSHost(system),
1793                 baseFXSFolder.Data(),
1794                 fxsFileName,
1795                 GetShuttleTempDir(),
1796                 localFileName);
1797
1798         AliDebug(2, Form("%s",command.Data()));
1799
1800         Bool_t result = (gSystem->Exec(command.Data()) == 0);
1801
1802         return result;
1803 }
1804
1805 //______________________________________________________________________________________________
1806 TList* AliShuttle::GetFileSources(Int_t system, const char* detector, const char* id)
1807 {
1808         //
1809         // Get sources producing the condition file Id from file exchange servers
1810         //
1811         
1812         // check if test mode should simulate a FXS error
1813         if (fTestMode & kErrorFXSSources)
1814         {
1815                 Log(detector, Form("GetFileSources - In TESTMODE - Simulating error while connecting to %s FXS", GetSystemName(system)));
1816                 return 0;
1817         }
1818
1819
1820         if (system == kDCS)
1821         {
1822                 AliError("DCS system has only one source of data!");
1823                 return NULL;
1824         }
1825
1826         // check connection, in case connect
1827         if (!Connect(system))
1828         {
1829                 Log(detector, Form("GetFile - Couldn't connect to %s FXS database", GetSystemName(system)));
1830                 return NULL;
1831         }
1832
1833         TString sourceName = 0;
1834         if (system == kDAQ)
1835         {
1836                 sourceName = "DAQsource";
1837         } else if (system == kHLT)
1838         {
1839                 sourceName = "DDLnumbers";
1840         }
1841
1842         TString sqlQueryStart = Form("select %s from %s where", sourceName.Data(), fConfig->GetFXSdbTable(system));
1843         TString whereClause = Form("run=%d and detector=\"%s\" and fileId=\"%s\"",
1844                                 GetCurrentRun(), detector, id);
1845         TString sqlQuery = Form("%s %s", sqlQueryStart.Data(), whereClause.Data());
1846
1847         AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
1848
1849         // Query execution
1850         TSQLResult* aResult;
1851         aResult = fServer[system]->Query(sqlQuery);
1852         if (!aResult) {
1853                 Log(detector, Form("GetFileSources - Can't execute SQL query to %s database for id: %s",
1854                                 GetSystemName(system), id));
1855                 return 0;
1856         }
1857
1858         if (aResult->GetRowCount() == 0)
1859         {
1860                 Log(detector,
1861                         Form("GetFileSources - No entry in %s FXS table for id: %s", GetSystemName(system), id));
1862                 delete aResult;
1863                 return 0;
1864         }
1865
1866         TSQLRow* aRow;
1867         TList *list = new TList();
1868         list->SetOwner(1);
1869
1870         while ((aRow = aResult->Next()))
1871         {
1872
1873                 TString source(aRow->GetField(0), aRow->GetFieldLength(0));
1874                 AliDebug(2, Form("%s = %s", sourceName.Data(), source.Data()));
1875                 list->Add(new TObjString(source));
1876                 delete aRow;
1877         }
1878
1879         delete aResult;
1880
1881         return list;
1882 }
1883
1884 //______________________________________________________________________________________________
1885 Bool_t AliShuttle::Connect(Int_t system)
1886 {
1887         // Connect to MySQL Server of the system's FXS MySQL databases
1888         // DAQ Logbook, Shuttle Logbook and DAQ FXS db are on the same host
1889         //
1890
1891         // check connection: if already connected return
1892         if(fServer[system] && fServer[system]->IsConnected()) return kTRUE;
1893
1894         TString dbHost, dbUser, dbPass, dbName;
1895
1896         if (system < 3) // FXS db servers
1897         {
1898                 dbHost = Form("mysql://%s:%d", fConfig->GetFXSdbHost(system), fConfig->GetFXSdbPort(system));
1899                 dbUser = fConfig->GetFXSdbUser(system);
1900                 dbPass = fConfig->GetFXSdbPass(system);
1901                 dbName =   fConfig->GetFXSdbName(system);
1902         } else { // Run & Shuttle logbook servers
1903         // TODO Will the Shuttle logbook server be the same as the Run logbook server ???
1904                 dbHost = Form("mysql://%s:%d", fConfig->GetDAQlbHost(), fConfig->GetDAQlbPort());
1905                 dbUser = fConfig->GetDAQlbUser();
1906                 dbPass = fConfig->GetDAQlbPass();
1907                 dbName =   fConfig->GetDAQlbDB();
1908         }
1909
1910         fServer[system] = TSQLServer::Connect(dbHost.Data(), dbUser.Data(), dbPass.Data());
1911         if (!fServer[system] || !fServer[system]->IsConnected()) {
1912                 if(system < 3)
1913                 {
1914                 AliError(Form("Can't establish connection to FXS database for %s",
1915                                         AliShuttleInterface::GetSystemName(system)));
1916                 } else {
1917                 AliError("Can't establish connection to Run logbook.");
1918                 }
1919                 if(fServer[system]) delete fServer[system];
1920                 return kFALSE;
1921         }
1922
1923         // Get tables
1924         TSQLResult* aResult=0;
1925         switch(system){
1926                 case kDAQ:
1927                         aResult = fServer[kDAQ]->GetTables(dbName.Data());
1928                         break;
1929                 case kDCS:
1930                         aResult = fServer[kDCS]->GetTables(dbName.Data());
1931                         break;
1932                 case kHLT:
1933                         aResult = fServer[kHLT]->GetTables(dbName.Data());
1934                         break;
1935                 default:
1936                         aResult = fServer[3]->GetTables(dbName.Data());
1937                         break;
1938         }
1939
1940         delete aResult;
1941         return kTRUE;
1942 }
1943
1944 //______________________________________________________________________________________________
1945 Bool_t AliShuttle::UpdateTable()
1946 {
1947         //
1948         // Update FXS table filling time_processed field in all rows corresponding to current run and detector
1949         //
1950
1951         Bool_t result = kTRUE;
1952
1953         for (UInt_t system=0; system<3; system++)
1954         {
1955                 if(!fFXSCalled[system]) continue;
1956
1957                 // check connection, in case connect
1958                 if (!Connect(system))
1959                 {
1960                         Log(fCurrentDetector, Form("UpdateTable - Couldn't connect to %s FXS database", GetSystemName(system)));
1961                         result = kFALSE;
1962                         continue;
1963                 }
1964
1965                 TTimeStamp now; // now
1966
1967                 // Loop on FXS list entries
1968                 TIter iter(&fFXSlist[system]);
1969                 TObjString *aFXSentry=0;
1970                 while ((aFXSentry = dynamic_cast<TObjString*> (iter.Next())))
1971                 {
1972                         TString aFXSentrystr = aFXSentry->String();
1973                         TObjArray *aFXSarray = aFXSentrystr.Tokenize("#!?!#");
1974                         if (!aFXSarray || aFXSarray->GetEntries() != 2 )
1975                         {
1976                                 Log(fCurrentDetector, Form("UpdateTable - error updating %s FXS entry. Check string: <%s>",
1977                                         GetSystemName(system), aFXSentrystr.Data()));
1978                                 if(aFXSarray) delete aFXSarray;
1979                                 result = kFALSE;
1980                                 continue;
1981                         }
1982                         const char* fileId = ((TObjString*) aFXSarray->At(0))->GetName();
1983                         const char* source = ((TObjString*) aFXSarray->At(1))->GetName();
1984
1985                         TString whereClause;
1986                         if (system == kDAQ)
1987                         {
1988                                 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\" and DAQsource=\"%s\";",
1989                                                         GetCurrentRun(), fCurrentDetector.Data(), fileId, source);
1990                         }
1991                         else if (system == kDCS)
1992                         {
1993                                 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\";",
1994                                                         GetCurrentRun(), fCurrentDetector.Data(), fileId);
1995                         }
1996                         else if (system == kHLT)
1997                         {
1998                                 whereClause = Form("where run=%d and detector=\"%s\" and fileId=\"%s\" and DDLnumbers=\"%s\";",
1999                                                         GetCurrentRun(), fCurrentDetector.Data(), fileId, source);
2000                         }
2001
2002                         delete aFXSarray;
2003
2004                         TString sqlQuery = Form("update %s set time_processed=%d %s", fConfig->GetFXSdbTable(system),
2005                                                                 now.GetSec(), whereClause.Data());
2006
2007                         AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2008
2009                         // Query execution
2010                         TSQLResult* aResult;
2011                         aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2012                         if (!aResult)
2013                         {
2014                                 Log(fCurrentDetector, Form("UpdateTable - %s db: can't execute SQL query <%s>",
2015                                                                 GetSystemName(system), sqlQuery.Data()));
2016                                 result = kFALSE;
2017                                 continue;
2018                         }
2019                         delete aResult;
2020                 }
2021         }
2022
2023         return result;
2024 }
2025
2026 //______________________________________________________________________________________________
2027 Bool_t AliShuttle::UpdateTableFailCase()
2028 {
2029         // Update FXS table filling time_processed field in all rows corresponding to current run and detector
2030         // this is called in case the preprocessor is declared failed for the current run, because
2031         // the fields are updated only in case of success
2032
2033         Bool_t result = kTRUE;
2034
2035         for (UInt_t system=0; system<3; system++)
2036         {
2037                 // check connection, in case connect
2038                 if (!Connect(system))
2039                 {
2040                         Log(fCurrentDetector, Form("UpdateTableFailCase - Couldn't connect to %s FXS database",
2041                                                         GetSystemName(system)));
2042                         result = kFALSE;
2043                         continue;
2044                 }
2045
2046                 TTimeStamp now; // now
2047
2048                 // Loop on FXS list entries
2049
2050                 TString whereClause = Form("where run=%d and detector=\"%s\";",
2051                                                 GetCurrentRun(), fCurrentDetector.Data());
2052
2053
2054                 TString sqlQuery = Form("update %s set time_processed=%d %s", fConfig->GetFXSdbTable(system),
2055                                                         now.GetSec(), whereClause.Data());
2056
2057                 AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2058
2059                 // Query execution
2060                 TSQLResult* aResult;
2061                 aResult = dynamic_cast<TSQLResult*> (fServer[system]->Query(sqlQuery));
2062                 if (!aResult)
2063                 {
2064                         Log(fCurrentDetector, Form("UpdateTableFailCase - %s db: can't execute SQL query <%s>",
2065                                                         GetSystemName(system), sqlQuery.Data()));
2066                         result = kFALSE;
2067                         continue;
2068                 }
2069                 delete aResult;
2070         }
2071
2072         return result;
2073 }
2074
2075 //______________________________________________________________________________________________
2076 Bool_t AliShuttle::UpdateShuttleLogbook(const char* detector, const char* status)
2077 {
2078         //
2079         // Update Shuttle logbook filling detector or shuttle_done column
2080         // ex. of usage: UpdateShuttleLogbook("PHOS", "DONE") or UpdateShuttleLogbook("shuttle_done")
2081         //
2082
2083         // check connection, in case connect
2084         if(!Connect(3)){
2085                 Log("SHUTTLE", "UpdateShuttleLogbook - Couldn't connect to DAQ Logbook.");
2086                 return kFALSE;
2087         }
2088
2089         TString detName(detector);
2090         TString setClause;
2091         if(detName == "shuttle_done")
2092         {
2093                 setClause = "set shuttle_done=1";
2094
2095                 // Send the information to ML
2096                 TMonaLisaText  mlStatus("SHUTTLE_status", "Done");
2097
2098                 TList mlList;
2099                 mlList.Add(&mlStatus);
2100
2101                 fMonaLisa->SendParameters(&mlList);
2102         } else {
2103                 TString statusStr(status);
2104                 if(statusStr.Contains("done", TString::kIgnoreCase) ||
2105                    statusStr.Contains("failed", TString::kIgnoreCase)){
2106                         setClause = Form("set %s=\"%s\"", detector, status);
2107                 } else {
2108                         Log("SHUTTLE",
2109                                 Form("UpdateShuttleLogbook - Invalid status <%s> for detector %s",
2110                                         status, detector));
2111                         return kFALSE;
2112                 }
2113         }
2114
2115         TString whereClause = Form("where run=%d", GetCurrentRun());
2116
2117         TString sqlQuery = Form("update %s %s %s",
2118                                         fConfig->GetShuttlelbTable(), setClause.Data(), whereClause.Data());
2119
2120         AliDebug(2, Form("SQL query: \n%s",sqlQuery.Data()));
2121
2122         // Query execution
2123         TSQLResult* aResult;
2124         aResult = dynamic_cast<TSQLResult*> (fServer[3]->Query(sqlQuery));
2125         if (!aResult) {
2126                 Log("SHUTTLE", Form("UpdateShuttleLogbook - Can't execute query <%s>", sqlQuery.Data()));
2127                 return kFALSE;
2128         }
2129         delete aResult;
2130
2131         return kTRUE;
2132 }
2133
2134 //______________________________________________________________________________________________
2135 Int_t AliShuttle::GetCurrentRun() const
2136 {
2137         //
2138         // Get current run from logbook entry
2139         //
2140
2141         return fLogbookEntry ? fLogbookEntry->GetRun() : -1;
2142 }
2143
2144 //______________________________________________________________________________________________
2145 UInt_t AliShuttle::GetCurrentStartTime() const
2146 {
2147         //
2148         // get current start time
2149         //
2150
2151         return fLogbookEntry ? fLogbookEntry->GetStartTime() : 0;
2152 }
2153
2154 //______________________________________________________________________________________________
2155 UInt_t AliShuttle::GetCurrentEndTime() const
2156 {
2157         //
2158         // get current end time from logbook entry
2159         //
2160
2161         return fLogbookEntry ? fLogbookEntry->GetEndTime() : 0;
2162 }
2163
2164 //______________________________________________________________________________________________
2165 void AliShuttle::Log(const char* detector, const char* message)
2166 {
2167         //
2168         // Fill log string with a message
2169         //
2170
2171         void* dir = gSystem->OpenDirectory(GetShuttleLogDir());
2172         if (dir == NULL) {
2173                 if (gSystem->mkdir(GetShuttleLogDir(), kTRUE)) {
2174                         AliError(Form("Can't open directory <%s>", GetShuttleLogDir()));
2175                         return;
2176                 }
2177
2178         } else {
2179                 gSystem->FreeDirectory(dir);
2180         }
2181
2182         TString toLog = Form("%s (%d): %s - ", TTimeStamp(time(0)).AsString("s"), getpid(), detector);
2183         if (GetCurrentRun() >= 0) 
2184                 toLog += Form("run %d - ", GetCurrentRun());
2185         toLog += Form("%s", message);
2186
2187         AliInfo(toLog.Data());
2188         
2189         // if we redirect the log output already to the file, leave here
2190         if (fOutputRedirected && strcmp(detector, "SHUTTLE") != 0)
2191                 return;
2192
2193         TString fileName = GetLogFileName(detector);
2194         
2195         gSystem->ExpandPathName(fileName);
2196
2197         ofstream logFile;
2198         logFile.open(fileName, ofstream::out | ofstream::app);
2199
2200         if (!logFile.is_open()) {
2201                 AliError(Form("Could not open file %s", fileName.Data()));
2202                 return;
2203         }
2204
2205         logFile << toLog.Data() << "\n";
2206
2207         logFile.close();
2208 }
2209
2210 //______________________________________________________________________________________________
2211 TString AliShuttle::GetLogFileName(const char* detector) const
2212 {
2213         // 
2214         // returns the name of the log file for a given sub detector
2215         //
2216         
2217         TString fileName;
2218         
2219         if (GetCurrentRun() >= 0) 
2220                 fileName.Form("%s/%s_%d.log", GetShuttleLogDir(), detector, GetCurrentRun());
2221         else
2222                 fileName.Form("%s/%s.log", GetShuttleLogDir(), detector);
2223
2224         return fileName;
2225 }
2226
2227 //______________________________________________________________________________________________
2228 Bool_t AliShuttle::Collect(Int_t run)
2229 {
2230         //
2231         // Collects conditions data for all UNPROCESSED run written to DAQ LogBook in case of run = -1 (default)
2232         // If a dedicated run is given this run is processed
2233         //
2234         // In operational mode, this is the Shuttle function triggered by the EOR signal.
2235         //
2236
2237         if (run == -1)
2238                 Log("SHUTTLE","Collect - Shuttle called. Collecting conditions data for unprocessed runs");
2239         else
2240                 Log("SHUTTLE", Form("Collect - Shuttle called. Collecting conditions data for run %d", run));
2241
2242         SetLastAction("Starting");
2243
2244         TString whereClause("where shuttle_done=0");
2245         if (run != -1)
2246                 whereClause += Form(" and run=%d", run);
2247
2248         TObjArray shuttleLogbookEntries;
2249         if (!QueryShuttleLogbook(whereClause, shuttleLogbookEntries))
2250         {
2251                 Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook");
2252                 return kFALSE;
2253         }
2254
2255         if (shuttleLogbookEntries.GetEntries() == 0)
2256         {
2257                 if (run == -1)
2258                         Log("SHUTTLE","Collect - Found no UNPROCESSED runs in Shuttle logbook");
2259                 else
2260                         Log("SHUTTLE", Form("Collect - Run %d is already DONE "
2261                                                 "or it does not exist in Shuttle logbook", run));
2262                 return kTRUE;
2263         }
2264
2265         for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
2266                 fFirstUnprocessed[iDet] = kTRUE;
2267
2268         if (run != -1)
2269         {
2270                 // query Shuttle logbook for earlier runs, check if some detectors are unprocessed,
2271                 // flag them into fFirstUnprocessed array
2272                 TString whereClause(Form("where shuttle_done=0 and run < %d", run));
2273                 TObjArray tmpLogbookEntries;
2274                 if (!QueryShuttleLogbook(whereClause, tmpLogbookEntries))
2275                 {
2276                         Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook");
2277                         return kFALSE;
2278                 }
2279
2280                 TIter iter(&tmpLogbookEntries);
2281                 AliShuttleLogbookEntry* anEntry = 0;
2282                 while ((anEntry = dynamic_cast<AliShuttleLogbookEntry*> (iter.Next())))
2283                 {
2284                         for (UInt_t iDet=0; iDet<NDetectors(); iDet++)
2285                         {
2286                                 if (anEntry->GetDetectorStatus(iDet) == AliShuttleLogbookEntry::kUnprocessed)
2287                                 {
2288                                         AliDebug(2, Form("Run %d: setting %s as \"not first time unprocessed\"",
2289                                                         anEntry->GetRun(), GetDetName(iDet)));
2290                                         fFirstUnprocessed[iDet] = kFALSE;
2291                                 }
2292                         }
2293
2294                 }
2295
2296         }
2297
2298         if (!RetrieveConditionsData(shuttleLogbookEntries))
2299         {
2300                 Log("SHUTTLE", "Collect - Process of at least one run failed");
2301                 return kFALSE;
2302         }
2303
2304         Log("SHUTTLE", "Collect - Requested run(s) successfully processed");
2305         return kTRUE;
2306 }
2307
2308 //______________________________________________________________________________________________
2309 Bool_t AliShuttle::RetrieveConditionsData(const TObjArray& dateEntries)
2310 {
2311         //
2312         // Retrieve conditions data for all runs that aren't processed yet
2313         //
2314
2315         Bool_t hasError = kFALSE;
2316
2317         TIter iter(&dateEntries);
2318         AliShuttleLogbookEntry* anEntry;
2319
2320         while ((anEntry = (AliShuttleLogbookEntry*) iter.Next())){
2321                 if (!Process(anEntry)){
2322                         hasError = kTRUE;
2323                 }
2324
2325                 // clean SHUTTLE temp directory
2326                 TString filename = Form("%s/*.shuttle", GetShuttleTempDir());
2327                 RemoveFile(filename.Data());
2328         }
2329
2330         return hasError == kFALSE;
2331 }
2332
2333 //______________________________________________________________________________________________
2334 ULong_t AliShuttle::GetTimeOfLastAction() const
2335 {
2336         //
2337         // Gets time of last action
2338         //
2339
2340         ULong_t tmp;
2341
2342         fMonitoringMutex->Lock();
2343
2344         tmp = fLastActionTime;
2345
2346         fMonitoringMutex->UnLock();
2347
2348         return tmp;
2349 }
2350
2351 //______________________________________________________________________________________________
2352 const TString AliShuttle::GetLastAction() const
2353 {
2354         //
2355         // returns a string description of the last action
2356         //
2357
2358         TString tmp;
2359
2360         fMonitoringMutex->Lock();
2361         
2362         tmp = fLastAction;
2363         
2364         fMonitoringMutex->UnLock();
2365
2366         return tmp;
2367 }
2368
2369 //______________________________________________________________________________________________
2370 void AliShuttle::SetLastAction(const char* action)
2371 {
2372         //
2373         // updates the monitoring variables
2374         //
2375
2376         fMonitoringMutex->Lock();
2377
2378         fLastAction = action;
2379         fLastActionTime = time(0);
2380         
2381         fMonitoringMutex->UnLock();
2382 }
2383
2384 //______________________________________________________________________________________________
2385 const char* AliShuttle::GetRunParameter(const char* param)
2386 {
2387         //
2388         // returns run parameter read from DAQ logbook
2389         //
2390
2391         if(!fLogbookEntry) {
2392                 AliError("No logbook entry!");
2393                 return 0;
2394         }
2395
2396         return fLogbookEntry->GetRunParameter(param);
2397 }
2398
2399 //______________________________________________________________________________________________
2400 AliCDBEntry* AliShuttle::GetFromOCDB(const char* detector, const AliCDBPath& path)
2401 {
2402         //
2403         // returns object from OCDB valid for current run
2404         //
2405
2406         if (fTestMode & kErrorOCDB)
2407         {
2408                 Log(detector, "GetFromOCDB - In TESTMODE - Simulating error with OCDB");
2409                 return 0;
2410         }
2411         
2412         AliCDBStorage *sto = AliCDBManager::Instance()->GetStorage(fgkMainCDB);
2413         if (!sto)
2414         {
2415                 Log(detector, "GetFromOCDB - Cannot activate main OCDB for query!");
2416                 return 0;
2417         }
2418
2419         return dynamic_cast<AliCDBEntry*> (sto->Get(path, GetCurrentRun()));
2420 }
2421
2422 //______________________________________________________________________________________________
2423 Bool_t AliShuttle::SendMail()
2424 {
2425         //
2426         // sends a mail to the subdetector expert in case of preprocessor error
2427         //
2428         
2429         if (fTestMode != kNone)
2430                 return kTRUE;
2431
2432         void* dir = gSystem->OpenDirectory(GetShuttleLogDir());
2433         if (dir == NULL)
2434         {
2435                 if (gSystem->mkdir(GetShuttleLogDir(), kTRUE))
2436                 {
2437                         AliError(Form("Can't open directory <%s>", GetShuttleLogDir()));
2438                         return kFALSE;
2439                 }
2440
2441         } else {
2442                 gSystem->FreeDirectory(dir);
2443         }
2444
2445         TString bodyFileName;
2446         bodyFileName.Form("%s/mail.body", GetShuttleLogDir());
2447         gSystem->ExpandPathName(bodyFileName);
2448
2449         ofstream mailBody;
2450         mailBody.open(bodyFileName, ofstream::out);
2451
2452         if (!mailBody.is_open())
2453         {
2454                 AliError(Form("Could not open mail body file %s", bodyFileName.Data()));
2455                 return kFALSE;
2456         }
2457
2458         TString to="";
2459         TIter iterExperts(fConfig->GetResponsibles(fCurrentDetector));
2460         TObjString *anExpert=0;
2461         while ((anExpert = (TObjString*) iterExperts.Next()))
2462         {
2463                 to += Form("%s,", anExpert->GetName());
2464         }
2465         to.Remove(to.Length()-1);
2466         AliDebug(2, Form("to: %s",to.Data()));
2467
2468         // TODO this will be removed...
2469         if (to.Contains("not_yet_set")) {
2470                 AliInfo("List of detector responsibles not yet set!");
2471                 return kFALSE;
2472         }
2473
2474         TString cc="alberto.colla@cern.ch";
2475
2476         TString subject = Form("%s Shuttle preprocessor error in run %d !",
2477                                 fCurrentDetector.Data(), GetCurrentRun());
2478         AliDebug(2, Form("subject: %s", subject.Data()));
2479
2480         TString body = Form("Dear %s expert(s), \n\n", fCurrentDetector.Data());
2481         body += Form("SHUTTLE just detected that your preprocessor "
2482                         "exited with ERROR state in run %d!!\n\n", GetCurrentRun());
2483         body += Form("Please check %s status on the web page asap!\n\n", fCurrentDetector.Data());
2484         body += Form("The last 10 lines of %s log file are following:\n\n");
2485
2486         AliDebug(2, Form("Body begin: %s", body.Data()));
2487
2488         mailBody << body.Data();
2489         mailBody.close();
2490         mailBody.open(bodyFileName, ofstream::out | ofstream::app);
2491
2492         TString logFileName = Form("%s/%s_%d.log", GetShuttleLogDir(), fCurrentDetector.Data(), GetCurrentRun());
2493         TString tailCommand = Form("tail -n 10 %s >> %s", logFileName.Data(), bodyFileName.Data());
2494         if (gSystem->Exec(tailCommand.Data()))
2495         {
2496                 mailBody << Form("%s log file not found ...\n\n", fCurrentDetector.Data());
2497         }
2498
2499         TString endBody = Form("------------------------------------------------------\n\n");
2500         endBody += Form("In case of problems please contact the SHUTTLE core team.\n\n");
2501         endBody += "Please do not answer this message directly, it is automatically generated.\n\n";
2502         endBody += "Sincerely yours,\n\n \t\t\tthe SHUTTLE\n";
2503
2504         AliDebug(2, Form("Body end: %s", endBody.Data()));
2505
2506         mailBody << endBody.Data();
2507
2508         mailBody.close();
2509
2510         // send mail!
2511         TString mailCommand = Form("mail -s \"%s\" -c %s %s < %s",
2512                                                 subject.Data(),
2513                                                 cc.Data(),
2514                                                 to.Data(),
2515                                                 bodyFileName.Data());
2516         AliDebug(2, Form("mail command: %s", mailCommand.Data()));
2517
2518         Bool_t result = gSystem->Exec(mailCommand.Data());
2519
2520         return result == 0;
2521 }
2522
2523 //______________________________________________________________________________________________
2524 const char* AliShuttle::GetRunType()
2525 {
2526         //
2527         // returns run type read from "run type" logbook
2528         //
2529
2530         if(!fLogbookEntry) {
2531                 AliError("No logbook entry!");
2532                 return 0;
2533         }
2534
2535         return fLogbookEntry->GetRunType();
2536 }
2537
2538 //______________________________________________________________________________________________
2539 void AliShuttle::SetShuttleTempDir(const char* tmpDir)
2540 {
2541         //
2542         // sets Shuttle temp directory
2543         //
2544
2545         fgkShuttleTempDir = gSystem->ExpandPathName(tmpDir);
2546 }
2547
2548 //______________________________________________________________________________________________
2549 void AliShuttle::SetShuttleLogDir(const char* logDir)
2550 {
2551         //
2552         // sets Shuttle log directory
2553         //
2554
2555         fgkShuttleLogDir = gSystem->ExpandPathName(logDir);
2556 }