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"
|
|
|
|
#include "../serviceinterface/ServiceInterfaceStream.h"
|
2018-07-13 18:28:26 +02:00
|
|
|
|
|
|
|
class MutexHelper {
|
|
|
|
public:
|
2020-08-07 22:16:10 +02:00
|
|
|
MutexHelper(MutexIF* mutex, MutexIF::TimeoutType timeoutType =
|
|
|
|
MutexIF::TimeoutType::BLOCKING, uint32_t timeoutMs = 0) :
|
2018-07-13 18:28:26 +02:00
|
|
|
internalMutex(mutex) {
|
2020-08-07 22:16:10 +02:00
|
|
|
ReturnValue_t status = mutex->lockMutex(timeoutType,
|
2020-08-07 22:10:58 +02:00
|
|
|
timeoutMs);
|
2020-06-05 20:42:39 +02:00
|
|
|
if(status == MutexIF::MUTEX_TIMEOUT) {
|
2020-08-07 22:10:58 +02:00
|
|
|
sif::error << "MutexHelper: Lock of mutex failed with timeout of "
|
2020-06-05 20:42:39 +02:00
|
|
|
<< timeoutMs << " milliseconds!" << std::endl;
|
|
|
|
}
|
|
|
|
else if(status != HasReturnvaluesIF::RETURN_OK){
|
|
|
|
sif::error << "MutexHelper: Lock of Mutex failed with code " <<
|
2020-05-29 14:03: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_ */
|