]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/AliHLTComponentHandler.cxx
added support for symbol lookup in dynamically loaded libraries; minor warning removed
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTComponentHandler.cxx
1 // $Id$
2
3 /**************************************************************************
4  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  *                                                                        *
6  * Authors: Matthias Richter <Matthias.Richter@ift.uib.no>                *
7  *          Timm Steinbeck <timm@kip.uni-heidelberg.de>                   *
8  *          for The ALICE Off-line 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  **************************************************************************/
18
19 /** @file   AliHLTComponentHandler.cxx
20     @author Matthias Richter, Timm Steinbeck
21     @date   
22     @brief  Implementation of HLT component handler. */
23
24 #if __GNUC__>= 3
25 using namespace std;
26 #endif
27 //#undef HAVE_DLFCN_H
28 #ifdef HAVE_DLFCN_H
29 #include <dlfcn.h>
30 #else
31 //#include <Riostream.h>
32 #include <TSystem.h>
33 #endif //HAVE_DLFCN_H
34 #include "AliHLTStdIncludes.h"
35 #include "AliHLTComponentHandler.h"
36 #include "AliHLTComponent.h"
37 #include "AliHLTDataTypes.h"
38 #include "AliHLTSystem.h"
39
40 // the standard components
41 // #include "AliHLTFilePublisher.h"
42 #include "AliHLTFileWriter.h"
43 // #include "AliHLTRootFilePublisherComponent.h"
44 // #include "AliHLTRootFileWriterComponent.h"
45
46 /** ROOT macro for the implementation of ROOT specific class methods */
47 ClassImp(AliHLTComponentHandler)
48
49 AliHLTComponentHandler::AliHLTComponentHandler()
50   :
51   fComponentList(),
52   fScheduleList(),
53   fLibraryList(),
54   fEnvironment(),
55   fStandardList()
56 {
57   // see header file for class documentation
58   // or
59   // refer to README to build package
60   // or
61   // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
62   memset(&fEnvironment, 0, sizeof(AliHLTComponentEnvironment));
63   AddStandardComponents();
64 }
65
66 AliHLTComponentHandler::AliHLTComponentHandler(AliHLTComponentEnvironment* pEnv)
67   :
68   fComponentList(),
69   fScheduleList(),
70   fLibraryList(),
71   fEnvironment(),
72   fStandardList()
73 {
74   // see header file for class documentation
75   if (pEnv) {
76     memcpy(&fEnvironment, pEnv, sizeof(AliHLTComponentEnvironment));
77     if (pEnv->fLoggingFunc) {
78       // the AliHLTLogging::Init method also sets the stream output
79       // and notification handler to AliLog. This should only be done
80       // if the logging environment contains a logging function
81       // for redirection
82       AliHLTLogging::Init(pEnv->fLoggingFunc);
83     }
84   }  else
85     memset(&fEnvironment, 0, sizeof(AliHLTComponentEnvironment));
86   AddStandardComponents();
87 }
88
89 AliHLTComponentHandler::~AliHLTComponentHandler()
90 {
91   // see header file for class documentation
92   UnloadLibraries();
93   DeleteStandardComponents();
94 }
95
96 int AliHLTComponentHandler::AnnounceVersion()
97 {
98   // see header file for class documentation
99   int iResult=0;
100 #ifdef PACKAGE_STRING
101   void HLTbaseCompileInfo( char*& date, char*& time);
102   char* date="";
103   char* time="";
104   HLTbaseCompileInfo(date, time);
105   if (!date) date="unknown";
106   if (!time) time="unknown";
107   HLTInfo("%s build on %s (%s)", PACKAGE_STRING, date, time);
108 #else
109   HLTInfo("ALICE High Level Trigger (embedded AliRoot build)");
110 #endif
111   return iResult;
112 }
113
114 Int_t AliHLTComponentHandler::RegisterComponent(AliHLTComponent* pSample)
115 {
116   // see header file for class documentation
117   Int_t iResult=0;
118   if (pSample) {
119     if (FindComponent(pSample->GetComponentID())==NULL) {
120       iResult=InsertComponent(pSample);
121       if (iResult>=0) {
122         HLTInfo("component %s registered", pSample->GetComponentID());
123       }
124     } else {
125       // component already registered
126       HLTDebug("component %s already registered, skipped", pSample->GetComponentID());
127       iResult=-EEXIST;
128     }
129   } else {
130     iResult=-EINVAL;
131   }
132   return iResult;
133 }
134
135 int AliHLTComponentHandler::DeregisterComponent( const char* componentID )
136 {
137   // see header file for class documentation
138   int iResult=0;
139   if (componentID) {
140   } else {
141     iResult=-EINVAL;
142   }
143   return iResult;
144 }
145
146 Int_t AliHLTComponentHandler::ScheduleRegister(AliHLTComponent* pSample)
147 {
148   // see header file for class documentation
149   Int_t iResult=0;
150   if (pSample) {
151     fScheduleList.push_back(pSample);
152   } else {
153     iResult=-EINVAL;
154   }
155   return iResult;
156 }
157
158 int AliHLTComponentHandler::CreateComponent(const char* componentID, void* pEnvParam, int argc, const char** argv, AliHLTComponent*& component )
159 {
160   // see header file for class documentation
161   int iResult=0;
162   if (componentID) {
163     AliHLTComponent* pSample=FindComponent(componentID);
164     if (pSample!=NULL) {
165       component=pSample->Spawn();
166       if (component) {
167         HLTDebug("component \"%s\" created (%p)", componentID, component);
168         if ((iResult=component->Init(&fEnvironment, pEnvParam, argc, argv))!=0) {
169           HLTError("Initialization of component \"%s\" failed with error %d", componentID, iResult);
170           delete component;
171           component=NULL;
172         }
173       } else {
174         HLTError("can not spawn component \"%s\"", componentID);
175         iResult=-ENOENT;
176       }
177     } else {
178       HLTWarning("can not find component \"%s\"", componentID);
179       iResult=-ENOENT;
180     }
181   } else {
182     iResult=-EINVAL;
183   }
184   return iResult;
185 }
186
187 Int_t AliHLTComponentHandler::FindComponentIndex(const char* componentID)
188 {
189   // see header file for class documentation
190   Int_t iResult=0;
191   if (componentID) {
192     vector<AliHLTComponent*>::iterator element=fComponentList.begin();
193     while (element!=fComponentList.end() && iResult>=0) {
194       if (strcmp(componentID, (*element)->GetComponentID())==0) {
195         break;
196       }
197       element++;
198       iResult++;
199     }
200     if (element==fComponentList.end()) iResult=-ENOENT;
201   } else {
202     iResult=-EINVAL;
203   }
204   return iResult;
205 }
206
207 AliHLTComponent* AliHLTComponentHandler::FindComponent(const char* componentID)
208 {
209   // see header file for class documentation
210   AliHLTComponent* pSample=NULL;
211   Int_t index=FindComponentIndex(componentID);
212   if (index>=0) {
213     pSample=(AliHLTComponent*)fComponentList.at(index);
214   }
215   return pSample;
216 }
217
218 Int_t AliHLTComponentHandler::InsertComponent(AliHLTComponent* pSample)
219 {
220   // see header file for class documentation
221   Int_t iResult=0;
222   if (pSample!=NULL) {
223     fComponentList.push_back(pSample);
224   } else {
225     iResult=-EINVAL;
226   }
227   return iResult;
228 }
229
230 void AliHLTComponentHandler::List() 
231 {
232   // see header file for class documentation
233   vector<AliHLTComponent*>::iterator element=fComponentList.begin();
234   int index=0;
235   while (element!=fComponentList.end()) {
236     HLTInfo("%d. %s", index++, (*element++)->GetComponentID());
237   }
238 }
239
240 void AliHLTComponentHandler::SetEnvironment(AliHLTComponentEnvironment* pEnv) 
241 {
242   // see header file for class documentation
243   if (pEnv) {
244     memcpy(&fEnvironment, pEnv, sizeof(AliHLTComponentEnvironment));
245     if (fEnvironment.fLoggingFunc) {
246       // the AliHLTLogging::Init method also sets the stream output
247       // and notification handler to AliLog. This should only be done
248       // if the logging environment contains a logging function
249       // for redirection
250       AliHLTLogging::Init(fEnvironment.fLoggingFunc);
251     }
252   }
253 }
254
255 int AliHLTComponentHandler::LoadLibrary( const char* libraryPath )
256 {
257   // see header file for class documentation
258   int iResult=0;
259   if (libraryPath) {
260     AliHLTComponent::SetGlobalComponentHandler(this);
261     AliHLTLibHandle hLib;
262     const char* loadtype="";
263 #ifdef HAVE_DLFCN_H
264     // use interface to the dynamic linking loader
265     hLib.handle=dlopen(libraryPath, RTLD_NOW);
266     loadtype="dlopen";
267 #else
268     // use ROOT dynamic loader
269     // check if the library was already loaded, as Load returns
270     // 'failure' if the library was already loaded
271     AliHLTLibHandle* pLib=FindLibrary(libraryPath);
272     if (pLib) {
273         int* pRootHandle=reinterpret_cast<int*>(pLib->handle);
274         (*pRootHandle)++;
275         HLTDebug("instance %d of library %s loaded", (*pRootHandle), libraryPath);
276         hLib.handle=pRootHandle;
277     }
278     
279     if (hLib.handle==NULL && gSystem->Load(libraryPath)==0) {
280       int* pRootHandle=new int;
281       if (pRootHandle) *pRootHandle=1;
282       hLib.handle=pRootHandle;
283       //HLTDebug("library %s loaded via gSystem", libraryPath);
284     }
285     loadtype="gSystem";
286 #endif //HAVE_DLFCN_H
287     if (hLib.handle!=NULL) {
288       // create TString object to store library path and use pointer as handle 
289       hLib.name=new TString(libraryPath);
290       HLTInfo("library %s loaded (%s)", libraryPath, loadtype);
291       fLibraryList.insert(fLibraryList.begin(), hLib);
292       iResult=RegisterScheduledComponents();
293     } else {
294       HLTError("can not load library %s", libraryPath);
295 #ifdef HAVE_DLFCN_H
296       HLTError("dlopen error: %s", dlerror());
297 #endif //HAVE_DLFCN_H
298 #ifdef __APPLE__
299       iResult=-EFTYPE;
300 #else
301       iResult=-ELIBACC;
302 #endif
303     }
304     AliHLTComponent::UnsetGlobalComponentHandler();
305   } else {
306     iResult=-EINVAL;
307   }
308   return iResult;
309 }
310
311 int AliHLTComponentHandler::UnloadLibrary( const char* libraryPath )
312 {
313   // see header file for class documentation
314   int iResult=0;
315   if (libraryPath) {
316   } else {
317     iResult=-EINVAL;
318   }
319   return iResult;
320 }
321
322 int AliHLTComponentHandler::UnloadLibraries()
323 {
324   // see header file for class documentation
325   int iResult=0;
326   vector<AliHLTLibHandle>::iterator element=fLibraryList.begin();
327   while (element!=fLibraryList.end()) {
328     TString* pName=reinterpret_cast<TString*>((*element).name);
329 #ifdef HAVE_DLFCN_H
330     dlclose((*element).handle);
331 #else
332     int* pCount=reinterpret_cast<int*>((*element).handle);
333     if (--(*pCount)==0) {
334       if (pName)
335         gSystem->Unload(pName->Data());
336       else {
337         HLTError("missing library name, can not unload");
338       }
339       delete pCount;
340     }
341 #endif //HAVE_DLFCN_H
342     if (pName) {
343       HLTDebug("unload library %s", pName->Data());
344       delete pName;
345     } else {
346       HLTWarning("missing name for unloaded library");
347     }
348     pName=NULL;
349     fLibraryList.erase(element);
350     element=fLibraryList.begin();
351   }
352   return iResult;
353 }
354
355 void* AliHLTComponentHandler::FindSymbol(const char* library, const char* symbol)
356 {
357   // see header file for class documentation
358   AliHLTLibHandle* hLib=FindLibrary(library);
359   if (hLib==NULL) return NULL;
360   void* pFunc=NULL;
361 #ifdef HAVE_DLFCN_H
362   pFunc=dlsym(hLib->handle, symbol);
363 #else
364   TString* name=reinterpret_cast<TString*>(hLib->name);
365   pFunc=gSystem->DynFindSymbol(name->Data(), symbol);
366 #endif
367   return pFunc;
368 }
369
370 AliHLTComponentHandler::AliHLTLibHandle* AliHLTComponentHandler::FindLibrary(const char* library)
371 {
372   // see header file for class documentation
373   AliHLTLibHandle* hLib=NULL;
374   vector<AliHLTLibHandle>::iterator element=fLibraryList.begin();
375   while (element!=fLibraryList.end()) {
376     TString* name=reinterpret_cast<TString*>((*element).name);
377     if (name->CompareTo(library)==0) {
378       hLib=&(*element);
379       break;
380     }
381     element++;
382   }
383   return hLib;
384 }
385
386 int AliHLTComponentHandler::AddStandardComponents()
387 {
388   // see header file for class documentation
389   int iResult=0;
390   AliHLTComponent::SetGlobalComponentHandler(this);
391 //   fStandardList.push_back(new AliHLTFilePublisher);
392   fStandardList.push_back(new AliHLTFileWriter);
393 //   fStandardList.push_back(new AliHLTRootFilePublisherComponent);
394 //   fStandardList.push_back(new AliHLTRootFileWriterComponent);
395   AliHLTComponent::UnsetGlobalComponentHandler();
396   iResult=RegisterScheduledComponents();
397   return iResult;
398 }
399
400 int AliHLTComponentHandler::RegisterScheduledComponents()
401 {
402   // see header file for class documentation
403   int iResult=0;
404   vector<AliHLTComponent*>::iterator element=fScheduleList.begin();
405   int iLocalResult=0;
406   while (element!=fScheduleList.end()) {
407     iLocalResult=RegisterComponent(*element);
408     if (iResult==0) iResult=iLocalResult;
409     fScheduleList.erase(element);
410     element=fScheduleList.begin();
411   }
412   return iResult;
413 }
414
415 int AliHLTComponentHandler::DeleteStandardComponents()
416 {
417   // see header file for class documentation
418   int iResult=0;
419   vector<AliHLTComponent*>::iterator element=fStandardList.begin();
420   while (element!=fStandardList.end()) {
421     DeregisterComponent((*element)->GetComponentID());
422     delete(*element);
423     fStandardList.erase(element);
424     element=fStandardList.begin();
425   }
426   return iResult;
427 }