2018-07-13 18:28:26 +02:00
|
|
|
#ifndef FRAMEWORK_IPC_MUTEXHELPER_H_
|
|
|
|
#define FRAMEWORK_IPC_MUTEXHELPER_H_
|
|
|
|
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "MutexFactory.h"
|
2021-02-23 11:30:11 +01:00
|
|
|
#include "../serviceinterface/ServiceInterface.h"
|
2018-07-13 18:28:26 +02:00
|
|
|
|
|
|
|
class MutexHelper {
|
|
|
|
public:
|
2021-02-23 11:30:11 +01:00
|
|
|
MutexHelper(MutexIF* mutex, MutexIF::TimeoutType timeoutType =
|
|
|
|
MutexIF::TimeoutType::BLOCKING, uint32_t timeoutMs = 0):
|
|
|
|
internalMutex(mutex) {
|
|
|
|
if(mutex == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ReturnValue_t status = mutex->lockMutex(timeoutType,
|
|
|
|
timeoutMs);
|
|
|
|
if(status == MutexIF::MUTEX_TIMEOUT) {
|
2021-01-03 14:16:52 +01:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2021-02-23 11:30:11 +01:00
|
|
|
sif::error << "MutexHelper: Lock of mutex failed with timeout of "
|
|
|
|
<< timeoutMs << " milliseconds!" << std::endl;
|
|
|
|
#else
|
|
|
|
sif::printError("MutexHelper: Lock of mutex failed with timeout of %lu milliseconds\n",
|
|
|
|
timeoutMs);
|
2021-01-03 13:58:18 +01:00
|
|
|
#endif
|
2021-02-23 11:30:11 +01:00
|
|
|
}
|
|
|
|
else if(status != HasReturnvaluesIF::RETURN_OK){
|
2021-01-03 14:16:52 +01:00
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2021-02-23 11:30:11 +01:00
|
|
|
sif::error << "MutexHelper: Lock of Mutex failed with code "
|
|
|
|
<< status << std::endl;
|
|
|
|
#else
|
|
|
|
sif::printError("MutexHelper: Lock of Mutex failed with code %d\n", status);
|
2021-01-03 13:58:18 +01:00
|
|
|
#endif
|
2021-02-23 11:30:11 +01:00
|
|
|
}
|
|
|
|
}
|
2018-07-13 18:28:26 +02:00
|
|
|
|
2021-02-23 11:30:11 +01:00
|
|
|
~MutexHelper() {
|
|
|
|
if(internalMutex != nullptr) {
|
|
|
|
internalMutex->unlockMutex();
|
|
|
|
}
|
|
|
|
}
|
2018-07-13 18:28:26 +02:00
|
|
|
private:
|
2021-02-23 11:30:11 +01:00
|
|
|
MutexIF* internalMutex;
|
2018-07-13 18:28:26 +02:00
|
|
|
};
|
2021-02-23 11:30:11 +01:00
|
|
|
|
2018-07-13 18:28:26 +02:00
|
|
|
#endif /* FRAMEWORK_IPC_MUTEXHELPER_H_ */
|