2018-07-13 18:28:26 +02:00
|
|
|
#ifndef FRAMEWORK_OSAL_LINUX_POSIXTHREAD_H_
|
|
|
|
#define FRAMEWORK_OSAL_LINUX_POSIXTHREAD_H_
|
|
|
|
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "../../returnvalues/HasReturnvaluesIF.h"
|
2018-07-13 18:28:26 +02:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <signal.h>
|
2020-06-06 15:47:33 +02:00
|
|
|
#include <cstdlib>
|
2018-07-13 18:28:26 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
class PosixThread {
|
|
|
|
public:
|
2020-06-06 16:24:33 +02:00
|
|
|
static constexpr uint8_t PTHREAD_MAX_NAMELEN = 16;
|
2018-07-13 18:28:26 +02:00
|
|
|
PosixThread(const char* name_, int priority_, size_t stackSize_);
|
|
|
|
virtual ~PosixThread();
|
|
|
|
/**
|
|
|
|
* Set the Thread to sleep state
|
|
|
|
* @param ns Nanosecond sleep time
|
|
|
|
* @return Returns Failed if sleep fails
|
|
|
|
*/
|
|
|
|
static ReturnValue_t sleep(uint64_t ns);
|
|
|
|
/**
|
|
|
|
* @brief Function to suspend the task until SIGUSR1 was received
|
|
|
|
*
|
|
|
|
* @details Will be called in the beginning to suspend execution until startTask() is called explicitly.
|
|
|
|
*/
|
|
|
|
void suspend();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Function to allow a other thread to start the thread again from suspend state
|
|
|
|
*
|
|
|
|
* @details Restarts the Thread after suspend call
|
|
|
|
*/
|
|
|
|
void resume();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delay function similar to FreeRtos delayUntil function
|
|
|
|
*
|
|
|
|
* @param prevoiusWakeTime_ms Needs the previous wake time and returns the next wakeup time
|
|
|
|
* @param delayTime_ms Time period to delay
|
|
|
|
*
|
|
|
|
* @return False If deadline was missed; True if task was delayed
|
|
|
|
*/
|
|
|
|
static bool delayUntil(uint64_t* const prevoiusWakeTime_ms, const uint64_t delayTime_ms);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current time in milliseconds from CLOCK_MONOTONIC
|
|
|
|
*
|
|
|
|
* @return current time in milliseconds from CLOCK_MONOTONIC
|
|
|
|
*/
|
|
|
|
static uint64_t getCurrentMonotonicTimeMs();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
pthread_t thread;
|
|
|
|
|
|
|
|
/**
|
2020-06-06 15:47:33 +02:00
|
|
|
* @brief Function that has to be called by derived class because the
|
2020-06-06 16:24:33 +02:00
|
|
|
* derived class pointer has to be valid as argument.
|
2020-06-06 15:47:33 +02:00
|
|
|
* @details
|
|
|
|
* This function creates a pthread with the given parameters. As the
|
|
|
|
* function requires a pointer to the derived object it has to be called
|
|
|
|
* after the this pointer of the derived object is valid.
|
|
|
|
* Sets the taskEntryPoint as function to be called by new a thread.
|
|
|
|
* @param fnc_ Function which will be executed by the thread.
|
|
|
|
* @param arg_
|
|
|
|
* argument of the taskEntryPoint function, needs to be this pointer
|
|
|
|
* of derived class
|
2018-07-13 18:28:26 +02:00
|
|
|
*/
|
|
|
|
void createTask(void* (*fnc_)(void*),void* arg_);
|
|
|
|
|
|
|
|
private:
|
2020-06-06 16:24:33 +02:00
|
|
|
char name[PTHREAD_MAX_NAMELEN];
|
2018-07-13 18:28:26 +02:00
|
|
|
int priority;
|
2020-06-06 15:47:33 +02:00
|
|
|
size_t stackSize = 0;
|
2018-07-13 18:28:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* FRAMEWORK_OSAL_LINUX_POSIXTHREAD_H_ */
|