86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
#include "Mutex.h"
|
|
#include "../../serviceinterface/ServiceInterface.h"
|
|
|
|
uint8_t Mutex::count = 0;
|
|
|
|
Mutex::Mutex() {
|
|
rtems_name mutexName = ('M' << 24) + ('T' << 16) + ('X' << 8) + count++;
|
|
rtems_status_code status = rtems_semaphore_create(mutexName, 1,
|
|
RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY | RTEMS_INHERIT_PRIORITY, 0,
|
|
&mutexId);
|
|
if (status != RTEMS_SUCCESSFUL) {
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
sif::error << "Mutex::Mutex: Creation with name, id " << mutexName << ", " << mutexId <<
|
|
" failed with " << status << std::endl;
|
|
#else
|
|
sif::printError("Mutex::Mutex: Creation with name, id %s, %d failed with %d\n", mutexName,
|
|
static_cast<int>(mutexId), static_cast<int>(status));
|
|
#endif
|
|
}
|
|
}
|
|
|
|
Mutex::~Mutex() {
|
|
rtems_status_code status = rtems_semaphore_delete(mutexId);
|
|
if (status != RTEMS_SUCCESSFUL) {
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
sif::error << "Mutex: deletion for id " << mutexId
|
|
<< " failed with " << status << std::endl;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
ReturnValue_t Mutex::lockMutex(TimeoutType timeoutType =
|
|
TimeoutType::BLOCKING, uint32_t timeoutMs) {
|
|
rtems_status_code status = RTEMS_INVALID_ID;
|
|
if(timeoutType == MutexIF::TimeoutType::BLOCKING) {
|
|
status = rtems_semaphore_obtain(mutexId,
|
|
RTEMS_WAIT, RTEMS_NO_TIMEOUT);
|
|
}
|
|
else if(timeoutType == MutexIF::TimeoutType::POLLING) {
|
|
timeoutMs = RTEMS_NO_TIMEOUT;
|
|
status = rtems_semaphore_obtain(mutexId,
|
|
RTEMS_NO_WAIT, 0);
|
|
}
|
|
else {
|
|
status = rtems_semaphore_obtain(mutexId,
|
|
RTEMS_WAIT, timeoutMs);
|
|
}
|
|
|
|
switch(status){
|
|
case RTEMS_SUCCESSFUL:
|
|
//semaphore obtained successfully
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
case RTEMS_UNSATISFIED:
|
|
//semaphore not available
|
|
return MUTEX_NOT_FOUND;
|
|
case RTEMS_TIMEOUT:
|
|
//timed out waiting for semaphore
|
|
return MUTEX_TIMEOUT;
|
|
case RTEMS_OBJECT_WAS_DELETED:
|
|
//semaphore deleted while waiting
|
|
return MUTEX_DESTROYED_WHILE_WAITING;
|
|
case RTEMS_INVALID_ID:
|
|
//invalid semaphore id
|
|
return MUTEX_INVALID_ID;
|
|
default:
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
}
|
|
}
|
|
|
|
ReturnValue_t Mutex::unlockMutex() {
|
|
rtems_status_code status = rtems_semaphore_release(mutexId);
|
|
switch(status){
|
|
case RTEMS_SUCCESSFUL:
|
|
//semaphore obtained successfully
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
case RTEMS_NOT_OWNER_OF_RESOURCE:
|
|
//semaphore not available
|
|
return CURR_THREAD_DOES_NOT_OWN_MUTEX;
|
|
case RTEMS_INVALID_ID:
|
|
//invalid semaphore id
|
|
return MUTEX_INVALID_ID;
|
|
default:
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
}
|
|
}
|