1 |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/VarDumpReader.cpp,v $ |
3 |
* $Id: VarDumpReader.cpp,v 2.1 2004/12/03 22:08:01 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
5 |
* |
6 |
* Implementation of the VarDumpReader class. |
7 |
*/ |
8 |
|
9 |
#include <string> |
10 |
#include <log4cxx/logger.h> |
11 |
#include <fstream> |
12 |
#include "stdio.h" |
13 |
extern "C" { |
14 |
#include "CRC.h" |
15 |
} |
16 |
|
17 |
#include "ReaderAlgorithms.h" |
18 |
|
19 |
using namespace pamela; |
20 |
using namespace pamela::techmodel; |
21 |
|
22 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.VarDumpReader")); |
23 |
|
24 |
/** |
25 |
* Constructor. |
26 |
*/ |
27 |
VarDumpReader::VarDumpReader(void): |
28 |
TechmodelAlgorithm(PacketType::VarDump, "TechmodelVarDump") { |
29 |
VarDump = new VarDumpEvent(); |
30 |
} |
31 |
|
32 |
/** |
33 |
* Get a string with the version info of the algorithm. |
34 |
*/ |
35 |
std::string VarDumpReader::GetVersionInfo(void) const { |
36 |
return "$Header: /home/cvsmanager/yoda/techmodel/VarDumpReader.cpp,v 2.1 2004/12/03 22:08:01 kusanagi Exp $\n"; |
37 |
} |
38 |
|
39 |
/** |
40 |
* Initialize the algorithm with a special run. This will initialize the |
41 |
* event reader routines for all packet types. |
42 |
*/ |
43 |
void VarDumpReader::Init(PamelaRun *run) { |
44 |
SetInputStream(run); |
45 |
run->WriteSubPacket(this, &VarDump, VarDump->Class()); |
46 |
} |
47 |
|
48 |
/** |
49 |
* Unpack the VarDump event from an input file. |
50 |
*/ |
51 |
void VarDumpReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
52 |
|
53 |
char *subData; |
54 |
char eventCRC[2]; |
55 |
UINT16 subCRC; //CRC of the data |
56 |
UINT16 readCRC; //CRC read from the end of the subpacket |
57 |
long int dataLength; |
58 |
int vars; |
59 |
|
60 |
//the 2 bytes subtracted belong to the final event CRC bytes |
61 |
dataLength = length - (long int)2; |
62 |
|
63 |
subData = new char[dataLength]; |
64 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
65 |
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
66 |
|
67 |
//took the final CRC to compare it with the previous calculated CRC of the data |
68 |
InputFile->read(eventCRC, sizeof(eventCRC)); |
69 |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
70 |
|
71 |
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for VarDump Packet "); |
72 |
|
73 |
VarDumpRecord* rec; |
74 |
VarDump->Records->Clear(); |
75 |
TClonesArray &recs = *(VarDump->Records); |
76 |
|
77 |
vars = dataLength/5; |
78 |
for (int i=0; i<vars; i++){ |
79 |
rec = new(recs[i]) VarDumpRecord(); //add a new VarDump |
80 |
rec->VAR_ID = subData[i*5]; |
81 |
rec->VAR_VALUE = (((UINT32)subData[1+i*5]<<24)&0xFF000000) + (((UINT32)subData[2+i*5]<<16)&0x00FF0000) + (((UINT32)subData[3+i*5]<<8)&0x0000FF00) + (((UINT32)subData[4+i*5])&0x000000FF); |
82 |
} |
83 |
|
84 |
delete [] subData; |
85 |
} |
86 |
|