2021-02-12 17:24:34 +00:00
|
|
|
#include "thread.h"
|
2022-07-20 10:56:33 +00:00
|
|
|
#include "kernel.h"
|
2021-02-12 17:24:34 +00:00
|
|
|
#include "memmgr.h"
|
2021-06-23 14:48:44 +00:00
|
|
|
#include "memmgr_heap.h"
|
2021-02-12 17:24:34 +00:00
|
|
|
#include "check.h"
|
2022-06-20 14:54:48 +00:00
|
|
|
#include "common_defines.h"
|
2022-08-03 16:00:17 +00:00
|
|
|
#include "mutex.h"
|
2022-10-05 15:15:23 +00:00
|
|
|
#include "string.h"
|
2021-02-12 17:24:34 +00:00
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
#include <task.h>
|
2022-08-27 04:25:47 +00:00
|
|
|
#include "log.h"
|
|
|
|
#include <furi_hal_rtc.h>
|
2022-08-03 16:00:17 +00:00
|
|
|
#include <furi_hal_console.h>
|
2021-02-12 17:24:34 +00:00
|
|
|
|
2022-11-09 17:33:09 +00:00
|
|
|
#define TAG "FuriThread"
|
|
|
|
|
2022-07-06 13:54:08 +00:00
|
|
|
#define THREAD_NOTIFY_INDEX 1 // Index 0 is used for stream buffers
|
|
|
|
|
2022-08-03 16:00:17 +00:00
|
|
|
typedef struct FuriThreadStdout FuriThreadStdout;
|
|
|
|
|
|
|
|
struct FuriThreadStdout {
|
|
|
|
FuriThreadStdoutWriteCallback write_callback;
|
2022-10-05 15:15:23 +00:00
|
|
|
FuriString* buffer;
|
2022-08-03 16:00:17 +00:00
|
|
|
};
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
struct FuriThread {
|
2022-08-27 04:25:47 +00:00
|
|
|
bool is_service;
|
2021-02-12 17:24:34 +00:00
|
|
|
FuriThreadState state;
|
|
|
|
int32_t ret;
|
|
|
|
|
|
|
|
FuriThreadCallback callback;
|
|
|
|
void* context;
|
|
|
|
|
|
|
|
FuriThreadStateCallback state_callback;
|
|
|
|
void* state_context;
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
char* name;
|
2023-03-01 17:57:27 +00:00
|
|
|
char* appid;
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
configSTACK_DEPTH_TYPE stack_size;
|
|
|
|
FuriThreadPriority priority;
|
2021-06-23 14:48:44 +00:00
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
TaskHandle_t task_handle;
|
2021-06-23 14:48:44 +00:00
|
|
|
bool heap_trace_enabled;
|
|
|
|
size_t heap_size;
|
2022-08-03 16:00:17 +00:00
|
|
|
|
|
|
|
FuriThreadStdout output;
|
2021-02-12 17:24:34 +00:00
|
|
|
};
|
|
|
|
|
2022-08-03 16:00:17 +00:00
|
|
|
static size_t __furi_thread_stdout_write(FuriThread* thread, const char* data, size_t size);
|
|
|
|
static int32_t __furi_thread_stdout_flush(FuriThread* thread);
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
/** Catch threads that are trying to exit wrong way */
|
2022-12-26 12:13:30 +00:00
|
|
|
__attribute__((__noreturn__)) void furi_thread_catch() { //-V1082
|
2022-06-20 14:54:48 +00:00
|
|
|
asm volatile("nop"); // extra magic
|
2022-12-26 12:13:30 +00:00
|
|
|
furi_crash("You are doing it wrong"); //-V779
|
2022-11-05 15:07:24 +00:00
|
|
|
__builtin_unreachable();
|
2022-06-20 14:54:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void furi_thread_set_state(FuriThread* thread, FuriThreadState state) {
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(thread);
|
|
|
|
thread->state = state;
|
|
|
|
if(thread->state_callback) {
|
|
|
|
thread->state_callback(state, thread->state_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
static void furi_thread_body(void* context) {
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(context);
|
|
|
|
FuriThread* thread = context;
|
|
|
|
|
2022-08-03 16:00:17 +00:00
|
|
|
// store thread instance to thread local storage
|
|
|
|
furi_assert(pvTaskGetThreadLocalStoragePointer(NULL, 0) == NULL);
|
|
|
|
vTaskSetThreadLocalStoragePointer(NULL, 0, thread);
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(thread->state == FuriThreadStateStarting);
|
|
|
|
furi_thread_set_state(thread, FuriThreadStateRunning);
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
TaskHandle_t task_handle = xTaskGetCurrentTaskHandle();
|
2021-06-23 14:48:44 +00:00
|
|
|
if(thread->heap_trace_enabled == true) {
|
2022-06-20 14:54:48 +00:00
|
|
|
memmgr_heap_enable_thread_trace((FuriThreadId)task_handle);
|
2021-06-23 14:48:44 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
thread->ret = thread->callback(thread->context);
|
|
|
|
|
2021-06-23 14:48:44 +00:00
|
|
|
if(thread->heap_trace_enabled == true) {
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_delay_ms(33);
|
2022-06-20 14:54:48 +00:00
|
|
|
thread->heap_size = memmgr_heap_get_thread_memory((FuriThreadId)task_handle);
|
2022-12-26 12:13:30 +00:00
|
|
|
furi_log_print_format( //-V576
|
2022-11-09 17:33:09 +00:00
|
|
|
thread->heap_size ? FuriLogLevelError : FuriLogLevelInfo,
|
|
|
|
TAG,
|
2022-12-26 12:13:30 +00:00
|
|
|
"%s allocation balance: %u",
|
2022-11-09 17:33:09 +00:00
|
|
|
thread->name ? thread->name : "Thread",
|
|
|
|
thread->heap_size);
|
2022-06-20 14:54:48 +00:00
|
|
|
memmgr_heap_disable_thread_trace((FuriThreadId)task_handle);
|
2021-06-23 14:48:44 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(thread->state == FuriThreadStateRunning);
|
|
|
|
|
2022-08-27 04:25:47 +00:00
|
|
|
if(thread->is_service) {
|
2023-02-26 15:15:26 +00:00
|
|
|
FURI_LOG_W(
|
2022-11-09 17:33:09 +00:00
|
|
|
TAG,
|
2023-02-26 15:15:26 +00:00
|
|
|
"%s service thread TCB memory will not be reclaimed",
|
2022-09-21 14:42:59 +00:00
|
|
|
thread->name ? thread->name : "<unknown service>");
|
2022-08-27 04:25:47 +00:00
|
|
|
}
|
|
|
|
|
2022-09-30 10:59:11 +00:00
|
|
|
// flush stdout
|
2022-08-03 16:00:17 +00:00
|
|
|
__furi_thread_stdout_flush(thread);
|
|
|
|
|
2022-09-28 17:37:07 +00:00
|
|
|
// from here we can't use thread pointer
|
|
|
|
furi_thread_set_state(thread, FuriThreadStateStopped);
|
|
|
|
|
2022-09-30 10:59:11 +00:00
|
|
|
// clear thread local storage
|
|
|
|
furi_assert(pvTaskGetThreadLocalStoragePointer(NULL, 0) != NULL);
|
|
|
|
vTaskSetThreadLocalStoragePointer(NULL, 0, NULL);
|
|
|
|
|
2022-10-07 17:06:29 +00:00
|
|
|
thread->task_handle = NULL;
|
2022-09-28 17:37:07 +00:00
|
|
|
vTaskDelete(NULL);
|
2022-06-20 14:54:48 +00:00
|
|
|
furi_thread_catch();
|
2021-02-12 17:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FuriThread* furi_thread_alloc() {
|
2022-02-18 19:53:46 +00:00
|
|
|
FuriThread* thread = malloc(sizeof(FuriThread));
|
2022-10-05 15:15:23 +00:00
|
|
|
thread->output.buffer = furi_string_alloc();
|
2022-08-27 04:25:47 +00:00
|
|
|
thread->is_service = false;
|
2022-11-05 15:07:24 +00:00
|
|
|
|
2023-03-01 17:57:27 +00:00
|
|
|
FuriThread* parent = NULL;
|
|
|
|
if(xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) {
|
|
|
|
// TLS is not available, if we called not from thread context
|
|
|
|
parent = pvTaskGetThreadLocalStoragePointer(NULL, 0);
|
|
|
|
|
|
|
|
if(parent && parent->appid) {
|
|
|
|
furi_thread_set_appid(thread, parent->appid);
|
|
|
|
} else {
|
|
|
|
furi_thread_set_appid(thread, "unknown");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if scheduler is not started, we are starting driver thread
|
|
|
|
furi_thread_set_appid(thread, "driver");
|
|
|
|
}
|
|
|
|
|
2022-11-12 08:46:04 +00:00
|
|
|
FuriHalRtcHeapTrackMode mode = furi_hal_rtc_get_heap_track_mode();
|
|
|
|
if(mode == FuriHalRtcHeapTrackModeAll) {
|
|
|
|
thread->heap_trace_enabled = true;
|
|
|
|
} else if(mode == FuriHalRtcHeapTrackModeTree && furi_thread_get_current_id()) {
|
2022-11-05 15:07:24 +00:00
|
|
|
if(parent) thread->heap_trace_enabled = parent->heap_trace_enabled;
|
2022-11-12 08:46:04 +00:00
|
|
|
} else {
|
|
|
|
thread->heap_trace_enabled = false;
|
2022-11-05 15:07:24 +00:00
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2022-11-23 12:49:17 +00:00
|
|
|
FuriThread* furi_thread_alloc_ex(
|
|
|
|
const char* name,
|
|
|
|
uint32_t stack_size,
|
|
|
|
FuriThreadCallback callback,
|
|
|
|
void* context) {
|
|
|
|
FuriThread* thread = furi_thread_alloc();
|
|
|
|
furi_thread_set_name(thread, name);
|
|
|
|
furi_thread_set_stack_size(thread, stack_size);
|
|
|
|
furi_thread_set_callback(thread, callback);
|
|
|
|
furi_thread_set_context(thread, context);
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
void furi_thread_free(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
if(thread->name) free((void*)thread->name);
|
2023-03-01 17:57:27 +00:00
|
|
|
if(thread->appid) free((void*)thread->appid);
|
2022-10-05 15:15:23 +00:00
|
|
|
furi_string_free(thread->output.buffer);
|
2022-08-03 16:00:17 +00:00
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
free(thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_set_name(FuriThread* thread, const char* name) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
2022-06-20 14:54:48 +00:00
|
|
|
if(thread->name) free((void*)thread->name);
|
2022-08-03 15:47:10 +00:00
|
|
|
thread->name = name ? strdup(name) : NULL;
|
2021-02-12 17:24:34 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 17:57:27 +00:00
|
|
|
void furi_thread_set_appid(FuriThread* thread, const char* appid) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
if(thread->appid) free((void*)thread->appid);
|
|
|
|
thread->appid = appid ? strdup(appid) : NULL;
|
|
|
|
}
|
|
|
|
|
2022-08-27 04:25:47 +00:00
|
|
|
void furi_thread_mark_as_service(FuriThread* thread) {
|
|
|
|
thread->is_service = true;
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
void furi_thread_set_stack_size(FuriThread* thread, size_t stack_size) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
2022-06-20 14:54:48 +00:00
|
|
|
furi_assert(stack_size % 4 == 0);
|
|
|
|
thread->stack_size = stack_size;
|
2021-02-12 17:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_set_callback(FuriThread* thread, FuriThreadCallback callback) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
thread->callback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_set_context(FuriThread* thread, void* context) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
thread->context = context;
|
|
|
|
}
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
void furi_thread_set_priority(FuriThread* thread, FuriThreadPriority priority) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
furi_assert(priority >= FuriThreadPriorityIdle && priority <= FuriThreadPriorityIsr);
|
|
|
|
thread->priority = priority;
|
|
|
|
}
|
|
|
|
|
2023-02-08 04:41:22 +00:00
|
|
|
void furi_thread_set_current_priority(FuriThreadPriority priority) {
|
|
|
|
UBaseType_t new_priority = priority ? priority : FuriThreadPriorityNormal;
|
|
|
|
vTaskPrioritySet(NULL, new_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
FuriThreadPriority furi_thread_get_current_priority() {
|
|
|
|
return (FuriThreadPriority)uxTaskPriorityGet(NULL);
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
void furi_thread_set_state_callback(FuriThread* thread, FuriThreadStateCallback callback) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
thread->state_callback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_set_state_context(FuriThread* thread, void* context) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
thread->state_context = context;
|
|
|
|
}
|
|
|
|
|
2021-03-18 07:58:16 +00:00
|
|
|
FuriThreadState furi_thread_get_state(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
return thread->state;
|
|
|
|
}
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
void furi_thread_start(FuriThread* thread) {
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->callback);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
2022-06-20 14:54:48 +00:00
|
|
|
furi_assert(thread->stack_size > 0 && thread->stack_size < 0xFFFF * 4);
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_thread_set_state(thread, FuriThreadStateStarting);
|
|
|
|
|
2022-08-27 04:25:47 +00:00
|
|
|
uint32_t stack = thread->stack_size / 4;
|
|
|
|
UBaseType_t priority = thread->priority ? thread->priority : FuriThreadPriorityNormal;
|
|
|
|
if(thread->is_service) {
|
|
|
|
thread->task_handle = xTaskCreateStatic(
|
|
|
|
furi_thread_body,
|
|
|
|
thread->name,
|
|
|
|
stack,
|
|
|
|
thread,
|
|
|
|
priority,
|
|
|
|
memmgr_alloc_from_pool(sizeof(StackType_t) * stack),
|
|
|
|
memmgr_alloc_from_pool(sizeof(StaticTask_t)));
|
|
|
|
} else {
|
|
|
|
BaseType_t ret = xTaskCreate(
|
|
|
|
furi_thread_body, thread->name, stack, thread, priority, &thread->task_handle);
|
|
|
|
furi_check(ret == pdPASS);
|
|
|
|
}
|
2022-06-20 14:54:48 +00:00
|
|
|
|
|
|
|
furi_check(thread->task_handle);
|
2021-02-12 17:24:34 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
bool furi_thread_join(FuriThread* thread) {
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(thread);
|
2022-06-20 14:54:48 +00:00
|
|
|
|
2022-09-28 17:37:07 +00:00
|
|
|
furi_check(furi_thread_get_current() != thread);
|
|
|
|
|
2022-09-29 10:42:15 +00:00
|
|
|
// Wait for thread to stop
|
2022-10-07 17:06:29 +00:00
|
|
|
while(thread->task_handle) {
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_delay_ms(10);
|
2021-06-29 21:19:20 +00:00
|
|
|
}
|
2022-06-20 14:54:48 +00:00
|
|
|
|
2022-09-29 10:42:15 +00:00
|
|
|
return true;
|
2021-02-12 17:24:34 +00:00
|
|
|
}
|
2021-06-23 14:48:44 +00:00
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
FuriThreadId furi_thread_get_id(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
return thread->task_handle;
|
2021-06-23 14:48:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_enable_heap_trace(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
thread->heap_trace_enabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_disable_heap_trace(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
thread->heap_trace_enabled = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t furi_thread_get_heap_size(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->heap_trace_enabled == true);
|
|
|
|
return thread->heap_size;
|
|
|
|
}
|
2022-04-13 20:50:25 +00:00
|
|
|
|
|
|
|
int32_t furi_thread_get_return_code(FuriThread* thread) {
|
|
|
|
furi_assert(thread);
|
|
|
|
furi_assert(thread->state == FuriThreadStateStopped);
|
|
|
|
return thread->ret;
|
|
|
|
}
|
2022-06-20 14:54:48 +00:00
|
|
|
|
|
|
|
FuriThreadId furi_thread_get_current_id() {
|
|
|
|
return xTaskGetCurrentTaskHandle();
|
|
|
|
}
|
|
|
|
|
2022-08-03 16:00:17 +00:00
|
|
|
FuriThread* furi_thread_get_current() {
|
|
|
|
FuriThread* thread = pvTaskGetThreadLocalStoragePointer(NULL, 0);
|
|
|
|
furi_assert(thread != NULL);
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
void furi_thread_yield() {
|
|
|
|
furi_assert(!FURI_IS_IRQ_MODE());
|
|
|
|
taskYIELD();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Limits */
|
|
|
|
#define MAX_BITS_TASK_NOTIFY 31U
|
|
|
|
#define MAX_BITS_EVENT_GROUPS 24U
|
|
|
|
|
|
|
|
#define THREAD_FLAGS_INVALID_BITS (~((1UL << MAX_BITS_TASK_NOTIFY) - 1U))
|
|
|
|
#define EVENT_FLAGS_INVALID_BITS (~((1UL << MAX_BITS_EVENT_GROUPS) - 1U))
|
|
|
|
|
|
|
|
uint32_t furi_thread_flags_set(FuriThreadId thread_id, uint32_t flags) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
uint32_t rflags;
|
|
|
|
BaseType_t yield;
|
|
|
|
|
|
|
|
if((hTask == NULL) || ((flags & THREAD_FLAGS_INVALID_BITS) != 0U)) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorParameter;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusError;
|
2022-06-20 14:54:48 +00:00
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
|
|
yield = pdFALSE;
|
|
|
|
|
2022-07-06 13:54:08 +00:00
|
|
|
(void)xTaskNotifyIndexedFromISR(hTask, THREAD_NOTIFY_INDEX, flags, eSetBits, &yield);
|
|
|
|
(void)xTaskNotifyAndQueryIndexedFromISR(
|
|
|
|
hTask, THREAD_NOTIFY_INDEX, 0, eNoAction, &rflags, NULL);
|
2022-06-20 14:54:48 +00:00
|
|
|
|
|
|
|
portYIELD_FROM_ISR(yield);
|
|
|
|
} else {
|
2022-07-06 13:54:08 +00:00
|
|
|
(void)xTaskNotifyIndexed(hTask, THREAD_NOTIFY_INDEX, flags, eSetBits);
|
|
|
|
(void)xTaskNotifyAndQueryIndexed(hTask, THREAD_NOTIFY_INDEX, 0, eNoAction, &rflags);
|
2022-06-20 14:54:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Return flags after setting */
|
|
|
|
return (rflags);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t furi_thread_flags_clear(uint32_t flags) {
|
|
|
|
TaskHandle_t hTask;
|
|
|
|
uint32_t rflags, cflags;
|
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorISR;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else if((flags & THREAD_FLAGS_INVALID_BITS) != 0U) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorParameter;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else {
|
|
|
|
hTask = xTaskGetCurrentTaskHandle();
|
|
|
|
|
2022-07-06 13:54:08 +00:00
|
|
|
if(xTaskNotifyAndQueryIndexed(hTask, THREAD_NOTIFY_INDEX, 0, eNoAction, &cflags) ==
|
|
|
|
pdPASS) {
|
2022-06-20 14:54:48 +00:00
|
|
|
rflags = cflags;
|
|
|
|
cflags &= ~flags;
|
|
|
|
|
2022-07-06 13:54:08 +00:00
|
|
|
if(xTaskNotifyIndexed(hTask, THREAD_NOTIFY_INDEX, cflags, eSetValueWithOverwrite) !=
|
|
|
|
pdPASS) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusError;
|
2022-06-20 14:54:48 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusError;
|
2022-06-20 14:54:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return flags before clearing */
|
|
|
|
return (rflags);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t furi_thread_flags_get(void) {
|
|
|
|
TaskHandle_t hTask;
|
|
|
|
uint32_t rflags;
|
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorISR;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else {
|
|
|
|
hTask = xTaskGetCurrentTaskHandle();
|
|
|
|
|
2022-07-06 13:54:08 +00:00
|
|
|
if(xTaskNotifyAndQueryIndexed(hTask, THREAD_NOTIFY_INDEX, 0, eNoAction, &rflags) !=
|
|
|
|
pdPASS) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusError;
|
2022-06-20 14:54:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rflags);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t furi_thread_flags_wait(uint32_t flags, uint32_t options, uint32_t timeout) {
|
|
|
|
uint32_t rflags, nval;
|
|
|
|
uint32_t clear;
|
|
|
|
TickType_t t0, td, tout;
|
|
|
|
BaseType_t rval;
|
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorISR;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else if((flags & THREAD_FLAGS_INVALID_BITS) != 0U) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorParameter;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else {
|
2022-07-20 10:56:33 +00:00
|
|
|
if((options & FuriFlagNoClear) == FuriFlagNoClear) {
|
2022-06-20 14:54:48 +00:00
|
|
|
clear = 0U;
|
|
|
|
} else {
|
|
|
|
clear = flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
rflags = 0U;
|
|
|
|
tout = timeout;
|
|
|
|
|
|
|
|
t0 = xTaskGetTickCount();
|
|
|
|
do {
|
2022-07-06 13:54:08 +00:00
|
|
|
rval = xTaskNotifyWaitIndexed(THREAD_NOTIFY_INDEX, 0, clear, &nval, tout);
|
2022-06-20 14:54:48 +00:00
|
|
|
|
|
|
|
if(rval == pdPASS) {
|
|
|
|
rflags &= flags;
|
|
|
|
rflags |= nval;
|
|
|
|
|
2022-07-20 10:56:33 +00:00
|
|
|
if((options & FuriFlagWaitAll) == FuriFlagWaitAll) {
|
2022-06-20 14:54:48 +00:00
|
|
|
if((flags & rflags) == flags) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if(timeout == 0U) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorResource;
|
2022-06-20 14:54:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if((flags & rflags) != 0) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
if(timeout == 0U) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorResource;
|
2022-06-20 14:54:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update timeout */
|
|
|
|
td = xTaskGetTickCount() - t0;
|
|
|
|
|
|
|
|
if(td > tout) {
|
|
|
|
tout = 0;
|
|
|
|
} else {
|
|
|
|
tout -= td;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(timeout == 0) {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorResource;
|
2022-06-20 14:54:48 +00:00
|
|
|
} else {
|
2022-07-20 10:56:33 +00:00
|
|
|
rflags = (uint32_t)FuriStatusErrorTimeout;
|
2022-06-20 14:54:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} while(rval != pdFAIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return flags before clearing */
|
|
|
|
return (rflags);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t furi_thread_enumerate(FuriThreadId* thread_array, uint32_t array_items) {
|
|
|
|
uint32_t i, count;
|
|
|
|
TaskStatus_t* task;
|
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE() || (thread_array == NULL) || (array_items == 0U)) {
|
|
|
|
count = 0U;
|
|
|
|
} else {
|
|
|
|
vTaskSuspendAll();
|
|
|
|
|
|
|
|
count = uxTaskGetNumberOfTasks();
|
|
|
|
task = pvPortMalloc(count * sizeof(TaskStatus_t));
|
|
|
|
|
|
|
|
if(task != NULL) {
|
|
|
|
count = uxTaskGetSystemState(task, count, NULL);
|
|
|
|
|
|
|
|
for(i = 0U; (i < count) && (i < array_items); i++) {
|
|
|
|
thread_array[i] = (FuriThreadId)task[i].xHandle;
|
|
|
|
}
|
|
|
|
count = i;
|
|
|
|
}
|
|
|
|
(void)xTaskResumeAll();
|
|
|
|
|
|
|
|
vPortFree(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (count);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* furi_thread_get_name(FuriThreadId thread_id) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
const char* name;
|
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE() || (hTask == NULL)) {
|
|
|
|
name = NULL;
|
|
|
|
} else {
|
|
|
|
name = pcTaskGetName(hTask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (name);
|
|
|
|
}
|
|
|
|
|
2023-03-01 17:57:27 +00:00
|
|
|
const char* furi_thread_get_appid(FuriThreadId thread_id) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
const char* appid = "system";
|
|
|
|
|
|
|
|
if(!FURI_IS_IRQ_MODE() && (hTask != NULL)) {
|
|
|
|
FuriThread* thread = (FuriThread*)pvTaskGetThreadLocalStoragePointer(hTask, 0);
|
|
|
|
if(thread) {
|
|
|
|
appid = thread->appid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (appid);
|
|
|
|
}
|
|
|
|
|
2022-06-20 14:54:48 +00:00
|
|
|
uint32_t furi_thread_get_stack_space(FuriThreadId thread_id) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
uint32_t sz;
|
|
|
|
|
|
|
|
if(FURI_IS_IRQ_MODE() || (hTask == NULL)) {
|
|
|
|
sz = 0U;
|
|
|
|
} else {
|
|
|
|
sz = (uint32_t)(uxTaskGetStackHighWaterMark(hTask) * sizeof(StackType_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
return (sz);
|
|
|
|
}
|
2022-08-03 16:00:17 +00:00
|
|
|
|
|
|
|
static size_t __furi_thread_stdout_write(FuriThread* thread, const char* data, size_t size) {
|
|
|
|
if(thread->output.write_callback != NULL) {
|
|
|
|
thread->output.write_callback(data, size);
|
|
|
|
} else {
|
|
|
|
furi_hal_console_tx((const uint8_t*)data, size);
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t __furi_thread_stdout_flush(FuriThread* thread) {
|
2022-10-05 15:15:23 +00:00
|
|
|
FuriString* buffer = thread->output.buffer;
|
|
|
|
size_t size = furi_string_size(buffer);
|
2022-08-03 16:00:17 +00:00
|
|
|
if(size > 0) {
|
2022-10-05 15:15:23 +00:00
|
|
|
__furi_thread_stdout_write(thread, furi_string_get_cstr(buffer), size);
|
|
|
|
furi_string_reset(buffer);
|
2022-08-03 16:00:17 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_thread_set_stdout_callback(FuriThreadStdoutWriteCallback callback) {
|
|
|
|
FuriThread* thread = furi_thread_get_current();
|
|
|
|
|
|
|
|
__furi_thread_stdout_flush(thread);
|
|
|
|
thread->output.write_callback = callback;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:54:15 +00:00
|
|
|
FuriThreadStdoutWriteCallback furi_thread_get_stdout_callback() {
|
|
|
|
FuriThread* thread = furi_thread_get_current();
|
|
|
|
|
|
|
|
return thread->output.write_callback;
|
|
|
|
}
|
|
|
|
|
2022-08-03 16:00:17 +00:00
|
|
|
size_t furi_thread_stdout_write(const char* data, size_t size) {
|
|
|
|
FuriThread* thread = furi_thread_get_current();
|
|
|
|
|
|
|
|
if(size == 0 || data == NULL) {
|
|
|
|
return __furi_thread_stdout_flush(thread);
|
|
|
|
} else {
|
|
|
|
if(data[size - 1] == '\n') {
|
|
|
|
// if the last character is a newline, we can flush buffer and write data as is, wo buffers
|
|
|
|
__furi_thread_stdout_flush(thread);
|
|
|
|
__furi_thread_stdout_write(thread, data, size);
|
|
|
|
} else {
|
|
|
|
// string_cat doesn't work here because we need to write the exact size data
|
|
|
|
for(size_t i = 0; i < size; i++) {
|
2022-10-05 15:15:23 +00:00
|
|
|
furi_string_push_back(thread->output.buffer, data[i]);
|
2022-08-03 16:00:17 +00:00
|
|
|
if(data[i] == '\n') {
|
|
|
|
__furi_thread_stdout_flush(thread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t furi_thread_stdout_flush() {
|
|
|
|
return __furi_thread_stdout_flush(furi_thread_get_current());
|
2022-09-21 14:42:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_suspend(FuriThreadId thread_id) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
vTaskSuspend(hTask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_thread_resume(FuriThreadId thread_id) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
|
|
xTaskResumeFromISR(hTask);
|
|
|
|
} else {
|
|
|
|
vTaskResume(hTask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_thread_is_suspended(FuriThreadId thread_id) {
|
|
|
|
TaskHandle_t hTask = (TaskHandle_t)thread_id;
|
|
|
|
return eTaskGetState(hTask) == eSuspended;
|
|
|
|
}
|