1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v $ |
3 |
* $Id: TmtcReader.cpp,v 1.4 2004/09/21 20:24:33 kusanagi Exp $ |
* $Id: TmtcReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the TmtcReader class. |
* Implementation of the TmtcReader class. |
8 |
* Control the CRC for the entire data Packet not just for single records |
* Control the CRC for the entire data Packet not just for single records |
9 |
*/ |
*/ |
10 |
|
|
|
|
|
|
|
|
|
|
|
11 |
#include <string> |
#include <string> |
12 |
#include <log4cxx/logger.h> |
#include <log4cxx/logger.h> |
13 |
extern "C" { |
extern "C" { |
40 |
*/ |
*/ |
41 |
std::string TmtcReader::GetVersionInfo(void) const { |
std::string TmtcReader::GetVersionInfo(void) const { |
42 |
return |
return |
43 |
"$Header: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v 1.4 2004/09/21 20:24:33 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n"; |
44 |
} |
} |
45 |
|
|
46 |
/** |
/** |
55 |
/** |
/** |
56 |
* Unpack the Tmtc event from an input file. |
* Unpack the Tmtc event from an input file. |
57 |
*/ |
*/ |
58 |
void TmtcReader::RunEvent(int EventNumber, long int length) { |
void TmtcReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
59 |
|
|
60 |
/* |
/* |
61 |
//Just to test crc |
//Just to test crc |
117 |
rec->TM_CC_DIAG_ACQ = (((UINT32)subData[54]<<24)&0xFF000000) + (((UINT32)subData[55]<<16)&0x00FF0000) + (((UINT32)subData[56]<<8)&0x0000FF00) + ((UINT32)subData[57])&0x000000FF; |
rec->TM_CC_DIAG_ACQ = (((UINT32)subData[54]<<24)&0xFF000000) + (((UINT32)subData[55]<<16)&0x00FF0000) + (((UINT32)subData[56]<<8)&0x0000FF00) + ((UINT32)subData[57])&0x000000FF; |
118 |
} else { |
} else { |
119 |
stringstream oss; |
stringstream oss; |
120 |
oss.flush(); |
oss.str(""); |
121 |
oss << "Wrong CRC on Subpacket int TMTC Packet starting at position" |
oss << "Wrong CRC on Subpacket int TMTC Packet starting at position" |
122 |
<< start; |
<< start; |
123 |
logger->warn(oss.str().c_str()); |
logger->warn(oss.str().c_str()); |
125 |
} |
} |
126 |
InputFile->read(eventCRC, sizeof(eventCRC)); |
InputFile->read(eventCRC, sizeof(eventCRC)); |
127 |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
128 |
if(!(partialCRC == readCRC)) { |
if(partialCRC != readCRC) throw WrongCRCException(" Wrong Global CRC for TMTC Packet "); |
|
logger->warn(_T("The test of calculated CRC with one wrote on file FAILED!!")); |
|
|
} |
|
129 |
} |
} |
130 |
|
|
131 |
|
|