]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTComponentHandler.cxx
deleting deprecated and uneffective defines
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTComponentHandler.cxx
CommitLineData
f23a6e1a 1// $Id$
2
c515df4c 3//**************************************************************************
4//* This file is property of and copyright by the *
5//* ALICE Experiment at CERN, All rights reserved. *
6//* *
7//* Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8//* Timm Steinbeck <timm@kip.uni-heidelberg.de> *
9//* for The ALICE HLT Project. *
10//* *
11//* Permission to use, copy, modify and distribute this software and its *
12//* documentation strictly for non-commercial purposes is hereby granted *
13//* without fee, provided that the above copyright notice appears in all *
14//* copies and that both the copyright notice and this permission notice *
15//* appear in the supporting documentation. The authors make no claims *
16//* about the suitability of this software for any purpose. It is *
17//* provided "as is" without express or implied warranty. *
18//**************************************************************************
f23a6e1a 19
28cd9358 20/// @file AliHLTComponentHandler.cxx
21/// @author Matthias Richter, Timm Steinbeck
22/// @date
23/// @brief Implementation of HLT component handler.
24///
f23a6e1a 25
53feaef5 26//#undef HAVE_DLFCN_H
27#ifdef HAVE_DLFCN_H
f23a6e1a 28#include <dlfcn.h>
53feaef5 29#else
30//#include <Riostream.h>
31#include <TSystem.h>
32#endif //HAVE_DLFCN_H
f23a6e1a 33#include "AliHLTComponentHandler.h"
34#include "AliHLTComponent.h"
35#include "AliHLTDataTypes.h"
f3506ea2 36#include "AliHLTModuleAgent.h"
5df0cbb9 37#include "TString.h"
f23a6e1a 38
b22e91eb 39/** ROOT macro for the implementation of ROOT specific class methods */
f23a6e1a 40ClassImp(AliHLTComponentHandler)
41
42AliHLTComponentHandler::AliHLTComponentHandler()
85869391 43 :
44 fComponentList(),
45 fScheduleList(),
46 fLibraryList(),
9ce4bf4a 47 fEnvironment(),
620fcee6 48 fOwnedComponents(),
45c0a780 49 fLibraryMode(kDynamic),
50 fRunDesc(kAliHLTVoidRunDesc),
51 fRunType(NULL)
f23a6e1a 52{
70ed7d01 53 // see header file for class documentation
54 // or
55 // refer to README to build package
56 // or
57 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
a3c9b745 58 memset(&fEnvironment, 0, sizeof(AliHLTAnalysisEnvironment));
59 fEnvironment.fStructSize=sizeof(AliHLTAnalysisEnvironment);
9ce4bf4a 60 AddStandardComponents();
f23a6e1a 61}
62
a3c9b745 63AliHLTComponentHandler::AliHLTComponentHandler(AliHLTAnalysisEnvironment* pEnv)
3cde846d 64 :
298ef463 65 AliHLTLogging(),
3cde846d 66 fComponentList(),
67 fScheduleList(),
68 fLibraryList(),
69 fEnvironment(),
620fcee6 70 fOwnedComponents(),
45c0a780 71 fLibraryMode(kDynamic),
72 fRunDesc(kAliHLTVoidRunDesc),
73 fRunType(NULL)
3cde846d 74{
c515df4c 75 // constructor with environment
3cde846d 76 if (pEnv) {
a3c9b745 77 memcpy(&fEnvironment, pEnv, sizeof(AliHLTAnalysisEnvironment));
fa274626 78 if (pEnv->fLoggingFunc) {
79 // the AliHLTLogging::Init method also sets the stream output
80 // and notification handler to AliLog. This should only be done
81 // if the logging environment contains a logging function
82 // for redirection
83 AliHLTLogging::Init(pEnv->fLoggingFunc);
84 }
f3506ea2 85 } else {
a3c9b745 86 memset(&fEnvironment, 0, sizeof(AliHLTAnalysisEnvironment));
87 fEnvironment.fStructSize=sizeof(AliHLTAnalysisEnvironment);
f3506ea2 88 }
89 //#ifndef __DEBUG
90 //SetLocalLoggingLevel(kHLTLogError);
91 //#else
92 //SetLocalLoggingLevel(kHLTLogInfo);
93 //#endif
94
3cde846d 95 AddStandardComponents();
96}
97
f23a6e1a 98AliHLTComponentHandler::~AliHLTComponentHandler()
99{
c515df4c 100 // destructor
cbd84228 101 DeleteOwnedComponents();
a742f6f8 102 UnloadLibraries();
45c0a780 103 if (fRunType) delete [] fRunType;
104 fRunType=NULL;
f23a6e1a 105}
106
b005ef92 107AliHLTComponentHandler* AliHLTComponentHandler::fgpInstance=NULL;
108int AliHLTComponentHandler::fgNofInstances=0;
109
110AliHLTComponentHandler* AliHLTComponentHandler::CreateHandler()
111{
c515df4c 112 // create global instance of handler
b005ef92 113 if (!fgpInstance) fgpInstance=new AliHLTComponentHandler;
114 fgNofInstances++;
115 return fgpInstance;
116}
117
118int AliHLTComponentHandler::Destroy()
119{
153e7db5 120 // destroy/delete 'this', checks if 'this' pointer is the global instance,
121 // reduce the instance counter and delete if there are no instances left
122 // IMPORTANT: the object must be considered self-destroyed after the function
b005ef92 123 int nofInstances=0;
124 if (fgpInstance==this) {
153e7db5 125 nofInstances=--fgNofInstances;
b005ef92 126 }
153e7db5 127 if (fgNofInstances==0) fgpInstance=NULL;
b005ef92 128 if (nofInstances==0) delete this;
129 return nofInstances;
130}
131
fa760045 132int AliHLTComponentHandler::AnnounceVersion()
133{
c515df4c 134 // printout for version
fa760045 135 int iResult=0;
136#ifdef PACKAGE_STRING
179be78e 137 extern void HLTbaseCompileInfo( const char*& date, const char*& time);
138 const char* date="";
139 const char* time="";
fa760045 140 HLTbaseCompileInfo(date, time);
141 if (!date) date="unknown";
142 if (!time) time="unknown";
b2065764 143 HLTImportant("%s build on %s (%s)", PACKAGE_STRING, date, time);
fa760045 144#else
b2065764 145 HLTImportant("ALICE High Level Trigger build on %s (%s) (embedded AliRoot build)", __DATE__, __TIME__);
fa760045 146#endif
147 return iResult;
148}
149
f3506ea2 150Int_t AliHLTComponentHandler::AddComponent(AliHLTComponent* pSample)
151{
c515df4c 152 // add and register a component, handler becomes owner
f3506ea2 153 Int_t iResult=0;
cbd84228 154 if (pSample==NULL) return -EINVAL;
f3506ea2 155 if ((iResult=RegisterComponent(pSample))>=0) {
cbd84228 156 //HLTDebug("sample %s (%p) managed by handler", pSample->GetComponentID(), pSample);
f3506ea2 157 fOwnedComponents.push_back(pSample);
158 }
159 return iResult;
160}
161
f23a6e1a 162Int_t AliHLTComponentHandler::RegisterComponent(AliHLTComponent* pSample)
163{
c515df4c 164 // register a component, handler creates clone of sample
f23a6e1a 165 Int_t iResult=0;
166 if (pSample) {
167 if (FindComponent(pSample->GetComponentID())==NULL) {
168 iResult=InsertComponent(pSample);
169 if (iResult>=0) {
85465857 170 HLTInfo("component %s registered", pSample->GetComponentID());
f23a6e1a 171 }
172 } else {
173 // component already registered
fa760045 174 HLTDebug("component %s already registered, skipped", pSample->GetComponentID());
f23a6e1a 175 iResult=-EEXIST;
176 }
177 } else {
178 iResult=-EINVAL;
179 }
180 return iResult;
181}
182
183int AliHLTComponentHandler::DeregisterComponent( const char* componentID )
184{
c515df4c 185 // deregister component
5df0cbb9 186
53feaef5 187 int iResult=0;
188 if (componentID) {
5df0cbb9 189 HLTWarning("not yet implemented, please notify the developers if you need this function");
53feaef5 190 } else {
191 iResult=-EINVAL;
192 }
193 return iResult;
f23a6e1a 194}
195
196Int_t AliHLTComponentHandler::ScheduleRegister(AliHLTComponent* pSample)
197{
c515df4c 198 // schedule registration
f23a6e1a 199 Int_t iResult=0;
200 if (pSample) {
201 fScheduleList.push_back(pSample);
202 } else {
203 iResult=-EINVAL;
204 }
205 return iResult;
206}
207
9a0ef890 208int AliHLTComponentHandler::CreateComponent(const char* componentID, void* pEnvParam, int argc, const char** argv, AliHLTComponent*& component)
209{
c515df4c 210 // create a component
9a0ef890 211 int iResult=CreateComponent(componentID, component);
212 if (iResult>=0 && component) {
213 HLTDebug("component \"%s\" created (%p)", componentID, component);
214 if ((iResult=component->Init(&fEnvironment, pEnvParam, argc, argv))!=0) {
215 HLTError("Initialization of component \"%s\" failed with error %d", componentID, iResult);
216 delete component;
217 component=NULL;
218 }
219 }
220 return iResult;
221}
222
223int AliHLTComponentHandler::CreateComponent(const char* componentID, AliHLTComponent*& component )
f23a6e1a 224{
c515df4c 225 // create a component
f23a6e1a 226 int iResult=0;
227 if (componentID) {
228 AliHLTComponent* pSample=FindComponent(componentID);
229 if (pSample!=NULL) {
230 component=pSample->Spawn();
231 if (component) {
85465857 232 HLTDebug("component \"%s\" created (%p)", componentID, component);
5ec8e281 233 } else {
85465857 234 HLTError("can not spawn component \"%s\"", componentID);
5ec8e281 235 iResult=-ENOENT;
f23a6e1a 236 }
5ec8e281 237 } else {
85465857 238 HLTWarning("can not find component \"%s\"", componentID);
5ec8e281 239 iResult=-ENOENT;
f23a6e1a 240 }
241 } else {
242 iResult=-EINVAL;
243 }
244 return iResult;
245}
246
db16520a 247Int_t AliHLTComponentHandler::FindComponentIndex(const char* componentID)
f23a6e1a 248{
c515df4c 249 // find component by ID in the list and return index
f23a6e1a 250 Int_t iResult=0;
251 if (componentID) {
7bcd6cad 252 AliHLTComponentPList::iterator element=fComponentList.begin();
f23a6e1a 253 while (element!=fComponentList.end() && iResult>=0) {
254 if (strcmp(componentID, (*element)->GetComponentID())==0) {
255 break;
256 }
257 element++;
258 iResult++;
259 }
260 if (element==fComponentList.end()) iResult=-ENOENT;
261 } else {
262 iResult=-EINVAL;
263 }
264 return iResult;
265}
266
db16520a 267AliHLTComponent* AliHLTComponentHandler::FindComponent(const char* componentID)
f23a6e1a 268{
c515df4c 269 // find component sample by ID
f23a6e1a 270 AliHLTComponent* pSample=NULL;
271 Int_t index=FindComponentIndex(componentID);
272 if (index>=0) {
273 pSample=(AliHLTComponent*)fComponentList.at(index);
274 }
275 return pSample;
276}
277
278Int_t AliHLTComponentHandler::InsertComponent(AliHLTComponent* pSample)
279{
c515df4c 280 // insert a component sample in the list
f23a6e1a 281 Int_t iResult=0;
282 if (pSample!=NULL) {
283 fComponentList.push_back(pSample);
284 } else {
285 iResult=-EINVAL;
286 }
287 return iResult;
288}
289
70ed7d01 290void AliHLTComponentHandler::List()
291{
c515df4c 292 // print list content
293 // TODO: implement Print()
7bcd6cad 294 AliHLTComponentPList::iterator element=fComponentList.begin();
f23a6e1a 295 int index=0;
296 while (element!=fComponentList.end()) {
85465857 297 HLTInfo("%d. %s", index++, (*element++)->GetComponentID());
f23a6e1a 298 }
299}
300
f3506ea2 301int AliHLTComponentHandler::HasOutputData( const char* componentID)
302{
c515df4c 303 // check if a component has output data
f3506ea2 304 int iResult=0;
305 AliHLTComponent* pSample=FindComponent(componentID);
306 if (pSample) {
307 AliHLTComponent::TComponentType ct=AliHLTComponent::kUnknown;
308 ct=pSample->GetComponentType();
309 iResult=(ct==AliHLTComponent::kSource || ct==AliHLTComponent::kProcessor);
310 } else {
311 iResult=-ENOENT;
312 }
313 return iResult;
314}
315
a3c9b745 316void AliHLTComponentHandler::SetEnvironment(AliHLTAnalysisEnvironment* pEnv)
70ed7d01 317{
c515df4c 318 // set global environment
f23a6e1a 319 if (pEnv) {
a3c9b745 320 memset(&fEnvironment, 0, sizeof(AliHLTAnalysisEnvironment));
321 memcpy(&fEnvironment, pEnv, pEnv->fStructSize<sizeof(AliHLTAnalysisEnvironment)?pEnv->fStructSize:sizeof(AliHLTAnalysisEnvironment));
322 fEnvironment.fStructSize=sizeof(AliHLTAnalysisEnvironment);
fa274626 323 if (fEnvironment.fLoggingFunc) {
324 // the AliHLTLogging::Init method also sets the stream output
325 // and notification handler to AliLog. This should only be done
326 // if the logging environment contains a logging function
327 // for redirection
328 AliHLTLogging::Init(fEnvironment.fLoggingFunc);
329 }
f23a6e1a 330 }
331}
332
dba03d72 333AliHLTComponentHandler::TLibraryMode AliHLTComponentHandler::SetLibraryMode(TLibraryMode mode)
334{
c515df4c 335 // set library mode
dba03d72 336 TLibraryMode old=fLibraryMode;
337 fLibraryMode=mode;
338 return old;
339}
340
f3506ea2 341int AliHLTComponentHandler::LoadLibrary( const char* libraryPath, int bActivateAgents)
f23a6e1a 342{
c515df4c 343 // load a library
f23a6e1a 344 int iResult=0;
345 if (libraryPath) {
7dbfa7c9 346 TString libName=libraryPath;
347 int slash=-1;
348 while ((slash=libName.Index("/"))>=0) {
349 libName=libName.Remove(0, slash+1);
350 }
351 libName.ReplaceAll(".so","");
f3506ea2 352
353 // set the global component handler for static component registration
f23a6e1a 354 AliHLTComponent::SetGlobalComponentHandler(this);
f3506ea2 355
c215072c 356 AliHLTLibHandle hLib;
d4a18597 357 AliHLTLibHandle* phSearch=FindLibrary(libraryPath);
85f0cede 358 const char* loadtype="";
53feaef5 359#ifdef HAVE_DLFCN_H
360 // use interface to the dynamic linking loader
13398559 361
362 // exeption does not help in Root context, the Root exeption
363 // handler always catches the exeption before. Have to find out
364 // how exeptions can be used in Root
365 /*try*/ {
f3506ea2 366 hLib.fHandle=dlopen(libraryPath, RTLD_NOW);
367 loadtype="dlopen";
368 }
13398559 369 /*
f3506ea2 370 catch (...) {
371 // error message printed further down
372 loadtype="dlopen exeption";
373 }
13398559 374 */
53feaef5 375#else
376 // use ROOT dynamic loader
c215072c 377 // check if the library was already loaded, as Load returns
378 // 'failure' if the library was already loaded
13398559 379 /*try*/ {
d4a18597 380 if (phSearch) {
381 int* pRootHandle=reinterpret_cast<int*>(phSearch->fHandle);
c215072c 382 (*pRootHandle)++;
383 HLTDebug("instance %d of library %s loaded", (*pRootHandle), libraryPath);
5df0cbb9 384 hLib.fHandle=pRootHandle;
c215072c 385 }
386
107e2b1c 387 if (hLib.fHandle==NULL && gSystem->Load(libraryPath)>=0) {
c215072c 388 int* pRootHandle=new int;
389 if (pRootHandle) *pRootHandle=1;
5df0cbb9 390 hLib.fHandle=pRootHandle;
85f0cede 391 //HLTDebug("library %s loaded via gSystem", libraryPath);
53feaef5 392 }
85f0cede 393 loadtype="gSystem";
f3506ea2 394 }
13398559 395 /*
f3506ea2 396 catch (...) {
397 // error message printed further down
398 loadtype="gSystem exeption";
399 }
13398559 400 */
53feaef5 401#endif //HAVE_DLFCN_H
5df0cbb9 402 if (hLib.fHandle!=NULL) {
c215072c 403 // create TString object to store library path and use pointer as handle
5df0cbb9 404 hLib.fName=new TString(libraryPath);
dba03d72 405 hLib.fMode=fLibraryMode;
c215072c 406 fLibraryList.insert(fLibraryList.begin(), hLib);
d4a18597 407 if (!phSearch) {
179be78e 408 typedef void (*CompileInfo)(const char*& date, const char*& time);
842fd76a 409 CompileInfo fctInfo=(CompileInfo)FindSymbol(libraryPath, "CompileInfo");
7dbfa7c9 410 const char* date="";
411 const char* time="";
412 const char* buildOn="";
842fd76a 413 if (fctInfo) {
7dbfa7c9 414 buildOn=" build on ";
842fd76a 415 (*fctInfo)(date, time);
416 if (!date) date="unknown";
417 if (!time) time="unknown";
842fd76a 418 }
7dbfa7c9 419 HLTImportant("using %s plugin%s%s %s (%s%s)", libraryPath, buildOn, date, time, hLib.fMode==kStatic?"persistent, ":"", loadtype);
d4a18597 420 }
f3506ea2 421
422 // static registration of components when library is loaded
9ce4bf4a 423 iResult=RegisterScheduledComponents();
f3506ea2 424
f23a6e1a 425 } else {
f3506ea2 426 HLTError("can not load library %s (%s)", libraryPath, loadtype);
53feaef5 427#ifdef HAVE_DLFCN_H
85465857 428 HLTError("dlopen error: %s", dlerror());
53feaef5 429#endif //HAVE_DLFCN_H
0fe88043 430#ifdef __APPLE__
431 iResult=-EFTYPE;
432#else
f23a6e1a 433 iResult=-ELIBACC;
0fe88043 434#endif
f23a6e1a 435 }
2bbbadd1 436 AliHLTComponent::UnsetGlobalComponentHandler();
f3506ea2 437
438 if (iResult>=0) {
439 // alternative dynamic registration by library agents
440 // !!! has to be done after UnsetGlobalComponentHandler
7dbfa7c9 441 if (bActivateAgents) ActivateAgents(libName.Data());
f3506ea2 442 }
443
f23a6e1a 444 } else {
445 iResult=-EINVAL;
446 }
447 return iResult;
448}
449
450int AliHLTComponentHandler::UnloadLibrary( const char* libraryPath )
451{
c515df4c 452 // unload a library
f23a6e1a 453 int iResult=0;
53feaef5 454 if (libraryPath) {
a742f6f8 455 vector<AliHLTLibHandle>::iterator element=fLibraryList.begin();
456 while (element!=fLibraryList.end()) {
5df0cbb9 457 TString* pName=reinterpret_cast<TString*>((*element).fName);
a742f6f8 458 if (pName->CompareTo(libraryPath)==0) {
459 UnloadLibrary(*element);
460 fLibraryList.erase(element);
461 break;
462 }
463 element++;
464 }
53feaef5 465 } else {
466 iResult=-EINVAL;
467 }
f23a6e1a 468 return iResult;
469}
470
a742f6f8 471int AliHLTComponentHandler::UnloadLibrary(AliHLTComponentHandler::AliHLTLibHandle &handle)
f23a6e1a 472{
c515df4c 473 // unload a library
f23a6e1a 474 int iResult=0;
a742f6f8 475 fgAliLoggingFunc=NULL;
5df0cbb9 476 TString* pName=reinterpret_cast<TString*>(handle.fName);
dba03d72 477 if (handle.fMode!=kStatic) {
53feaef5 478#ifdef HAVE_DLFCN_H
13398559 479 // exeption does not help in Root context, the Root exeption
480 // handler always catches the exeption before. Have to find out
481 // how exeptions can be used in Root
482
483 /*try*/ {
f3506ea2 484 dlclose(handle.fHandle);
485 }
13398559 486 /*
f3506ea2 487 catch (...) {
488 HLTError("exeption caught during dlclose of library %s", pName!=NULL?pName->Data():"");
489 }
13398559 490 */
53feaef5 491#else
5df0cbb9 492 int* pCount=reinterpret_cast<int*>(handle.fHandle);
a742f6f8 493 if (--(*pCount)==0) {
c215072c 494 if (pName) {
a7222a6d 495 /** Matthias 26.04.2007
496 * I spent about a week to investigate a bug which seems to be in ROOT.
497 * Under certain circumstances, TSystem::Unload crashes. The crash occured
498 * for the first time, when libAliHLTUtil was loaded from AliHLTSystem right
499 * after the ComponentHandler was created. It does not occur when dlopen is
500 * used.
501 * It has most likely to do with the garbage collection and automatic
502 * cleanup in ROOT. The crash occurs when ROOT is terminated and before
503 * an instance of AliHLTSystem was created.
504 * root [0] AliHLTSystem gHLT
505 * It does not occur when the instance was created dynamically (but not even
506 * deleted)
507 * root [0] AliHLTSystem* gHLT=new AliHLTSystem
508 *
509 * For that reason, the libraries are not unloaded here, even though there
510 * will be memory leaks.
a742f6f8 511 gSystem->Unload(pName->Data());
a7222a6d 512 */
a742f6f8 513 }
514 else {
515 HLTError("missing library name, can not unload");
c215072c 516 }
a742f6f8 517 delete pCount;
518 }
519#endif //HAVE_DLFCN_H
a742f6f8 520 if (pName) {
521 HLTDebug("unload library %s", pName->Data());
a742f6f8 522 } else {
523 HLTWarning("missing name for unloaded library");
524 }
dba03d72 525 }
526 handle.fName=NULL;
527 handle.fHandle=NULL;
528 if (pName) {
529 delete pName;
530 }
a742f6f8 531 pName=NULL;
532 return iResult;
533}
534
535int AliHLTComponentHandler::UnloadLibraries()
536{
c515df4c 537 // unload all libraries
a742f6f8 538 int iResult=0;
539 vector<AliHLTLibHandle>::iterator element=fLibraryList.begin();
540 while (element!=fLibraryList.end()) {
541 UnloadLibrary(*element);
c215072c 542 fLibraryList.erase(element);
543 element=fLibraryList.begin();
f23a6e1a 544 }
545 return iResult;
546}
9ce4bf4a 547
f331e6c5 548AliHLTfctVoid AliHLTComponentHandler::FindSymbol(const char* library, const char* symbol)
85f0cede 549{
c515df4c 550 // find symbol in library
85f0cede 551 AliHLTLibHandle* hLib=FindLibrary(library);
552 if (hLib==NULL) return NULL;
d93ec7ca 553 void (*pFunc)()=NULL;
85f0cede 554#ifdef HAVE_DLFCN_H
d93ec7ca 555 pFunc=(void (*)())dlsym(hLib->fHandle, symbol);
85f0cede 556#else
5df0cbb9 557 TString* name=reinterpret_cast<TString*>(hLib->fName);
d93ec7ca 558 pFunc=(void (*)())gSystem->DynFindSymbol(name->Data(), symbol);
85f0cede 559#endif
560 return pFunc;
561}
562
563AliHLTComponentHandler::AliHLTLibHandle* AliHLTComponentHandler::FindLibrary(const char* library)
564{
c515df4c 565 // find a library by name
85f0cede 566 AliHLTLibHandle* hLib=NULL;
567 vector<AliHLTLibHandle>::iterator element=fLibraryList.begin();
568 while (element!=fLibraryList.end()) {
5df0cbb9 569 TString* name=reinterpret_cast<TString*>((*element).fName);
85f0cede 570 if (name->CompareTo(library)==0) {
571 hLib=&(*element);
572 break;
573 }
574 element++;
575 }
576 return hLib;
577}
578
9ce4bf4a 579int AliHLTComponentHandler::AddStandardComponents()
580{
c515df4c 581 // TODO: not quite clear what was the meaning behind this function
9ce4bf4a 582 int iResult=0;
583 AliHLTComponent::SetGlobalComponentHandler(this);
9ce4bf4a 584 AliHLTComponent::UnsetGlobalComponentHandler();
585 iResult=RegisterScheduledComponents();
586 return iResult;
587}
588
589int AliHLTComponentHandler::RegisterScheduledComponents()
590{
c515df4c 591 // register all scheduled components
9ce4bf4a 592 int iResult=0;
7bcd6cad 593 AliHLTComponentPList::iterator element=fScheduleList.begin();
9ce4bf4a 594 int iLocalResult=0;
595 while (element!=fScheduleList.end()) {
596 iLocalResult=RegisterComponent(*element);
597 if (iResult==0) iResult=iLocalResult;
598 fScheduleList.erase(element);
599 element=fScheduleList.begin();
600 }
601 return iResult;
602}
603
7dbfa7c9 604int AliHLTComponentHandler::ActivateAgents(const char* library, const char* blackList)
f3506ea2 605{
c515df4c 606 // activate module agents
7dbfa7c9 607 vector<AliHLTModuleAgent*> agents;
608 for (AliHLTModuleAgent* pAgent=AliHLTModuleAgent::GetFirstAgent();
9ebd6403 609 pAgent!=NULL;
7dbfa7c9 610 pAgent=AliHLTModuleAgent::GetNextAgent()) {
611
612 // check if we found the agent for the specified library
613 if (library) {
614 TString check="libAliHLT"; check+=pAgent->GetModuleId();
615 if (check.CompareTo(library)==0) {
616 agents.clear();
617 agents.push_back(pAgent);
618 break;
f3506ea2 619 }
7dbfa7c9 620 }
621
622 // check if the current agent is in the black list
623 if (blackList) {
585525d0 624 const char* found=strstr(blackList, pAgent->GetModuleId());
7dbfa7c9 625 if (found) {
626 found+=strlen(pAgent->GetModuleId());
627 // skip this agent as it is in the blacklist
628 if (*found==0 or *found==' ') continue;
f3506ea2 629 }
630 }
7dbfa7c9 631 agents.push_back(pAgent);
632 }
f3506ea2 633
7dbfa7c9 634 for (vector<AliHLTModuleAgent*>::iterator element=agents.begin();
635 element!=agents.end(); element++) {
636 (*element)->ActivateComponentHandler(this);
f3506ea2 637 }
7dbfa7c9 638
639 return agents.size();
f3506ea2 640}
641
cbd84228 642int AliHLTComponentHandler::DeleteOwnedComponents()
9ce4bf4a 643{
c515df4c 644 // delete all component samples owned by the handler
9ce4bf4a 645 int iResult=0;
7bcd6cad 646 AliHLTComponentPList::iterator element=fOwnedComponents.begin();
f3506ea2 647 while (element!=fOwnedComponents.end()) {
5df0cbb9 648 //DeregisterComponent((*element)->GetComponentID());
13398559 649 // exeption does not help in Root context, the Root exeption
650 // handler always catches the exeption before. Have to find out
651 // how exeptions can be used in Root
652 /*try*/ {
cbd84228 653 delete *element;
654 }
13398559 655 /*
cbd84228 656 catch (...) {
657 HLTError("delete managed sample %p", *element);
658 }
13398559 659 */
f3506ea2 660 fOwnedComponents.erase(element);
661 element=fOwnedComponents.begin();
9ce4bf4a 662 }
663 return iResult;
664}
45c0a780 665
666int AliHLTComponentHandler::SetRunDescription(const AliHLTRunDesc* desc, const char* runType)
667{
c515df4c 668 // set global run description
45c0a780 669 if (!desc) return -EINVAL;
670 if (desc->fStructSize!=sizeof(AliHLTRunDesc)) {
671 HLTError("invalid size of RunDesc struct (%ul)", desc->fStructSize);
672 return -EINVAL;
673 }
674
675 memcpy(&fRunDesc, desc, sizeof(AliHLTRunDesc));
676 if (runType) {
677 if (fRunType) delete [] fRunType;
678 fRunType=new char[sizeof(runType)+1];
679 if (fRunType) {
680 strcpy(fRunType, runType);
681 }
682 }
683 return 0;
684}