]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTSystem.cxx
Adding the posibility to set the participating detectors when running in AliHLTSystem.
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTSystem.cxx
CommitLineData
f23a6e1a 1// $Id$
c5123824 2//**************************************************************************
3//* This file is property of and copyright by the ALICE HLT Project *
4//* ALICE Experiment at CERN, All rights reserved. *
5//* *
6//* Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
7//* for The ALICE HLT Project. *
8//* *
9//* Permission to use, copy, modify and distribute this software and its *
10//* documentation strictly for non-commercial purposes is hereby granted *
11//* without fee, provided that the above copyright notice appears in all *
12//* copies and that both the copyright notice and this permission notice *
13//* appear in the supporting documentation. The authors make no claims *
14//* about the suitability of this software for any purpose. It is *
15//* provided "as is" without express or implied warranty. *
16//**************************************************************************
f23a6e1a 17
b22e91eb 18/** @file AliHLTSystem.cxx
19 @author Matthias Richter
20 @date
21 @brief Implementation of HLT module management.
22*/
f23a6e1a 23
0c0c9d99 24#if __GNUC__>= 3
f23a6e1a 25using namespace std;
26#endif
27
f3506ea2 28#include <cassert>
85869391 29#include "AliHLTStdIncludes.h"
f23a6e1a 30#include "AliHLTSystem.h"
31#include "AliHLTComponentHandler.h"
32#include "AliHLTComponent.h"
5ec8e281 33#include "AliHLTConfiguration.h"
c38ba6f9 34#include "AliHLTConfigurationHandler.h"
35#include "AliHLTTask.h"
242bb794 36#include "AliHLTModuleAgent.h"
8451168b 37#include "AliHLTOfflineInterface.h"
457ec821 38#include "AliHLTDataSource.h"
c5123824 39#include "AliHLTOUT.h"
40#include "AliHLTOUTHandler.h"
f3c1d403 41#include "AliHLTOUTTask.h"
19b5c321 42#include "AliHLTControlTask.h"
0a7afbf0 43#include "AliHLTDataBuffer.h"
c4ffab2c 44#include "AliHLTMisc.h"
242bb794 45#include <TObjArray.h>
46#include <TObjString.h>
90ebac25 47#include <TStopwatch.h>
d5ea63f7 48#include <TList.h>
dba03d72 49//#include <TSystem.h>
c043fa2c 50#include <TROOT.h>
6a8e0bb4 51//#include <TInterpreter.h>
f23a6e1a 52
83670b1d 53/** HLT default component libraries */
6a8e0bb4 54const char* AliHLTSystem::fgkHLTDefaultLibs[]= {
83670b1d 55 "libAliHLTUtil.so",
8f471af0 56 "libAliHLTRCU.so",
83670b1d 57 "libAliHLTTPC.so",
58 // "libAliHLTSample.so",
33d33d06 59 // "libAliHLTPHOS.so",
887a669c 60 "libAliHLTMUON.so",
d5ea63f7 61 "libAliHLTTRD.so",
3262c4fc 62 "libAliHLTITS.so",
d5ea63f7 63 "libAliHLTGlobal.so",
c5123824 64 "libAliHLTTrigger.so",
83670b1d 65 NULL
66};
67
b22e91eb 68/** ROOT macro for the implementation of ROOT specific class methods */
f23a6e1a 69ClassImp(AliHLTSystem)
70
19b5c321 71AliHLTSystem::AliHLTSystem(AliHLTComponentLogSeverity loglevel, const char* name)
85869391 72 :
b005ef92 73 fpComponentHandler(AliHLTComponentHandler::CreateHandler()),
74 fpConfigurationHandler(AliHLTConfigurationHandler::CreateHandler()),
242bb794 75 fTaskList(),
c043fa2c 76 fState(0),
dee38f1b 77 fChains(),
78 fStopwatches(new TObjArray),
79 fEventCount(-1),
b005ef92 80 fGoodEvents(-1),
81 fpChainHandlers(NULL),
82 fpEsdHandlers(NULL),
f3c1d403 83 fpProprietaryHandlers(NULL),
19b5c321 84 fpHLTOUTTask(NULL),
85 fpControlTask(NULL),
86 fName(name)
c4ffab2c 87 , fECSParams()
f23a6e1a 88{
70ed7d01 89 // see header file for class documentation
90 // or
91 // refer to README to build package
92 // or
93 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
5f5b708b 94
b005ef92 95 if (fgNofInstances++>0) {
96 // July 2008: multiple instances are now allowed
97 // AliHLTSystem is used in multiple instances for the kChain HLTOUT handler
98 //HLTWarning("multiple instances of AliHLTSystem, you should not use more than one at a time");
99 }
fc455fba 100
83cb7e1d 101 SetGlobalLoggingLevel(loglevel);
102 SetFrameworkLog(loglevel);
f23a6e1a 103 if (fpComponentHandler) {
a3c9b745 104 AliHLTAnalysisEnvironment env;
105 memset(&env, 0, sizeof(AliHLTAnalysisEnvironment));
106 env.fStructSize=sizeof(AliHLTAnalysisEnvironment);
9ce4bf4a 107 env.fAllocMemoryFunc=AliHLTSystem::AllocMemory;
324ca3b4 108 env.fGetEventDoneDataFunc=AliHLTSystem::AllocEventDoneData;
fc455fba 109 env.fLoggingFunc=NULL;
f23a6e1a 110 fpComponentHandler->SetEnvironment(&env);
db95fec3 111 InitAliLogFunc(fpComponentHandler);
d4a18597 112 if (fgNofInstances==1) {
a742f6f8 113 fpComponentHandler->AnnounceVersion();
d4a18597 114 }
85465857 115 } else {
116 HLTFatal("can not create Component Handler");
117 }
85465857 118 if (fpConfigurationHandler) {
119 AliHLTConfiguration::GlobalInit(fpConfigurationHandler);
120 } else {
121 HLTFatal("can not create Configuration Handler");
f23a6e1a 122 }
123}
124
f23a6e1a 125AliHLTSystem::~AliHLTSystem()
126{
70ed7d01 127 // see header file for class documentation
fc455fba 128 fgNofInstances--;
a472be38 129 CleanHLTOUT();
2d7ff710 130 CleanTaskList();
fc455fba 131 AliHLTConfiguration::GlobalDeinit(fpConfigurationHandler);
2d7ff710 132 if (fpConfigurationHandler) {
b005ef92 133 fpConfigurationHandler->Destroy();
2d7ff710 134 }
135 fpConfigurationHandler=NULL;
136
137 if (fpComponentHandler) {
b005ef92 138 fpComponentHandler->Destroy();
2d7ff710 139 }
140 fpComponentHandler=NULL;
b09d01b5 141 delete fStopwatches;
19b5c321 142
143 // note: fpHLTOUTTask and fpControlTask are deleted by
144 // CleanTaskList
f23a6e1a 145}
146
fc455fba 147int AliHLTSystem::fgNofInstances=0;
148
a742f6f8 149int AliHLTSystem::BuildTaskList(const char* id)
150{
151 // see header file for class documentation
152 int iResult=0;
153 if (id) {
154 if (fpConfigurationHandler) {
155 AliHLTConfiguration* pConf=fpConfigurationHandler->FindConfiguration(id);
156 if (pConf) {
157 iResult=BuildTaskList(pConf);
158 } else {
159 HLTError("unknown configuration \"%s\"", id);
160 iResult=-EEXIST;
161 }
162 } else {
163 iResult=-EFAULT;
164 }
165 } else {
166 iResult=-EINVAL;
167 }
168 return iResult;
169}
170
5ec8e281 171int AliHLTSystem::BuildTaskList(AliHLTConfiguration* pConf)
172{
70ed7d01 173 // see header file for class documentation
f23a6e1a 174 int iResult=0;
5ec8e281 175 if (pConf) {
176 AliHLTTask* pTask=NULL;
177 if ((pTask=FindTask(pConf->GetName()))!=NULL) {
178 if (pTask->GetConf()!=pConf) {
c5123824 179 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 180 iResult=-EEXIST;
5ec8e281 181 }
c043fa2c 182 // task for this configuration exists, terminate
183 pTask=NULL;
5ec8e281 184 } else if (pConf->SourcesResolved(1)!=1) {
85465857 185 HLTError("configuration \"%s\" has unresolved sources, aborting ...", pConf->GetName());
5ec8e281 186 iResult=-ENOLINK;
187 } else {
53feaef5 188 pTask=new AliHLTTask(pConf);
5ec8e281 189 if (pTask==NULL) {
190 iResult=-ENOMEM;
dba03d72 191 } else {
192 pTask->SetLocalLoggingLevel(GetLocalLoggingLevel());
5ec8e281 193 }
194 }
c043fa2c 195 static int iterationLevel=0;
196 if (pTask && iResult>=0) {
3b35e87c 197 // check for circular dependencies
5ec8e281 198 if ((iResult=pConf->FollowDependency(pConf->GetName()))>0) {
3b35e87c 199 HLTError("detected circular dependency for configuration \"%s\"", pTask->GetName());
5ec8e281 200 pTask->PrintDependencyTree(pTask->GetName(), 1/*use the configuration list*/);
85465857 201 HLTError("aborted ...");
5ec8e281 202 iResult=-ELOOP;
203 }
204 if (iResult>=0) {
205 // check whether all dependencies are already in the task list
206 // create the missing ones
3b35e87c 207 // this step is an iterative process which calls this function again for the missing
208 // configurations, in order to avoid the currently processed task to be created
209 // again it is added to the list temporarily and removed afterwards
210 // This is of high importance to preserve the order of the tasks. Furthermore, the
211 // InsertTask method has to be used in order to set all the cross links right
5ec8e281 212 fTaskList.Add(pTask);
213 AliHLTConfiguration* pDep=pConf->GetFirstSource();
214 while (pDep!=NULL && iResult>=0) {
c043fa2c 215 HLTDebug("iteration %d: checking dependency %s (%p)", iterationLevel, pDep->GetName(), pDep);
5ec8e281 216 if (FindTask(pDep->GetName())==NULL) {
c043fa2c 217 HLTDebug("iteration %d: building task list for configuration %s (%p)", iterationLevel, pDep->GetName(), pDep);
218 iterationLevel++;
5ec8e281 219 iResult=BuildTaskList(pDep);
c043fa2c 220 iterationLevel--;
5ec8e281 221 }
222 pDep=pConf->GetNextSource();
223 }
3b35e87c 224 // remove the temporarily added task
5ec8e281 225 fTaskList.Remove(pTask);
226
227 // insert the task and set the cross-links
228 if (iResult>=0) {
c043fa2c 229 HLTDebug("iteration %d: inserting task %s (%p)", iterationLevel, pTask->GetName(), pTask);
5ec8e281 230 iResult=InsertTask(pTask);
231 }
232 } else {
233 delete pTask;
234 pTask=NULL;
235 }
236 }
237 } else {
238 iResult=-EINVAL;
f23a6e1a 239 }
f23a6e1a 240 return iResult;
241}
242
5ec8e281 243int AliHLTSystem::CleanTaskList()
244{
70ed7d01 245 // see header file for class documentation
5ec8e281 246 int iResult=0;
19b5c321 247 fpHLTOUTTask=NULL;
248 fpControlTask=NULL;
5ec8e281 249 TObjLink* lnk=NULL;
a742f6f8 250 while ((lnk=fTaskList.LastLink())!=NULL) {
5ec8e281 251 delete (lnk->GetObject());
a742f6f8 252 fTaskList.Remove(lnk);
5ec8e281 253 }
19b5c321 254
5ec8e281 255 return iResult;
256}
257
258int AliHLTSystem::InsertTask(AliHLTTask* pTask)
259{
70ed7d01 260 // see header file for class documentation
5ec8e281 261 int iResult=0;
a472be38 262 if (fpControlTask==NULL) {
263 fpControlTask=new AliHLTControlTask;
264 if (!fpControlTask) return -ENOMEM;
265 fTaskList.AddFirst(fpControlTask);
266 }
267 TObjLink *controlLnk=NULL;
268 TObjLink *lnk = fTaskList.FirstLink();
269 assert(!lnk || lnk->GetObject()==fpControlTask || fpControlTask==NULL);
270 if (lnk && lnk->GetObject()==fpControlTask) {
271 if (pTask->GetConf() && pTask->GetConf()->GetFirstSource()==NULL) {
272 pTask->SetDependency(fpControlTask);
273 fpControlTask->SetTarget(pTask);
274 }
275 controlLnk=lnk;
276 lnk=lnk->Next();
277 }
278 if ((iResult=pTask->CheckDependencies())<=0)
279 lnk=NULL;
5ec8e281 280 while (lnk && iResult>0) {
281 AliHLTTask* pCurr = (AliHLTTask*)lnk->GetObject();
85465857 282 //HLTDebug("checking \"%s\"", pCurr->GetName());
5ec8e281 283 iResult=pTask->Depends(pCurr);
284 if (iResult>0) {
285 iResult=pTask->SetDependency(pCurr);
286 pCurr->SetTarget(pTask);
85465857 287 HLTDebug("set dependency \"%s\" for configuration \"%s\"", pCurr->GetName(), pTask->GetName());
f23a6e1a 288 }
5ec8e281 289 if (pCurr->Depends(pTask)) {
3b35e87c 290 // circular dependency
291 HLTError("circular dependency: can not resolve dependencies for configuration \"%s\"", pTask->GetName());
5ec8e281 292 iResult=-ELOOP;
293 } else if ((iResult=pTask->CheckDependencies())>0) {
294 lnk = lnk->Next();
295 }
296 }
297 if (iResult==0) {
298 if (lnk) {
299 fTaskList.AddAfter(lnk, pTask);
a472be38 300 } else if (controlLnk) {
301 fTaskList.AddAfter(controlLnk, pTask);
5ec8e281 302 } else {
303 fTaskList.AddFirst(pTask);
304 }
a742f6f8 305 HLTDebug("task \"%s\" (%p) inserted (size %d)", pTask->GetName(), pTask, sizeof(AliHLTTask));
5ec8e281 306 } else if (iResult>0) {
85465857 307 HLTError("can not resolve dependencies for configuration \"%s\" (%d unresolved)", pTask->GetName(), iResult);
5ec8e281 308 iResult=-ENOLINK;
f23a6e1a 309 }
5ec8e281 310 return iResult;
f23a6e1a 311}
312
5ec8e281 313AliHLTTask* AliHLTSystem::FindTask(const char* id)
314{
70ed7d01 315 // see header file for class documentation
5ec8e281 316 AliHLTTask* pTask=NULL;
317 if (id) {
f3506ea2 318 pTask=dynamic_cast<AliHLTTask*>(fTaskList.FindObject(id));
5ec8e281 319 }
320 return pTask;
321}
f23a6e1a 322
5ec8e281 323void AliHLTSystem::PrintTaskList()
324{
70ed7d01 325 // see header file for class documentation
85465857 326 HLTLogKeyword("task list");
5ec8e281 327 TObjLink *lnk = NULL;
85465857 328 HLTMessage("Task List");
5ec8e281 329 lnk=fTaskList.FirstLink();
330 while (lnk) {
331 TObject* obj=lnk->GetObject();
332 if (obj) {
85465857 333 HLTMessage(" %s - status:", obj->GetName());
5ec8e281 334 AliHLTTask* pTask=(AliHLTTask*)obj;
335 pTask->PrintStatus();
336 } else {
337 }
338 lnk = lnk->Next();
339 }
340}
014d39ce 341
ffd0cf01 342int AliHLTSystem::Run(Int_t iNofEvents, int bStop, AliHLTUInt64_t trgMask,
2894a0c9 343 AliHLTUInt32_t timestamp, AliHLTUInt32_t eventtype,
344 AliHLTUInt32_t participatingDetectors)
014d39ce 345{
70ed7d01 346 // see header file for class documentation
014d39ce 347 int iResult=0;
242bb794 348 int iCount=0;
349 SetStatusFlags(kRunning);
dee38f1b 350 if (fEventCount>=0 || (iResult=InitTasks())>=0) {
351 if (fEventCount>=0 || (iResult=StartTasks())>=0) {
352 if (fEventCount==0) {
353 InitBenchmarking(fStopwatches);
354 } else {
9d8f5e01 355 // Matthias Oct 11 2008 this is a bug
356 // By resuming the stopwatches at this point, all continued counting, but the
357 // starting and stopping is controlled by the AliHLTStopwatchGuard
358 //ResumeBenchmarking(fStopwatches);
dee38f1b 359 }
360 for (int i=fEventCount; i<fEventCount+iNofEvents && iResult>=0; i++) {
f3c1d403 361 if (fpHLTOUTTask) {
362 if (iNofEvents>1 && i==fEventCount) {
363 HLTWarning("can not add more than one event to the HLTOUT, skipping all but last block");
364 }
365 // reset and prepare for new data
366 fpHLTOUTTask->Reset();
367 }
9e14734f 368 if (eventtype == 0) {
369 eventtype = gkAliEventTypeData;
2894a0c9 370 participatingDetectors = 0x0;
ffd0cf01 371 }
2894a0c9 372 if ((iResult=ProcessTasks(i, trgMask, timestamp, eventtype, participatingDetectors))>=0) {
dee38f1b 373 fGoodEvents++;
242bb794 374 iCount++;
9ce4bf4a 375 } else {
9ce4bf4a 376 // TODO: define different running modes to either ignore errors in
377 // event processing or not
378 // currently ignored
dee38f1b 379 iResult=0;
9ce4bf4a 380 }
0a7afbf0 381 AliHLTDataBuffer::SetGlobalEventCount(iCount);
2d7ff710 382 }
dee38f1b 383 fEventCount+=iNofEvents;
384 if (bStop) StopTasks();
032c5e5e 385 else PauseBenchmarking(fStopwatches);
53feaef5 386 }
dee38f1b 387 if (bStop) DeinitTasks();
9ce4bf4a 388 }
90ebac25 389 if (iResult>=0) {
390 iResult=iCount;
ba7f962b 391 } else if (iResult==-126 /*ENOKEY*/) {
83670b1d 392 iResult=0; // do not propagate the error
90ebac25 393 }
242bb794 394 ClearStatusFlags(kRunning);
0a7afbf0 395 AliHLTDataBuffer::PrintStatistics();
9ce4bf4a 396 return iResult;
397}
398
399int AliHLTSystem::InitTasks()
400{
70ed7d01 401 // see header file for class documentation
9ce4bf4a 402 int iResult=0;
403 TObjLink *lnk=fTaskList.FirstLink();
dee38f1b 404
fc455fba 405 if (lnk==NULL) {
97d2b87a 406 HLTInfo("Task list is empty, skipping HLT");
ba7f962b 407 return -126 /*ENOKEY*/;
fc455fba 408 }
9ce4bf4a 409 while (lnk && iResult>=0) {
410 TObject* obj=lnk->GetObject();
411 if (obj) {
412 AliHLTTask* pTask=(AliHLTTask*)obj;
413 iResult=pTask->Init(NULL, fpComponentHandler);
dba03d72 414// ProcInfo_t ProcInfo;
415// gSystem->GetProcInfo(&ProcInfo);
416// HLTInfo("task %s initialized (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
9ce4bf4a 417 } else {
418 }
419 lnk = lnk->Next();
420 }
421 if (iResult<0) {
97d2b87a 422 HLTError("can not initialize task list, error %d", iResult);
53feaef5 423 }
dee38f1b 424
53feaef5 425 return iResult;
426}
427
90ebac25 428int AliHLTSystem::InitBenchmarking(TObjArray* pStopwatches)
429{
430 // see header file for class documentation
90ebac25 431 int iResult=0;
dee38f1b 432 if (pStopwatches==NULL) return 0;
433
434 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
435 TStopwatch* pStopwatch= new TStopwatch;
436 if (pStopwatch) {
437 pStopwatch->Reset();
438 pStopwatches->AddAt(pStopwatch, i);
439 } else {
440 iResult=-ENOMEM;
441 break;
442 }
443 }
444
90ebac25 445 TObjLink *lnk=fTaskList.FirstLink();
446 while (lnk && iResult>=0) {
447 TObject* obj=lnk->GetObject();
448 if (obj) {
449 AliHLTTask* pTask=(AliHLTTask*)obj;
450 AliHLTComponent* pComp=NULL;
451 if (iResult>=0 && (pComp=pTask->GetComponent())!=NULL) {
452 switch (pComp->GetComponentType()) {
453 case AliHLTComponent::kProcessor:
454 pComp->SetStopwatches(pStopwatches);
455 break;
456 case AliHLTComponent::kSource:
457 {
458 // this switch determines whether the time consumption of the
459 // AliHLTComponent base methods should be counted to the input
460 // stopwatch or base stopwatch.
461 //int inputBase=(int)AliHLTComponent::kSWBase;
462 int inputBase=(int)AliHLTComponent::kSWInput;
463 pComp->SetStopwatch(pStopwatches->At(inputBase), AliHLTComponent::kSWBase);
464 pComp->SetStopwatch(pStopwatches->At((int)AliHLTComponent::kSWInput), AliHLTComponent::kSWDA);
465 }
466 break;
467 case AliHLTComponent::kSink:
468 {
469 // this switch determines whether the time consumption of the
470 // AliHLTComponent base methods should be counted to the output
471 // stopwatch or base stopwatch.
472 //int outputBase=(int)AliHLTComponent::kSWBase;
473 int outputBase=(int)AliHLTComponent::kSWOutput;
474 pComp->SetStopwatch(pStopwatches->At(outputBase), AliHLTComponent::kSWBase);
475 pComp->SetStopwatch(pStopwatches->At((int)AliHLTComponent::kSWOutput), AliHLTComponent::kSWDA);
476 }
477 break;
85f0cede 478 default:
479 HLTWarning("unknown component type %d", (int)pComp->GetComponentType());
90ebac25 480 }
481 }
482 } else {
483 }
484 lnk = lnk->Next();
485 }
486 return iResult;
487}
488
032c5e5e 489int AliHLTSystem::PauseBenchmarking(TObjArray* pStopwatches) const
490{
491 // see header file for class documentation
492 if (pStopwatches==NULL) return 0;
493
494 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
495 if (!pStopwatches->At(i)) continue;
496 TStopwatch* pSw=dynamic_cast<TStopwatch*>(pStopwatches->At(i));
497 if (pSw) pSw->Stop();
498 }
499 return 0;
500}
501
502int AliHLTSystem::ResumeBenchmarking(TObjArray* pStopwatches) const
503{
504 // see header file for class documentation
505 if (pStopwatches==NULL) return 0;
506
507 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
508 if (!pStopwatches->At(i)) continue;
509 TStopwatch* pSw=dynamic_cast<TStopwatch*>(pStopwatches->At(i));
510 if (pSw) pSw->Continue();
511 }
512 return 0;
513}
514
515int AliHLTSystem::PrintBenchmarking(TObjArray* pStopwatches, int bClean) const
dee38f1b 516{
517 // see header file for class documentation
518 int iInitialized=1;
519 if (pStopwatches==NULL) return 0;
520
521 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
522 if (!dynamic_cast<TStopwatch*>(pStopwatches->At(i))) {
523 iInitialized=0;
524 break;
525 }
526 }
527
528 if (iInitialized!=0) {
032c5e5e 529 HLTImportant("HLT statistics:\n"
dee38f1b 530 " base: R:%.3fs C:%.3fs\n"
531 " input: R:%.3fs C:%.3fs\n"
532 " output: R:%.3fs C:%.3fs\n"
533 " event processing : R:%.3fs C:%.3fs"
534 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWBase))->RealTime()
535 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWBase))->CpuTime()
536 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWInput))->RealTime()
537 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWInput))->CpuTime()
538 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWOutput))->RealTime()
539 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWOutput))->CpuTime()
540 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWDA))->RealTime()
541 , dynamic_cast<TStopwatch*>(pStopwatches->At(AliHLTComponent::kSWDA))->CpuTime()
542 );
543 }
544
545 if (bClean) {
546 for (int i=0; i<(int)AliHLTComponent::kSWTypeCount; i++) {
547 TObject* pObj=pStopwatches->RemoveAt(i);
548 if (pObj) delete pObj;
549 }
550 }
551 return 0;
552}
553
53feaef5 554int AliHLTSystem::StartTasks()
555{
70ed7d01 556 // see header file for class documentation
53feaef5 557 int iResult=0;
558 TObjLink *lnk=fTaskList.FirstLink();
559 while (lnk && iResult>=0) {
560 TObject* obj=lnk->GetObject();
561 if (obj) {
562 AliHLTTask* pTask=(AliHLTTask*)obj;
563 iResult=pTask->StartRun();
dba03d72 564// ProcInfo_t ProcInfo;
565// gSystem->GetProcInfo(&ProcInfo);
566// HLTInfo("task %s started (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
53feaef5 567 } else {
568 }
569 lnk = lnk->Next();
570 }
571 if (iResult<0) {
97d2b87a 572 HLTError("can not start task list, error %d", iResult);
dee38f1b 573 } else {
3dd8541e 574 SetStatusFlags(kStarted);
dee38f1b 575 fEventCount=0;
576 fGoodEvents=0;
457ec821 577 if ((iResult=SendControlEvent(kAliHLTDataTypeSOR))<0) {
97d2b87a 578 HLTError("can not send SOR event: error %d", iResult);
457ec821 579 }
53feaef5 580 }
581 return iResult;
582}
583
ffd0cf01 584int AliHLTSystem::ProcessTasks(Int_t eventNo, AliHLTUInt64_t trgMask,
2894a0c9 585 AliHLTUInt32_t timestamp, AliHLTUInt32_t eventtype,
586 AliHLTUInt32_t participatingDetectors)
53feaef5 587{
70ed7d01 588 // see header file for class documentation
53feaef5 589 int iResult=0;
590 HLTDebug("processing event no %d", eventNo);
591 TObjLink *lnk=fTaskList.FirstLink();
592 while (lnk && iResult>=0) {
593 TObject* obj=lnk->GetObject();
594 if (obj) {
595 AliHLTTask* pTask=(AliHLTTask*)obj;
2894a0c9 596 iResult=pTask->ProcessTask(eventNo, eventtype, trgMask, timestamp, participatingDetectors);
dba03d72 597// ProcInfo_t ProcInfo;
598// gSystem->GetProcInfo(&ProcInfo);
599// HLTInfo("task %s processed (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
53feaef5 600 } else {
601 }
602 lnk = lnk->Next();
603 }
dee38f1b 604
605 if (iResult>=0) {
97d2b87a 606 HLTImportant("Event %d successfully finished (%d)", eventNo, iResult);
dee38f1b 607 iResult=0;
608 } else {
97d2b87a 609 HLTError("Processing of event %d failed (%d)", eventNo, iResult);
dee38f1b 610 }
611
53feaef5 612 return iResult;
613}
614
615int AliHLTSystem::StopTasks()
616{
70ed7d01 617 // see header file for class documentation
53feaef5 618 int iResult=0;
457ec821 619 if ((iResult=SendControlEvent(kAliHLTDataTypeEOR))<0) {
97d2b87a 620 HLTError("can not send EOR event");
457ec821 621 }
19b5c321 622
623 // cleanup blocks from the last event. This is a bit awkward. All output
624 // blocks from the chains need to be stored in the HLTOUT task. Though,
625 // we do not know, whether HLTOUT is going to be processed or not.
626 if (fpHLTOUTTask)
627 fpHLTOUTTask->Reset();
628
53feaef5 629 TObjLink *lnk=fTaskList.FirstLink();
457ec821 630 while (lnk) {
53feaef5 631 TObject* obj=lnk->GetObject();
632 if (obj) {
633 AliHLTTask* pTask=(AliHLTTask*)obj;
457ec821 634 int locResult=pTask->EndRun();
635 if (iResult>=0 && locResult<0) iResult=locResult;
dba03d72 636// ProcInfo_t ProcInfo;
637// gSystem->GetProcInfo(&ProcInfo);
638// HLTInfo("task %s stopped (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
53feaef5 639 } else {
640 }
641 lnk = lnk->Next();
642 }
dee38f1b 643 PrintBenchmarking(fStopwatches, 1 /*clean*/);
3dd8541e 644 ClearStatusFlags(kStarted);
014d39ce 645 return iResult;
646}
9ce4bf4a 647
457ec821 648int AliHLTSystem::SendControlEvent(AliHLTComponentDataType dt)
649{
650 // see header file for class documentation
457ec821 651 int iResult=0;
a472be38 652
3baf1595 653 AliHLTComponentBlockDataList controlBlocks;
654 AliHLTComponentBlockData bd;
655
656 // run decriptor block of type kAliHLTDataTypeSOR/kAliHLTDataTypeEOR
657 AliHLTComponent::FillBlockData(bd);
457ec821 658 AliHLTRunDesc runDesc;
659 memset(&runDesc, 0, sizeof(AliHLTRunDesc));
660 runDesc.fStructSize=sizeof(AliHLTRunDesc);
5e9d7024 661 runDesc.fRunNo=AliHLTMisc::Instance().GetCDBRunNo();
3baf1595 662 bd.fPtr=&runDesc;
663 bd.fSize=sizeof(AliHLTRunDesc);
664 bd.fDataType=dt;
665 bd.fSpecification=kAliHLTVoidDataSpec;
666 controlBlocks.push_back(bd);
667
c4ffab2c 668 // ECS parameter of type kAliHLTDataTypeECSParam
669 if (fECSParams.IsNull())
670 fECSParams="CTP_TRIGGER_CLASS=00:DUMMY-TRIGGER-ALL:00-01-02-03-04-05-06-07-08-09-10-11-12-13-14-15-16-17";
3baf1595 671 AliHLTComponent::FillBlockData(bd);
c4ffab2c 672 bd.fPtr=(void*)fECSParams.Data();
673 bd.fSize=fECSParams.Length()+1;
3baf1595 674 bd.fDataType=kAliHLTDataTypeECSParam;
675 bd.fSpecification=kAliHLTVoidDataSpec;
676 controlBlocks.push_back(bd);
677
678 AliHLTControlTask::AliHLTControlEventGuard g(fpControlTask, controlBlocks);
457ec821 679 HLTDebug("sending event %s, run descriptor %p", AliHLTComponent::DataType2Text(dt).c_str(), &runDesc);
680 TObjLink *lnk=fTaskList.FirstLink();
681 while (lnk && iResult>=0) {
682 TObject* obj=lnk->GetObject();
683 if (obj) {
684 AliHLTTask* pTask=(AliHLTTask*)obj;
a472be38 685 AliHLTUInt32_t eventType=gkAliEventTypeUnknown;
686 if (dt==kAliHLTDataTypeSOR) eventType=gkAliEventTypeStartOfRun;
687 else if (dt==kAliHLTDataTypeEOR) eventType=gkAliEventTypeEndOfRun;
688 else HLTWarning("unknown control event %s", AliHLTComponent::DataType2Text(dt).c_str());
ffd0cf01 689 iResult=pTask->ProcessTask(-1, eventType, 0, 0);
457ec821 690 } else {
691 }
692 lnk = lnk->Next();
693 }
a472be38 694
695 // control events are not supposed to go into the HLTOUT
696 if (fpHLTOUTTask)
697 fpHLTOUTTask->Reset();
698
457ec821 699 HLTDebug("event %s done (%d)", AliHLTComponent::DataType2Text(dt).c_str(), iResult);
700 return iResult;
701}
702
9ce4bf4a 703int AliHLTSystem::DeinitTasks()
704{
70ed7d01 705 // see header file for class documentation
9ce4bf4a 706 int iResult=0;
1b820a65 707 TObjLink *lnk=fTaskList.LastLink();
618c89b9 708 while (lnk) {
9ce4bf4a 709 TObject* obj=lnk->GetObject();
710 if (obj) {
711 AliHLTTask* pTask=(AliHLTTask*)obj;
618c89b9 712 int localRes=pTask->Deinit();
713 if (iResult>=0) iResult=localRes;
dba03d72 714// ProcInfo_t ProcInfo;
715// gSystem->GetProcInfo(&ProcInfo);
716// HLTInfo("task %s cleaned (%d), current memory usage %d %d", pTask->GetName(), iResult, ProcInfo.fMemResident, ProcInfo.fMemVirtual);
9ce4bf4a 717 } else {
718 }
1b820a65 719 lnk = lnk->Prev();
9ce4bf4a 720 }
dee38f1b 721 fEventCount=-1;
722 fGoodEvents=-1;
723
9ce4bf4a 724 return iResult;
725}
726
a472be38 727int AliHLTSystem::CleanHLTOUT()
728{
729 // see header file for class documentation
730 if (fpChainHandlers) {
731 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpChainHandlers);
732 fpChainHandlers=NULL;
733 if (pHandlers) {
734 AliHLTOUT::InvalidateBlocks(*pHandlers);
735 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pHandlers);
736 }
737 assert(pHandlers->size()==0);
738 delete pHandlers;
739 }
740
741 if (fpEsdHandlers) {
742 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpEsdHandlers);
743 fpEsdHandlers=NULL;
744 if (pHandlers) {
745 AliHLTOUT::InvalidateBlocks(*pHandlers);
746 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pHandlers);
747 }
748 assert(pHandlers->size()==0);
749 delete pHandlers;
750 }
751
752 if (fpProprietaryHandlers) {
753 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpProprietaryHandlers);
754 fpProprietaryHandlers=NULL;
755 if (pHandlers) {
756 AliHLTOUT::InvalidateBlocks(*pHandlers);
757 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pHandlers);
758 }
759 assert(pHandlers->size()==0);
760 delete pHandlers;
761 }
762 return 0;
763}
764
c043fa2c 765void* AliHLTSystem::AllocMemory( void* /*param*/, unsigned long size )
9ce4bf4a 766{
70ed7d01 767 // see header file for class documentation
c043fa2c 768 void* p=NULL;
769 try {
770 p=(void*)new char[size];
242bb794 771 }
c043fa2c 772 catch (...) {
773 AliHLTLogging log;
774 log.LoggingVarargs(kHLTLogError, "AliHLTSystem" , "AllocMemory" , __FILE__ , __LINE__ , "exeption during memory allocation" );
775 }
776 return p;
9ce4bf4a 777}
242bb794 778
33d33d06 779int AliHLTSystem::AllocEventDoneData( void* /*param*/, AliHLTEventID_t /*eventID*/, unsigned long size, AliHLTComponentEventDoneData** edd )
324ca3b4 780{
781 // see header file for class documentation
782 unsigned long blocksize=sizeof(AliHLTComponentEventDoneData)+size;
783 void* block=AllocMemory(NULL, blocksize);
784 if (!block) return -ENOMEM;
785 memset(block, 0, blocksize);
786 *edd=reinterpret_cast<AliHLTComponentEventDoneData*>(block);
787 (*edd)->fStructSize=sizeof(AliHLTComponentEventDoneData);
788 (*edd)->fDataSize=size;
789 (*edd)->fData=reinterpret_cast<AliHLTUInt8_t*>(block)+sizeof(AliHLTComponentEventDoneData);
790
791 return 0;
792}
793
242bb794 794int AliHLTSystem::Reconstruct(int nofEvents, AliRunLoader* runLoader,
795 AliRawReader* rawReader)
796{
797 // see header file for class documentation
798 int iResult=0;
dee38f1b 799 if (runLoader || rawReader || nofEvents==0) {
800 if (nofEvents>0) {HLTInfo("Run Loader %p, Raw Reader %p , %d event(s)", runLoader, rawReader, nofEvents);}
242bb794 801 if (CheckStatus(kReady)) {
dee38f1b 802 if (nofEvents==0) {
803 // special case to close the reconstruction
f3506ea2 804 if (!CheckStatus(kError)) {
dee38f1b 805 StopTasks();
806 DeinitTasks();
a472be38 807 CleanHLTOUT();
f3506ea2 808 }
dee38f1b 809 } else {
8451168b 810 if ((iResult=AliHLTOfflineInterface::SetParamsToComponents(runLoader, rawReader))>=0) {
d5e397eb 811 AliHLTUInt64_t trgMask=0x1;
ffd0cf01 812 AliHLTUInt32_t timestamp=0;
813 AliHLTUInt32_t eventtype=0;
d5e397eb 814 if (runLoader==NULL) {
815 // this is a quick workaround for the case of simulation
816 // the trigger framework is still under development, secondly, AliHLTSimulation
817 // does not yet add the emulated ECS parameters, so no CTP trigger is known in the HLT
818 // AliHLTTask will initialize one dummy CTP trigger class with bit 0, that's why the
819 // default trigger mask is 0x1
820 trgMask=AliHLTMisc::Instance().GetTriggerMask(rawReader);
ffd0cf01 821
822 // get the timestamp and type of the event from the raw reader
823 // this is currently only meaningfull for reconstruction (runloader==NULL)
824 timestamp=AliHLTMisc::Instance().GetTimeStamp(rawReader);
825 eventtype=AliHLTMisc::Instance().GetEventType(rawReader);
d5e397eb 826 }
dee38f1b 827 // the system always remains started after event processing, a specific
f3506ea2 828 // call with nofEvents==0 is needed to execute the stop sequence
ffd0cf01 829 if ((iResult=Run(nofEvents, 0, trgMask, timestamp, eventtype))<0) SetStatusFlags(kError);
dee38f1b 830 }
8451168b 831 }
242bb794 832 } else {
833 HLTError("wrong state %#x, required flags %#x", GetStatusFlags(), kReady);
834 }
835 } else {
0bf7536b 836 HLTError("missing RunLoader (%p)/RawReader (%p) instance", runLoader, rawReader);
242bb794 837 iResult=-EINVAL;
838 }
839 return iResult;
840}
841
af885e0f 842int AliHLTSystem::FillESD(int eventNo, AliRunLoader* runLoader, AliESDEvent* esd)
242bb794 843{
844 // see header file for class documentation
845 int iResult=0;
dee38f1b 846 if (runLoader || esd) {
242bb794 847 HLTInfo("Event %d: Run Loader %p, ESD %p", eventNo, runLoader, esd);
8451168b 848 iResult=AliHLTOfflineInterface::FillComponentESDs(eventNo, runLoader, esd);
242bb794 849 } else {
850 HLTError("missing run loader/ESD instance(s)");
851 iResult=-EINVAL;
852 }
853 return iResult;
854}
855
c5123824 856int AliHLTSystem::ProcessHLTOUT(AliHLTOUT* pHLTOUT, AliESDEvent* esd)
857{
858 // see header file for class documentation
859 int iResult=0;
860 if (!pHLTOUT) return -EINVAL;
c5123824 861 HLTDebug("processing %d HLT data blocks", pHLTOUT->GetNofDataBlocks());
0f1882a7 862
f3c1d403 863 // add the current HLTOUT task to the collection
864 if (fpHLTOUTTask) {
865 AliHLTOUT* pTask=dynamic_cast<AliHLTOUT*>(fpHLTOUTTask);
866 if (pTask && (iResult=pTask->Init())>=0) {
867 if (pTask->GetNofDataBlocks()>0) {
868 pHLTOUT->AddSubCollection(pTask);
869 }
870 } else {
871 HLTWarning("can not initialize HLTOUT sub collection %s for reconstruction chain (%d), data blocks are lost", pTask?fpHLTOUTTask->GetName():"nil", iResult);
872 iResult=0;
873 }
874 }
875
876
0f1882a7 877 //
878 // process all kChain handlers first
879 //
880 if ((iResult=ProcessHLTOUTkChain(pHLTOUT))<0) {
881 HLTWarning("Processing of kChain-type data blocks failed with error code %d", iResult);
882 iResult=0;
883 }
884
b005ef92 885 if (!fpEsdHandlers)
886 fpEsdHandlers=new AliHLTOUT::AliHLTOUTHandlerListEntryVector;
887 if (!fpProprietaryHandlers)
888 fpProprietaryHandlers=new AliHLTOUT::AliHLTOUTHandlerListEntryVector;
889
890 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pEsdHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpEsdHandlers);
891 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pProprietaryHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpProprietaryHandlers);
892 if (!pEsdHandlers || !pProprietaryHandlers) return -ENOMEM;
893
894 // invalidate all blocks
895 AliHLTOUT::InvalidateBlocks(*pEsdHandlers);
896 AliHLTOUT::InvalidateBlocks(*pProprietaryHandlers);
90c37647 897
d4a18597 898 AliHLTComponentDataTypeList esdBlocks;
899
c5123824 900 for (iResult=pHLTOUT->SelectFirstDataBlock();
901 iResult>=0;
902 iResult=pHLTOUT->SelectNextDataBlock()) {
903 AliHLTComponentDataType dt=kAliHLTVoidDataType;
904 AliHLTUInt32_t spec=kAliHLTVoidDataSpec;
905 pHLTOUT->GetDataBlockDescription(dt, spec);
906 AliHLTOUTHandler* pHandler=pHLTOUT->GetHandler();
907 AliHLTModuleAgent::AliHLTOUTHandlerType handlerType=pHLTOUT->GetDataBlockHandlerType();
0f1882a7 908
909 // default handling for ESD data blocks does not require an explicite handler
f94e8c27 910 if (!pHandler && (dt==kAliHLTDataTypeESDObject || dt==kAliHLTDataTypeESDTree)) {
c5123824 911 handlerType=AliHLTModuleAgent::kEsd;
912 }
913 const char* pMsg="invalid";
914 switch (handlerType) {
915 case AliHLTModuleAgent::kEsd:
916 {
917 if (pHandler) {
0f1882a7 918 // schedule for later processing
b005ef92 919 pHLTOUT->InsertHandler(*pEsdHandlers, pHLTOUT->GetDataBlockHandlerDesc());
c5123824 920 } else {
d4a18597 921 AliHLTComponentDataTypeList::iterator element=esdBlocks.begin();
922 for (; element!=esdBlocks.end(); element++) {
923 if (*element==dt) {
924 HLTWarning("multiple ESDs of identical data type %s, please add appropriate handler to merge ESDs", AliHLTComponent::DataType2Text(dt).c_str());
925 break;
926 }
927 }
928 if (element==esdBlocks.end()) esdBlocks.push_back(dt);
929
c5123824 930 // write directly
931 const AliHLTUInt8_t* pBuffer=NULL;
932 AliHLTUInt32_t size=0;
933 if (pHLTOUT->GetDataBuffer(pBuffer, size)>=0) {
57584811 934 pHLTOUT->WriteESD(pBuffer, size, dt, esd);
c5123824 935 pHLTOUT->ReleaseDataBuffer(pBuffer);
936 }
0f1882a7 937 pHLTOUT->MarkDataBlockProcessed();
c5123824 938 }
939 }
940 break;
941 case AliHLTModuleAgent::kRawReader:
942 // handled in the AliRawReaderHLT
943 break;
944 case AliHLTModuleAgent::kRawStream:
945 HLTWarning("HLTOUT handler type 'kRawStream' not yet implemented: agent %s, data type %s, specification %#x",
f75868b3 946 pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"<invalid>",
c5123824 947 AliHLTComponent::DataType2Text(dt).c_str(), spec);
948 break;
949 case AliHLTModuleAgent::kChain:
0f1882a7 950 HLTWarning("HLTOUT handler type 'kChain' has already been processed: agent %s, data type %s, specification %#x\n"
951 "New block of this type added by the chain? Skipping data block ...",
f75868b3 952 pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"<invalid>",
c5123824 953 AliHLTComponent::DataType2Text(dt).c_str(), spec);
954 break;
955 case AliHLTModuleAgent::kProprietary:
956 HLTDebug("processing proprietary data: agent %s, data type %s, specification %#x",
f75868b3 957 pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"<invalid>",
c5123824 958 AliHLTComponent::DataType2Text(dt).c_str(), spec);
959 if (pHandler) {
960 AliHLTOUT::AliHLTOUTLockGuard g(pHLTOUT);
961 int res=pHandler->ProcessData(pHLTOUT);
962 if (res<0) {
963 HLTWarning("processing proprietary data failed (%d): agent %s, data type %s, specification %#x",
f75868b3 964 res, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"<invalid>",
c5123824 965 AliHLTComponent::DataType2Text(dt).c_str(), spec);
966 }
967 }
968 break;
969 case AliHLTModuleAgent::kUnknownOutput:
970 pMsg="unknown";
971 // fall trough intended
972 default:
973 HLTWarning("%s handler type: agent %s, data type %s, specification %#x, ... skipping data block",
f75868b3 974 pMsg, pHLTOUT->GetAgent()?pHLTOUT->GetAgent()->GetModuleId():"<invalid>",
c5123824 975 AliHLTComponent::DataType2Text(dt).c_str(), spec);
976 }
977 }
978 // TODO: the return value of SelectFirst/NextDataBlock must be
979 // changed in order to avoid this check
980 if (iResult==-ENOENT) iResult=0;
981
b005ef92 982 AliHLTOUT::AliHLTOUTHandlerListEntryVector::iterator handler;
983
984 // process and write all esd data blocks
985 for (handler=pEsdHandlers->begin(); handler!=pEsdHandlers->end() && iResult>=0; handler++) {
986 AliHLTOUT::AliHLTOUTSelectionGuard g(pHLTOUT, &(*handler));
987 AliHLTOUTHandler* pHandler=*handler;
c5123824 988 const AliHLTUInt8_t* pBuffer=NULL;
989 AliHLTUInt32_t size=0;
0f1882a7 990 pHandler->ProcessData(pHLTOUT);
c5123824 991 if ((size=pHandler->GetProcessedData(pBuffer))>0) {
b005ef92 992 AliHLTModuleAgent::AliHLTOUTHandlerDesc desc=*handler;
c5123824 993 AliHLTComponentDataType dt=desc;
57584811 994 pHLTOUT->WriteESD(pBuffer, size, dt, esd);
c5123824 995 pHandler->ReleaseProcessedData(pBuffer, size);
996 }
b005ef92 997 pHLTOUT->MarkDataBlocksProcessed(&(*handler));
998 }
999
1000 // process all kProprietary data blocks
d4a18597 1001 for (handler=pProprietaryHandlers->begin(); handler!=pProprietaryHandlers->end() && iResult>=0; handler++) {
b005ef92 1002 AliHLTOUT::AliHLTOUTSelectionGuard g(pHLTOUT, &(*handler));
1003 AliHLTOUTHandler* pHandler=*handler;
1004 const AliHLTUInt8_t* pBuffer=NULL;
1005 AliHLTUInt32_t size=0;
1006 pHandler->ProcessData(pHLTOUT);
1007 if ((size=pHandler->GetProcessedData(pBuffer))>0) {
1008 HLTWarning("data produced by kProprietary handler ignored");
1009 pHandler->ReleaseProcessedData(pBuffer, size);
1010 }
1011 pHLTOUT->MarkDataBlocksProcessed(&(*handler));
0f1882a7 1012 }
1013
b005ef92 1014 // remove all empty handlers form the list (handlers which did not get a block this time)
1015 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pEsdHandlers);
1016 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pProprietaryHandlers);
1017
0f1882a7 1018 return iResult;
1019}
1020
1021int AliHLTSystem::ProcessHLTOUTkChain(AliHLTOUT* pHLTOUT)
1022{
1023 // see header file for class documentation
1024 int iResult=0;
1025 if (!pHLTOUT) return -EINVAL;
1026
b005ef92 1027 if (!fpChainHandlers)
1028 fpChainHandlers=new AliHLTOUT::AliHLTOUTHandlerListEntryVector;
1029
1030 AliHLTOUT::AliHLTOUTHandlerListEntryVector* pChainHandlers=reinterpret_cast<AliHLTOUT::AliHLTOUTHandlerListEntryVector*>(fpChainHandlers);
1031 if (!pChainHandlers) return -ENOMEM;
1032
1033 // invalidate all blocks
1034 AliHLTOUT::InvalidateBlocks(*pChainHandlers);
1035
1036 // fill the list
1037 pHLTOUT->FillHandlerList(*pChainHandlers, AliHLTModuleAgent::kChain);
0f1882a7 1038
1039 // process all defined chain handlers
1040 AliHLTOUT::AliHLTOUTHandlerListEntryVector::iterator chainHandler;
b005ef92 1041 for (chainHandler=pChainHandlers->begin(); chainHandler!=pChainHandlers->end() && iResult>=0; chainHandler++) {
d4a18597 1042 if (chainHandler->IsEmpty()) continue;
0f1882a7 1043 AliHLTOUT::AliHLTOUTSelectionGuard g(pHLTOUT, &(*chainHandler));
1044 AliHLTOUTHandler* pHandler=*chainHandler;
1045 const AliHLTUInt8_t* pBuffer=NULL;
1046 AliHLTUInt32_t size=0;
1047 pHandler->ProcessData(pHLTOUT);
1048 if ((size=pHandler->GetProcessedData(pBuffer))>0) {
1049 AliHLTModuleAgent::AliHLTOUTHandlerDesc desc=*chainHandler;
3741b8c4 1050 //AliHLTComponentDataType dt=desc;
0f1882a7 1051
1052 pHandler->ReleaseProcessedData(pBuffer, size);
1053 }
1054 pHLTOUT->MarkDataBlocksProcessed(&(*chainHandler));
c5123824 1055 }
1056
b005ef92 1057 // remove all empty handlers form the list (handlers which did not get a block this time)
1058 AliHLTOUT::RemoveEmptyDuplicateHandlers(*pChainHandlers);
1059
c5123824 1060 return iResult;
1061}
1062
242bb794 1063int AliHLTSystem::LoadComponentLibraries(const char* libraries)
1064{
1065 // see header file for class documentation
1066 int iResult=0;
1067 if (libraries) {
1068 if (fpComponentHandler) {
1069 TString libs(libraries);
1070 TObjArray* pTokens=libs.Tokenize(" ");
1071 if (pTokens) {
77fd699f 1072 int iEntries=pTokens->GetEntriesFast();
242bb794 1073 for (int i=0; i<iEntries && iResult>=0; i++) {
1074 iResult=fpComponentHandler->LoadLibrary((((TObjString*)pTokens->At(i))->GetString()).Data());
1075 }
1076 delete pTokens;
1077 }
1078 if (iResult>=0) {
1079 SetStatusFlags(kLibrariesLoaded);
1080 } else {
1081 // lets see if we need this, probably not
1082 //fpComponentHandler->UnloadLibraries();
1083 ClearStatusFlags(kLibrariesLoaded);
1084 }
1085 } else {
1086 iResult=-EFAULT;
1087 HLTFatal("no component handler available");
1088 }
1089 } else {
1090 iResult=-EINVAL;
1091 }
1092 return iResult;
1093}
1094
1095int AliHLTSystem::Configure(AliRunLoader* runloader)
dee38f1b 1096{
1097 // see header file for class documentation
f3506ea2 1098 return Configure(NULL, runloader);
dee38f1b 1099}
1100
1101int AliHLTSystem::Configure(AliRawReader* rawReader, AliRunLoader* runloader)
242bb794 1102{
1103 // see header file for class documentation
1104 int iResult=0;
1105 if (CheckStatus(kRunning)) {
1106 HLTError("HLT system in running state, can not configure");
1107 return -EBUSY;
1108 }
e642a402 1109 ClearStatusFlags(kTaskListCreated);
c215072c 1110 if (CheckFilter(kHLTLogDebug))
1111 AliHLTModuleAgent::PrintStatus();
c043fa2c 1112 if (CheckStatus(kConfigurationLoaded)==0) {
dee38f1b 1113 iResult=LoadConfigurations(rawReader, runloader);
c043fa2c 1114 } else {
dee38f1b 1115 if (fChains.Length()==0) {
703bcca6 1116 HLTError("custom configuration(s) specified, but no configuration to run in local reconstruction, use \'chains=<chain,...>\' option");
c043fa2c 1117 iResult=-ENOENT;
1118 }
1119 }
242bb794 1120 if (iResult>=0) {
1121 SetStatusFlags(kConfigurationLoaded);
c043fa2c 1122 if (CheckFilter(kHLTLogDebug))
1123 fpConfigurationHandler->PrintConfigurations();
f3506ea2 1124 iResult=BuildTaskListsFromReconstructionChains(rawReader, runloader);
242bb794 1125 if (iResult>=0) {
1126 SetStatusFlags(kTaskListCreated);
1127 }
1128 }
1129 if (iResult<0) SetStatusFlags(kError);
1130
1131 return iResult;
1132}
1133
c043fa2c 1134int AliHLTSystem::ScanOptions(const char* options)
1135{
1136 // see header file for class documentation
1137 int iResult=0;
1138 if (options) {
d76bc02a 1139 //AliHLTComponentHandler::TLibraryMode libMode=AliHLTComponentHandler::kDynamic;
83670b1d 1140 TString libs("");
f59144fe 1141 TString excludelibs("");
c043fa2c 1142 TString alloptions(options);
1143 TObjArray* pTokens=alloptions.Tokenize(" ");
1144 if (pTokens) {
77fd699f 1145 int iEntries=pTokens->GetEntriesFast();
c043fa2c 1146 for (int i=0; i<iEntries; i++) {
1147 TString token=(((TObjString*)pTokens->At(i))->GetString());
1148 if (token.Contains("loglevel=")) {
1149 TString param=token.ReplaceAll("loglevel=", "");
1150 if (param.IsDigit()) {
1151 SetGlobalLoggingLevel((AliHLTComponentLogSeverity)param.Atoi());
1152 } else if (param.BeginsWith("0x") &&
1153 param.Replace(0,2,"",0).IsHex()) {
1154 int severity=0;
1155 sscanf(param.Data(),"%x", &severity);
1156 SetGlobalLoggingLevel((AliHLTComponentLogSeverity)severity);
1157 } else {
1158 HLTWarning("wrong parameter for option \'loglevel=\', (hex) number expected");
1159 }
dba03d72 1160 } else if (token.Contains("frameworklog=")) {
1161 TString param=token.ReplaceAll("frameworklog=", "");
1162 if (param.IsDigit()) {
1163 SetFrameworkLog((AliHLTComponentLogSeverity)param.Atoi());
1164 } else if (param.BeginsWith("0x") &&
1165 param.Replace(0,2,"",0).IsHex()) {
1166 int severity=0;
1167 sscanf(param.Data(),"%x", &severity);
1168 SetFrameworkLog((AliHLTComponentLogSeverity)severity);
1169 } else {
1170 HLTWarning("wrong parameter for option \'loglevel=\', (hex) number expected");
1171 }
c043fa2c 1172 } else if (token.Contains("alilog=off")) {
1173 SwitchAliLog(0);
1174 } else if (token.Contains("config=")) {
1175 TString param=token.ReplaceAll("config=", "");
1176 Int_t error=0;
1177 gROOT->Macro(param.Data(), &error);
1178 if (error==0) {
1179 SetStatusFlags(kConfigurationLoaded);
1180 } else {
1181 HLTError("can not execute macro \'%s\'", param.Data());
1182 iResult=-EBADF;
1183 }
d85f150c 1184 } else if (token.Contains("chains=")) {
dee38f1b 1185 TString param=token.ReplaceAll("chains=", "");
1186 fChains=param.ReplaceAll(",", " ");
703bcca6 1187 if (fChains.IsNull()) fChains=" "; // disable all chains
dba03d72 1188 } else if (token.Contains("libmode=")) {
1189 TString param=token.ReplaceAll("libmode=", "");
1190 param.ReplaceAll(",", " ");
1191 if (fpComponentHandler) {
1192 if (param.CompareTo("static")==0) {
1193 fpComponentHandler->SetLibraryMode(AliHLTComponentHandler::kStatic);
1194 } else if (param.CompareTo("dynamic")==0) {
1195 fpComponentHandler->SetLibraryMode(AliHLTComponentHandler::kDynamic);
1196 } else {
1197 HLTWarning("wrong argument for option \'libmode=\', use \'static\' or \'dynamic\'");
1198 }
1199 }
c4ffab2c 1200 } else if (token.BeginsWith("ECS=")) {
1201 fECSParams=token.ReplaceAll("ECS=", "");
83670b1d 1202 } else if (token.BeginsWith("lib") && token.EndsWith(".so")) {
1203 libs+=token;
1204 libs+=" ";
f59144fe 1205 } else if (token.BeginsWith("!lib") && token.EndsWith(".so")) {
1206 excludelibs+=token;
1207 excludelibs+=" ";
c043fa2c 1208 } else {
1209 HLTWarning("unknown option \'%s\'", token.Data());
1210 }
1211 }
1212 delete pTokens;
1213 }
83670b1d 1214
1215 if (iResult>=0) {
1216 if (libs.IsNull()) {
6a8e0bb4 1217 const char** deflib=fgkHLTDefaultLibs;
f59144fe 1218 for (;*deflib; deflib++) {
1219 if (excludelibs.Contains(*deflib)) continue;
1220 libs+=*deflib;
83670b1d 1221 libs+=" ";
1222 }
1223 }
1224 if ((!CheckStatus(AliHLTSystem::kLibrariesLoaded)) &&
1225 (LoadComponentLibraries(libs.Data())<0)) {
1226 HLTError("error while loading HLT libraries");
1227 iResult=-EFAULT;
1228 }
1229 }
c043fa2c 1230 }
1231 return iResult;
1232}
1233
242bb794 1234int AliHLTSystem::Reset(int bForce)
1235{
1236 // see header file for class documentation
1237 int iResult=0;
1238 if (!bForce && CheckStatus(kRunning)) {
1239 HLTError("HLT system in running state, can not configure");
1240 return -EBUSY;
1241 }
1242 CleanTaskList();
1243 ClearStatusFlags(~kUninitialized);
1244 return iResult;
1245}
1246
dee38f1b 1247int AliHLTSystem::LoadConfigurations(AliRawReader* rawReader, AliRunLoader* runloader)
242bb794 1248{
1249 // see header file for class documentation
1250 if (CheckStatus(kRunning)) {
1251 HLTError("HLT system in running state, can not configure");
1252 return -EBUSY;
1253 }
1254 int iResult=0;
d5ea63f7 1255 AliHLTModuleAgent* pAgent=NULL;
1256
1257 // first check for the required libraries and load those
1d398268 1258 TString extralibs;
d5ea63f7 1259 for (pAgent=AliHLTModuleAgent::GetFirstAgent();
1260 pAgent && iResult>=0;
1261 pAgent=AliHLTModuleAgent::GetNextAgent()) {
60b26a17 1262 const char* deplibs=pAgent->GetRequiredComponentLibraries();
1263 if (deplibs) {
1d398268 1264 HLTDebug("required libraries \'%s\' for agent %s (%p)", deplibs, pAgent->GetName(), pAgent);
f98abf68 1265 extralibs+=" ";
1d398268 1266 extralibs+=deplibs;
60b26a17 1267 }
242bb794 1268 }
1d398268 1269 if (iResult>=0) {
1270 iResult=LoadComponentLibraries(extralibs.Data());
1271 }
1272
d5ea63f7 1273 // in order to register the configurations in the correct sequence
1274 // all agents need to be ordered with respect to the required
1275 // libraries. Ordering relies on the naming convention
1276 // libAliHLT<Module>.so
1277 TList agents;
1278 for (pAgent=AliHLTModuleAgent::GetFirstAgent();
1279 pAgent && iResult>=0;
1280 pAgent=AliHLTModuleAgent::GetNextAgent()) {
1281 AliHLTModuleAgent* pPrevDep=NULL;
1282 TString dependencies=pAgent->GetRequiredComponentLibraries();
1283 TObjArray* pTokens=dependencies.Tokenize(" ");
1284 if (pTokens) {
1285 for (int n=0; n<pTokens->GetEntriesFast(); n++) {
1286 TString module=((TObjString*)pTokens->At(n))->GetString();
1287 HLTDebug(" checking %s", module.Data());
1288 module.ReplaceAll("libAliHLT", "");
1289 module.ReplaceAll(".so", "");
1290
1291 for (AliHLTModuleAgent* pCurrent=dynamic_cast<AliHLTModuleAgent*>(pPrevDep==NULL?agents.First():agents.After(pPrevDep));
1292 pCurrent!=NULL; pCurrent=dynamic_cast<AliHLTModuleAgent*>(agents.After(pCurrent))) {
1293 HLTDebug(" checking %s == %s", module.Data(), pCurrent->GetModuleId());
1294
1295 if (module.CompareTo(pCurrent->GetModuleId())==0) {
1296 pPrevDep=pCurrent;
1297 break;
1298 }
1299 }
1300 }
1301 delete pTokens;
1302 }
1303
1304 if (pPrevDep) {
1305 // insert right after the last dependency
1306 agents.AddAfter(pPrevDep, pAgent);
1307 HLTDebug("insert %s after %s", pAgent->GetModuleId(), pPrevDep->GetModuleId());
1308 } else {
1309 // insert at the beginning
1310 agents.AddFirst(pAgent);
1311 HLTDebug("insert %s at beginning", pAgent->GetModuleId());
1312 }
1313 }
1314
1315 // now we load the configurations
1316 if (agents.GetEntries()) {
1317 TIter next(&agents);
1318 while ((pAgent = dynamic_cast<AliHLTModuleAgent*>(next()))) {
1319 HLTDebug("load configurations for agent %s (%p)", pAgent->GetName(), pAgent);
1320 pAgent->CreateConfigurations(fpConfigurationHandler, rawReader, runloader);
1321 }
1322 }
1323
242bb794 1324 return iResult;
1325}
1326
f3506ea2 1327int AliHLTSystem::BuildTaskListsFromReconstructionChains(AliRawReader* rawReader, AliRunLoader* runloader)
242bb794 1328{
1329 // see header file for class documentation
1330 if (CheckStatus(kRunning)) {
1331 HLTError("HLT system in running state, can not configure");
1332 return -EBUSY;
1333 }
1334 if (!CheckStatus(kConfigurationLoaded)) {
1335 HLTWarning("configurations not yet loaded");
1336 return 0;
1337 }
1338
1339 int iResult=0;
f3506ea2 1340 int bHaveOutput=0;
1341
1342 // query chains
1343 TString chains;
1344 if (fChains.Length()>0) {
1345 chains=fChains;
8f471af0 1346 HLTImportant("custom reconstruction chain: %s", chains.Data());
f3506ea2 1347 } else {
1348 AliHLTModuleAgent* pAgent=AliHLTModuleAgent::GetFirstAgent();
1349 while ((pAgent || fChains.Length()>0) && iResult>=0) {
1350 const char* agentchains=pAgent->GetReconstructionChains(rawReader, runloader);
1351 if (agentchains) {
703bcca6 1352 if (!chains.IsNull()) chains+=" ";
f3506ea2 1353 chains+=agentchains;
1354 HLTInfo("reconstruction chains for agent %s (%p): %s", pAgent->GetName(), pAgent, agentchains);
1355 }
1356 pAgent=AliHLTModuleAgent::GetNextAgent();
c043fa2c 1357 }
f3506ea2 1358 }
1359
1360 // build task list for chains
1361 TObjArray* pTokens=chains.Tokenize(" ");
1362 if (pTokens) {
77fd699f 1363 int iEntries=pTokens->GetEntriesFast();
f3506ea2 1364 for (int i=0; i<iEntries && iResult>=0; i++) {
1365 const char* pCID=((TObjString*)pTokens->At(i))->GetString().Data();
1366 AliHLTConfiguration* pConf=fpConfigurationHandler->FindConfiguration(pCID);
1367 if (pConf) {
1368 iResult=BuildTaskList(pConf);
f3c1d403 1369 if (true) { // condition was deprecated but kept for sake of svn diff
1370 // bHaveOutput variable has to be set for both running modes
1371 // AliHLTSimulation and AliHLTReconstruction
f3506ea2 1372 assert(fpComponentHandler!=NULL);
1373 TString cid=pConf->GetComponentID();
f3c1d403 1374 if (runloader!=NULL && cid.CompareTo("HLTOUT")==0) {
f3506ea2 1375 // remove from the input of a global HLTOUT configuration
1376 chains.ReplaceAll(pCID, "");
1377 } else if (bHaveOutput==0) {
1378 // check whether this configuration produces data output
1379 if ((bHaveOutput=fpComponentHandler->HasOutputData(cid.Data()))<0) {
1380 bHaveOutput=0;
1381 chains.ReplaceAll(pCID, "");
1382 }
1383 }
242bb794 1384 }
f3506ea2 1385 } else {
1386 HLTWarning("can not find configuration %s", pCID);
242bb794 1387 }
242bb794 1388 }
f3506ea2 1389 delete pTokens;
1390 }
1391
1392 // build HLTOUT for simulation
1393 if (iResult>=0 && runloader) {
1394 if (bHaveOutput) {
1395 // there are components in the chain which produce data which need to be
1396 // piped to an HLTOUT
e0e92eab 1397
1398 // add the SchemaEvolutionComponent which analyzes the ROOT objects in
1399 // the output stream
1400 if (fpComponentHandler->FindComponentIndex("ROOTSchemaEvolutionComponent")>=0 ||
1401 fpComponentHandler->LoadLibrary("libAliHLTUtil.so")>=0) {
1402 AliHLTConfiguration schemaevo("_schemaevolution_", "ROOTSchemaEvolutionComponent",
1403 chains.Data(), "-file=HLT.StreamerInfo.root");
1404 iResult=BuildTaskList("_schemaevolution_");
1405 } else {
1406 HLTWarning("can not load libAliHLTUtil.so and ROOTSchemaEvolutionComponent");
1407 }
1408
1409 // add the HLTOUT component
f3506ea2 1410 if (fpComponentHandler->FindComponentIndex("HLTOUT")>=0 ||
703bcca6 1411 fpComponentHandler->LoadLibrary("libHLTsim.so")>=0) {
f3506ea2 1412 AliHLTConfiguration globalout("_globalout_", "HLTOUT", chains.Data(), NULL);
1413 iResult=BuildTaskList("_globalout_");
1414 } else {
1415 HLTError("can not load libHLTsim.so and HLTOUT component");
1416 iResult=-EFAULT;
1417 }
c043fa2c 1418 }
242bb794 1419 }
f3506ea2 1420
f3c1d403 1421 // build HLTOUT task for reconstruction
1422 // Matthias 08.07.2008 the rawReader is never set when running embedded into
1423 // AliReconstruction. The system is configured during AliHLTReconstructor::Init
1424 // where the RawReader is not available. It is available in the first invocation
1425 // of Reconstruct.
1426 //
1427 // That means that policy is slightly changed:
1428 // - if the run loader is available -> AliSimulation
1429 // - no run loader available -> AliReconstruction
1430 if (iResult>=0 && !runloader) {
1431 if (bHaveOutput) {
1432 // there are components in the chain which produce data which need to be
1433 // piped to an HLTOUT sub-collection
1434 if (!fpHLTOUTTask) {
19b5c321 1435 iResult=AddHLTOUTTask(chains.Data());
f3c1d403 1436 }
1437 }
1438 }
1439
242bb794 1440 if (iResult>=0) SetStatusFlags(kTaskListCreated);
1441
1442 return iResult;
1443}
1444
19b5c321 1445int AliHLTSystem::AddHLTOUTTask(const char* hltoutchains)
1446{
1447 // see header file for class documentation
1448 int iResult=0;
1449 if (!hltoutchains || hltoutchains[0]==0) return 0;
1450
1451 // check chains for output
1452 TString chains=hltoutchains;
1453 TObjArray* pTokens=chains.Tokenize(" ");
1454 if (pTokens) {
77fd699f 1455 int iEntries=pTokens->GetEntriesFast();
19b5c321 1456 for (int i=0; i<iEntries && iResult>=0; i++) {
1457 const char* token=((TObjString*)pTokens->At(i))->GetString().Data();
1458 AliHLTConfiguration* pConf=fpConfigurationHandler->FindConfiguration(token);
1459 if (pConf) {
1460 TString cid=pConf->GetComponentID();
1461 if (fpComponentHandler->HasOutputData(cid.Data())) {
1462 continue;
1463 }
1464 } else {
1465 HLTWarning("can not find configuration %s", token);
1466 }
1467 // remove from the list of hltout chains
1468 chains.ReplaceAll(token, "");
1469 }
1470 delete pTokens;
1471 }
1472
1473 // do not create the HLTOUT task if none of the chains have output
1474 if (chains.IsNull()) return 0;
1475
1476 // indicate the task to be available
1477 iResult=1;
1478
1479 if (fpHLTOUTTask) {
1480 if (strcmp(chains.Data(), fpHLTOUTTask->GetSourceChains())==0) {
1481 HLTWarning("HLTOUT task already added for chains \"%s\" %p", chains.Data(), fpHLTOUTTask);
1482 } else {
1483 HLTError("HLTOUT task already added for chains \"%s\" %p, ignoring new chains \"%s\"",
1484 fpHLTOUTTask->GetSourceChains(), fpHLTOUTTask, chains.Data());
1485 }
1486 return iResult;
1487 }
1488
1489 fpHLTOUTTask=new AliHLTOUTTask(chains);
1490 if (fpHLTOUTTask) {
1491 if (fpHLTOUTTask->GetConf() && fpHLTOUTTask->GetConf()->SourcesResolved()>=0) {
1492 iResult=InsertTask(fpHLTOUTTask);
1493 } else {
1494 HLTError("HLTOUT task (%s) sources not resolved", fpHLTOUTTask->GetName());
1495 iResult=-ENOENT;
1496 }
1497
1498 if (iResult<0) {
1499 delete fpHLTOUTTask;
1500 }
1501
1502 } else {
1503 iResult=-ENOMEM;
1504 }
1505 return iResult;
1506}
1507
242bb794 1508int AliHLTSystem::CheckStatus(int flag)
1509{
1510 // see header file for class documentation
1511 if (flag==kUninitialized && flag==fState) return 1;
1512 if ((fState&flag)==flag) return 1;
1513 return 0;
1514}
1515
1516int AliHLTSystem::GetStatusFlags()
1517{
1518 // see header file for class documentation
1519 return fState;
1520}
1521
1522int AliHLTSystem::SetStatusFlags(int flags)
1523{
1524 // see header file for class documentation
1525 fState|=flags;
1526 return fState;
1527}
1528
1529int AliHLTSystem::ClearStatusFlags(int flags)
1530{
1531 // see header file for class documentation
1532 fState&=~flags;
1533 return fState;
1534}
85f0cede 1535
f331e6c5 1536AliHLTfctVoid AliHLTSystem::FindDynamicSymbol(const char* library, const char* symbol)
85f0cede 1537{
c043fa2c 1538 // see header file for class documentation
85f0cede 1539 if (fpComponentHandler==NULL) return NULL;
1540 return fpComponentHandler->FindSymbol(library, symbol);
1541}
dba03d72 1542
1543void AliHLTSystem::SetFrameworkLog(AliHLTComponentLogSeverity level)
1544{
6a8e0bb4 1545 // see header file for class documentation
dba03d72 1546 SetLocalLoggingLevel(level);
1547 if (fpComponentHandler) fpComponentHandler->SetLocalLoggingLevel(level);
1548 if (fpConfigurationHandler) fpConfigurationHandler->SetLocalLoggingLevel(level);
1549}
97d2b87a 1550
1551int AliHLTSystem::LoggingVarargs(AliHLTComponentLogSeverity severity,
1552 const char* originClass, const char* originFunc,
1553 const char* file, int line, ... ) const
1554{
1555 // see header file for function documentation
1556 int iResult=0;
1557
1558 va_list args;
1559 va_start(args, line);
1560
1561 if (!fName.IsNull())
7efb6418 1562 AliHLTLogging::SetLogString(this, " (%p)", "%s_pfmt_: ", fName.Data());
97d2b87a 1563 iResult=SendMessage(severity, originClass, originFunc, file, line, AliHLTLogging::BuildLogString(NULL, args, !fName.IsNull() /*append if non empty*/));
1564 va_end(args);
1565
1566 return iResult;
1567}