]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTSystem.cxx
updates for HLT-EMCAL code
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTSystem.cxx
CommitLineData
f23a6e1a 1// $Id$
2
c5123824 3//**************************************************************************
4//* This file is property of and copyright by the ALICE HLT Project *
5//* ALICE Experiment at CERN, All rights reserved. *
6//* *
7//* Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8//* for The ALICE HLT Project. *
9//* *
10//* Permission to use, copy, modify and distribute this software and its *
11//* documentation strictly for non-commercial purposes is hereby granted *
12//* without fee, provided that the above copyright notice appears in all *
13//* copies and that both the copyright notice and this permission notice *
14//* appear in the supporting documentation. The authors make no claims *
15//* about the suitability of this software for any purpose. It is *
16//* provided "as is" without express or implied warranty. *
17//**************************************************************************
f23a6e1a 18
b22e91eb 19/** @file AliHLTSystem.cxx
20 @author Matthias Richter
21 @date
22 @brief Implementation of HLT module management.
23*/
f23a6e1a 24
0c0c9d99 25#if __GNUC__>= 3
f23a6e1a 26using namespace std;
27#endif
28
f3506ea2 29#include <cassert>
85869391 30#include "AliHLTStdIncludes.h"
f23a6e1a 31#include "AliHLTSystem.h"
32#include "AliHLTComponentHandler.h"
33#include "AliHLTComponent.h"
5ec8e281 34#include "AliHLTConfiguration.h"
c38ba6f9 35#include "AliHLTConfigurationHandler.h"
36#include "AliHLTTask.h"
242bb794 37#include "AliHLTModuleAgent.h"
8451168b 38#include "AliHLTOfflineInterface.h"
457ec821 39#include "AliHLTDataSource.h"
c5123824 40#include "AliHLTOUT.h"
41#include "AliHLTOUTHandler.h"
242bb794 42#include <TObjArray.h>
43#include <TObjString.h>
90ebac25 44#include <TStopwatch.h>
dba03d72 45//#include <TSystem.h>
c043fa2c 46#include <TROOT.h>
6a8e0bb4 47//#include <TInterpreter.h>
f23a6e1a 48
83670b1d 49/** HLT default component libraries */
6a8e0bb4 50const char* AliHLTSystem::fgkHLTDefaultLibs[]= {
83670b1d 51 "libAliHLTUtil.so",
8f471af0 52 "libAliHLTRCU.so",
83670b1d 53 "libAliHLTTPC.so",
54 // "libAliHLTSample.so",
511b6d88 55 //"libAliHLTPHOS.so",
887a669c 56 "libAliHLTMUON.so",
83670b1d 57 "libAliHLTTRD.so",
c5123824 58 "libAliHLTTrigger.so",
83670b1d 59 NULL
60};
61
b22e91eb 62/** ROOT macro for the implementation of ROOT specific class methods */
f23a6e1a 63ClassImp(AliHLTSystem)
64
83cb7e1d 65AliHLTSystem::AliHLTSystem(AliHLTComponentLogSeverity loglevel)
85869391 66 :
b005ef92 67 fpComponentHandler(AliHLTComponentHandler::CreateHandler()),
68 fpConfigurationHandler(AliHLTConfigurationHandler::CreateHandler()),
242bb794 69 fTaskList(),
c043fa2c 70 fState(0),
dee38f1b 71 fChains(),
72 fStopwatches(new TObjArray),
73 fEventCount(-1),
b005ef92 74 fGoodEvents(-1),
75 fpChainHandlers(NULL),
76 fpEsdHandlers(NULL),
77 fpProprietaryHandlers(NULL)
f23a6e1a 78{
70ed7d01 79 // see header file for class documentation
80 // or
81 // refer to README to build package
82 // or
83 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
5f5b708b 84
b005ef92 85 if (fgNofInstances++>0) {
86 // July 2008: multiple instances are now allowed
87 // AliHLTSystem is used in multiple instances for the kChain HLTOUT handler
88 //HLTWarning("multiple instances of AliHLTSystem, you should not use more than one at a time");
89 }
fc455fba 90
83cb7e1d 91 SetGlobalLoggingLevel(loglevel);
92 SetFrameworkLog(loglevel);
f23a6e1a 93 if (fpComponentHandler) {
94 AliHLTComponentEnvironment env;
95 memset(&env, 0, sizeof(AliHLTComponentEnvironment));
9ce4bf4a 96 env.fAllocMemoryFunc=AliHLTSystem::AllocMemory;
fc455fba 97 env.fLoggingFunc=NULL;
f23a6e1a 98 fpComponentHandler->SetEnvironment(&env);
db95fec3 99 InitAliLogFunc(fpComponentHandler);
d4a18597 100 if (fgNofInstances==1) {
a742f6f8 101 fpComponentHandler->AnnounceVersion();
d4a18597 102 }
85465857 103 } else {
104 HLTFatal("can not create Component Handler");
105 }
85465857 106 if (fpConfigurationHandler) {
107 AliHLTConfiguration::GlobalInit(fpConfigurationHandler);
108 } else {
109 HLTFatal("can not create Configuration Handler");
f23a6e1a 110 }
111}
112
f23a6e1a 113AliHLTSystem::~AliHLTSystem()
114{
70ed7d01 115 // see header file for class documentation
fc455fba 116 fgNofInstances--;
2d7ff710 117 CleanTaskList();
fc455fba 118 AliHLTConfiguration::GlobalDeinit(fpConfigurationHandler);
2d7ff710 119 if (fpConfigurationHandler) {
b005ef92 120 fpConfigurationHandler->Destroy();
2d7ff710 121 }
122 fpConfigurationHandler=NULL;
123
124 if (fpComponentHandler) {
b005ef92 125 fpComponentHandler->Destroy();
2d7ff710 126 }
127 fpComponentHandler=NULL;
f23a6e1a 128}
129
fc455fba 130int AliHLTSystem::fgNofInstances=0;
131
5ec8e281 132int AliHLTSystem::AddConfiguration(AliHLTConfiguration* pConf)
133{
70ed7d01 134 // see header file for class documentation
6a8e0bb4 135 HLTLogKeyword("configuration handling");
5ec8e281 136 int iResult=0;
53feaef5 137 if (pConf) {
6a8e0bb4 138 HLTError("function not yet implemented");
139 iResult=-ENOSYS;
53feaef5 140 } else {
141 iResult=-EINVAL;
142 }
5ec8e281 143 return iResult;
144}
145
014d39ce 146int AliHLTSystem::InsertConfiguration(AliHLTConfiguration* pConf, AliHLTConfiguration* pPrec)
147{
70ed7d01 148 // see header file for class documentation
6a8e0bb4 149 HLTLogKeyword("configuration handling");
014d39ce 150 int iResult=0;
53feaef5 151 if (pConf) {
152 if (pPrec) {
153 // find the position
6a8e0bb4 154 HLTError("function not yet implemented");
155 iResult=-ENOSYS;
53feaef5 156 }
157 } else {
158 iResult=-EINVAL;
159 }
014d39ce 160 return iResult;
161}
5ec8e281 162
163int AliHLTSystem::DeleteConfiguration(AliHLTConfiguration* pConf)
164{
70ed7d01 165 // see header file for class documentation
6a8e0bb4 166 HLTLogKeyword("configuration handling");
5ec8e281 167 int iResult=0;
53feaef5 168 if (pConf) {
6a8e0bb4 169 HLTError("function not yet implemented");
170 iResult=-ENOSYS;
53feaef5 171 } else {
172 iResult=-EINVAL;
173 }
5ec8e281 174 return iResult;
175}
176
a742f6f8 177int AliHLTSystem::BuildTaskList(const char* id)
178{
179 // see header file for class documentation
180 int iResult=0;
181 if (id) {
182 if (fpConfigurationHandler) {
183 AliHLTConfiguration* pConf=fpConfigurationHandler->FindConfiguration(id);
184 if (pConf) {
185 iResult=BuildTaskList(pConf);
186 } else {
187 HLTError("unknown configuration \"%s\"", id);
188 iResult=-EEXIST;
189 }
190 } else {
191 iResult=-EFAULT;
192 }
193 } else {
194 iResult=-EINVAL;
195 }
196 return iResult;
197}
198
5ec8e281 199int AliHLTSystem::BuildTaskList(AliHLTConfiguration* pConf)
200{
70ed7d01 201 // see header file for class documentation
f23a6e1a 202 int iResult=0;
5ec8e281 203 if (pConf) {
204 AliHLTTask* pTask=NULL;
205 if ((pTask=FindTask(pConf->GetName()))!=NULL) {
206 if (pTask->GetConf()!=pConf) {
c5123824 207 HLTError("configuration mismatch, there is already a task with configuration name \"%s\", but it is different. Most likely configuration %p is not registered properly", pConf->GetName(), pConf);
5ec8e281 208 iResult=-EEXIST;
5ec8e281 209 }
c043fa2c 210 // task for this configuration exists, terminate
211 pTask=NULL;
5ec8e281 212 } else if (pConf->SourcesResolved(1)!=1) {
85465857 213 HLTError("configuration \"%s\" has unresolved sources, aborting ...", pConf->GetName());
5ec8e281 214 iResult=-ENOLINK;
215 } else {
53feaef5 216 pTask=new AliHLTTask(pConf);
5ec8e281 217 if (pTask==NULL) {
218 iResult=-ENOMEM;
dba03d72 219 } else {
220 pTask->SetLocalLoggingLevel(GetLocalLoggingLevel());
5ec8e281 221 }
222 }
c043fa2c 223 static int iterationLevel=0;
224 if (pTask && iResult>=0) {
3b35e87c 225 // check for circular dependencies
5ec8e281 226 if ((iResult=pConf->FollowDependency(pConf->GetName()))>0) {
3b35e87c 227 HLTError("detected circular dependency for configuration \"%s\"", pTask->GetName());
5ec8e281 228 pTask->PrintDependencyTree(pTask->GetName(), 1/*use the configuration list*/);
85465857 229 HLTError("aborted ...");
5ec8e281 230 iResult=-ELOOP;
231 }
232 if (iResult>=0) {
233 // check whether all dependencies are already in the task list
234 // create the missing ones
3b35e87c 235 // this step is an iterative process which calls this function again for the missing
236 // configurations, in order to avoid the currently processed task to be created
237 // again it is added to the list temporarily and removed afterwards
238 // This is of high importance to preserve the order of the tasks. Furthermore, the
239 // InsertTask method has to be used in order to set all the cross links right
5ec8e281 240 fTaskList.Add(pTask);
241 AliHLTConfiguration* pDep=pConf->GetFirstSource();
242 while (pDep!=NULL && iResult>=0) {
c043fa2c 243 HLTDebug("iteration %d: checking dependency %s (%p)", iterationLevel, pDep->GetName(), pDep);
5ec8e281 244 if (FindTask(pDep->GetName())==NULL) {
c043fa2c 245 HLTDebug("iteration %d: building task list for configuration %s (%p)", iterationLevel, pDep->GetName(), pDep);
246 iterationLevel++;
5ec8e281 247 iResult=BuildTaskList(pDep);
c043fa2c 248 iterationLevel--;
5ec8e281 249 }
250 pDep=pConf->GetNextSource();
251 }
3b35e87c 252 // remove the temporarily added task
5ec8e281 253 fTaskList.Remove(pTask);
254
255 // insert the task and set the cross-links
256 if (iResult>=0) {
c043fa2c 257 HLTDebug("iteration %d: inserting task %s (%p)", iterationLevel, pTask->GetName(), pTask);
5ec8e281 258 iResult=InsertTask(pTask);
259 }
260 } else {
261 delete pTask;
262 pTask=NULL;
263 }
264 }
265 } else {
266 iResult=-EINVAL;
f23a6e1a 267 }
f23a6e1a 268 return iResult;
269}
270
5ec8e281 271int AliHLTSystem::CleanTaskList()
272{
70ed7d01 273 // see header file for class documentation
5ec8e281 274 int iResult=0;
275 TObjLink* lnk=NULL;
a742f6f8 276 while ((lnk=fTaskList.LastLink())!=NULL) {
5ec8e281 277 delete (lnk->GetObject());
a742f6f8 278 fTaskList.Remove(lnk);
5ec8e281 279 }
280 return iResult;
281}
282
283int AliHLTSystem::InsertTask(AliHLTTask* pTask)
284{
70ed7d01 285 // see header file for class documentation
5ec8e281 286 int iResult=0;
287 TObjLink *lnk = NULL;
288 if ((iResult=pTask->CheckDependencies())>0)
289 lnk=fTaskList.FirstLink();
290 while (lnk && iResult>0) {
291 AliHLTTask* pCurr = (AliHLTTask*)lnk->GetObject();
85465857 292 //HLTDebug("checking \"%s\"", pCurr->GetName());
5ec8e281 293 iResult=pTask->Depends(pCurr);
294 if (iResult>0) {
295 iResult=pTask->SetDependency(pCurr);
296 pCurr->SetTarget(pTask);
85465857 297 HLTDebug("set dependency \"%s\" for configuration \"%s\"", pCurr->GetName(), pTask->GetName());
f23a6e1a 298 }
5ec8e281 299 if (pCurr->Depends(pTask)) {
3b35e87c 300 // circular dependency
301 HLTError("circular dependency: can not resolve dependencies for configuration \"%s\"", pTask->GetName());
5ec8e281 302 iResult=-ELOOP;
303 } else if ((iResult=pTask->CheckDependencies())>0) {
304 lnk = lnk->Next();
305 }
306 }
307 if (iResult==0) {
308 if (lnk) {
309 fTaskList.AddAfter(lnk, pTask);
310 } else {
311 fTaskList.AddFirst(pTask);
312 }
a742f6f8 313 HLTDebug("task \"%s\" (%p) inserted (size %d)", pTask->GetName(), pTask, sizeof(AliHLTTask));
5ec8e281 314 } else if (iResult>0) {
85465857 315 HLTError("can not resolve dependencies for configuration \"%s\" (%d unresolved)", pTask->GetName(), iResult);
5ec8e281 316 iResult=-ENOLINK;
f23a6e1a 317 }
5ec8e281 318 return iResult;
f23a6e1a 319}
320
5ec8e281 321AliHLTTask* AliHLTSystem::FindTask(const char* id)
322{
70ed7d01 323 // see header file for class documentation
5ec8e281 324 AliHLTTask* pTask=NULL;
325 if (id) {
f3506ea2 326 pTask=dynamic_cast<AliHLTTask*>(fTaskList.FindObject(id));
5ec8e281 327 }
328 return pTask;
329}
f23a6e1a 330
5ec8e281 331void AliHLTSystem::PrintTaskList()
332{
70ed7d01 333 // see header file for class documentation
85465857 334 HLTLogKeyword("task list");
5ec8e281 335 TObjLink *lnk = NULL;
85465857 336 HLTMessage("Task List");
5ec8e281 337 lnk=fTaskList.FirstLink();
338 while (lnk) {
339 TObject* obj=lnk->GetObject();
340 if (obj) {
85465857 341 HLTMessage(" %s - status:", obj->GetName());
5ec8e281 342 AliHLTTask* pTask=(AliHLTTask*)obj;
343 pTask->PrintStatus();
344 } else {
345 }
346 lnk = lnk->Next();
347 }
348}
014d39ce 349
dee38f1b 350int AliHLTSystem::Run(Int_t iNofEvents, int bStop)
014d39ce 351{
70ed7d01 352 // see header file for class documentation
014d39ce 353 int iResult=0;
242bb794 354 int iCount=0;
355 SetStatusFlags(kRunning);
dee38f1b 356 if (fEventCount>=0 || (iResult=InitTasks())>=0) {
357 if (fEventCount>=0 || (iResult=StartTasks())>=0) {
358 if (fEventCount==0) {
359 InitBenchmarking(fStopwatches);
360 } else {
032c5e5e 361 ResumeBenchmarking(fStopwatches);
dee38f1b 362 }
363 for (int i=fEventCount; i<fEventCount+iNofEvents && iResult>=0; i++) {
364 if ((iResult=ProcessTasks(i))>=0) {
365 fGoodEvents++;
242bb794 366 iCount++;
9ce4bf4a 367 } else {
9ce4bf4a 368 // TODO: define different running modes to either ignore errors in
369 // event processing or not
370 // currently ignored
dee38f1b 371 iResult=0;
9ce4bf4a 372 }
2d7ff710 373 }
dee38f1b 374 fEventCount+=iNofEvents;
375 if (bStop) StopTasks();
032c5e5e 376 else PauseBenchmarking(fStopwatches);
53feaef5 377 }
dee38f1b 378 if (bStop) DeinitTasks();
9ce4bf4a 379 }
90ebac25 380 if (iResult>=0) {
381 iResult=iCount;
ba7f962b 382 } else if (iResult==-126 /*ENOKEY*/) {
83670b1d 383 iResult=0; // do not propagate the error
90ebac25 384 }
242bb794 385 ClearStatusFlags(kRunning);
9ce4bf4a 386 return iResult;
387}
388
389int AliHLTSystem::InitTasks()
390{
70ed7d01 391 // see header file for class documentation
9ce4bf4a 392 int iResult=0;
393 TObjLink *lnk=fTaskList.FirstLink();
dee38f1b 394
fc455fba 395 if (lnk==NULL) {
3d6633ff 396 HLTWarning("Task list is empty, skipping HLT");
ba7f962b 397 return -126 /*ENOKEY*/;
fc455fba 398 }
9ce4bf4a 399 while (lnk && iResult>=0) {
400 TObject* obj=lnk->GetObject();
401 if (obj) {
402 AliHLTTask* pTask=(AliHLTTask*)obj;
403 iResult=pTask->Init(NULL, fpComponentHandler);
dba03d72 404// ProcInfo_t ProcInfo;
405// gSystem->GetProcInfo(&ProcInfo);
406// HLTInfo("task %s initialized (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
9ce4bf4a 407 } else {
408 }
409 lnk = lnk->Next();
410 }
411 if (iResult<0) {
dee38f1b 412 HLTError("can not initialize task list, error %d", iResult);
53feaef5 413 }
dee38f1b 414
53feaef5 415 return iResult;
416}
417
90ebac25 418int AliHLTSystem::InitBenchmarking(TObjArray* pStopwatches)
419{
420 // see header file for class documentation
90ebac25 421 int iResult=0;
dee38f1b 422 if (pStopwatches==NULL) return 0;
423
424 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
425 TStopwatch* pStopwatch= new TStopwatch;
426 if (pStopwatch) {
427 pStopwatch->Reset();
428 pStopwatches->AddAt(pStopwatch, i);
429 } else {
430 iResult=-ENOMEM;
431 break;
432 }
433 }
434
90ebac25 435 TObjLink *lnk=fTaskList.FirstLink();
436 while (lnk && iResult>=0) {
437 TObject* obj=lnk->GetObject();
438 if (obj) {
439 AliHLTTask* pTask=(AliHLTTask*)obj;
440 AliHLTComponent* pComp=NULL;
441 if (iResult>=0 && (pComp=pTask->GetComponent())!=NULL) {
442 switch (pComp->GetComponentType()) {
443 case AliHLTComponent::kProcessor:
444 pComp->SetStopwatches(pStopwatches);
445 break;
446 case AliHLTComponent::kSource:
447 {
448 // this switch determines whether the time consumption of the
449 // AliHLTComponent base methods should be counted to the input
450 // stopwatch or base stopwatch.
451 //int inputBase=(int)AliHLTComponent::kSWBase;
452 int inputBase=(int)AliHLTComponent::kSWInput;
453 pComp->SetStopwatch(pStopwatches->At(inputBase), AliHLTComponent::kSWBase);
454 pComp->SetStopwatch(pStopwatches->At((int)AliHLTComponent::kSWInput), AliHLTComponent::kSWDA);
455 }
456 break;
457 case AliHLTComponent::kSink:
458 {
459 // this switch determines whether the time consumption of the
460 // AliHLTComponent base methods should be counted to the output
461 // stopwatch or base stopwatch.
462 //int outputBase=(int)AliHLTComponent::kSWBase;
463 int outputBase=(int)AliHLTComponent::kSWOutput;
464 pComp->SetStopwatch(pStopwatches->At(outputBase), AliHLTComponent::kSWBase);
465 pComp->SetStopwatch(pStopwatches->At((int)AliHLTComponent::kSWOutput), AliHLTComponent::kSWDA);
466 }
467 break;
85f0cede 468 default:
469 HLTWarning("unknown component type %d", (int)pComp->GetComponentType());
90ebac25 470 }
471 }
472 } else {
473 }
474 lnk = lnk->Next();
475 }
476 return iResult;
477}
478
032c5e5e 479int AliHLTSystem::PauseBenchmarking(TObjArray* pStopwatches) const
480{
481 // see header file for class documentation
482 if (pStopwatches==NULL) return 0;
483
484 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
485 if (!pStopwatches->At(i)) continue;
486 TStopwatch* pSw=dynamic_cast<TStopwatch*>(pStopwatches->At(i));
487 if (pSw) pSw->Stop();
488 }
489 return 0;
490}
491
492int AliHLTSystem::ResumeBenchmarking(TObjArray* pStopwatches) const
493{
494 // see header file for class documentation
495 if (pStopwatches==NULL) return 0;
496
497 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
498 if (!pStopwatches->At(i)) continue;
499 TStopwatch* pSw=dynamic_cast<TStopwatch*>(pStopwatches->At(i));
500 if (pSw) pSw->Continue();
501 }
502 return 0;
503}
504
505int AliHLTSystem::PrintBenchmarking(TObjArray* pStopwatches, int bClean) const
dee38f1b 506{
507 // see header file for class documentation
508 int iInitialized=1;
509 if (pStopwatches==NULL) return 0;
510
511 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
512 if (!dynamic_cast<TStopwatch*>(pStopwatches->At(i))) {
513 iInitialized=0;
514 break;
515 }
516 }
517
518 if (iInitialized!=0) {
032c5e5e 519 HLTImportant("HLT statistics:\n"
dee38f1b 520 " base: R:%.3fs C:%.3fs\n"
521 " input: R:%.3fs C:%.3fs\n"
522 " output: R:%.3fs C:%.3fs\n"
523 " event processing : R:%.3fs C:%.3fs"
524 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWBase))->RealTime()
525 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWBase))->CpuTime()
526 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWInput))->RealTime()
527 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWInput))->CpuTime()
528 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWOutput))->RealTime()
529 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWOutput))->CpuTime()
530 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWDA))->RealTime()
531 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWDA))->CpuTime()
532 );
533 }
534
535 if (bClean) {
536 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
537 TObject* pObj=pStopwatches->RemoveAt(i);
538 if (pObj) delete pObj;
539 }
540 }
541 return 0;
542}
543
53feaef5 544int AliHLTSystem::StartTasks()
545{
70ed7d01 546 // see header file for class documentation
53feaef5 547 int iResult=0;
548 TObjLink *lnk=fTaskList.FirstLink();
549 while (lnk && iResult>=0) {
550 TObject* obj=lnk->GetObject();
551 if (obj) {
552 AliHLTTask* pTask=(AliHLTTask*)obj;
553 iResult=pTask->StartRun();
dba03d72 554// ProcInfo_t ProcInfo;
555// gSystem->GetProcInfo(&ProcInfo);
556// HLTInfo("task %s started (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
53feaef5 557 } else {
558 }
559 lnk = lnk->Next();
560 }
561 if (iResult<0) {
dee38f1b 562 HLTError("can not start task list, error %d", iResult);
563 } else {
3dd8541e 564 SetStatusFlags(kStarted);
dee38f1b 565 fEventCount=0;
566 fGoodEvents=0;
457ec821 567 if ((iResult=SendControlEvent(kAliHLTDataTypeSOR))<0) {
568 HLTError("can not send SOR event");
569 }
53feaef5 570 }
571 return iResult;
572}
573
574int AliHLTSystem::ProcessTasks(Int_t eventNo)
575{
70ed7d01 576 // see header file for class documentation
53feaef5 577 int iResult=0;
578 HLTDebug("processing event no %d", eventNo);
579 TObjLink *lnk=fTaskList.FirstLink();
580 while (lnk && iResult>=0) {
581 TObject* obj=lnk->GetObject();
582 if (obj) {
583 AliHLTTask* pTask=(AliHLTTask*)obj;
9ce4bf4a 584 iResult=pTask->ProcessTask(eventNo);
dba03d72 585// ProcInfo_t ProcInfo;
586// gSystem->GetProcInfo(&ProcInfo);
587// HLTInfo("task %s processed (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
53feaef5 588 } else {
589 }
590 lnk = lnk->Next();
591 }
dee38f1b 592
593 if (iResult>=0) {
8f471af0 594 HLTImportant("Event %d successfully finished (%d)", eventNo, iResult);
dee38f1b 595 iResult=0;
596 } else {
597 HLTError("Processing of event %d failed (%d)", eventNo, iResult);
598 }
599
53feaef5 600 return iResult;
601}
602
603int AliHLTSystem::StopTasks()
604{
70ed7d01 605 // see header file for class documentation
53feaef5 606 int iResult=0;
457ec821 607 if ((iResult=SendControlEvent(kAliHLTDataTypeEOR))<0) {
608 HLTError("can not send EOR event");
609 }
53feaef5 610 TObjLink *lnk=fTaskList.FirstLink();
457ec821 611 while (lnk) {
53feaef5 612 TObject* obj=lnk->GetObject();
613 if (obj) {
614 AliHLTTask* pTask=(AliHLTTask*)obj;
457ec821 615 int locResult=pTask->EndRun();
616 if (iResult>=0 && locResult<0) iResult=locResult;
dba03d72 617// ProcInfo_t ProcInfo;
618// gSystem->GetProcInfo(&ProcInfo);
619// HLTInfo("task %s stopped (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
53feaef5 620 } else {
621 }
622 lnk = lnk->Next();
623 }
dee38f1b 624 PrintBenchmarking(fStopwatches, 1 /*clean*/);
3dd8541e 625 ClearStatusFlags(kStarted);
014d39ce 626 return iResult;
627}
9ce4bf4a 628
457ec821 629int AliHLTSystem::SendControlEvent(AliHLTComponentDataType dt)
630{
631 // see header file for class documentation
632
633 // disabled for the moment
634 return 0;
635
636 int iResult=0;
637 AliHLTRunDesc runDesc;
638 memset(&runDesc, 0, sizeof(AliHLTRunDesc));
639 runDesc.fStructSize=sizeof(AliHLTRunDesc);
640 AliHLTDataSource::AliSpecialEventGuard g(&runDesc, dt, kAliHLTVoidDataSpec);
641 HLTDebug("sending event %s, run descriptor %p", AliHLTComponent::DataType2Text(dt).c_str(), &runDesc);
642 TObjLink *lnk=fTaskList.FirstLink();
643 while (lnk && iResult>=0) {
644 TObject* obj=lnk->GetObject();
645 if (obj) {
646 AliHLTTask* pTask=(AliHLTTask*)obj;
647 iResult=pTask->ProcessTask(-1);
648 } else {
649 }
650 lnk = lnk->Next();
651 }
652 HLTDebug("event %s done (%d)", AliHLTComponent::DataType2Text(dt).c_str(), iResult);
653 return iResult;
654}
655
9ce4bf4a 656int AliHLTSystem::DeinitTasks()
657{
70ed7d01 658 // see header file for class documentation
9ce4bf4a 659 int iResult=0;
660 TObjLink *lnk=fTaskList.FirstLink();
661 while (lnk && iResult>=0) {
662 TObject* obj=lnk->GetObject();
663 if (obj) {
664 AliHLTTask* pTask=(AliHLTTask*)obj;
665 iResult=pTask->Deinit();
dba03d72 666// ProcInfo_t ProcInfo;
667// gSystem->GetProcInfo(&ProcInfo);
668// HLTInfo("task %s cleaned (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
9ce4bf4a 669 } else {
670 }
671 lnk = lnk->Next();
672 }
dee38f1b 673 fEventCount=-1;
674 fGoodEvents=-1;
675
9ce4bf4a 676 return iResult;
677}
678
c043fa2c 679void* AliHLTSystem::AllocMemory( void* /*param*/, unsigned long size )
9ce4bf4a 680{
70ed7d01 681 // see header file for class documentation
c043fa2c 682 void* p=NULL;
683 try {
684 p=(void*)new char[size];
242bb794 685 }
c043fa2c 686 catch (...) {
687 AliHLTLogging log;
688 log.LoggingVarargs(kHLTLogError, "AliHLTSystem" , "AllocMemory" , __FILE__ , __LINE__ , "exeption during memory allocation" );
689 }
690 return p;
9ce4bf4a 691}
242bb794 692
693int AliHLTSystem::Reconstruct(int nofEvents, AliRunLoader* runLoader,
694 AliRawReader* rawReader)
695{
696 // see header file for class documentation
697 int iResult=0;
dee38f1b 698 if (runLoader || rawReader || nofEvents==0) {
699 if (nofEvents>0) {HLTInfo("Run Loader %p, Raw Reader %p , %d event(s)", runLoader, rawReader, nofEvents);}
242bb794 700 if (CheckStatus(kReady)) {
dee38f1b 701 if (nofEvents==0) {
702 // special case to close the reconstruction
f3506ea2 703 if (!CheckStatus(kError)) {
dee38f1b 704 StopTasks();
705 DeinitTasks();
f3506ea2 706 }
dee38f1b 707 } else {
8451168b 708 if ((iResult=AliHLTOfflineInterface::SetParamsToComponents(runLoader, rawReader))>=0) {
dee38f1b 709 // the system always remains started after event processing, a specific
f3506ea2 710 // call with nofEvents==0 is needed to execute the stop sequence
711 if ((iResult=Run(nofEvents, 0))<0) SetStatusFlags(kError);
dee38f1b 712 }
8451168b 713 }
242bb794 714 } else {
715 HLTError("wrong state %#x, required flags %#x", GetStatusFlags(), kReady);
716 }
717 } else {
0bf7536b 718 HLTError("missing RunLoader (%p)/RawReader (%p) instance", runLoader, rawReader);
242bb794 719 iResult=-EINVAL;
720 }
721 return iResult;
722}
723
af885e0f 724int AliHLTSystem::FillESD(int eventNo, AliRunLoader* runLoader, AliESDEvent* esd)
242bb794 725{
726 // see header file for class documentation
727 int iResult=0;
dee38f1b 728 if (runLoader || esd) {
242bb794 729 HLTInfo("Event %d: Run Loader %p, ESD %p", eventNo, runLoader, esd);
8451168b 730 iResult=AliHLTOfflineInterface::FillComponentESDs(eventNo, runLoader, esd);
242bb794 731 } else {
732 HLTError("missing run loader/ESD instance(s)");
733 iResult=-EINVAL;
734 }
735 return iResult;
736}
737
c5123824 738int AliHLTSystem::ProcessHLTOUT(AliHLTOUT* pHLTOUT, AliESDEvent* esd)
739{
740 // see header file for class documentation
741 int iResult=0;
742 if (!pHLTOUT) return -EINVAL;
c5123824 743 HLTDebug("processing %d HLT data blocks", pHLTOUT->GetNofDataBlocks());
0f1882a7 744
745 //
746 // process all kChain handlers first
747 //
748 if ((iResult=ProcessHLTOUTkChain(pHLTOUT))<0) {
749 HLTWarning("Processing of kChain-type data blocks failed with error code %d", iResult);
750 iResult=0;
751 }
752
b005ef92 753 if (!fpEsdHandlers)
754 fpEsdHandlers=new AliHLTOUT::AliHLTOUTHandlerListEntryVector;
755 if (!fpProprietaryHandlers)
756 fpProprietaryHandlers=new AliHLTOUT::AliHLTOUTHandlerListEntryVector;
757
758 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pEsdHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpEsdHandlers);
759 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pProprietaryHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpProprietaryHandlers);
760 if (!pEsdHandlers || !pProprietaryHandlers) return -ENOMEM;
761
762 // invalidate all blocks
763 AliHLTOUT::InvalidateBlocks(*pEsdHandlers);
764 AliHLTOUT::InvalidateBlocks(*pProprietaryHandlers);
90c37647 765
766 // first come first serve: the ESD of the first handler is also filled into
767 // the main ESD. Has to be changed later.
768 // currently, merging to the provided ESDs crashes at the level of the
769 // TTree::Fill in AliReconstruction, furthermore, the wrong ESD is passed
770 // by the framework
771 AliESDEvent* pMasterESD=NULL;
83cb7e1d 772 pMasterESD=esd;
d4a18597 773
774 AliHLTComponentDataTypeList esdBlocks;
775
c5123824 776 for (iResult=pHLTOUT->SelectFirstDataBlock();
777 iResult>=0;
778 iResult=pHLTOUT->SelectNextDataBlock()) {
779 AliHLTComponentDataType dt=kAliHLTVoidDataType;
780 AliHLTUInt32_t spec=kAliHLTVoidDataSpec;
781 pHLTOUT->GetDataBlockDescription(dt, spec);
782 AliHLTOUTHandler* pHandler=pHLTOUT->GetHandler();
783 AliHLTModuleAgent::AliHLTOUTHandlerType handlerType=pHLTOUT->GetDataBlockHandlerType();
0f1882a7 784
785 // default handling for ESD data blocks does not require an explicite handler
f94e8c27 786 if (!pHandler && (dt==kAliHLTDataTypeESDObject || dt==kAliHLTDataTypeESDTree)) {
c5123824 787 handlerType=AliHLTModuleAgent::kEsd;
788 }
789 const char* pMsg="invalid";
790 switch (handlerType) {
791 case AliHLTModuleAgent::kEsd:
792 {
793 if (pHandler) {
0f1882a7 794 // schedule for later processing
b005ef92 795 pHLTOUT->InsertHandler(*pEsdHandlers, pHLTOUT->GetDataBlockHandlerDesc());
c5123824 796 } else {
d4a18597 797 AliHLTComponentDataTypeList::iterator element=esdBlocks.begin();
798 for (; element!=esdBlocks.end(); element++) {
799 if (*element==dt) {
800 HLTWarning("multiple ESDs of identical data type %s, please add appropriate handler to merge ESDs", AliHLTComponent::DataType2Text(dt).c_str());
801 break;
802 }
803 }
804 if (element==esdBlocks.end()) esdBlocks.push_back(dt);
805
c5123824 806 // write directly
807 const AliHLTUInt8_t* pBuffer=NULL;
808 AliHLTUInt32_t size=0;
809 if (pHLTOUT->GetDataBuffer(pBuffer, size)>=0) {
810 pHLTOUT->WriteESD(pBuffer, size, dt);
90c37647 811 if (pMasterESD) {
812 pHLTOUT->WriteESD(pBuffer, size, dt, pMasterESD);
813 pMasterESD=NULL;
814 }
c5123824 815 pHLTOUT->ReleaseDataBuffer(pBuffer);
816 }
0f1882a7 817 pHLTOUT->MarkDataBlockProcessed();
c5123824 818 }
819 }
820 break;
821 case AliHLTModuleAgent::kRawReader:
822 // handled in the AliRawReaderHLT
823 break;
824 case AliHLTModuleAgent::kRawStream:
825 HLTWarning("HLTOUT handler type 'kRawStream' not yet implemented: agent %s, data type %s, specification %#x",
826 pMsg, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"invalid",
827 AliHLTComponent::DataType2Text(dt).c_str(), spec);
828 break;
829 case AliHLTModuleAgent::kChain:
0f1882a7 830 HLTWarning("HLTOUT handler type 'kChain' has already been processed: agent %s, data type %s, specification %#x\n"
831 "New block of this type added by the chain? Skipping data block ...",
c5123824 832 pMsg, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"invalid",
833 AliHLTComponent::DataType2Text(dt).c_str(), spec);
834 break;
835 case AliHLTModuleAgent::kProprietary:
836 HLTDebug("processing proprietary data: agent %s, data type %s, specification %#x",
837 pMsg, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"invalid",
838 AliHLTComponent::DataType2Text(dt).c_str(), spec);
839 if (pHandler) {
840 AliHLTOUT::AliHLTOUTLockGuard g(pHLTOUT);
841 int res=pHandler->ProcessData(pHLTOUT);
842 if (res<0) {
843 HLTWarning("processing proprietary data failed (%d): agent %s, data type %s, specification %#x",
844 res, pMsg, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"invalid",
845 AliHLTComponent::DataType2Text(dt).c_str(), spec);
846 }
847 }
848 break;
849 case AliHLTModuleAgent::kUnknownOutput:
850 pMsg="unknown";
851 // fall trough intended
852 default:
853 HLTWarning("%s handler type: agent %s, data type %s, specification %#x, ... skipping data block",
854 pMsg, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"invalid",
855 AliHLTComponent::DataType2Text(dt).c_str(), spec);
856 }
857 }
858 // TODO: the return value of SelectFirst/NextDataBlock must be
859 // changed in order to avoid this check
860 if (iResult==-ENOENT) iResult=0;
861
b005ef92 862 AliHLTOUT::AliHLTOUTHandlerListEntryVector::iterator handler;
863
864 // process and write all esd data blocks
865 for (handler=pEsdHandlers->begin(); handler!=pEsdHandlers->end() && iResult>=0; handler++) {
866 AliHLTOUT::AliHLTOUTSelectionGuard g(pHLTOUT, &(*handler));
867 AliHLTOUTHandler* pHandler=*handler;
c5123824 868 const AliHLTUInt8_t* pBuffer=NULL;
869 AliHLTUInt32_t size=0;
0f1882a7 870 pHandler->ProcessData(pHLTOUT);
c5123824 871 if ((size=pHandler->GetProcessedData(pBuffer))>0) {
b005ef92 872 AliHLTModuleAgent::AliHLTOUTHandlerDesc desc=*handler;
c5123824 873 AliHLTComponentDataType dt=desc;
874 pHLTOUT->WriteESD(pBuffer, size, dt);
875 if (pMasterESD) {
876 pHLTOUT->WriteESD(pBuffer, size, dt, pMasterESD);
877 pMasterESD=NULL;
878 }
879 pHandler->ReleaseProcessedData(pBuffer, size);
880 }
b005ef92 881 pHLTOUT->MarkDataBlocksProcessed(&(*handler));
882 }
883
884 // process all kProprietary data blocks
d4a18597 885 for (handler=pProprietaryHandlers->begin(); handler!=pProprietaryHandlers->end() && iResult>=0; handler++) {
b005ef92 886 AliHLTOUT::AliHLTOUTSelectionGuard g(pHLTOUT, &(*handler));
887 AliHLTOUTHandler* pHandler=*handler;
888 const AliHLTUInt8_t* pBuffer=NULL;
889 AliHLTUInt32_t size=0;
890 pHandler->ProcessData(pHLTOUT);
891 if ((size=pHandler->GetProcessedData(pBuffer))>0) {
892 HLTWarning("data produced by kProprietary handler ignored");
893 pHandler->ReleaseProcessedData(pBuffer, size);
894 }
895 pHLTOUT->MarkDataBlocksProcessed(&(*handler));
0f1882a7 896 }
897
b005ef92 898 // remove all empty handlers form the list (handlers which did not get a block this time)
899 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pEsdHandlers);
900 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pProprietaryHandlers);
901
0f1882a7 902 return iResult;
903}
904
905int AliHLTSystem::ProcessHLTOUTkChain(AliHLTOUT* pHLTOUT)
906{
907 // see header file for class documentation
908 int iResult=0;
909 if (!pHLTOUT) return -EINVAL;
910
b005ef92 911 if (!fpChainHandlers)
912 fpChainHandlers=new AliHLTOUT::AliHLTOUTHandlerListEntryVector;
913
914 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pChainHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpChainHandlers);
915 if (!pChainHandlers) return -ENOMEM;
916
917 // invalidate all blocks
918 AliHLTOUT::InvalidateBlocks(*pChainHandlers);
919
920 // fill the list
921 pHLTOUT->FillHandlerList(*pChainHandlers, AliHLTModuleAgent::kChain);
0f1882a7 922
923 // process all defined chain handlers
924 AliHLTOUT::AliHLTOUTHandlerListEntryVector::iterator chainHandler;
b005ef92 925 for (chainHandler=pChainHandlers->begin(); chainHandler!=pChainHandlers->end() && iResult>=0; chainHandler++) {
d4a18597 926 if (chainHandler->IsEmpty()) continue;
0f1882a7 927 AliHLTOUT::AliHLTOUTSelectionGuard g(pHLTOUT, &(*chainHandler));
928 AliHLTOUTHandler* pHandler=*chainHandler;
929 const AliHLTUInt8_t* pBuffer=NULL;
930 AliHLTUInt32_t size=0;
931 pHandler->ProcessData(pHLTOUT);
932 if ((size=pHandler->GetProcessedData(pBuffer))>0) {
933 AliHLTModuleAgent::AliHLTOUTHandlerDesc desc=*chainHandler;
934 AliHLTComponentDataType dt=desc;
935
936 pHandler->ReleaseProcessedData(pBuffer, size);
937 }
938 pHLTOUT->MarkDataBlocksProcessed(&(*chainHandler));
c5123824 939 }
940
b005ef92 941 // remove all empty handlers form the list (handlers which did not get a block this time)
942 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pChainHandlers);
943
c5123824 944 return iResult;
945}
946
242bb794 947int AliHLTSystem::LoadComponentLibraries(const char* libraries)
948{
949 // see header file for class documentation
950 int iResult=0;
951 if (libraries) {
952 if (fpComponentHandler) {
953 TString libs(libraries);
954 TObjArray* pTokens=libs.Tokenize(" ");
955 if (pTokens) {
956 int iEntries=pTokens->GetEntries();
957 for (int i=0; i<iEntries && iResult>=0; i++) {
958 iResult=fpComponentHandler->LoadLibrary((((TObjString*)pTokens->At(i))->GetString()).Data());
959 }
960 delete pTokens;
961 }
962 if (iResult>=0) {
963 SetStatusFlags(kLibrariesLoaded);
964 } else {
965 // lets see if we need this, probably not
966 //fpComponentHandler->UnloadLibraries();
967 ClearStatusFlags(kLibrariesLoaded);
968 }
969 } else {
970 iResult=-EFAULT;
971 HLTFatal("no component handler available");
972 }
973 } else {
974 iResult=-EINVAL;
975 }
976 return iResult;
977}
978
979int AliHLTSystem::Configure(AliRunLoader* runloader)
dee38f1b 980{
981 // see header file for class documentation
f3506ea2 982 return Configure(NULL, runloader);
dee38f1b 983}
984
985int AliHLTSystem::Configure(AliRawReader* rawReader, AliRunLoader* runloader)
242bb794 986{
987 // see header file for class documentation
988 int iResult=0;
989 if (CheckStatus(kRunning)) {
990 HLTError("HLT system in running state, can not configure");
991 return -EBUSY;
992 }
e642a402 993 ClearStatusFlags(kTaskListCreated);
c215072c 994 if (CheckFilter(kHLTLogDebug))
995 AliHLTModuleAgent::PrintStatus();
c043fa2c 996 if (CheckStatus(kConfigurationLoaded)==0) {
dee38f1b 997 iResult=LoadConfigurations(rawReader, runloader);
c043fa2c 998 } else {
dee38f1b 999 if (fChains.Length()==0) {
703bcca6 1000 HLTError("custom configuration(s) specified, but no configuration to run in local reconstruction, use \'chains=<chain,...>\' option");
c043fa2c 1001 iResult=-ENOENT;
1002 }
1003 }
242bb794 1004 if (iResult>=0) {
1005 SetStatusFlags(kConfigurationLoaded);
c043fa2c 1006 if (CheckFilter(kHLTLogDebug))
1007 fpConfigurationHandler->PrintConfigurations();
f3506ea2 1008 iResult=BuildTaskListsFromReconstructionChains(rawReader, runloader);
242bb794 1009 if (iResult>=0) {
1010 SetStatusFlags(kTaskListCreated);
1011 }
1012 }
1013 if (iResult<0) SetStatusFlags(kError);
1014
1015 return iResult;
1016}
1017
c043fa2c 1018int AliHLTSystem::ScanOptions(const char* options)
1019{
1020 // see header file for class documentation
1021 int iResult=0;
1022 if (options) {
d76bc02a 1023 //AliHLTComponentHandler::TLibraryMode libMode=AliHLTComponentHandler::kDynamic;
83670b1d 1024 TString libs("");
c043fa2c 1025 TString alloptions(options);
1026 TObjArray* pTokens=alloptions.Tokenize(" ");
1027 if (pTokens) {
1028 int iEntries=pTokens->GetEntries();
1029 for (int i=0; i<iEntries; i++) {
1030 TString token=(((TObjString*)pTokens->At(i))->GetString());
1031 if (token.Contains("loglevel=")) {
1032 TString param=token.ReplaceAll("loglevel=", "");
1033 if (param.IsDigit()) {
1034 SetGlobalLoggingLevel((AliHLTComponentLogSeverity)param.Atoi());
1035 } else if (param.BeginsWith("0x") &&
1036 param.Replace(0,2,"",0).IsHex()) {
1037 int severity=0;
1038 sscanf(param.Data(),"%x", &severity);
1039 SetGlobalLoggingLevel((AliHLTComponentLogSeverity)severity);
1040 } else {
1041 HLTWarning("wrong parameter for option \'loglevel=\', (hex) number expected");
1042 }
dba03d72 1043 } else if (token.Contains("frameworklog=")) {
1044 TString param=token.ReplaceAll("frameworklog=", "");
1045 if (param.IsDigit()) {
1046 SetFrameworkLog((AliHLTComponentLogSeverity)param.Atoi());
1047 } else if (param.BeginsWith("0x") &&
1048 param.Replace(0,2,"",0).IsHex()) {
1049 int severity=0;
1050 sscanf(param.Data(),"%x", &severity);
1051 SetFrameworkLog((AliHLTComponentLogSeverity)severity);
1052 } else {
1053 HLTWarning("wrong parameter for option \'loglevel=\', (hex) number expected");
1054 }
c043fa2c 1055 } else if (token.Contains("alilog=off")) {
1056 SwitchAliLog(0);
1057 } else if (token.Contains("config=")) {
1058 TString param=token.ReplaceAll("config=", "");
1059 Int_t error=0;
1060 gROOT->Macro(param.Data(), &error);
1061 if (error==0) {
1062 SetStatusFlags(kConfigurationLoaded);
1063 } else {
1064 HLTError("can not execute macro \'%s\'", param.Data());
1065 iResult=-EBADF;
1066 }
d85f150c 1067 } else if (token.Contains("chains=")) {
dee38f1b 1068 TString param=token.ReplaceAll("chains=", "");
1069 fChains=param.ReplaceAll(",", " ");
703bcca6 1070 if (fChains.IsNull()) fChains=" "; // disable all chains
dba03d72 1071 } else if (token.Contains("libmode=")) {
1072 TString param=token.ReplaceAll("libmode=", "");
1073 param.ReplaceAll(",", " ");
1074 if (fpComponentHandler) {
1075 if (param.CompareTo("static")==0) {
1076 fpComponentHandler->SetLibraryMode(AliHLTComponentHandler::kStatic);
1077 } else if (param.CompareTo("dynamic")==0) {
1078 fpComponentHandler->SetLibraryMode(AliHLTComponentHandler::kDynamic);
1079 } else {
1080 HLTWarning("wrong argument for option \'libmode=\', use \'static\' or \'dynamic\'");
1081 }
1082 }
83670b1d 1083 } else if (token.BeginsWith("lib") && token.EndsWith(".so")) {
1084 libs+=token;
1085 libs+=" ";
c043fa2c 1086 } else {
1087 HLTWarning("unknown option \'%s\'", token.Data());
1088 }
1089 }
1090 delete pTokens;
1091 }
83670b1d 1092
1093 if (iResult>=0) {
1094 if (libs.IsNull()) {
6a8e0bb4 1095 const char** deflib=fgkHLTDefaultLibs;
83670b1d 1096 while (*deflib) {
1097 libs+=*deflib++;
1098 libs+=" ";
1099 }
1100 }
1101 if ((!CheckStatus(AliHLTSystem::kLibrariesLoaded)) &&
1102 (LoadComponentLibraries(libs.Data())<0)) {
1103 HLTError("error while loading HLT libraries");
1104 iResult=-EFAULT;
1105 }
1106 }
c043fa2c 1107 }
1108 return iResult;
1109}
1110
242bb794 1111int AliHLTSystem::Reset(int bForce)
1112{
1113 // see header file for class documentation
1114 int iResult=0;
1115 if (!bForce && CheckStatus(kRunning)) {
1116 HLTError("HLT system in running state, can not configure");
1117 return -EBUSY;
1118 }
1119 CleanTaskList();
1120 ClearStatusFlags(~kUninitialized);
1121 return iResult;
1122}
1123
dee38f1b 1124int AliHLTSystem::LoadConfigurations(AliRawReader* rawReader, AliRunLoader* runloader)
242bb794 1125{
1126 // see header file for class documentation
1127 if (CheckStatus(kRunning)) {
1128 HLTError("HLT system in running state, can not configure");
1129 return -EBUSY;
1130 }
1131 int iResult=0;
1132 AliHLTModuleAgent* pAgent=AliHLTModuleAgent::GetFirstAgent();
1d398268 1133 TString extralibs;
60b26a17 1134 while (pAgent && iResult>=0) {
1135 const char* deplibs=pAgent->GetRequiredComponentLibraries();
1136 if (deplibs) {
1d398268 1137 HLTDebug("required libraries \'%s\' for agent %s (%p)", deplibs, pAgent->GetName(), pAgent);
1138 extralibs+=deplibs;
60b26a17 1139 }
1140 if (iResult>=0) {
1141 HLTDebug("load configurations for agent %s (%p)", pAgent->GetName(), pAgent);
dee38f1b 1142 pAgent->CreateConfigurations(fpConfigurationHandler, rawReader, runloader);
60b26a17 1143 pAgent=AliHLTModuleAgent::GetNextAgent();
1144 }
242bb794 1145 }
1d398268 1146 if (iResult>=0) {
1147 iResult=LoadComponentLibraries(extralibs.Data());
1148 }
1149
242bb794 1150 return iResult;
1151}
1152
f3506ea2 1153int AliHLTSystem::BuildTaskListsFromReconstructionChains(AliRawReader* rawReader, AliRunLoader* runloader)
242bb794 1154{
1155 // see header file for class documentation
1156 if (CheckStatus(kRunning)) {
1157 HLTError("HLT system in running state, can not configure");
1158 return -EBUSY;
1159 }
1160 if (!CheckStatus(kConfigurationLoaded)) {
1161 HLTWarning("configurations not yet loaded");
1162 return 0;
1163 }
1164
1165 int iResult=0;
f3506ea2 1166 int bHaveOutput=0;
1167
1168 // query chains
1169 TString chains;
1170 if (fChains.Length()>0) {
1171 chains=fChains;
8f471af0 1172 HLTImportant("custom reconstruction chain: %s", chains.Data());
f3506ea2 1173 } else {
1174 AliHLTModuleAgent* pAgent=AliHLTModuleAgent::GetFirstAgent();
1175 while ((pAgent || fChains.Length()>0) && iResult>=0) {
1176 const char* agentchains=pAgent->GetReconstructionChains(rawReader, runloader);
1177 if (agentchains) {
703bcca6 1178 if (!chains.IsNull()) chains+=" ";
f3506ea2 1179 chains+=agentchains;
1180 HLTInfo("reconstruction chains for agent %s (%p): %s", pAgent->GetName(), pAgent, agentchains);
1181 }
1182 pAgent=AliHLTModuleAgent::GetNextAgent();
c043fa2c 1183 }
f3506ea2 1184 }
1185
1186 // build task list for chains
1187 TObjArray* pTokens=chains.Tokenize(" ");
1188 if (pTokens) {
1189 int iEntries=pTokens->GetEntries();
1190 for (int i=0; i<iEntries && iResult>=0; i++) {
1191 const char* pCID=((TObjString*)pTokens->At(i))->GetString().Data();
1192 AliHLTConfiguration* pConf=fpConfigurationHandler->FindConfiguration(pCID);
1193 if (pConf) {
1194 iResult=BuildTaskList(pConf);
1195 if (runloader) {
1196 assert(fpComponentHandler!=NULL);
1197 TString cid=pConf->GetComponentID();
1198 if (cid.CompareTo("HLTOUT")==0) {
1199 // remove from the input of a global HLTOUT configuration
1200 chains.ReplaceAll(pCID, "");
1201 } else if (bHaveOutput==0) {
1202 // check whether this configuration produces data output
1203 if ((bHaveOutput=fpComponentHandler->HasOutputData(cid.Data()))<0) {
1204 bHaveOutput=0;
1205 chains.ReplaceAll(pCID, "");
1206 }
1207 }
242bb794 1208 }
f3506ea2 1209 } else {
1210 HLTWarning("can not find configuration %s", pCID);
242bb794 1211 }
242bb794 1212 }
f3506ea2 1213 delete pTokens;
1214 }
1215
1216 // build HLTOUT for simulation
1217 if (iResult>=0 && runloader) {
1218 if (bHaveOutput) {
1219 // there are components in the chain which produce data which need to be
1220 // piped to an HLTOUT
1221 if (fpComponentHandler->FindComponentIndex("HLTOUT")>=0 ||
703bcca6 1222 fpComponentHandler->LoadLibrary("libHLTsim.so")>=0) {
f3506ea2 1223 AliHLTConfiguration globalout("_globalout_", "HLTOUT", chains.Data(), NULL);
1224 iResult=BuildTaskList("_globalout_");
1225 } else {
1226 HLTError("can not load libHLTsim.so and HLTOUT component");
1227 iResult=-EFAULT;
1228 }
c043fa2c 1229 }
242bb794 1230 }
f3506ea2 1231
242bb794 1232 if (iResult>=0) SetStatusFlags(kTaskListCreated);
1233
1234 return iResult;
1235}
1236
1237int AliHLTSystem::CheckStatus(int flag)
1238{
1239 // see header file for class documentation
1240 if (flag==kUninitialized && flag==fState) return 1;
1241 if ((fState&flag)==flag) return 1;
1242 return 0;
1243}
1244
1245int AliHLTSystem::GetStatusFlags()
1246{
1247 // see header file for class documentation
1248 return fState;
1249}
1250
1251int AliHLTSystem::SetStatusFlags(int flags)
1252{
1253 // see header file for class documentation
1254 fState|=flags;
1255 return fState;
1256}
1257
1258int AliHLTSystem::ClearStatusFlags(int flags)
1259{
1260 // see header file for class documentation
1261 fState&=~flags;
1262 return fState;
1263}
85f0cede 1264
1265void* AliHLTSystem::FindDynamicSymbol(const char* library, const char* symbol)
1266{
c043fa2c 1267 // see header file for class documentation
85f0cede 1268 if (fpComponentHandler==NULL) return NULL;
1269 return fpComponentHandler->FindSymbol(library, symbol);
1270}
dba03d72 1271
1272void AliHLTSystem::SetFrameworkLog(AliHLTComponentLogSeverity level)
1273{
6a8e0bb4 1274 // see header file for class documentation
dba03d72 1275 SetLocalLoggingLevel(level);
1276 if (fpComponentHandler) fpComponentHandler->SetLocalLoggingLevel(level);
1277 if (fpConfigurationHandler) fpConfigurationHandler->SetLocalLoggingLevel(level);
1278}