2019-12-26 19:47:46 +01:00
|
|
|
#include <framework/tmtcservices/TmTcBridge.h>
|
|
|
|
|
|
|
|
#include <framework/ipc/QueueFactory.h>
|
2020-04-21 14:51:26 +02:00
|
|
|
#include <framework/objectmanager/ObjectManagerIF.h>
|
2019-12-26 19:47:46 +01:00
|
|
|
#include <framework/tmtcservices/AcceptsTelecommandsIF.h>
|
|
|
|
#include <framework/serviceinterface/ServiceInterfaceStream.h>
|
|
|
|
|
2020-04-18 13:16:00 +02:00
|
|
|
TmTcBridge::TmTcBridge(object_id_t objectId_,
|
|
|
|
object_id_t ccsdsPacketDistributor_): SystemObject(objectId_),
|
2020-04-21 14:51:26 +02:00
|
|
|
ccsdsPacketDistributor(ccsdsPacketDistributor_),
|
|
|
|
sentPacketsPerCycle(5), delayBetweenSentPacketsMs(0)
|
2020-04-18 13:16:00 +02:00
|
|
|
{
|
|
|
|
TmTcReceptionQueue = QueueFactory::instance()->
|
2019-12-26 19:47:46 +01:00
|
|
|
createMessageQueue(TMTC_RECEPTION_QUEUE_DEPTH);
|
|
|
|
}
|
|
|
|
|
2020-04-18 13:16:00 +02:00
|
|
|
TmTcBridge::~TmTcBridge() {}
|
2019-12-26 19:47:46 +01:00
|
|
|
|
2020-04-21 14:51:26 +02:00
|
|
|
void TmTcBridge::setDelayBetweenSentPackets(uint32_t delayBetweenSentPackets) {
|
|
|
|
this->delayBetweenSentPacketsMs = delayBetweenSentPackets;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::setNumberOfSentPacketsPerCycle(
|
|
|
|
uint8_t sentPacketsPerCycle) {
|
|
|
|
if(sentPacketsPerCycle <= MAX_STORED_DATA_SENT_PER_CYCLE) {
|
|
|
|
this->sentPacketsPerCycle = sentPacketsPerCycle;
|
|
|
|
return RETURN_OK;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-26 19:47:46 +01:00
|
|
|
ReturnValue_t TmTcBridge::initialize() {
|
|
|
|
tcStore = objectManager->get<StorageManagerIF>(objects::TC_STORE);
|
|
|
|
if (tcStore == NULL) {
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
tmStore = objectManager->get<StorageManagerIF>(objects::TM_STORE);
|
|
|
|
if (tmStore == NULL) {
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
AcceptsTelecommandsIF* tcDistributor =
|
|
|
|
objectManager->get<AcceptsTelecommandsIF>(ccsdsPacketDistributor);
|
|
|
|
if (tcDistributor == NULL) {
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
TmTcReceptionQueue->setDefaultDestination(tcDistributor->getRequestQueue());
|
|
|
|
return RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::performOperation(uint8_t operationCode) {
|
|
|
|
ReturnValue_t result;
|
|
|
|
result = handleTc();
|
|
|
|
if(result != RETURN_OK) {
|
|
|
|
error << "TMTC Bridge: Error handling TCs" << std::endl;
|
|
|
|
}
|
|
|
|
result = handleTm();
|
|
|
|
if (result != RETURN_OK) {
|
|
|
|
error << "TMTC Bridge: Error handling TMs" << std::endl;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::handleTc() {
|
2020-04-21 14:51:26 +02:00
|
|
|
uint8_t * recvBuffer = nullptr;
|
|
|
|
size_t recvLen = 0;
|
|
|
|
ReturnValue_t result = receiveTc(&recvBuffer, &recvLen);
|
2019-12-26 19:47:46 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::handleTm() {
|
|
|
|
ReturnValue_t result = readTmQueue();
|
|
|
|
if(result != RETURN_OK) {
|
|
|
|
error << "TMTC Bridge: Reading TM Queue failed" << std::endl;
|
|
|
|
return RETURN_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tmStored && communicationLinkUp) {
|
|
|
|
result = sendStoredTm();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::readTmQueue() {
|
|
|
|
TmTcMessage message;
|
2020-04-18 13:16:00 +02:00
|
|
|
const uint8_t* data = nullptr;
|
2019-12-26 19:47:46 +01:00
|
|
|
uint32_t size = 0;
|
|
|
|
for (ReturnValue_t result = TmTcReceptionQueue->receiveMessage(&message);
|
|
|
|
result == RETURN_OK; result = TmTcReceptionQueue->receiveMessage(&message))
|
|
|
|
{
|
2020-01-02 21:12:21 +01:00
|
|
|
if(communicationLinkUp == false) {
|
2019-12-26 19:47:46 +01:00
|
|
|
result = storeDownlinkData(&message);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = tmStore->getData(message.getStorageId(), &data, &size);
|
|
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = sendTm(data, size);
|
|
|
|
if (result != RETURN_OK) {
|
2020-01-02 21:12:21 +01:00
|
|
|
error << "TMTC Bridge: Could not send TM packet"<< std::endl;
|
2019-12-26 19:47:46 +01:00
|
|
|
tmStore->deleteData(message.getStorageId());
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
tmStore->deleteData(message.getStorageId());
|
|
|
|
}
|
|
|
|
return RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::storeDownlinkData(TmTcMessage *message) {
|
2020-04-21 14:54:04 +02:00
|
|
|
//debug << "TMTC Bridge: Comm Link down. "
|
|
|
|
// "Saving packet ID to be sent later\r\n" << std::flush;
|
2020-04-18 13:16:00 +02:00
|
|
|
store_address_t storeId = 0;
|
2019-12-26 19:47:46 +01:00
|
|
|
|
|
|
|
if(fifo.full()) {
|
2020-04-21 14:51:26 +02:00
|
|
|
error << "TMTC Bridge: TM downlink max. number of stored packet IDs "
|
|
|
|
"reached! Overwriting old data" << std::endl;
|
2019-12-26 19:47:46 +01:00
|
|
|
fifo.retrieve(&storeId);
|
2020-04-17 23:20:47 +02:00
|
|
|
tmStore->deleteData(storeId);
|
2019-12-26 19:47:46 +01:00
|
|
|
}
|
|
|
|
storeId = message->getStorageId();
|
|
|
|
fifo.insert(storeId);
|
|
|
|
tmStored = true;
|
|
|
|
return RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TmTcBridge::sendStoredTm() {
|
|
|
|
uint8_t counter = 0;
|
|
|
|
ReturnValue_t result = RETURN_OK;
|
2020-04-21 14:51:26 +02:00
|
|
|
while(!fifo.empty() && counter < sentPacketsPerCycle) {
|
|
|
|
//info << "TMTC Bridge: Sending stored TM data. There are "
|
|
|
|
// << (int) fifo.size() << " left to send\r\n" << std::flush;
|
2019-12-26 19:47:46 +01:00
|
|
|
store_address_t storeId;
|
|
|
|
const uint8_t* data = NULL;
|
|
|
|
uint32_t size = 0;
|
|
|
|
fifo.retrieve(&storeId);
|
|
|
|
result = tmStore->getData(storeId, &data, &size);
|
2020-04-21 14:51:26 +02:00
|
|
|
// This does not work yet: is not static function
|
|
|
|
//PeriodicTaskIF::sleepFor(delayBetweenSentPacketsMs);
|
2019-12-26 19:47:46 +01:00
|
|
|
sendTm(data,size);
|
|
|
|
if(result != RETURN_OK) {
|
2020-04-18 13:35:41 +02:00
|
|
|
error << "TMTC Bridge: Could not send stored downlink data"
|
|
|
|
<< std::endl;
|
2019-12-26 19:47:46 +01:00
|
|
|
result = RETURN_FAILED;
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
|
|
|
|
if(fifo.empty()) {
|
|
|
|
tmStored = false;
|
|
|
|
}
|
|
|
|
tmStore->deleteData(storeId);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TmTcBridge::registerCommConnect() {
|
2020-04-17 23:14:11 +02:00
|
|
|
if(!communicationLinkUp) {
|
|
|
|
info << "TMTC Bridge: Registered Comm Link Connect" << std::endl;
|
2019-12-26 19:47:46 +01:00
|
|
|
communicationLinkUp = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TmTcBridge::registerCommDisconnect() {
|
|
|
|
info << "TMTC Bridge: Registered Comm Link Disconnect" << std::endl;
|
|
|
|
if(communicationLinkUp) {
|
|
|
|
communicationLinkUp = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueueId_t TmTcBridge::getReportReceptionQueue(uint8_t virtualChannel) {
|
|
|
|
return TmTcReceptionQueue->getId();
|
|
|
|
}
|
|
|
|
|
2020-04-21 14:51:26 +02:00
|
|
|
void TmTcBridge::printData(uint8_t * data, size_t dataLen) {
|
2019-12-26 19:47:46 +01:00
|
|
|
info << "TMTC Bridge: Printing data: [";
|
|
|
|
for(uint32_t i=0;i<dataLen;i++) {
|
|
|
|
info << std::hex << (int)data[i];
|
|
|
|
if(i < dataLen-1){
|
|
|
|
info << " , ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
info << " ] " << std::endl;
|
|
|
|
}
|