]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTOUT.cxx
more bugfixes on data type operator semantics: earlier workarounds have been cleaned now
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTOUT.cxx
CommitLineData
62bb3cd4 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 AliHLTOUT.cxx
20 @author Matthias Richter
21 @date
22 @brief The control class for HLTOUT data. */
23
4de7334f 24// see header file for class documentation
25// or
26// refer to README to build package
27// or
28// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
62bb3cd4 29
4de7334f 30#include <cerrno>
5db0e774 31#include <cassert>
62bb3cd4 32#include "AliHLTOUT.h"
33
34/** ROOT macro for the implementation of ROOT specific class methods */
35ClassImp(AliHLTOUT)
36
37AliHLTOUT::AliHLTOUT()
4de7334f 38 :
39 fSearchDataType(kAliHLTVoidDataType),
40 fSearchSpecification(kAliHLTVoidDataSpec),
049b43b2 41 fFlags(0),
4de7334f 42 fBlockDescList(),
43 fCurrent(fBlockDescList.begin()),
5db0e774 44 fpBuffer(NULL),
45 fDataHandlers()
4de7334f 46{
62bb3cd4 47 // see header file for class documentation
48 // or
49 // refer to README to build package
50 // or
51 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
52}
53
4b113031 54// definitions from ALICE internal note ALICE-INT-2002-010
55const unsigned char AliHLTOUT::fgkCDHStatusWord=4;
56const unsigned char AliHLTOUT::fgkCDHStatusFlagsOffset=12;
57
58// definitions from ALICE internal note ALICE-INT-2006-XXX
59const unsigned char AliHLTOUT::fgkCDHFlagsHLTDecision=6;
60const unsigned char AliHLTOUT::fgkCDHFlagsHLTPayload=7;
61
62bb3cd4 62AliHLTOUT::~AliHLTOUT()
4de7334f 63{
64 // see header file for class documentation
65}
66
5db0e774 67int AliHLTOUT::Init()
68{
69 // see header file for class documentation
70 int iResult=0;
71 if ((iResult=GenerateIndex())>=0) {
72 if ((iResult=InitHandlers())>=0) {
73 }
74 }
75 return iResult;
76}
77
4de7334f 78int AliHLTOUT::GetNofDataBlocks()
79{
80 // see header file for class documentation
81 return fBlockDescList.size();
82}
83
5db0e774 84int AliHLTOUT::SelectFirstDataBlock(AliHLTComponentDataType dt, AliHLTUInt32_t spec,
85 AliHLTModuleAgent::AliHLTOUTHandlerType handlerType)
4de7334f 86{
87 // see header file for class documentation
049b43b2 88 if (CheckStatusFlag(kLocked)) return -EPERM;
4de7334f 89 fCurrent=fBlockDescList.begin();
90 fSearchDataType=dt;
91 fSearchSpecification=spec;
5db0e774 92 //fSearchHandlerType=handlerType;
049b43b2 93 return FindAndSelectDataBlock();
4de7334f 94}
95
96int AliHLTOUT::SelectNextDataBlock()
97{
98 // see header file for class documentation
049b43b2 99 if (CheckStatusFlag(kLocked)) return -EPERM;
100 fCurrent++;
101 return FindAndSelectDataBlock();
102}
103
104int AliHLTOUT::FindAndSelectDataBlock()
105{
106 // see header file for class documentation
107 if (CheckStatusFlag(kLocked)) return -EPERM;
4de7334f 108 int iResult=-ENOENT;
109 while (fCurrent!=fBlockDescList.end() && iResult==-ENOENT) {
d8f5c9fe 110 if ((*fCurrent)==fSearchDataType &&
5db0e774 111 fSearchSpecification==kAliHLTVoidDataSpec || (*fCurrent)==fSearchSpecification &&
112 1/*fSearchHandlerType==AliHLTModuleAgent::kUnknownOutput*/) {
4de7334f 113 iResult=0;
049b43b2 114 // TODO: check the byte order on the current system and the byte order of the
115 // data block, print warning when missmatch and user did not check
d76bc02a 116 //AliHLTOUTByteOrder_t blockBO=CheckByteOrder();
06f53caf 117 CheckByteOrder();
049b43b2 118 /*
119 if (blockBO!=fByteOrder) {
120 SetStatusFlag(kByteOrderWarning);
121
122 }
123 */
124 ClearStatusFlag(kByteOrderChecked);
125
126 // TODO: check the alignment on the current system and the alignment of the
127 // data block, print warning when missmatch and user did not check
128 ClearStatusFlag(kAlignmentChecked);
4de7334f 129 }
049b43b2 130 fCurrent++;
4de7334f 131 }
132 return iResult;
133}
134
135int AliHLTOUT::GetDataBlockDescription(AliHLTComponentDataType& dt, AliHLTUInt32_t& spec)
136{
137 // see header file for class documentation
138 int iResult=-ENOENT;
139 if (fCurrent!=fBlockDescList.end()) {
140 iResult=0;
141 dt=(*fCurrent);
142 spec=(*fCurrent);
143 }
144 return iResult;
145}
146
5db0e774 147AliHLTUInt32_t AliHLTOUT::GetDataBlockIndex()
148{
149 // see header file for class documentation
150 assert(0); // not implemented
151 return AliHLTOUTInvalidIndex;
152}
153
4de7334f 154int AliHLTOUT::GetDataBuffer(const AliHLTUInt8_t* &pBuffer, AliHLTUInt32_t& size)
155{
156 // see header file for class documentation
157 int iResult=-ENOENT;
158 pBuffer=NULL;
159 size=0;
160 if (fCurrent!=fBlockDescList.end()) {
161 if ((iResult=GetDataBuffer((*fCurrent).GetIndex(), pBuffer, size))>=0) {
162 fpBuffer=pBuffer;
163 }
164 }
165 return iResult;
166}
167
168int AliHLTOUT::ReleaseDataBuffer(const AliHLTUInt8_t* pBuffer)
169{
170 // see header file for class documentation
171 int iResult=0;
172 if (pBuffer==fpBuffer) {
173 fpBuffer=NULL;
174 } else {
175 HLTWarning("buffer %p does not match the provided one %p", pBuffer, fpBuffer);
176 }
177 return iResult;
178}
179
180int AliHLTOUT::AddBlockDescriptor(const AliHLTOUTBlockDescriptor desc)
181{
62bb3cd4 182 // see header file for class documentation
049b43b2 183 if (!CheckStatusFlag(kCollecting)) return -EPERM;
4de7334f 184 int iResult=0;
185 fBlockDescList.push_back(desc);
186 return iResult;
62bb3cd4 187}
049b43b2 188
189AliHLTOUT::AliHLTOUTByteOrder_t AliHLTOUT::CheckByteOrder()
190{
5db0e774 191 // see header file for class documentation
049b43b2 192 if (fCurrent!=fBlockDescList.end()) {
193 SetStatusFlag(kByteOrderChecked);
194 AliHLTOUT::AliHLTOUTByteOrder_t order=CheckBlockByteOrder((*fCurrent).GetIndex());
195 return order;
196 }
197 return kInvalidByteOrder;
198}
199
200int AliHLTOUT::CheckAlignment(AliHLTOUT::AliHLTOUTDataType_t type)
201{
5db0e774 202 // see header file for class documentation
049b43b2 203 if (fCurrent!=fBlockDescList.end()) {
204 SetStatusFlag(kAlignmentChecked);
205 int alignment=CheckBlockAlignment((*fCurrent).GetIndex(), type);
206 return alignment;
207 }
208 return -ENOENT;
209}
5db0e774 210
211int AliHLTOUT::InitHandlers()
212{
213 // see header file for class documentation
214 int iResult=0;
215 AliHLTOUTIndexList remnants;
216 for (iResult=SelectFirstDataBlock(kAliHLTAnyDataType, kAliHLTVoidDataSpec); iResult>0; iResult=SelectNextDataBlock()) {
217 remnants.push_back(GetDataBlockIndex());
218 AliHLTComponentDataType dt=kAliHLTVoidDataType;
219 AliHLTUInt32_t spec=kAliHLTVoidDataSpec;
220 if ((iResult=GetDataBlockDescription(dt, spec))<0) break;
221 for (AliHLTModuleAgent* pAgent=AliHLTModuleAgent::GetFirstAgent(); pAgent && iResult>=0; pAgent=AliHLTModuleAgent::GetNextAgent()) {
222 AliHLTModuleAgent::AliHLTOUTHandlerDesc handlerDesc;
223 if (pAgent->GetHandlerDescription(dt, spec, &handlerDesc)>0) {
224 AliHLTOUTHandlerListEntry entry(pAgent->GetOutputHandler(dt, spec), handlerDesc, pAgent, GetDataBlockIndex());
225 iResult=InsertHandler(entry);
226 remnants.pop_back();
227 break;
228 }
229 }
230 }
231 if (remnants.size()>0) {
232 HLTWarning("no handlers found for %d data blocks out of %d", remnants.size(), GetNofDataBlocks());
233 vector<AliHLTOUTBlockDescriptor>::iterator block=fBlockDescList.begin();
234 for (AliHLTOUTIndexList::iterator element=remnants.begin(); element!=remnants.end(); element++) {
235 for (int trials=0; trials<2; trials++) {
236 do {
237 // we start searching the index from the current position in the block list
238 if ((*block).GetIndex()==*element) break;
239 } while ((++block)!=fBlockDescList.end());
240 if (block==fBlockDescList.end()) {
241 // rewind and try again
242 block=fBlockDescList.begin();
243 }
244 }
245 assert(block!=fBlockDescList.end());
246 if (block!=fBlockDescList.end()) {
247 HLTDebug(" %s", AliHLTComponent::DataType2Text((AliHLTComponentDataType)*block).c_str());
248 }
249 }
250 }
251 return iResult;
252}
253
254int AliHLTOUT::InsertHandler(const AliHLTOUTHandlerListEntry &entry)
255{
256 // see header file for class documentation
257 int iResult=0;
258 vector<AliHLTOUTHandlerListEntry>::iterator element=fDataHandlers.begin();
259 while (element!=fDataHandlers.end()) {
260 if (entry==(*element)) break;
261 element++;
262 }
263 if (element==fDataHandlers.end()) {
264 fDataHandlers.push_back(entry);
265 } else {
266
267 }
268 return iResult;
269}
270
271AliHLTOUT::AliHLTOUTHandlerListEntry::AliHLTOUTHandlerListEntry(AliHLTOUTHandler* pHandler,
272 AliHLTModuleAgent::AliHLTOUTHandlerDesc& handlerDesc,
273 AliHLTModuleAgent* pAgent,
274 AliHLTUInt32_t index)
275 :
276 fpHandler(pHandler),
277 fHandlerDesc(handlerDesc),
278 fpAgent(pAgent),
279 fBlocks()
280{
281 // see header file for class documentation
282 fBlocks.push_back(index);
283}
284
285AliHLTOUT::AliHLTOUTHandlerListEntry::AliHLTOUTHandlerListEntry(const AliHLTOUTHandlerListEntry& src)
286 :
287 fpHandler(src.fpHandler),
288 fHandlerDesc(src.fHandlerDesc),
289 fpAgent(src.fpAgent),
290 fBlocks()
291{
292 // see header file for class documentation
293 fBlocks.assign(src.fBlocks.begin(), src.fBlocks.end());
294}
295
fb24bec7 296AliHLTOUT::AliHLTOUTHandlerListEntry::~AliHLTOUTHandlerListEntry()
297{
298 // see header file for class documentation
299}
300
5db0e774 301AliHLTOUT::AliHLTOUTHandlerListEntry& AliHLTOUT::AliHLTOUTHandlerListEntry::operator=(const AliHLTOUTHandlerListEntry& src)
302{
303 // see header file for class documentation
304 fpHandler=src.fpHandler;
305 fHandlerDesc=src.fHandlerDesc;
306 fpAgent=src.fpAgent;
307 fBlocks.assign(src.fBlocks.begin(), src.fBlocks.end());
308 return *this;
309}
310
311AliHLTUInt32_t AliHLTOUT::AliHLTOUTHandlerListEntry::operator[](int i) const {
312 return fBlocks.size()>i?fBlocks[i]:AliHLTOUTInvalidIndex;
313}
314
fb24bec7 315bool AliHLTOUT::AliHLTOUTHandlerListEntry::operator==(const AliHLTOUTHandlerListEntry& entry) const
316{
317 return false;
318}
319
5db0e774 320void AliHLTOUT::AliHLTOUTHandlerListEntry::AddIndex(AliHLTUInt32_t index) {
321 fBlocks.push_back(index);
322}