2020-09-05 21:19:53 +02:00
|
|
|
#include "Mutex.h"
|
2020-09-05 20:18:52 +02:00
|
|
|
#include "../../serviceinterface/ServiceInterfaceStream.h"
|
|
|
|
|
2020-09-05 21:19:53 +02:00
|
|
|
Mutex::Mutex() {}
|
2020-09-05 20:18:52 +02:00
|
|
|
|
2020-09-05 21:19:53 +02:00
|
|
|
ReturnValue_t Mutex::lockMutex(TimeoutType timeoutType, uint32_t timeoutMs) {
|
2020-12-02 00:05:54 +01:00
|
|
|
if(timeoutType == MutexIF::BLOCKING) {
|
2020-09-05 20:18:52 +02:00
|
|
|
mutex.lock();
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
2020-12-02 00:05:54 +01:00
|
|
|
else if(timeoutType == MutexIF::POLLING) {
|
2020-09-05 20:18:52 +02:00
|
|
|
if(mutex.try_lock()) {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(timeoutMs > MutexIF::POLLING){
|
|
|
|
auto chronoMs = std::chrono::milliseconds(timeoutMs);
|
|
|
|
if(mutex.try_lock_for(chronoMs)) {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return MutexIF::MUTEX_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t Mutex::unlockMutex() {
|
|
|
|
mutex.unlock();
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::timed_mutex* Mutex::getMutexHandle() {
|
|
|
|
return &mutex;
|
|
|
|
}
|