]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/util/AliHLTFileWriter.h
documentation
[u/mrichter/AliRoot.git] / HLT / BASE / util / AliHLTFileWriter.h
1 // @(#) $Id$
2
3 #ifndef ALIHLTFILEWRITER_H
4 #define ALIHLTFILEWRITER_H
5 /* This file is property of and copyright by the ALICE HLT Project        * 
6  * ALICE Experiment at CERN, All rights reserved.                         *
7  * See cxx source for full Copyright notice                               */
8
9 /** @file   AliHLTFileWriter.h
10     @author Matthias Richter
11     @date   
12     @brief  An HLT file dump (data sink) component.
13 */
14
15 #include "AliHLTDataSink.h"
16 #include <TString.h>
17 //#include <TList.h>
18
19 /**
20  * @class AliHLTFileWriter
21  * An HLT data sink component which writes data to file(s).
22  *
23  * Component ID: \b FileWriter <br>
24  * Library: \b libHLTBase (in order to use the component from the external
25  * interface, it might be necessary to specify a dummy library with the
26  * \em -componentlibrary argument).
27  *
28  * Mandatory arguments: <br>
29  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formating -->
30  *
31  * Optional arguments: <br>
32  * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formating -->
33  * \li -datafile     <i> filename   </i> <br>
34  *      file name base
35  * \li -directory    <i> directory  </i> <br>
36  *      target directory
37  * \li -subdir[=pattern] <br>
38  *      create sub dir for each event, the format patern can contain printf
39  *      specifiers to print the evntn no into the dir name, default is
40  *      'event%03d' (-subdir w/o additional pattern)
41  * \li -idfmt[=pattern] <br>
42  *      format specifier for the event id in the file name,                <br>
43  *      default: on, default pattern: '_0x%08x'
44  * \li -specfmt[=pattern] <br>
45  *      format specifier for the data specification in the file name       <br>
46  *      default: off, default pattern: '_0x%08x'
47  * \li -blocknofmt[=pattern] <br>
48  *      format specifier for the block no in the file name                 <br>
49  *      default: on, default pattern: '_0x%02x'
50  * \li -enumerate <br>
51  *      don't use the event number but an event counter beginning from 0
52  * \li -concatenate-blocks <br>
53  *      concatenate all blocks of one event into one file, this skips
54  *      the block no, and the block data type in the file name
55  * \li -concatenate-events <br>
56  *      concatenate all events into one file, this skips the event no,
57  *      the block no, and the block data type in the file name. Currently,
58  *      this implies the -concatenate-blocks option.
59  *
60  * By default, file name is built from the basename, the event number, the
61  * block number and the data type in the format:
62  * <pre>
63  * basename_eventno_dt
64  * </pre>
65  * If the basename was not given, \em 'event' ist used instead. A file
66  * extension after the last dot is separated from the basename and appended
67  * to the final name.
68  *
69  * The naming rule can be changed by the -xxfmt options, which can contain
70  * printf format specifiers in order to print the corresponding variable. E.g.
71  * <pre>
72  * -specfmt             append specification
73  * -subdir=test_%d      store in sub folders
74  * -blcknofmt=_0x%x     format block no in hex
75  * -idfmt=_%04d         print id in 4-digits decimal number
76  * </pre>
77  *
78  * The class can be used as a base class for file writers. Additional
79  * argument scan can be implemented in @ref ScanArgument which is called
80  * for each unknown argument.
81  * @ingroup alihlt_component
82  */
83 class AliHLTFileWriter : public AliHLTDataSink  {
84  public:
85   /** standard constructor */
86   AliHLTFileWriter();
87   /** destructor */
88   virtual ~AliHLTFileWriter();
89
90   virtual const char* GetComponentID();
91   virtual void GetInputDataTypes( vector<AliHLTComponentDataType>& list);
92   virtual AliHLTComponent* Spawn();
93
94  protected:
95   /**
96    * Init method.
97    */
98   int DoInit( int argc, const char** argv );
99
100   /**
101    * Deinit method.
102    */
103   int DoDeinit();
104
105   /**
106    * Init the writer.
107    * The DoInit function is not available for child classes. InitWriter is the
108    * corresponding function for classes derived from AliHLTFileWriter.
109    */
110   virtual int InitWriter();
111
112   /**
113    * Close the writer.
114    * The DoDeinit function is not available for child classes. CloseWriter is the
115    * corresponding function for classes derived from AliHLTFileWriter.
116    */
117   virtual int CloseWriter();
118
119   /**
120    * Data processing method for the component.
121    * The function can be overloaded by other file writer components.
122    * @param evtData       event data structure
123    * @param blocks        input data block descriptors
124    * @param trigData      trigger data structure
125    */
126   virtual int DumpEvent( const AliHLTComponentEventData& evtData,
127                          const AliHLTComponentBlockData* blocks, 
128                          AliHLTComponentTriggerData& trigData );
129
130   /**
131    * Scan one argument and adjacent parameters.
132    * Can be overloaded by child classes in order to add additional arguments
133    * beyond the standard arguments of the file publisher. The method is called
134    * whenever a non-standard argument is recognized. Make sure to return 
135    * <tt> -EPROTO </tt> if the argument is not recognized be the child.
136    * @param argc           size of the argument array
137    * @param argv           agument array for component initialization
138    * @return number of processed members of the argv <br>
139    *         -EINVAL unknown argument <br>
140    *         -EPROTO parameter for argument missing <br>
141    */
142   virtual int ScanArgument(int argc, const char** argv);
143
144   /**
145    * Build file name from eventID data type and the specified directory and basename.
146    * @param eventID [in]   the ID of the event
147    * @param blockID [in]   the ID of the current block
148    *                       no block string appended if -1
149    * @param dataType [in]  the data type of the data block
150    *                       no type string appanded if @ref kAliHLTVoidDataType
151    * @param specification  data specification of the block
152    * @param filename [out] string to receive the file name
153    */
154   int BuildFileName(const AliHLTEventID_t eventID, const int blockID,
155                     const AliHLTComponentDataType& dataType,
156                     const AliHLTUInt32_t specification,
157                     TString& filename);
158
159   /**
160    * Set a mode flag.
161    * @return current mode flags
162    */
163   int SetMode(Short_t mode);
164     
165   /**
166    * Clear a mode flag.
167    * @return current mode flags
168    */
169   int ClearMode(Short_t mode);
170
171   /**
172    * Check a mode flag.
173    * @return 1 if flag is set, 0 if not
174    */
175   int CheckMode(Short_t mode) const;
176
177   /**
178    * Working modes of the writer
179    * @internal
180    */
181   enum TWriterMode {
182     /**
183      * flag to indicate whether to write each incoming block to separate files
184      * or all blocks of one event to one file. set = concatenate (one file).
185      */
186     kConcatenateBlocks = 0x1,
187
188     /**
189      * flag to indicate whether to concatenate incoming blocks of the same type
190      * for all events to one file. If also @ref kConcatenateBlocks is set,
191      * or all blocks of all events are written to the same file.
192      */
193     kConcatenateEvents = 0x2,
194
195     /** event enumeration flag */
196     kEnumerate = 0x4
197
198   };
199
200  private:
201   /** copy constructor prohibited */
202   AliHLTFileWriter(const AliHLTFileWriter&);
203   /** assignment operator prohibited */
204   AliHLTFileWriter& operator=(const AliHLTFileWriter&);
205
206   /** the basename of the output file */
207   TString    fBaseName;                                            // see above
208   /** the extension of the output file */
209   TString    fExtension;                                           // see above
210   /** target directory */
211   TString    fDirectory;                                           // see above
212   /** base name of the event sub directories */
213   TString    fSubDirFormat;                                        // see above
214   /** event id format string (when added to file name) */
215   TString    fIdFormat;                                            // see above
216   /** specification format string (when added to file name) */
217   TString    fSpecFormat;                                          // see above
218   /** format string for block no (when added to file name) */
219   TString    fBlcknoFormat;                                        // see above
220   /** enumeration format string */
221   TString    fCurrentFileName;                                     // see above
222
223   /** mode specifier, see @ref TWriterMode */
224   Short_t    fMode;                                                // see above
225
226   ClassDef(AliHLTFileWriter, 2)
227 };
228 #endif