160 lines
6.5 KiB
C++
160 lines
6.5 KiB
C++
#include "InitMission.h"
|
|
#include "ObjectFactory.h"
|
|
|
|
#include <OBSWConfig.h>
|
|
|
|
#include <fsfw/objectmanager/ObjectManagerIF.h>
|
|
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
|
|
#include <fsfw/serviceinterface/ServiceInterfaceStream.h>
|
|
#include <fsfw/objectmanager/ObjectManager.h>
|
|
#include <fsfw/tasks/FixedTimeslotTaskIF.h>
|
|
#include <fsfw/tasks/PeriodicTaskIF.h>
|
|
#include <fsfw/tasks/TaskFactory.h>
|
|
|
|
#include <mission/utility/InitMission.h>
|
|
|
|
#include <iostream>
|
|
|
|
#ifdef LINUX
|
|
ServiceInterfaceStream sif::debug("DEBUG");
|
|
ServiceInterfaceStream sif::info("INFO");
|
|
ServiceInterfaceStream sif::warning("WARNING");
|
|
ServiceInterfaceStream sif::error("ERROR", false, false, true);
|
|
#else
|
|
ServiceInterfaceStream sif::debug("DEBUG", true);
|
|
ServiceInterfaceStream sif::info("INFO", true);
|
|
ServiceInterfaceStream sif::warning("WARNING", true);
|
|
ServiceInterfaceStream sif::error("ERROR", true, false, true);
|
|
#endif
|
|
|
|
ObjectManagerIF *objectManager = nullptr;
|
|
|
|
void initmission::initMission() {
|
|
sif::info << "Building global objects.." << std::endl;
|
|
/* Instantiate global object manager and also create all objects */
|
|
ObjectManager::instance()->setObjectFactoryFunction(ObjectFactory::produce, nullptr);
|
|
sif::info << "Initializing all objects.." << std::endl;
|
|
ObjectManager::instance()->initialize();
|
|
|
|
/* This function creates and starts all tasks */
|
|
initTasks();
|
|
}
|
|
|
|
void initmission::initTasks() {
|
|
TaskFactory* factory = TaskFactory::instance();
|
|
if(factory == nullptr) {
|
|
/* Should never happen ! */
|
|
return;
|
|
}
|
|
#if OBSW_PRINT_MISSED_DEADLINES == 1
|
|
void (*missedDeadlineFunc) (void) = TaskFactory::printMissedDeadline;
|
|
#else
|
|
void (*missedDeadlineFunc) (void) = nullptr;
|
|
#endif
|
|
|
|
/* TMTC Distribution */
|
|
PeriodicTaskIF* tmTcDistributor = factory->createPeriodicTask(
|
|
"DIST", 40, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.2, missedDeadlineFunc);
|
|
ReturnValue_t result = tmTcDistributor->addComponent(
|
|
objects::CCSDS_PACKET_DISTRIBUTOR);
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
sif::error << "Object add component failed" << std::endl;
|
|
}
|
|
result = tmTcDistributor->addComponent(objects::PUS_PACKET_DISTRIBUTOR);
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
sif::error << "Object add component failed" << std::endl;
|
|
}
|
|
result = tmTcDistributor->addComponent(objects::TM_FUNNEL);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "Object add component failed" << std::endl;
|
|
}
|
|
|
|
/* UDP bridge */
|
|
PeriodicTaskIF* udpBridgeTask = factory->createPeriodicTask(
|
|
"UDP_UNIX_BRIDGE", 50, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.2, missedDeadlineFunc);
|
|
result = udpBridgeTask->addComponent(objects::UDP_BRIDGE);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "Add component UDP Unix Bridge failed" << std::endl;
|
|
}
|
|
PeriodicTaskIF* udpPollingTask = factory->createPeriodicTask(
|
|
"UDP_POLLING", 80, PeriodicTaskIF::MINIMUM_STACK_SIZE, 2.0, missedDeadlineFunc);
|
|
result = udpPollingTask->addComponent(objects::UDP_POLLING_TASK);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
sif::error << "Add component UDP Polling failed" << std::endl;
|
|
}
|
|
|
|
/* PUS Services */
|
|
PeriodicTaskIF* pusVerification = factory->createPeriodicTask(
|
|
"PUS_VERIF", 40, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.200, missedDeadlineFunc);
|
|
result = pusVerification->addComponent(objects::PUS_SERVICE_1_VERIFICATION);
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
sif::error << "Object add component failed" << std::endl;
|
|
}
|
|
|
|
PeriodicTaskIF* pusEvents = factory->createPeriodicTask(
|
|
"PUS_EVENTS", 60, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.200, missedDeadlineFunc);
|
|
result = pusVerification->addComponent(objects::PUS_SERVICE_5_EVENT_REPORTING);
|
|
if(result != HasReturnvaluesIF::RETURN_OK){
|
|
initmission::printAddObjectError("PUS5", objects::PUS_SERVICE_5_EVENT_REPORTING);
|
|
}
|
|
|
|
PeriodicTaskIF* pusHighPrio = factory->createPeriodicTask(
|
|
"PUS_HIGH_PRIO", 50, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.200, missedDeadlineFunc);
|
|
result = pusHighPrio->addComponent(objects::PUS_SERVICE_2_DEVICE_ACCESS);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("PUS2", objects::PUS_SERVICE_2_DEVICE_ACCESS);
|
|
}
|
|
result = pusHighPrio->addComponent(objects::PUS_SERVICE_9_TIME_MGMT);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("PUS9", objects::PUS_SERVICE_9_TIME_MGMT);
|
|
}
|
|
|
|
PeriodicTaskIF* pusMedPrio = factory->createPeriodicTask(
|
|
"PUS_MED_PRIO", 40, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.8, missedDeadlineFunc);
|
|
result = pusMedPrio->addComponent(objects::PUS_SERVICE_8_FUNCTION_MGMT);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("PUS8", objects::PUS_SERVICE_8_FUNCTION_MGMT);
|
|
}
|
|
result = pusMedPrio->addComponent(objects::PUS_SERVICE_200_MODE_MGMT);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("PUS200", objects::PUS_SERVICE_200_MODE_MGMT);
|
|
}
|
|
result = pusMedPrio->addComponent(objects::PUS_SERVICE_20_PARAMETERS);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("PUS20", objects::PUS_SERVICE_20_PARAMETERS);
|
|
}
|
|
|
|
PeriodicTaskIF* pusLowPrio = factory->createPeriodicTask(
|
|
"PUS_LOW_PRIO", 30, PeriodicTaskIF::MINIMUM_STACK_SIZE, 1.6, missedDeadlineFunc);
|
|
result = pusLowPrio->addComponent(objects::PUS_SERVICE_17_TEST);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("PUS17", objects::PUS_SERVICE_17_TEST);
|
|
}
|
|
|
|
PeriodicTaskIF* testTask = factory->createPeriodicTask(
|
|
"TEST_TASK", 40, PeriodicTaskIF::MINIMUM_STACK_SIZE, 2.0, missedDeadlineFunc);
|
|
#if OBSW_ADD_TEST_CODE == 1
|
|
result = testTask->addComponent(objects::TEST_TASK);
|
|
if(result != HasReturnvaluesIF::RETURN_OK) {
|
|
initmission::printAddObjectError("TEST_TASK", objects::TEST_TASK);
|
|
}
|
|
#endif /* OBSW_ADD_TEST_CODE == 1 */
|
|
|
|
sif::info << "Starting tasks.." << std::endl;
|
|
tmTcDistributor->startTask();
|
|
udpBridgeTask->startTask();
|
|
udpPollingTask->startTask();
|
|
|
|
pusVerification->startTask();
|
|
pusEvents->startTask();
|
|
pusHighPrio->startTask();
|
|
pusMedPrio->startTask();
|
|
pusLowPrio->startTask();
|
|
|
|
#if OBSW_ADD_TEST_CODE == 1
|
|
testTask->startTask();
|
|
#endif /* OBSW_ADD_TEST_CODE == 1 */
|
|
|
|
sif::info << "Tasks started.." << std::endl;
|
|
}
|