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.3 2004/08/24 16:01:57 kusanagi Exp $ |
* $Id: TmtcReader.cpp,v 2.1 2004/12/03 22:08:01 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.3 2004/08/24 16:01:57 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/TmtcReader.cpp,v 2.1 2004/12/03 22:08:01 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 |
106 |
rec->TM_RECORD_OBT = (((UINT32)subData[0]<<24)&0xFF000000) + (((UINT32)subData[1]<<16)&0x00FF0000) + (((UINT32)subData[2]<<8)&0x0000FF00) + ((UINT32)subData[3])&0x000000FF; |
rec->TM_RECORD_OBT = (((UINT32)subData[0]<<24)&0xFF000000) + (((UINT32)subData[1]<<16)&0x00FF0000) + (((UINT32)subData[2]<<8)&0x0000FF00) + ((UINT32)subData[3])&0x000000FF; |
107 |
|
|
108 |
for(j = 0; j < 16; j++) { |
for(j = 0; j < 16; j++) { |
109 |
rec->TM_DEA_ANA[j] = (((UINT16)subData[4+j]<<8)&0xFF00) + (((UINT16)subData[5+j])&0x00FF); |
rec->TM_DEA_ANA[j] = subData[4+j]; |
110 |
rec->TM_DEA_ANA_P[j] = (float)(rec->TM_DEA_ANA[j]*0.02); |
rec->TM_DEA_ANA_P[j] = (float)(rec->TM_DEA_ANA[j]*0.02); |
111 |
|
|
112 |
rec->TM_TH_ANA[j] = subData[36+j]; //36 is the size of TM_DEA_ANA + OBT |
rec->TM_TH_ANA[j] = ((((UINT16)subData[20+j]<<8)&0xFF00) + (((UINT16)subData[21+j])&0x00FF)); //20 is the size of TM_DEA_ANA(16) + OBT(4) |
113 |
rec->TM_TH_ANA_P[j] = convert_th(rec->TM_TH_ANA[j]); |
rec->TM_TH_ANA_P[j] = convert_th(rec->TM_TH_ANA[j]); |
114 |
} |
} |
115 |
|
|
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 |
|
|