mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 06:50:21 +00:00
bf6c6c231f
* Abstract primitive type from main logic in FuriEventLoop * Remove message_queue_i.h * Add stream buffer support for event loop * Add semaphore support for event loop * Add temporary unit test workaround * Make the linter happy * Add mutex support for event loop * Implement event subscription and unsubscription while the event loop is running * Implement edge events * Fix leftover logical errors * Add event loop timer example application * Implement flag-based edge trigger and one-shot mode * Add event loop mutex example application * Only notify the event loop if stream buffer is at or above its trigger level * Reformat comments * Add event loop stream buffer example application * Add event loop multiple elements example application * Improve event loop flag names * Remove redundant signal handler as it is already handled by the event loop * Refactor Power service, improve ViewHolder * Use ViewHolder instead of ViewDispatcher in About app * Enable ViewDispatcher queue on construction, deprecate view_dispatcher_enable_queue() * Remove all invocations of view_dispatcher_enable_queue() * Remove app-scened-template * Remove missing library from target.json * Port Accessor app to ViewHolder * Make the linter happy * Add example_view_holder application, update ViewHolder docs * Add example_view_dispatcher application, update ViewDispatcher docs * Replace FuriSemaphore with FuriApiLock, remove workaround delay * Fix logical error * Fix another logical error * Use the sources directive to speed up compilation * Use constant define macro * Improve FuriEventLoop documentation * Improve FuriEventLoop documentation once more * Bump API Version * Gui: remove redundant checks from ViewDispatcher * Gui: remove dead ifs from ViewDispatcher Co-authored-by: Silent <CookiePLMonster@users.noreply.github.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: あく <alleteam@gmail.com>
162 lines
4.1 KiB
C
162 lines
4.1 KiB
C
#include "mutex.h"
|
|
|
|
#include <FreeRTOS.h>
|
|
#include <semphr.h>
|
|
|
|
#include "check.h"
|
|
|
|
#include "event_loop_link_i.h"
|
|
|
|
// Internal FreeRTOS member names
|
|
#define ucQueueType ucDummy9
|
|
|
|
struct FuriMutex {
|
|
StaticSemaphore_t container;
|
|
FuriEventLoopLink event_loop_link;
|
|
};
|
|
|
|
// IMPORTANT: container MUST be the FIRST struct member
|
|
static_assert(offsetof(FuriMutex, container) == 0);
|
|
|
|
FuriMutex* furi_mutex_alloc(FuriMutexType type) {
|
|
furi_check(!FURI_IS_IRQ_MODE());
|
|
|
|
FuriMutex* instance = malloc(sizeof(FuriMutex));
|
|
|
|
SemaphoreHandle_t hMutex;
|
|
|
|
if(type == FuriMutexTypeNormal) {
|
|
hMutex = xSemaphoreCreateMutexStatic(&instance->container);
|
|
} else if(type == FuriMutexTypeRecursive) {
|
|
hMutex = xSemaphoreCreateRecursiveMutexStatic(&instance->container);
|
|
} else {
|
|
furi_crash();
|
|
}
|
|
|
|
furi_check(hMutex == (SemaphoreHandle_t)instance);
|
|
|
|
return instance;
|
|
}
|
|
|
|
void furi_mutex_free(FuriMutex* instance) {
|
|
furi_check(!FURI_IS_IRQ_MODE());
|
|
furi_check(instance);
|
|
|
|
// Event Loop must be disconnected
|
|
furi_check(!instance->event_loop_link.item_in);
|
|
furi_check(!instance->event_loop_link.item_out);
|
|
|
|
vSemaphoreDelete((SemaphoreHandle_t)instance);
|
|
free(instance);
|
|
}
|
|
|
|
FuriStatus furi_mutex_acquire(FuriMutex* instance, uint32_t timeout) {
|
|
furi_check(instance);
|
|
|
|
SemaphoreHandle_t hMutex = (SemaphoreHandle_t)(instance);
|
|
const uint8_t mutex_type = instance->container.ucQueueType;
|
|
|
|
FuriStatus stat = FuriStatusOk;
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
stat = FuriStatusErrorISR;
|
|
|
|
} else if(mutex_type == queueQUEUE_TYPE_RECURSIVE_MUTEX) {
|
|
if(xSemaphoreTakeRecursive(hMutex, timeout) != pdPASS) {
|
|
if(timeout != 0U) {
|
|
stat = FuriStatusErrorTimeout;
|
|
} else {
|
|
stat = FuriStatusErrorResource;
|
|
}
|
|
}
|
|
|
|
} else if(mutex_type == queueQUEUE_TYPE_MUTEX) {
|
|
if(xSemaphoreTake(hMutex, timeout) != pdPASS) {
|
|
if(timeout != 0U) {
|
|
stat = FuriStatusErrorTimeout;
|
|
} else {
|
|
stat = FuriStatusErrorResource;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
furi_crash();
|
|
}
|
|
|
|
if(stat == FuriStatusOk) {
|
|
furi_event_loop_link_notify(&instance->event_loop_link, FuriEventLoopEventOut);
|
|
}
|
|
|
|
return stat;
|
|
}
|
|
|
|
FuriStatus furi_mutex_release(FuriMutex* instance) {
|
|
furi_check(instance);
|
|
|
|
SemaphoreHandle_t hMutex = (SemaphoreHandle_t)(instance);
|
|
const uint8_t mutex_type = instance->container.ucQueueType;
|
|
|
|
FuriStatus stat = FuriStatusOk;
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
stat = FuriStatusErrorISR;
|
|
|
|
} else if(mutex_type == queueQUEUE_TYPE_RECURSIVE_MUTEX) {
|
|
if(xSemaphoreGiveRecursive(hMutex) != pdPASS) {
|
|
stat = FuriStatusErrorResource;
|
|
}
|
|
|
|
} else if(mutex_type == queueQUEUE_TYPE_MUTEX) {
|
|
if(xSemaphoreGive(hMutex) != pdPASS) {
|
|
stat = FuriStatusErrorResource;
|
|
}
|
|
|
|
} else {
|
|
furi_crash();
|
|
}
|
|
|
|
if(stat == FuriStatusOk) {
|
|
furi_event_loop_link_notify(&instance->event_loop_link, FuriEventLoopEventIn);
|
|
}
|
|
|
|
return stat;
|
|
}
|
|
|
|
FuriThreadId furi_mutex_get_owner(FuriMutex* instance) {
|
|
furi_check(instance);
|
|
|
|
SemaphoreHandle_t hMutex = (SemaphoreHandle_t)instance;
|
|
|
|
FuriThreadId owner;
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
owner = (FuriThreadId)xSemaphoreGetMutexHolderFromISR(hMutex);
|
|
} else {
|
|
owner = (FuriThreadId)xSemaphoreGetMutexHolder(hMutex);
|
|
}
|
|
|
|
return owner;
|
|
}
|
|
|
|
static FuriEventLoopLink* furi_mutex_event_loop_get_link(FuriEventLoopObject* object) {
|
|
FuriMutex* instance = object;
|
|
furi_assert(instance);
|
|
return &instance->event_loop_link;
|
|
}
|
|
|
|
static uint32_t
|
|
furi_mutex_event_loop_get_level(FuriEventLoopObject* object, FuriEventLoopEvent event) {
|
|
FuriMutex* instance = object;
|
|
furi_assert(instance);
|
|
|
|
if(event == FuriEventLoopEventIn || event == FuriEventLoopEventOut) {
|
|
return furi_mutex_get_owner(instance) ? 0 : 1;
|
|
} else {
|
|
furi_crash();
|
|
}
|
|
}
|
|
|
|
const FuriEventLoopContract furi_mutex_event_loop_contract = {
|
|
.get_link = furi_mutex_event_loop_get_link,
|
|
.get_level = furi_mutex_event_loop_get_level,
|
|
};
|