]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/SampleLib/AliHLTDummyComponent.cxx
minor fix in function definition; missing header files added to Makefile.am
[u/mrichter/AliRoot.git] / HLT / SampleLib / AliHLTDummyComponent.cxx
CommitLineData
71d7c760 1// $Id$
2
3/**************************************************************************
4 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * *
6 * Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
7 * Timm Steinbeck <timm@kip.uni-heidelberg.de> *
8 * for The ALICE Off-line 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
b22e91eb 19/** @file AliHLTDummyComponent.cxx
20 @author Timm Steinbeck, Matthias Richter
21 @date
22 @brief A dummy processing component for the HLT. */
71d7c760 23
24#if __GNUC__ >= 3
25using namespace std;
26#endif
27
2d7ff710 28#include "AliHLTSystem.h"
71d7c760 29#include "AliHLTDummyComponent.h"
30#include <stdlib.h>
31#include <errno.h>
32
33// this is a global object used for automatic component registration, do not use this
34AliHLTDummyComponent gAliHLTDummyComponent;
35
36ClassImp(AliHLTDummyComponent)
37
38AliHLTDummyComponent::AliHLTDummyComponent()
2d7ff710 39 :
40 fOutputPercentage(100) // By default we copy to the output exactly what we got as input
71d7c760 41 {
71d7c760 42 }
43
44AliHLTDummyComponent::~AliHLTDummyComponent()
45 {
46 }
47
48const char* AliHLTDummyComponent::GetComponentID()
49 {
50 return "Dummy"; // The ID of this component
51 }
52
8ede8717 53void AliHLTDummyComponent::GetInputDataTypes( vector<AliHLTComponentDataType>& list)
71d7c760 54 {
55 list.clear(); // We do not have any requirements for our input data type(s).
56 }
57
8ede8717 58AliHLTComponentDataType AliHLTDummyComponent::GetOutputDataType()
71d7c760 59 {
2d7ff710 60 AliHLTComponentDataType dt;
61 SetDataType(dt, "DUMMY", "DUMY");
62 cout << "SetDataType: size " << dt.fStructSize << endl;
63 return dt;
71d7c760 64 }
65
66void AliHLTDummyComponent::GetOutputDataSize( unsigned long& constBase, double& inputMultiplier )
67 {
68 constBase = 0;
69 inputMultiplier = ((double)fOutputPercentage)/100.0;
70 }
71
72
73
74// Spawn function, return new instance of this class
75AliHLTComponent* AliHLTDummyComponent::Spawn()
76 {
77 return new AliHLTDummyComponent;
2d7ff710 78 }
71d7c760 79
80int AliHLTDummyComponent::DoInit( int argc, const char** argv )
81 {
82 // perform initialization. We check whether our relative output size is specified in the arguments.
83 fOutputPercentage = 100;
84 int i = 0;
85 char* cpErr;
86 while ( i < argc )
87 {
88 Logging( kHLTLogDebug, "HLT::Dummy::DoInit", "Arguments", "argv[%d] == %s", i, argv[i] );
89 if ( !strcmp( argv[i], "output_percentage" ) )
90 {
91 if ( i+1>=argc )
92 {
93 Logging(kHLTLogError, "HLT::Dummy::DoInit", "Missing Argument", "Missing output_percentage parameter");
94 return ENOTSUP;
95 }
96 Logging( kHLTLogDebug, "HLT::Dummy::DoInit", "Arguments", "argv[%d+1] == %s", i, argv[i+1] );
97 fOutputPercentage = strtoul( argv[i+1], &cpErr, 0 );
98 if ( *cpErr )
99 {
100 Logging(kHLTLogError, "HLT::Dummy::DoInit", "Wrong Argument", "Cannot convert output_percentage parameter '%s'", argv[i+1] );
101 return EINVAL;
102 }
103 Logging( kHLTLogInfo, "HLT::Dummy::DoInit", "Output percentage set", "Output percentage set to %lu %%", fOutputPercentage );
104 i += 2;
105 continue;
106 }
107 Logging(kHLTLogError, "HLT::Dummy::DoInit", "Unknown Option", "Unknown option '%s'", argv[i] );
108 return EINVAL;
109 }
110 return 0;
111 }
112
113int AliHLTDummyComponent::DoDeinit()
114 {
115 return 0;
116 }
117
8ede8717 118int AliHLTDummyComponent::DoEvent( const AliHLTComponentEventData& evtData, const AliHLTComponentBlockData* blocks,
119 AliHLTComponentTriggerData& trigData, AliHLTUInt8_t* outputPtr,
120 AliHLTUInt32_t& size, vector<AliHLTComponentBlockData>& outputBlocks )
71d7c760 121 {
122 Logging( kHLTLogInfo, "HLT::Dummy::DoEvent", "Output percentage set", "Output percentage set to %lu %%", fOutputPercentage );
123 // Process an event
124 unsigned long totalSize = 0;
125 // Loop over all input blocks in the event
126 for ( unsigned long n = 0; n < evtData.fBlockCnt; n++ )
127 {
128 // Align the beginning of this block to the required value.
129 if ( totalSize % kAliHLTBlockAlignment )
130 totalSize += kAliHLTBlockAlignment-(totalSize % kAliHLTBlockAlignment);
131 if ( totalSize > size )
132 break;
133 // Determine the size we should use for the output for this block (the input block's size times the relative output size)
134 unsigned long mySize = (blocks[n].fSize * fOutputPercentage) / 100;
135 Logging( kHLTLogInfo, "HLT::Dummy::DoEvent", "mySize set (1)", "mySize == %lu B - blocks[%lu].fSize == %lu - fOutputPercentage == %lu",
136 mySize, n, blocks[n].fSize, fOutputPercentage );
137 // Check how much space we have left and adapt this output block's size accordingly.
138 if ( totalSize + mySize > size )
139 mySize = size-totalSize;
140 Logging( kHLTLogInfo, "HLT::Dummy::DoEvent", "mySize set (2)", "mySize == %lu B - totalSize == %lu - size == %lu",
141 mySize, totalSize, size );
142 if ( mySize<=0 )
143 continue; // No room left to write a further block.
144 // Now copy the input block
145 unsigned long copied = 0;
146 // First copy all full multiples of the input block
147 while ( copied+blocks[n].fSize <= mySize )
148 {
149 Logging( kHLTLogInfo, "HLT::Dummy::DoEvent", "Copying", "Copying %lu B - Copied: %lu B - totalSize: %lu B",
150 blocks[n].fSize, copied, totalSize );
151 memcpy( outputPtr+totalSize+copied, blocks[n].fPtr, blocks[n].fSize );
152 copied += blocks[n].fSize;
153 }
154 // And the copy the remaining fragment of the block
155 Logging( kHLTLogInfo, "HLT::Dummy::DoEvent", "Copying", "Copying %lu B - Copied: %lu B - totalSize: %lu B",
156 mySize-copied, copied, totalSize );
157 memcpy( outputPtr+totalSize+copied, blocks[n].fPtr, mySize-copied );
158 Logging( kHLTLogInfo, "HLT::Dummy::DoEvent", "Copied", "Copied: %lu B - totalSize: %lu B",
159 copied, totalSize );
160 // Fill a block data structure for our output block.
8ede8717 161 AliHLTComponentBlockData ob;
71d7c760 162 // Let the structure be filled with the default values.
163 // This takes care of setting the shared memory and data type values to default values,
164 // so that they can be filled in by the calling code.
165 FillBlockData( ob );
166 // This block's start (offset) is after all other blocks written so far
167 ob.fOffset = totalSize;
168 // the size of this block's data.
169 ob.fSize = mySize;
170 // The specification of the data is copied from the input block.
171 ob.fSpecification = blocks[n].fSpecification;
172 // The data type is set automatically to the component's specified output data type.
173 // Place this block into the list of output blocks
174 outputBlocks.push_back( ob );
175 // Increase the total amount of data written so far to our output memory
176 totalSize += mySize;
177 }
178 // Finally we set the total size of output memory we consumed.
179 size = totalSize;
180 return 0;
181 }