]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/sim/AliHLTOUTComponent.cxx
Adding definitions for the fields of the lookup tables used in the dHLT analysis...
[u/mrichter/AliRoot.git] / HLT / sim / AliHLTOUTComponent.cxx
CommitLineData
c4228ec4 1// $Id$
2
3/**************************************************************************
4 * This file is property of and copyright by the ALICE HLT Project *
5 * ALICE Experiment at CERN, All rights reserved. *
6 * *
7 * Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8 * for The ALICE HLT 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 AliHLTOUTComponent.cxx
20 @author Matthias Richter
21 @date
13398559 22 @brief The HLTOUT data sink component similar to HLTOUT nodes
23*/
c4228ec4 24
25// see header file for class documentation
26// or
27// refer to README to build package
28// or
29// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
30
31#if __GNUC__>= 3
32using namespace std;
33#endif
34
4b113031 35#include <cassert>
13398559 36//#include <iostream>
c4228ec4 37#include "AliHLTOUTComponent.h"
4b113031 38#include "AliHLTOUT.h"
64defa03 39#include "AliHLTHOMERLibManager.h"
4b113031 40#include "AliHLTHOMERWriter.h"
a183f221 41#include "AliDAQ.h" // equipment Ids
4b113031 42#include "AliRawDataHeader.h" // Common Data Header
43#include <TDatime.h> // seed for TRandom
44#include <TRandom.h> // random int generation for DDL no
c4228ec4 45
46/** ROOT macro for the implementation of ROOT specific class methods */
47ClassImp(AliHLTOUTComponent)
48
49AliHLTOUTComponent::AliHLTOUTComponent()
50 :
4b113031 51 AliHLTOfflineDataSink(),
52 fWriters(),
53 fNofDDLs(10),
44dc7683 54 fIdFirstDDL(7680), // 0x1e<<8
a183f221 55 fBuffer(),
56 fpLibManager(NULL)
c4228ec4 57{
58 // see header file for class documentation
59 // or
60 // refer to README to build package
61 // or
62 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
4b113031 63
64 // I guess DDL definitions should never change any more
65 assert(fNofDDLs==AliDAQ::NumberOfDdls("HLT"));
66 fNofDDLs=AliDAQ::NumberOfDdls("HLT");
44dc7683 67
68 /* AliDAQ::DdlIDOffset returns wrong offset for HLT links
4b113031 69 assert(fIdFirstDDL==AliDAQ::DdlIDOffset("HLT"));
70 fIdFirstDDL=AliDAQ::DdlIDOffset("HLT");
44dc7683 71 */
c4228ec4 72}
73
2c0e5942 74int AliHLTOUTComponent::fgOptions=kWriteRawFiles|kWriteDigits;
75
c4228ec4 76AliHLTOUTComponent::~AliHLTOUTComponent()
77{
78 // see header file for class documentation
a183f221 79 if (fpLibManager) delete fpLibManager;
80 fpLibManager=NULL;
c4228ec4 81}
82
83const char* AliHLTOUTComponent::GetComponentID()
84{
85 // see header file for class documentation
86 return "HLTOUT";
87}
88
89void AliHLTOUTComponent::GetInputDataTypes( vector<AliHLTComponentDataType>& list)
90{
91 // see header file for class documentation
92 list.clear();
93 list.push_back(kAliHLTAnyDataType);
94}
95
96AliHLTComponent* AliHLTOUTComponent::Spawn()
97{
98 // see header file for class documentation
99 return new AliHLTOUTComponent;
100}
101
102int AliHLTOUTComponent::DoInit( int argc, const char** argv )
103{
104 // see header file for class documentation
105 int iResult=0;
106 TString argument="";
107 int bMissingParam=0;
108 for (int i=0; i<argc && iResult>=0; i++) {
109 argument=argv[i];
110 if (argument.IsNull()) continue;
111
a8420176 112 // -links
113 if (argument.CompareTo("-links")==0) {
114 if ((bMissingParam=(++i>=argc))) break;
115 TString parameter(argv[i]);
116 parameter.Remove(TString::kLeading, ' '); // remove all blanks
117 if (parameter.IsDigit()) {
118 fNofDDLs=parameter.Atoi();
119 } else {
120 HLTError("wrong parameter for argument %s, number expected", argument.Data());
121 iResult=-EINVAL;
122 }
123 } else {
c4228ec4 124 HLTError("unknown argument %s", argument.Data());
a8420176 125 iResult=-EINVAL;
c4228ec4 126 break;
127 }
128 }
129 if (bMissingParam) {
130 HLTError("missing parameter for argument %s", argument.Data());
131 iResult=-EINVAL;
132 }
133 if (iResult>=0) {
134 }
135
a183f221 136 fpLibManager=new AliHLTHOMERLibManager;
137 if (fpLibManager) {
138 int writerNo=0;
139 for (writerNo=0; writerNo<fNofDDLs; writerNo++) {
140 AliHLTMonitoringWriter* pWriter=fpLibManager->OpenWriter();
141 if (pWriter) {
a8420176 142 HLTDebug("HOMER writer %p added", pWriter);
a183f221 143 fWriters.push_back(pWriter);
144 } else {
5db0e774 145 HLTError("can nor open HOMER writer");
146 iResult=-ENODEV;
a183f221 147 break;
148 }
4b113031 149 }
a183f221 150 } else {
151 iResult=-ENOMEM;
4b113031 152 }
153
c4228ec4 154 return iResult;
155}
156
157int AliHLTOUTComponent::DoDeinit()
158{
159 // see header file for class documentation
160 int iResult=0;
4b113031 161
a183f221 162 if (fpLibManager) {
163 AliHLTMonitoringWriterPVector::iterator element=fWriters.begin();
164 while (element!= fWriters.end()) {
165 assert(*element);
b9dd5a11 166 // wanted to have a dynamic_cast<AliHLTHOMERWriter*> here, but this results into
167 // undefined symbol when loading the library
a8420176 168 (*element)->Clear();
b9dd5a11 169 if (*element!=NULL) fpLibManager->DeleteWriter((AliHLTHOMERWriter*)(*element));
a183f221 170 element=fWriters.erase(element);
171 }
4b113031 172 }
c4228ec4 173
174 return iResult;
175}
176
177int AliHLTOUTComponent::DumpEvent( const AliHLTComponentEventData& evtData,
178 const AliHLTComponentBlockData* blocks,
179 AliHLTComponentTriggerData& /*trigData*/ )
180{
181 // see header file for class documentation
182 int iResult=0;
2c0e5942 183 HLTInfo("write %d output block(s)", evtData.fBlockCnt);
4b113031 184 if (iResult>=0) {
185 homer_uint64 homerHeader[kCount_64b_Words];
186 HOMERBlockDescriptor homerDescriptor(homerHeader);
187 for (int n=0; n<(int)evtData.fBlockCnt; n++ ) {
188 memset( homerHeader, 0, sizeof(homer_uint64)*kCount_64b_Words );
189 homerDescriptor.Initialize();
44dc7683 190 // for some traditional reason the TCPDumpSubscriber swaps the bytes
191 // of the data type id and data type origin. Actually I do not understand
192 // the corresponding code line
193 // homerBlock.SetType( blocks[n].fDataType.fID );
194 // this compiles in the PubSub framework and in addition does a byte swap
195 homer_uint64 id=0;
196 homer_uint64 origin=0;
197 memcpy(&id, blocks[n].fDataType.fID, sizeof(homer_uint64));
198 memcpy(((AliHLTUInt8_t*)&origin)+sizeof(homer_uint32), blocks[n].fDataType.fOrigin, sizeof(homer_uint32));
ff3b6fed 199 homerDescriptor.SetType(AliHLTOUT::ByteSwap64(id));
200 homerDescriptor.SetSubType1(AliHLTOUT::ByteSwap32(origin));
44dc7683 201 homerDescriptor.SetSubType2(blocks[n].fSpecification);
a8420176 202 homerDescriptor.SetBlockSize(blocks[n].fSize);
4b113031 203 int writerNo=ShuffleWriters(fWriters, blocks[n].fSize);
13398559 204 assert(writerNo>=0 && writerNo<(int)fWriters.size());
a8420176 205 // I'm puzzled by the different headers, buffers etc. used in the
206 // HOMER writer/data. In additional, there is no type check as there
207 // are void pointers used and names mixed.
208 // It seems that HOMERBlockDescriptor is just a tool to set the
209 // different fields in the homer header, which is an array of 64 bit
210 // words.
211 fWriters[writerNo]->AddBlock(homerHeader, blocks[n].fPtr);
4b113031 212 }
213 }
214
215 return iResult;
216}
217
218int AliHLTOUTComponent::FillESD(int eventNo, AliRunLoader* runLoader, AliESDEvent* /*esd*/)
219{
220 // see header file for class documentation
221 int iResult=0;
222 if (fWriters.size()==0) return 0;
223
224 // search for the writer with the biggest data volume in order to allocate the
225 // output buffer of sufficient size
4b113031 226 vector<int> sorted;
d76bc02a 227 for (size_t i=0; i<fWriters.size(); i++) {
4b113031 228 assert(fWriters[i]);
229 if (fWriters[i]) {
a8420176 230 if (sorted.size()==0 || fWriters[i]->GetTotalMemorySize()<=fWriters[sorted[0]]->GetTotalMemorySize()) {
4b113031 231 sorted.push_back(i);
a8420176 232 } else {
233 sorted.insert(sorted.begin(), i);
4b113031 234 }
235 }
4b113031 236 }
237
238 vector<int>::iterator ddlno=sorted.begin();
239 while (ddlno!=sorted.end()) {
240 const AliHLTUInt8_t* pBuffer=NULL;
241 int bufferSize=0;
242
b9dd5a11 243 if ((bufferSize=FillOutputBuffer(eventNo, fWriters[*ddlno], pBuffer))>0) {
2c0e5942 244 if (fgOptions&kWriteDigits) WriteDigits(eventNo, runLoader, *ddlno, pBuffer, bufferSize);
245 if (fgOptions&kWriteRawFiles) WriteRawFile(eventNo, runLoader, *ddlno, pBuffer, bufferSize);
4b113031 246 }
a8420176 247 fWriters[*ddlno]->Clear();
4b113031 248 ddlno++;
249 }
250 return iResult;
251}
252
d76bc02a 253int AliHLTOUTComponent::ShuffleWriters(AliHLTMonitoringWriterPVector &list, AliHLTUInt32_t /*size*/)
4b113031 254{
255 // see header file for class documentation
256 int iResult=-ENOENT;
257 assert(list.size()>0);
258 if (list.size()==0) return iResult;
259 vector<int> writers;
d76bc02a 260 size_t i=0;
4b113031 261 for (i=0; i<list.size(); i++) {
262 if (list[i]->GetTotalMemorySize()==0)
263 writers.push_back(i);
264 else if (iResult<0 ||
265 list[i]->GetTotalMemorySize()<list[iResult]->GetTotalMemorySize())
266 iResult=i;
267
268 }
269 if (writers.size()>0) {
270 iResult=writers[0];
271 if (writers.size()>0) {
272 // shuffle among the empty writers
273 TDatime dt;
274 TRandom rand;
275 rand.SetSeed(dt.Get()*(iResult+1));
276 i=rand.Integer(writers.size()-1);
277 assert(i>0 && i<writers.size()-1);
278 iResult=writers[i];
279 }
280 } else {
281 // take the writer with the least data volume
282 assert(iResult>=0);
283 }
284 return iResult;
285}
286
a183f221 287int AliHLTOUTComponent::FillOutputBuffer(int eventNo, AliHLTMonitoringWriter* pWriter, const AliHLTUInt8_t* &pBuffer)
4b113031 288{
289 // see header file for class documentation
290 int iResult=0;
d76bc02a 291 unsigned int bufferSize=0;
4b113031 292
293 // space for common data header
294 bufferSize+=sizeof(AliRawDataHeader);
a8420176 295 assert(sizeof(AliRawDataHeader)==32);
4b113031 296
297 // space for HLT event header
298 bufferSize+=sizeof(AliHLTOUT::AliHLTOUTEventHeader);
299
300 // space for payload from the writer
301 if (pWriter) bufferSize+=pWriter->GetTotalMemorySize();
302
303 if (bufferSize>fBuffer.size())
304 fBuffer.resize(bufferSize);
305
306 if (bufferSize<=fBuffer.size()) {
307 AliRawDataHeader* pCDH=reinterpret_cast<AliRawDataHeader*>(&fBuffer[0]);
308 AliHLTOUT::AliHLTOUTEventHeader* pHLTH=reinterpret_cast<AliHLTOUT::AliHLTOUTEventHeader*>(&fBuffer[sizeof(AliRawDataHeader)]);
309 memset(pCDH, 0, sizeof(AliRawDataHeader));
310 memset(pHLTH, 0, sizeof(AliHLTOUT::AliHLTOUTEventHeader));
44dc7683 311
4b113031 312 if (pWriter) {
313 // copy payload
314 pWriter->Copy(&fBuffer[sizeof(AliRawDataHeader)+sizeof(AliHLTOUT::AliHLTOUTEventHeader)], 0, 0, 0, 0);
315 pHLTH->fLength=pWriter->GetTotalMemorySize();
316 // set status bit to indicate HLT payload
13398559 317 pCDH->fStatusMiniEventID|=0x1<<(AliHLTOUT::kCDHStatusFlagsOffset+AliHLTOUT::kCDHFlagsHLTPayload);
4b113031 318 }
319 pHLTH->fLength+=sizeof(AliHLTOUT::AliHLTOUTEventHeader);
320 pHLTH->fEventID=eventNo;
44dc7683 321 // version does not really matter since we do not add decision data
322 pHLTH->fVersion=AliHLTOUT::kVersion1;
4b113031 323
324 pCDH->fSize=sizeof(AliRawDataHeader)+pHLTH->fLength;
44dc7683 325 pCDH->fStatusMiniEventID|=0x1<<(AliHLTOUT::kCDHStatusFlagsOffset + AliHLTOUT::kCDHFlagsHLTPayload);
c4228ec4 326
4b113031 327 pBuffer=&fBuffer[0];
a8420176 328 iResult=(int)bufferSize;
4b113031 329 } else {
330 pBuffer=NULL;
331 iResult=-ENOMEM;
c4228ec4 332 }
333
334 return iResult;
335}
336
a8420176 337int AliHLTOUTComponent::WriteDigits(int /*eventNo*/, AliRunLoader* /*runLoader*/, int /*hltddl*/, const AliHLTUInt8_t* /*pBuffer*/, unsigned int /*bufferSize*/)
c4228ec4 338{
339 // see header file for class documentation
340 int iResult=0;
341 return iResult;
342}
4b113031 343
a8420176 344int AliHLTOUTComponent::WriteRawFile(int eventNo, AliRunLoader* /*runLoader*/, int hltddl, const AliHLTUInt8_t* pBuffer, unsigned int bufferSize)
4b113031 345{
346 // see header file for class documentation
347 int iResult=0;
348 const char* fileName=AliDAQ::DdlFileName("HLT", hltddl);
4b113031 349 assert(fileName!=NULL);
a8420176 350 TString filePath;
351 filePath.Form("raw%d/", eventNo);
352 filePath+=fileName;
4b113031 353 if (fileName) {
354 ios::openmode filemode=(ios::openmode)0;
355 ofstream rawfile(filePath.Data(), filemode);
356 if (rawfile.good()) {
357 if (pBuffer && bufferSize>0) {
358 rawfile.write(reinterpret_cast<const char*>(pBuffer), bufferSize);
359 } else {
360 HLTWarning("writing zero length raw data file %s");
361 }
362 HLTDebug("wrote %d byte(s) to file %s", bufferSize, filePath.Data());
363 } else {
364 HLTError("can not open file %s for writing", filePath.Data());
365 iResult=-EBADF;
366 }
367 rawfile.close();
368 }
369 return iResult;
370}
2c0e5942 371
372void AliHLTOUTComponent::SetGlobalOption(unsigned int options)
373{
374 // see header file for class documentation
375 fgOptions|=options;
376}
377
378void AliHLTOUTComponent::ClearGlobalOption(unsigned int options)
379{
380 // see header file for class documentation
381 fgOptions&=~options;
382}