fsfw/src/fsfw/tcdistribution/PusDistributor.cpp

155 lines
5.7 KiB
C++
Raw Normal View History

2022-07-19 18:13:25 +02:00
#include "fsfw/tcdistribution/PusDistributor.h"
2020-10-01 13:23:06 +02:00
2021-07-13 20:22:54 +02:00
#include "fsfw/objectmanager/ObjectManager.h"
#include "fsfw/serviceinterface/ServiceInterface.h"
2022-02-02 10:29:30 +01:00
#include "fsfw/tcdistribution/CCSDSDistributorIF.h"
2021-07-13 20:22:54 +02:00
#include "fsfw/tmtcservices/PusVerificationReport.h"
2022-02-02 10:29:30 +01:00
#define PUS_DISTRIBUTOR_DEBUGGING 0
2021-04-07 12:03:28 +02:00
2022-07-19 18:13:25 +02:00
PusDistributor::PusDistributor(StorageManagerIF* store_, uint16_t setApid, object_id_t setObjectId,
2022-02-02 10:29:30 +01:00
object_id_t setPacketSource)
: TcDistributor(setObjectId),
2022-07-19 18:13:25 +02:00
store(store_),
checker(setApid, ccsds::PacketType::TC),
2022-02-02 10:29:30 +01:00
tcStatus(RETURN_FAILED),
packetSource(setPacketSource) {}
2022-07-19 18:13:25 +02:00
PusDistributor::~PusDistributor() = default;
2022-07-19 18:13:25 +02:00
PusDistributor::TcMqMapIter PusDistributor::selectDestination() {
2021-04-07 12:03:28 +02:00
#if FSFW_CPP_OSTREAM_ENABLED == 1 && PUS_DISTRIBUTOR_DEBUGGING == 1
store_address_t storeId = this->currentMessage.getStorageId());
2022-02-02 10:29:30 +01:00
sif::debug << "PUSDistributor::handlePacket received: " << storeId.poolIndex << ", "
<< storeId.packetIndex << std::endl;
#endif
2022-05-20 11:20:31 +02:00
auto queueMapIt = this->queueMap.end();
2022-02-02 10:29:30 +01:00
if (this->currentPacket == nullptr) {
return queueMapIt;
2020-10-03 14:19:42 +02:00
}
2022-07-19 18:13:25 +02:00
// TODO: Need to set the data
const uint8_t* packetPtr = nullptr;
size_t packetLen = 0;
if (store->getData(currentMessage.getStorageId(), &packetPtr, &packetLen) !=
HasReturnvaluesIF::RETURN_OK) {
return queueMapIt;
}
2022-07-20 22:21:15 +02:00
reader.setReadOnlyData(packetPtr, packetLen);
2022-07-19 18:13:25 +02:00
// this->currentPacket->setStoreAddress(this->currentMessage.getStorageId(), currentPacket);
if (reader.getFullData() != nullptr) {
tcStatus =
checker.checkPacket(dynamic_cast<PacketCheckIF*>(&reader), reader.getFullPacketLen());
2022-02-02 10:29:30 +01:00
if (tcStatus != HasReturnvaluesIF::RETURN_OK) {
2021-04-07 12:03:28 +02:00
#if FSFW_VERBOSE_LEVEL >= 1
2022-02-02 10:29:30 +01:00
const char* keyword = "unnamed error";
if (tcStatus == TcPacketCheckPUS::INCORRECT_CHECKSUM) {
keyword = "checksum";
} else if (tcStatus == TcPacketCheckPUS::INCORRECT_PRIMARY_HEADER) {
keyword = "incorrect primary header";
} else if (tcStatus == TcPacketCheckPUS::ILLEGAL_APID) {
keyword = "illegal APID";
} else if (tcStatus == TcPacketCheckPUS::INCORRECT_SECONDARY_HEADER) {
keyword = "incorrect secondary header";
} else if (tcStatus == TcPacketCheckPUS::INCOMPLETE_PACKET) {
keyword = "incomplete packet";
}
2021-01-03 14:16:52 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 1
2022-02-02 10:29:30 +01:00
sif::warning << "PUSDistributor::handlePacket: Packet format invalid, " << keyword
<< " error" << std::endl;
2021-04-07 12:03:28 +02:00
#else
2022-05-24 10:40:25 +02:00
sif::printWarning("PUSDistributor::handlePacket: Packet format invalid, %s error\n",
keyword);
#endif
2020-10-01 13:23:06 +02:00
#endif
2022-02-02 10:29:30 +01:00
}
2022-07-19 18:13:25 +02:00
uint32_t queue_id = reader.getService();
2022-02-02 10:29:30 +01:00
queueMapIt = this->queueMap.find(queue_id);
} else {
tcStatus = PACKET_LOST;
2020-10-01 13:23:06 +02:00
}
2020-10-01 13:23:06 +02:00
if (queueMapIt == this->queueMap.end()) {
2022-02-02 10:29:30 +01:00
tcStatus = DESTINATION_NOT_FOUND;
2021-04-07 12:03:28 +02:00
#if FSFW_VERBOSE_LEVEL >= 1
2021-01-03 14:16:52 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 1
2022-02-02 10:29:30 +01:00
sif::debug << "PUSDistributor::handlePacket: Destination not found" << std::endl;
2021-04-07 12:03:28 +02:00
#else
2022-02-02 10:29:30 +01:00
sif::printDebug("PUSDistributor::handlePacket: Destination not found\n");
2021-04-07 12:03:28 +02:00
#endif /* !FSFW_CPP_OSTREAM_ENABLED == 1 */
2020-10-01 13:23:06 +02:00
#endif
}
2020-10-01 13:23:06 +02:00
if (tcStatus != RETURN_OK) {
2022-02-02 10:29:30 +01:00
return this->queueMap.end();
} else {
return queueMapIt;
2020-10-01 13:23:06 +02:00
}
}
2022-07-19 18:13:25 +02:00
ReturnValue_t PusDistributor::registerService(AcceptsTelecommandsIF* service) {
2022-02-02 10:29:30 +01:00
uint16_t serviceId = service->getIdentifier();
2021-04-07 12:03:28 +02:00
#if PUS_DISTRIBUTOR_DEBUGGING == 1
2021-01-03 14:16:52 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 1
2022-02-02 10:29:30 +01:00
sif::info << "Service ID: " << static_cast<int>(serviceId) << std::endl;
2021-04-07 12:03:28 +02:00
#else
2022-02-02 10:29:30 +01:00
sif::printInfo("Service ID: %d\n", static_cast<int>(serviceId));
2021-04-07 12:03:28 +02:00
#endif
#endif
2022-02-02 10:29:30 +01:00
MessageQueueId_t queue = service->getRequestQueue();
auto returnPair = queueMap.emplace(serviceId, queue);
if (not returnPair.second) {
2021-04-07 12:03:28 +02:00
#if FSFW_VERBOSE_LEVEL >= 1
2021-01-03 14:16:52 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 1
2022-02-02 10:29:30 +01:00
sif::error << "PUSDistributor::registerService: Service ID already"
" exists in map"
<< std::endl;
2021-04-07 12:03:28 +02:00
#else
2022-02-02 10:29:30 +01:00
sif::printError("PUSDistributor::registerService: Service ID already exists in map\n");
#endif
2021-04-07 12:03:28 +02:00
#endif
2022-02-02 10:29:30 +01:00
return SERVICE_ID_ALREADY_EXISTS;
}
return HasReturnvaluesIF::RETURN_OK;
}
2022-07-19 18:13:25 +02:00
MessageQueueId_t PusDistributor::getRequestQueue() { return tcQueue->getId(); }
2022-07-19 18:13:25 +02:00
ReturnValue_t PusDistributor::callbackAfterSending(ReturnValue_t queueStatus) {
2022-02-02 10:29:30 +01:00
if (queueStatus != RETURN_OK) {
tcStatus = queueStatus;
}
if (tcStatus != RETURN_OK) {
2022-07-26 13:59:09 +02:00
verifyChannel->sendFailureReport(
VerifFailureParams(tcverif::ACCEPTANCE_FAILURE, reader, tcStatus));
2022-02-02 10:29:30 +01:00
// A failed packet is deleted immediately after reporting,
// otherwise it will block memory.
2022-07-19 18:13:25 +02:00
store->deleteData(currentMessage.getStorageId());
2022-02-02 10:29:30 +01:00
return RETURN_FAILED;
} else {
2022-07-26 13:59:09 +02:00
verifyChannel->sendSuccessReport(VerifSuccessParams(tcverif::ACCEPTANCE_SUCCESS, reader));
2022-02-02 10:29:30 +01:00
return RETURN_OK;
}
}
2022-07-19 18:13:25 +02:00
uint16_t PusDistributor::getIdentifier() { return checker.getApid(); }
2022-07-19 18:13:25 +02:00
ReturnValue_t PusDistributor::initialize() {
2022-02-02 10:29:30 +01:00
if (currentPacket == nullptr) {
// Should not happen, memory allocation failed!
return ObjectManagerIF::CHILD_INIT_FAILED;
}
2020-10-20 15:04:28 +02:00
2022-05-24 10:40:25 +02:00
auto* ccsdsDistributor = ObjectManager::instance()->get<CCSDSDistributorIF>(packetSource);
2022-02-02 10:29:30 +01:00
if (ccsdsDistributor == nullptr) {
2021-01-03 14:16:52 +01:00
#if FSFW_CPP_OSTREAM_ENABLED == 1
2022-02-02 10:29:30 +01:00
sif::error << "PUSDistributor::initialize: Packet source invalid" << std::endl;
sif::error << " Make sure it exists and implements CCSDSDistributorIF!" << std::endl;
2021-04-07 12:03:28 +02:00
#else
2022-07-19 18:13:25 +02:00
sif::printError("PusDistributor::initialize: Packet source invalid\n");
2022-02-02 10:29:30 +01:00
sif::printError("Make sure it exists and implements CCSDSDistributorIF\n");
#endif
2022-02-02 10:29:30 +01:00
return RETURN_FAILED;
}
return ccsdsDistributor->registerApplication(this);
}