2020-09-05 21:19:53 +02:00
|
|
|
#include "Mutex.h"
|
|
|
|
#include "PeriodicTask.h"
|
2021-03-23 14:40:30 +01:00
|
|
|
#include "taskHelpers.h"
|
2020-09-05 20:18:52 +02:00
|
|
|
|
2021-05-12 16:47:53 +02:00
|
|
|
#include "../../platform.h"
|
2020-09-05 21:19:53 +02:00
|
|
|
#include "../../ipc/MutexFactory.h"
|
2021-06-05 19:52:38 +02:00
|
|
|
#include "../../objectmanager/ObjectManager.h"
|
|
|
|
#include "../../serviceinterface/ServiceInterface.h"
|
2020-09-05 20:18:52 +02:00
|
|
|
#include "../../tasks/ExecutableObjectIF.h"
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <chrono>
|
|
|
|
|
2021-05-12 16:47:53 +02:00
|
|
|
#if defined(PLATFORM_WIN)
|
2021-01-29 00:12:40 +01:00
|
|
|
#include <processthreadsapi.h>
|
2021-03-21 16:20:13 +01:00
|
|
|
#include <fsfw/osal/windows/winTaskHelpers.h>
|
2021-05-12 16:47:53 +02:00
|
|
|
#elif defined(PLATFORM_UNIX)
|
2020-09-05 20:18:52 +02:00
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PeriodicTask::PeriodicTask(const char *name, TaskPriority setPriority,
|
|
|
|
TaskStackSize setStack, TaskPeriod setPeriod,
|
|
|
|
void (*setDeadlineMissedFunc)()) :
|
|
|
|
started(false), taskName(name), period(setPeriod),
|
|
|
|
deadlineMissedFunc(setDeadlineMissedFunc) {
|
2021-04-20 13:01:24 +02:00
|
|
|
// It is probably possible to set task priorities by using the native
|
2020-09-05 20:18:52 +02:00
|
|
|
// task handles for Windows / Linux
|
|
|
|
mainThread = std::thread(&PeriodicTask::taskEntryPoint, this, this);
|
2021-05-12 16:47:53 +02:00
|
|
|
#if defined(PLATFORM_WIN)
|
2021-03-21 16:20:13 +01:00
|
|
|
tasks::setTaskPriority(reinterpret_cast<HANDLE>(mainThread.native_handle()), setPriority);
|
2021-05-12 16:47:53 +02:00
|
|
|
#elif defined(PLATFORM_UNIX)
|
2021-03-21 16:20:13 +01:00
|
|
|
// TODO: We could reuse existing code here.
|
2020-09-05 20:18:52 +02:00
|
|
|
#endif
|
2021-03-23 14:45:33 +01:00
|
|
|
tasks::insertTaskName(mainThread.get_id(), taskName);
|
2020-09-05 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PeriodicTask::~PeriodicTask(void) {
|
|
|
|
//Do not delete objects, we were responsible for ptrs only.
|
|
|
|
terminateThread = true;
|
|
|
|
if(mainThread.joinable()) {
|
|
|
|
mainThread.join();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeriodicTask::taskEntryPoint(void* argument) {
|
|
|
|
PeriodicTask *originalTask(reinterpret_cast<PeriodicTask*>(argument));
|
|
|
|
|
|
|
|
|
|
|
|
if (not originalTask->started) {
|
|
|
|
// we have to suspend/block here until the task is started.
|
|
|
|
// if semaphores are implemented, use them here.
|
|
|
|
std::unique_lock<std::mutex> lock(initMutex);
|
|
|
|
initCondition.wait(lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->taskFunctionality();
|
2021-01-03 14:16:52 +01:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2020-09-05 20:18:52 +02:00
|
|
|
sif::debug << "PeriodicTask::taskEntryPoint: "
|
|
|
|
"Returned from taskFunctionality." << std::endl;
|
2021-01-03 13:58:18 +01:00
|
|
|
#endif
|
2020-09-05 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t PeriodicTask::startTask() {
|
|
|
|
started = true;
|
|
|
|
|
|
|
|
// Notify task to start.
|
|
|
|
std::lock_guard<std::mutex> lock(initMutex);
|
|
|
|
initCondition.notify_one();
|
|
|
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t PeriodicTask::sleepFor(uint32_t ms) {
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(ms));
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeriodicTask::taskFunctionality() {
|
2020-12-02 00:58:13 +01:00
|
|
|
for (const auto& object: objectList) {
|
|
|
|
object->initializeAfterTaskCreation();
|
|
|
|
}
|
|
|
|
|
2020-09-05 20:18:52 +02:00
|
|
|
std::chrono::milliseconds periodChrono(static_cast<uint32_t>(period*1000));
|
|
|
|
auto currentStartTime {
|
|
|
|
std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch())
|
|
|
|
};
|
2020-12-02 01:00:07 +01:00
|
|
|
auto nextStartTime { currentStartTime };
|
2020-09-05 20:18:52 +02:00
|
|
|
|
|
|
|
/* Enter the loop that defines the task behavior. */
|
|
|
|
for (;;) {
|
|
|
|
if(terminateThread.load()) {
|
|
|
|
break;
|
|
|
|
}
|
2020-12-02 00:58:13 +01:00
|
|
|
for (const auto& object: objectList) {
|
|
|
|
object->performOperation();
|
2020-09-05 20:18:52 +02:00
|
|
|
}
|
|
|
|
if(not delayForInterval(¤tStartTime, periodChrono)) {
|
|
|
|
if(deadlineMissedFunc != nullptr) {
|
|
|
|
this->deadlineMissedFunc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t PeriodicTask::addComponent(object_id_t object) {
|
2021-06-05 19:52:38 +02:00
|
|
|
ExecutableObjectIF* newObject = ObjectManager::instance()->get<ExecutableObjectIF>(
|
2020-09-05 20:18:52 +02:00
|
|
|
object);
|
|
|
|
if (newObject == nullptr) {
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
2020-12-05 17:11:34 +01:00
|
|
|
newObject->setTaskIF(this);
|
2020-09-05 20:18:52 +02:00
|
|
|
objectList.push_back(newObject);
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t PeriodicTask::getPeriodMs() const {
|
|
|
|
return period * 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PeriodicTask::delayForInterval(chron_ms* previousWakeTimeMs,
|
|
|
|
const chron_ms interval) {
|
|
|
|
bool shouldDelay = false;
|
|
|
|
//Get current wakeup time
|
|
|
|
auto currentStartTime =
|
|
|
|
std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::system_clock::now().time_since_epoch());
|
|
|
|
/* Generate the tick time at which the task wants to wake. */
|
|
|
|
auto nextTimeToWake_ms = (*previousWakeTimeMs) + interval;
|
|
|
|
|
|
|
|
if (currentStartTime < *previousWakeTimeMs) {
|
|
|
|
/* The tick count has overflowed since this function was
|
|
|
|
lasted called. In this case the only time we should ever
|
|
|
|
actually delay is if the wake time has also overflowed,
|
|
|
|
and the wake time is greater than the tick time. When this
|
|
|
|
is the case it is as if neither time had overflowed. */
|
|
|
|
if ((nextTimeToWake_ms < *previousWakeTimeMs)
|
|
|
|
&& (nextTimeToWake_ms > currentStartTime)) {
|
|
|
|
shouldDelay = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* The tick time has not overflowed. In this case we will
|
|
|
|
delay if either the wake time has overflowed, and/or the
|
|
|
|
tick time is less than the wake time. */
|
|
|
|
if ((nextTimeToWake_ms < *previousWakeTimeMs)
|
|
|
|
|| (nextTimeToWake_ms > currentStartTime)) {
|
|
|
|
shouldDelay = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the wake time ready for the next call. */
|
|
|
|
|
|
|
|
(*previousWakeTimeMs) = nextTimeToWake_ms;
|
|
|
|
|
|
|
|
if (shouldDelay) {
|
|
|
|
auto sleepTime = std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
nextTimeToWake_ms - currentStartTime);
|
|
|
|
std::this_thread::sleep_for(sleepTime);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
//We are shifting the time in case the deadline was missed like rtems
|
|
|
|
(*previousWakeTimeMs) = currentStartTime;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|