mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-11-26 21:39:28 +03:00
f4122a924a
* 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>
99 lines
2.4 KiB
C
99 lines
2.4 KiB
C
#pragma once
|
|
|
|
#include "event_loop.h"
|
|
#include "event_loop_link_i.h"
|
|
#include "event_loop_timer_i.h"
|
|
#include "event_loop_tick_i.h"
|
|
|
|
#include <m-list.h>
|
|
#include <m-bptree.h>
|
|
#include <m-i-list.h>
|
|
|
|
#include "thread.h"
|
|
|
|
struct FuriEventLoopItem {
|
|
// Source
|
|
FuriEventLoop* owner;
|
|
|
|
// Tracking item
|
|
FuriEventLoopEvent event;
|
|
FuriEventLoopObject* object;
|
|
const FuriEventLoopContract* contract;
|
|
|
|
// Callback and context
|
|
FuriEventLoopEventCallback callback;
|
|
void* callback_context;
|
|
|
|
// Waiting list
|
|
ILIST_INTERFACE(WaitingList, FuriEventLoopItem);
|
|
};
|
|
|
|
ILIST_DEF(WaitingList, FuriEventLoopItem, M_POD_OPLIST)
|
|
|
|
/* Event Loop RB tree */
|
|
#define FURI_EVENT_LOOP_TREE_RANK (4)
|
|
|
|
BPTREE_DEF2( // NOLINT
|
|
FuriEventLoopTree,
|
|
FURI_EVENT_LOOP_TREE_RANK,
|
|
FuriEventLoopObject*, /* pointer to object we track */
|
|
M_PTR_OPLIST,
|
|
FuriEventLoopItem*, /* pointer to the FuriEventLoopItem */
|
|
M_PTR_OPLIST)
|
|
|
|
#define M_OPL_FuriEventLoopTree_t() BPTREE_OPLIST(FuriEventLoopTree, M_POD_OPLIST)
|
|
|
|
#define FURI_EVENT_LOOP_FLAG_NOTIFY_INDEX (2)
|
|
|
|
typedef enum {
|
|
FuriEventLoopFlagEvent = (1 << 0),
|
|
FuriEventLoopFlagStop = (1 << 1),
|
|
FuriEventLoopFlagTimer = (1 << 2),
|
|
FuriEventLoopFlagPending = (1 << 3),
|
|
} FuriEventLoopFlag;
|
|
|
|
#define FuriEventLoopFlagAll \
|
|
(FuriEventLoopFlagEvent | FuriEventLoopFlagStop | FuriEventLoopFlagTimer | \
|
|
FuriEventLoopFlagPending)
|
|
|
|
typedef enum {
|
|
FuriEventLoopProcessStatusComplete,
|
|
FuriEventLoopProcessStatusIncomplete,
|
|
FuriEventLoopProcessStatusAgain,
|
|
FuriEventLoopProcessStatusFreeLater,
|
|
} FuriEventLoopProcessStatus;
|
|
|
|
typedef enum {
|
|
FuriEventLoopStateStopped,
|
|
FuriEventLoopStateIdle,
|
|
FuriEventLoopStateProcessing,
|
|
} FuriEventLoopState;
|
|
|
|
typedef struct {
|
|
FuriEventLoopPendingCallback callback;
|
|
void* context;
|
|
} FuriEventLoopPendingQueueItem;
|
|
|
|
LIST_DUAL_PUSH_DEF(PendingQueue, FuriEventLoopPendingQueueItem, M_POD_OPLIST)
|
|
|
|
struct FuriEventLoop {
|
|
// Only works if all operations are done from the same thread
|
|
FuriThreadId thread_id;
|
|
|
|
// Poller state
|
|
volatile FuriEventLoopState state;
|
|
|
|
// Event handling
|
|
FuriEventLoopTree_t tree;
|
|
WaitingList_t waiting_list;
|
|
|
|
// Active timer list
|
|
TimerList_t timer_list;
|
|
// Timer request queue
|
|
TimerQueue_t timer_queue;
|
|
// Pending callback queue
|
|
PendingQueue_t pending_queue;
|
|
// Tick event
|
|
FuriEventLoopTick tick;
|
|
};
|