]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/AliHLTSystem.h
ab6a686bdde9fdd3ad114ff79da50110af584892
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTSystem.h
1 //-*- Mode: C++ -*-
2 // @(#) $Id$
3
4 #ifndef ALIHLTSYSTEM_H
5 #define ALIHLTSYSTEM_H
6 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
7  * See cxx source for full Copyright notice                               */
8
9 /** @file   AliHLTSystem.h
10     @author Matthias Richter
11     @date   
12     @brief  Global HLT module management and AliRoot integration.
13     @note   The class is used in Offline (AliRoot) context
14 */
15
16 // see below for class documentation
17 // or
18 // refer to README to build package
19 // or
20 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt   
21
22 /**
23  * @defgroup alihlt_system HLT integration into AliRoot
24  * This section describes the HLT integration into AliRoot.
25  */
26
27 #include "AliHLTLogging.h"
28 #include <TList.h>
29 #include <TString.h>
30
31 class AliHLTComponentHandler;
32 class AliHLTConfiguration;
33 class AliHLTConfigurationHandler;
34 class AliHLTTask;
35 class AliRunLoader;
36 class AliRawReader;
37 class AliESDEvent;
38 class TObjArray;
39 class TStopwatch;
40
41 /**
42  * @class AliHLTSystem
43  * Main class for the HLT integration into AliRoot.
44  * The class handles a list of configurations. Configurations are translated
45  * into task lists which can be executed. 
46  *
47  * @note This class is only used for the @ref alihlt_system.
48  *
49  * @ingroup alihlt_system
50  */
51 class AliHLTSystem : public AliHLTLogging {
52  public:
53   /** default constructor */
54   AliHLTSystem();
55   /** destructor */
56   virtual ~AliHLTSystem();
57
58   /**
59    * Pointer to an instance of @ref AliHLTComponentHandler.
60    */
61   AliHLTComponentHandler* fpComponentHandler;                      //! transient
62
63   /**
64    * Pointer to an instance of @ref AliHLTConfigurationHandler.
65    */
66   AliHLTConfigurationHandler* fpConfigurationHandler;              //! transient
67
68   /**
69    * Add a configuration to the end of the list.
70    * @param pConf    pointer to configuration to add
71    */
72   int AddConfiguration(AliHLTConfiguration* pConf);
73
74   /**
75    * Insert a configuration to the end of the list after the specified
76    * configuration.
77    * @param pConf    pointer to configuration to insert
78    * @param pPrec    pointer to configuration to insert the new one after
79    */
80   int InsertConfiguration(AliHLTConfiguration* pConf, AliHLTConfiguration* pPrec);
81
82   /**
83    * Remove a configuration from the list.
84    * @param pConf    pointer to configuration to delete
85    */
86   int DeleteConfiguration(AliHLTConfiguration* pConf);
87
88   /**
89    * Build a task list 
90    * This method is used to build the tasks from the 'master' configuration
91    * objects which are added to the HLT system handler. This is an iterative
92    * process since the task might depend upon other configurations. For each
93    * configuration object which has not yet been converted into a task, the
94    * method will be called iteratively. Finally, after building all tasks which
95    * the current one depends on have been created, the task is inserted to the
96    * list of tasks with the InsertTask method.
97    * @param pConf    configuration name/id
98    */
99   int BuildTaskList(const char* pConf);
100
101   /**
102    * Build task list from a configuration object.
103    * This method is kept for backward compatibility. Use the version
104    * with the configuration name.
105    * @param pConf    pointer to configuration to build the task list from
106    */
107   int BuildTaskList(AliHLTConfiguration* pConf);
108
109   /**
110    * Clean the list of tasks and delete all the task objects.
111    */
112   int CleanTaskList();
113
114   /**
115    * Insert a task to the task list.
116    * The method first checks whether all dependencies are resolved (i.e. exist 
117    * already in the task list). During this iteration the cross links between
118    * the tasks are set as well. If all dependencies are resolved, the task is
119    * added at the end of the list.
120    * @param pTask    pointer to task to add
121    */
122   int InsertTask(AliHLTTask* pTask);
123
124   /**
125    * Find a task with an id.
126    * @param id       CONFIGURATION id (not a COMPONENT id!)
127    */
128   AliHLTTask* FindTask(const char* id);
129
130   /**
131    * Print the task list.
132    */
133   void PrintTaskList();
134
135   /**
136    * Run the task list.
137    * The method checks whether the task list has already been build. If not,
138    * or the configuration list has been changed, the @ref BuildTaskList
139    * method is called.                                                    <br>
140    * All tasks of the list will be subsequently processed for each event.
141    * The system can remain started if the \em bStop parameter is 0. In that
142    * case the system just waits for the next event. A specific call with
143    * nofEvents==0 is needed to execute the stop sequence.
144    * @param iNofEvents number of events
145    * @param bStop      stop the chain after processing
146    * @return number of reconstructed events, neg error code if failed
147    */
148   int Run(Int_t iNofEvents=1, int bStop=1);
149
150   /**
151    * Init all tasks from the list.
152    * The @ref AliHLTTask::Init method is called for each task, the components
153    * will be created.
154    * @return neg error code if failed
155    */
156   int InitTasks();
157
158   /**
159    * Init the stopwatches for all tasks.
160    * @param pStopwatches    object array of stopwatches, for types
161    *                        @see AliHLTComponent::AliHLTStopwatchType
162    * @return neg error code if failed
163    */
164   int InitBenchmarking(TObjArray* pStopwatches);
165
166   /**
167    * Print benchmarking summary.
168    * Optionak: clean up stop watches.
169    * @param pStopwatches    object array of stopwatches
170    * @param bClean          delete stop watches if 1
171    * @return neg error code if failed
172    */
173   int PrintBenchmarking(TObjArray* pStopwatches, int bClean=0);
174
175   /**
176    * Start task list.
177    * The @ref AliHLTTask::StartRun method is called for each task, the
178    * components will be prepared for event processing.
179    * @return neg error code if failed
180    */
181   int StartTasks();
182
183   /**
184    * Process task list.
185    * The @ref AliHLTTask::ProcessTask method is called for each task.
186    * @return neg error code if failed
187    */
188   int ProcessTasks(Int_t eventNo);
189
190   /**
191    * Stop task list.
192    * The @ref AliHLTTask::EndRun method is called for each task, the components
193    * will be cleaned after event processing.
194    * @return neg error code if failed
195    */
196   int StopTasks();
197
198   /**
199    * De-init all tasks from the list.
200    * The @ref AliHLTTask::Deinit method is called for each task, the components
201    * will be deleted.
202    * @return neg error code if failed
203    */
204   int DeinitTasks();
205
206   /**
207    * The memory allocation function for components.
208    * This function is part of the running environment of the components.
209    */
210   static void* AllocMemory( void* param, unsigned long size );
211
212   /**
213    * AliRoot embedded reconstruction.
214    * Main entry point to execute the HLT reconstruction from AliRoot. Called
215    * either by the AliHLTReconstructor plugin during AliRoot reconstruction
216    * of raw data, or AliHLTSimulation during simulation of data.
217    *
218    * The two cases are distinguished by the availablility of the run loader
219    * and raw reader.
220    * - AliRoot simulation: run loader is available and is propagated to the
221    *   module agents (AliHLTModuleAgent) to generate the corresponding
222    *   configurations and chains, and to the AliHLTOfflineSource components.
223    * - AliRoot reconstruction: raw reader is available and is propagated to
224    *   the agents and AliHLTOfflineSource components.
225    *
226    * The system remains started after the processing and just waits for the
227    * next event. A specific call with nofEvents==0 is needed to execute the
228    * stop sequence.
229    *
230    * The 'runLoader' and 'rawReader' parameters are set to all active
231    * AliHLTOfflineDataSource's and the HLT chain is processed for the given
232    * number of events. If the rawReader is NULL, reconstruction is done on
233    * simulated data, from real data if a RawReader is specified.
234    * @param nofEvents     number of events
235    * @param runLoader     the AliRoot runloader
236    * @param rawReader     the AliRoot RawReader
237    * @return number of reconstructed events, neg. error code if failed 
238    */
239   int Reconstruct(int nofEvents, AliRunLoader* runLoader, 
240                   AliRawReader* rawReader=NULL);
241
242   /**
243    * Fill ESD for one event.
244    * To be called by the AliHLTReconstructor plugin during the event loop
245    * and FillESD method of the AliRoot reconstruction.
246    * This method is called on event basis, and thus must copy the previously
247    * reconstructed data of the event from the 'ESD' recorder. The FillESD
248    * method of all active AliHLTOfflineDataSink's is called.
249    * @param eventNo       current event no (Note: this event number is just a
250    *                      processing counter and is not related to the nature/
251    *                      origin of the event
252    * @param runLoader     the AliRoot runloader
253    * @param esd           an AliESDEvent instance
254    * @return neg. error code if failed 
255    */
256   int FillESD(int eventNo, AliRunLoader* runLoader, AliESDEvent* esd);
257
258   /**
259    * Load component libraries.
260    * @param libs          string of blank separated library names
261    * @return neg. error code if failed 
262    */
263   int LoadComponentLibraries(const char* libs);
264
265   /**
266    * Find a symbol in a dynamically loaded library.
267    * @param library      library
268    * @param symbol       the symbol to find
269    * @return void pointer to function
270    */
271   void* FindDynamicSymbol(const char* library, const char* symbol);
272
273   /**
274    * Prepare the HLT system for running.
275    * - module agents are requested to register configurations
276    * - task lists are built from the top configurations of the modules
277    *
278    * @param rawReader    instance of the raw reader or NULL
279    * @param runloader    optional instance of the run loader
280    * @return neg. error code if failed <br>
281    *         -EBUSY      system is in kRunning state <br>
282    */
283   int Configure(AliRawReader* rawReader, AliRunLoader* runloader=NULL);
284
285   /**
286    * Old method kept for backward compatibilty.
287    *
288    * @param runloader    optional instance of the run loader
289    * @return neg. error code if failed <br>
290    *         -EBUSY      system is in kRunning state <br>
291    */
292   int Configure(AliRunLoader* runloader=NULL);
293
294   /**
295    * Scan options.
296    * Known options
297    * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formating -->
298    * \li loglevel=<i>level</i> <br>
299    *     logging level for this processing
300    * \li alilog=off
301    *     disable redirection of log messages to AliLog class
302    * \li config=<i>macro</i>
303    *     configuration macro
304    * \li chains=<i>configuration</i>
305    *     comma separated list of configurations to be run during local
306    *     reconstruction
307    */
308   int ScanOptions(const char* options);
309
310   /**
311    * Reset the HLT system.
312    * Reset is not possible while the system is in running state.
313    * @param bForce       force the reset
314    * @return neg. error code if failed <br>
315    *         -EBUSY      system is in kRunning state <br>
316    */
317   int Reset(int bForce=0);
318
319   /**
320    * Load the configurations specified by the module agents.
321    * The runLoader is passed to the agent and allows configuration
322    * selection.
323    * @param rawReader    instance of the raw reader or NULL
324    * @param runloader    optional instance of the run loader
325    * @return neg. error code if failed 
326    */
327   int LoadConfigurations(AliRawReader* rawReader, AliRunLoader* runloader=NULL);
328
329   /**
330    * Get the top configurations of all agents and build the task lists.
331    * @param rawReader    instance of the raw reader or NULL
332    * @param runloader    optional instance of the run loader
333    * @return neg. error code if failed 
334    */
335   int BuildTaskListsFromTopConfigurations(AliRawReader* rawReader, 
336                                           AliRunLoader* runloader=NULL);
337
338   enum AliHLTSystemState_t {
339     kUninitialized       = 0x0,
340     kLibrariesLoaded     = 0x1,
341     kConfigurationLoaded = 0x2,
342     kTaskListCreated     = 0x4,
343     kReady               = 0x7,
344     kStarted             = 0x8,
345     kRunning             = 0x10,
346     kError               = 0x1000
347   };
348
349   /**
350    * Check status of the system.
351    * @param flag          AliHLTSystemState_t value to check for
352    * @return 1 if set, 0 if not
353    */
354   int CheckStatus(int flag);
355
356   /**
357    * Get the current status.
358    * @return status flags of @ref AliHLTSystemState_t
359    */
360   int GetStatusFlags();
361
362  protected:
363  
364  private:
365   /** copy constructor prohibited */
366   AliHLTSystem(const AliHLTSystem&);
367   /** assignment operator prohibited */
368   AliHLTSystem& operator=(const AliHLTSystem&);
369
370   /**
371    * Set status flags.
372    */
373   int SetStatusFlags(int flags);
374
375   /**
376    * clear status flags.
377    */
378   int ClearStatusFlags(int flags);
379
380
381 /*   TList fConfList; */
382 /*   int fbListChanged; */
383
384   /** list of tasks */
385   TList fTaskList;                                                 // see above
386
387   /** the number of instances of AliHLTSystem */
388   static int fgNofInstances;                                       // see above
389
390   /** state of the object */
391   int fState;                                                      // see above
392
393   /** chains to be run during reconstruction */
394   TString fChains;                                                 //!transient
395
396   /* array of stopwatches */
397   TObjArray* fStopwatches;                                         //!transient
398
399   /* number of events processed in total */                        
400   int fEventCount;                                                 //!transient
401
402   /* number of events processed successfully */
403   int fGoodEvents;                                                 //!transient
404
405  private:
406   ClassDef(AliHLTSystem, 4);
407 };
408
409 #endif