]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTConfiguration.h
Ignoring temporary files
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTConfiguration.h
CommitLineData
30338a30 1//-*- Mode: C++ -*-
3495cce2 2// @(#) $Id$
3
4#ifndef ALIHLTCONFIGURATION_H
5#define ALIHLTCONFIGURATION_H
b6800be0 6/* This file is property of and copyright by the ALICE HLT Project *
7 * ALICE Experiment at CERN, All rights reserved. *
3495cce2 8 * See cxx source for full Copyright notice */
9
0c0c9d99 10/** @file AliHLTConfiguration.h
11 @author Matthias Richter
12 @date
b22e91eb 13 @brief Base class and handling of HLT configurations.
14 @note The class is used in Offline (AliRoot) context
0c0c9d99 15*/
3495cce2 16
30338a30 17// see below for class documentation
18// or
19// refer to README to build package
20// or
21// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
22
8ede8717 23#include <vector>
3495cce2 24#include <TObject.h>
25#include <TList.h>
26#include "AliHLTDataTypes.h"
27#include "AliHLTLogging.h"
0c0c9d99 28#include "AliHLTDataBuffer.h"
3495cce2 29
85465857 30class AliHLTConfigurationHandler;
0c0c9d99 31
32/**
33 * @class AliHLTConfiguration
bfccbf68 34 * @brief Description of HLT processing chains.
b22e91eb 35 *
0c0c9d99 36 * This class describes a certain configuration af an HLT processing step
37 * by the following parameters:
38 * - a unique id string/name
39 * - the id of the component
40 * - the ids of the configurations it requires input from
41 * - the arguments, which are passed to the component when it is initialized
3495cce2 42 *
0c0c9d99 43 * The setup of a configuration requires simply the creation of a global object
bfccbf68 44 * of @ref AliHLTConfiguration. The Configuration is automatically registered
45 * in the list of available configurations maintained by the @ref
0c0c9d99 46 * AliHLTConfigurationHandler. The list is used by to resolve the dependencies
47 * on other configurations. Hierarchies can be built up in an easy way.
3495cce2 48 *
bfccbf68 49 * A configuration is interpreted by the @ref AliHLTConfigurationHandler and
0c0c9d99 50 * transformed into a Task List.
b22e91eb 51 *
52 * @note This class is only used for the @ref alihlt_system.
53 *
54 * @ingroup alihlt_system
3495cce2 55 */
56class AliHLTConfiguration : public TObject, public AliHLTLogging {
57 public:
0c0c9d99 58 /**
59 * standard constructor. The configuration is automatically registered in the
60 * global configuration manager
61 */
3495cce2 62 AliHLTConfiguration();
0c0c9d99 63 /**
64 * constructor. The configuration is automatically registered in the
65 * global configuration manager
66 * @param id unique id of the configuration
67 * @param component component id
68 * @param sources blank separated list of source configuration ids
69 * @param arguments argument string passed to the component at initialization
032c5e5e 70 * @param bufsize size of the output buffer in byte, the string can contain a
71 * number prepended by a unit, e.g. 1M, allowed units 'k' and 'M'
0c0c9d99 72 */
73 AliHLTConfiguration(const char* id, const char* component,
032c5e5e 74 const char* sources, const char* arguments,
75 const char* bufsize=NULL);
fc455fba 76 /** copy constructor */
77 AliHLTConfiguration(const AliHLTConfiguration& src);
78 /** assignment op */
79 AliHLTConfiguration& operator=(const AliHLTConfiguration& src);
0c0c9d99 80 /** destructor */
3495cce2 81 virtual ~AliHLTConfiguration();
82
0c0c9d99 83 /*****************************************************************************
85465857 84 * global initialization
85 */
0c0c9d99 86
87 /**
88 * Global initialization of the configuration handler.
89 */
85465857 90 static int GlobalInit(AliHLTConfigurationHandler* pHandler);
91
0c0c9d99 92 /**
93 * Global de-init and cleanup of the global configuration handler
94 */
fc455fba 95 static int GlobalDeinit(AliHLTConfigurationHandler* pHandler);
85465857 96
0c0c9d99 97 /*****************************************************************************
98 * properties of the configuration
3495cce2 99 */
100
0c0c9d99 101 /**
102 * Get configuration id, a unique name
103 * This is an overridden TObject function in order to return the configuration
104 * name instead of the class name. Enables use of TList standard functions.
105 * @return configuration id
106 */
3495cce2 107 const char *GetName() const;
108
0c0c9d99 109 /**
110 * Get id of the component.
111 * The id is a unique string.
112 * @return id of the component
113 */
70ed7d01 114 const char* GetComponentID() const {return fComponent;}
3495cce2 115
0c0c9d99 116 /**
117 * Print status info.
118 * Short summary on id, component, sources and unresolved sources.
119 */
3495cce2 120 void PrintStatus();
121
0c0c9d99 122 /**
123 * Get a certain source.
124 * @param id of the source configuration
125 * @result pointer to the corresponding configuration descriptor
126 */
3495cce2 127 AliHLTConfiguration* GetSource(const char* id);
128
0c0c9d99 129 /**
130 * Try to find a dependency recursively in the list of sources.
131 * @param id the source to search for
132 * @param pTgtList (optional) target list to receive the dependency tree
133 * @return
134 * 0 if not found
135 * n found in the n-th level
136 * dependency list in the target list
137 */
3495cce2 138 int FollowDependency(const char* id, TList* pTgtList=NULL);
139
0c0c9d99 140 /**
141 * Get the number of resolved sources.
142 * @return number of resolved sources
143 */
3495cce2 144 int GetNofSources() {return fListSources.size();}
145
0c0c9d99 146 /**
147 * Check resolving status.
148 * @param bAuto resolve if ==1
149 * @return 1 if all sources resolved
150 */
3495cce2 151 int SourcesResolved(int bAuto=0);
152
0c0c9d99 153 /**
154 * Start iteration and get the first source.
155 * @result pointer to the first configuration descriptor
156 */
3495cce2 157 AliHLTConfiguration* GetFirstSource();
158
0c0c9d99 159 /**
160 * Continue iteration and get the next source.
161 * @result pointer to the next configuration descriptor in the list
162 */
3495cce2 163 AliHLTConfiguration* GetNextSource();
164
0c0c9d99 165 /**
166 * Invalidate a dependency and mark the configuration to be re-evaluted.
167 * @param pConf pointer to configuration descriptor
168 */
3495cce2 169 int InvalidateSource(AliHLTConfiguration* pConf);
170
0c0c9d99 171 /**
172 * Mark the configuration to be re-evaluted.
173 */
3495cce2 174 int InvalidateSources() {fNofSources=-1; return 0;}
175
0c0c9d99 176 /**
177 * Get the arguments array.
178 * @param pArgv pointer to receive argument array pointer
179 * @return argc if succeeded, neg. error code if failed
180 */
181 int GetArguments(const char*** pArgv);
3495cce2 182
032c5e5e 183 /**
184 * Get output buffer size.
185 * @return size in byte or -1 if not specified
186 */
187 int GetOutputBufferSize() const {return fBufferSize;}
3495cce2 188 protected:
189
3495cce2 190
191 private:
192 /* extract the source configurations from the sources string
193 */
194 int ExtractSources();
195
196 /* extract arguments from the argument string
197 */
198 int ExtractArguments();
199
70ed7d01 200 /**
201 * Helper function to build a vector from an argument string
202 * @param arg pointer to argument string
203 * @param argList target to receive the argument list
3495cce2 204 */
032c5e5e 205 int InterpreteString(const char* arg, vector<char*>& argList) const;
206
207 /**
208 * Convert buffer size string to number
209 */
210 int ConvertSizeString(const char* strSize) const;
3495cce2 211
0c0c9d99 212 /** id of this configuration */
52c1c164 213 TString fID; // see above
0c0c9d99 214 /** component id of this configuration */
52c1c164 215 TString fComponent; // see above
3495cce2 216
0c0c9d99 217 /** the <i>sources</i> string as passed to the constructor */
52c1c164 218 TString fStringSources; // see above
0c0c9d99 219 /** number of resolved sources, -1 indicates re-evaluation */
70ed7d01 220 int fNofSources; // see above
0c0c9d99 221 /** list of sources */
70ed7d01 222 vector<AliHLTConfiguration*> fListSources; // see above
0c0c9d99 223 /** iterator for the above list */
70ed7d01 224 vector<AliHLTConfiguration*>::iterator fListSrcElement; // see above
0c0c9d99 225
226 /**
227 * The argument string as passed to the constructor.
228 * Specifies the arguments for the Analysys component. The string will
229 * be parsed and the separated arguments stored in the @ref fArgv array
230 * and @ref fArgc member.
231 */
52c1c164 232 TString fArguments; // see above
0c0c9d99 233 /** number of arguments */
70ed7d01 234 int fArgc; // see above
0c0c9d99 235 /** argument array */
70ed7d01 236 char** fArgv; // see above
3495cce2 237
032c5e5e 238 /** size of the output buffer */
239 int fBufferSize; // see above
240
70ed7d01 241 /** the instance of the global configuration handler */
242 static AliHLTConfigurationHandler* fgConfigurationHandler; //! transient
85465857 243
3495cce2 244 ClassDef(AliHLTConfiguration, 0);
245};
246
3495cce2 247#endif