1 |
kusanagi |
1.1 |
/** @file |
2 |
|
|
* $Source: /home/cvspamela/yoda/techmodel/TabDumpReader.cpp,v $ |
3 |
|
|
* $Id: TabDumpReader.cpp,v 1.7 2004/05/11 10:12:35 nagni Exp $ |
4 |
|
|
* $Author: nagni $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the TabDumpReader class. |
7 |
|
|
*/ |
8 |
|
|
|
9 |
|
|
#include <string> |
10 |
|
|
#include <log4cpp/Category.hh> |
11 |
|
|
#include <fstream> |
12 |
|
|
#include "stdio.h" |
13 |
|
|
extern "C" { |
14 |
|
|
#include "CRC.h" |
15 |
|
|
} |
16 |
|
|
#include "ReaderAlgorithms.h" |
17 |
|
|
|
18 |
|
|
using namespace pamela; |
19 |
|
|
using namespace pamela::techmodel; |
20 |
|
|
|
21 |
|
|
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.TabDumpReader"); |
22 |
|
|
|
23 |
|
|
/** |
24 |
|
|
* Constructor. |
25 |
|
|
*/ |
26 |
|
|
TabDumpReader::TabDumpReader(void): |
27 |
|
|
TechmodelAlgorithm(PacketType::TabDump, "TechmodelTabDump") { |
28 |
|
|
TabDump = new TabDumpEvent(); |
29 |
|
|
} |
30 |
|
|
|
31 |
|
|
/** |
32 |
|
|
* Get a string with the version info of the algorithm. |
33 |
|
|
*/ |
34 |
|
|
std::string TabDumpReader::GetVersionInfo(void) const { |
35 |
|
|
return "$Header: /home/cvspamela/yoda/techmodel/TabDumpReader.cpp,v 1.7 2004/05/11 10:12:35 nagni Exp $\n"; |
36 |
|
|
} |
37 |
|
|
|
38 |
|
|
/** |
39 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
40 |
|
|
* event reader routines for all packet types. |
41 |
|
|
*/ |
42 |
|
|
void TabDumpReader::Init(PamelaRun *run) { |
43 |
|
|
SetInputStream(run); |
44 |
|
|
run->WriteSubPacket(this, &TabDump, TabDump->Class()); |
45 |
|
|
} |
46 |
|
|
|
47 |
|
|
/** |
48 |
|
|
* Unpack the TabDump event from an input file. |
49 |
|
|
*/ |
50 |
|
|
void TabDumpReader::RunEvent(int EventNumber, long int length) { |
51 |
|
|
|
52 |
|
|
char *subData; |
53 |
|
|
char eventCRC[2]; |
54 |
|
|
UINT16 subCRC; //CRC of the data |
55 |
|
|
UINT16 readCRC; //CRC read from the end of the subpacket |
56 |
|
|
long int dataLength; |
57 |
|
|
|
58 |
|
|
//the 2 bytes subtracted belong to the final event CRC bytes |
59 |
|
|
dataLength = length - (long int)2; |
60 |
|
|
|
61 |
|
|
subData = new char[dataLength]; |
62 |
|
|
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
63 |
|
|
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
64 |
|
|
|
65 |
|
|
//took the final CRC to compare it with the previous calculated CRC of the data |
66 |
|
|
InputFile->read(eventCRC, sizeof(eventCRC)); |
67 |
|
|
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
68 |
|
|
|
69 |
|
|
if(!(subCRC == readCRC)) { |
70 |
|
|
cat << log4cpp::Priority::ERROR |
71 |
|
|
<< "The test of calculated CRC with one wrote on file FAILED!!" |
72 |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
73 |
|
|
} |
74 |
|
|
|
75 |
|
|
//finally check if the RecordCRC is correct and finally update the partialCRC |
76 |
|
|
if (subCRC == readCRC){ |
77 |
|
|
/**************************************************************************** |
78 |
|
|
---------------------TBD read the data--------------------------- |
79 |
|
|
****************************************************************************/ |
80 |
|
|
free(subData); |
81 |
|
|
} else { |
82 |
|
|
cat << log4cpp::Priority::ERROR |
83 |
|
|
<< "Wrong CRC on Subpacket in TabDump Packet " |
84 |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
85 |
|
|
} |
86 |
|
|
} |