fsfw/ipc/MutexHelper.h

31 lines
886 B
C
Raw Normal View History

2018-07-13 18:28:26 +02:00
#ifndef FRAMEWORK_IPC_MUTEXHELPER_H_
#define FRAMEWORK_IPC_MUTEXHELPER_H_
#include <framework/ipc/MutexFactory.h>
#include <framework/serviceinterface/ServiceInterfaceStream.h>
class MutexHelper {
public:
2020-08-07 22:11:13 +02:00
MutexHelper(MutexIF* mutex, MutexIF::TimeoutType timeoutType =
2020-08-07 22:15:03 +02:00
MutexIF::TimeoutType::BLOCKING, uint32_t timeoutMs = 0) :
2018-07-13 18:28:26 +02:00
internalMutex(mutex) {
2020-08-07 22:11:13 +02:00
ReturnValue_t status = mutex->lockMutex(timeoutType,
2020-08-07 20:36:37 +02:00
timeoutMs);
2020-06-05 20:40:22 +02:00
if(status == MutexIF::MUTEX_TIMEOUT) {
sif::error << "MutexHelper: Lock of mutex failed with timeout of "
2020-06-05 20:40:22 +02:00
<< timeoutMs << " milliseconds!" << std::endl;
}
else if(status != HasReturnvaluesIF::RETURN_OK){
sif::error << "MutexHelper: Lock of Mutex failed with code " <<
2020-05-12 14:12:39 +02:00
status << std::endl;
2018-07-13 18:28:26 +02:00
}
}
~MutexHelper() {
internalMutex->unlockMutex();
}
private:
MutexIF* internalMutex;
};
#endif /* FRAMEWORK_IPC_MUTEXHELPER_H_ */