2020-08-24 15:31:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cmsis_os.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define MAX_TASK_RECORDS 8
|
|
|
|
#define MAX_RECORD_SUBSCRIBERS 8
|
|
|
|
|
|
|
|
/// application is just a function
|
2020-09-29 23:18:30 +00:00
|
|
|
typedef void (*FlipperApplication)(void*);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/// pointer to value callback function
|
2020-09-29 23:18:30 +00:00
|
|
|
typedef void (*FlipperRecordCallback)(const void*, size_t, void*);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
FlipperRecordStateMute, ///< record open and mute this handler
|
|
|
|
FlipperRecordStateUnmute, ///< record unmuted
|
|
|
|
FlipperRecordStateDeleted ///< record owner halt
|
|
|
|
} FlipperRecordState;
|
|
|
|
|
|
|
|
/// pointer to state callback function
|
2020-09-29 23:18:30 +00:00
|
|
|
typedef void (*FlipperRecordStateCallback)(FlipperRecordState, void*);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
2020-08-26 18:32:22 +00:00
|
|
|
struct _FuriRecord;
|
|
|
|
|
2020-08-24 15:31:22 +00:00
|
|
|
typedef struct {
|
|
|
|
bool allocated;
|
|
|
|
FlipperRecordCallback cb; ///< value cb
|
|
|
|
FlipperRecordStateCallback state_cb; ///< state cb
|
|
|
|
uint8_t mute_counter; ///< see "wiki/FURI#mute-algorithm"
|
|
|
|
bool no_mute;
|
2020-08-26 18:32:22 +00:00
|
|
|
struct _FuriRecord* record; ///< parent record
|
2020-09-01 10:34:23 +00:00
|
|
|
void* ctx;
|
2020-08-24 15:31:22 +00:00
|
|
|
} FuriRecordSubscriber;
|
|
|
|
|
|
|
|
/// FURI record handler
|
2020-08-26 18:32:22 +00:00
|
|
|
struct _FuriRecord {
|
2020-08-24 15:31:22 +00:00
|
|
|
const char* name;
|
|
|
|
void* value;
|
|
|
|
size_t size;
|
|
|
|
StaticSemaphore_t mutex_buffer;
|
|
|
|
SemaphoreHandle_t mutex;
|
|
|
|
uint8_t mute_counter;
|
|
|
|
FuriRecordSubscriber subscribers[MAX_RECORD_SUBSCRIBERS];
|
2020-08-26 18:32:22 +00:00
|
|
|
};
|
2020-08-24 15:31:22 +00:00
|
|
|
|
2020-08-26 18:32:22 +00:00
|
|
|
typedef struct _FuriRecord FuriRecord;
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/// store info about active task
|
|
|
|
typedef struct {
|
|
|
|
const char* name;
|
|
|
|
FlipperApplication application;
|
|
|
|
const char* prev_name;
|
|
|
|
FlipperApplication prev;
|
|
|
|
TaskHandle_t handler;
|
|
|
|
uint8_t records_count; ///< count of records which task open
|
|
|
|
FuriRecord* records[MAX_TASK_RECORDS]; ///< list of records which task open
|
|
|
|
} FuriApp;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Simply starts application.
|
|
|
|
It call app entrypoint with param passed as argument.
|
|
|
|
Useful for daemon applications and pop-up.
|
|
|
|
*/
|
|
|
|
FuriApp* furiac_start(FlipperApplication app, const char* name, void* param);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Swtich to other application.
|
|
|
|
FURI stop current app, call app entrypoint with param passed as
|
|
|
|
argument and save current application entrypoint to prev field
|
|
|
|
in current application registry.
|
|
|
|
Useful for UI or "active" application.
|
|
|
|
*/
|
|
|
|
void furiac_switch(FlipperApplication app, char* name, void* param);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Stop current application
|
|
|
|
(stop thread and clear application's stack), start application
|
|
|
|
from prev entry in current application registry, cleanup current
|
|
|
|
application registry.
|
|
|
|
*/
|
|
|
|
void furiac_exit(void* param);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Stop specified app without returning to prev application.
|
|
|
|
*/
|
|
|
|
bool furiac_kill(FuriApp* app);
|
|
|
|
|
|
|
|
// find task pointer by handle
|
|
|
|
FuriApp* find_task(TaskHandle_t handler);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Creates named FURI record.
|
|
|
|
\param[in] name you can open this record anywhere
|
|
|
|
\param[in] value pointer to data.
|
|
|
|
\param[in] size size of data.
|
|
|
|
If NULL, create FURI Pipe (only callbacks management, no data/mutex)
|
|
|
|
|
|
|
|
Returns false if registry have not enough memory for creating.
|
|
|
|
*/
|
|
|
|
bool furi_create(const char* name, void* value, size_t size);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Opens existing FURI record by name.
|
|
|
|
Returns NULL if record does not exist.
|
|
|
|
\param[in] solo if true another applications handlers set into "muted" state.
|
|
|
|
When appication has exited or record has closed, all handlers is unmuted.
|
|
|
|
It may be useful for concurrently acces to resources like framebuffer or beeper.
|
|
|
|
\param[in] no_mute if true, another applications cannot mute this handler.
|
|
|
|
*/
|
2020-09-29 23:18:30 +00:00
|
|
|
FuriRecordSubscriber* furi_open(const char* name,
|
|
|
|
bool solo,
|
|
|
|
bool no_mute,
|
|
|
|
FlipperRecordCallback value_callback,
|
|
|
|
FlipperRecordStateCallback state_callback,
|
|
|
|
void* ctx);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
|
|
*/
|
2020-08-26 18:32:22 +00:00
|
|
|
void furi_close(FuriRecordSubscriber* handler);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
read message from record.
|
|
|
|
Returns true if success, false otherwise (closed/non-existent record)
|
|
|
|
Also return false if you try to read from FURI pipe
|
|
|
|
|
|
|
|
TODO: enum return value with execution status
|
|
|
|
*/
|
2020-08-26 18:32:22 +00:00
|
|
|
bool furi_read(FuriRecordSubscriber* record, void* data, size_t size);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
write message to record.
|
|
|
|
Returns true if success, false otherwise (closed/non-existent record or muted).
|
|
|
|
|
|
|
|
TODO: enum return value with execution status
|
|
|
|
*/
|
2020-08-26 18:32:22 +00:00
|
|
|
bool furi_write(FuriRecordSubscriber* record, const void* data, size_t size);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
lock value mutex.
|
|
|
|
It can be useful if records contain pointer to buffer which you want to change.
|
|
|
|
You must call furi_give after operation on data and
|
|
|
|
you shouldn't block executing between take and give calls
|
|
|
|
|
|
|
|
Returns pointer to data, NULL if closed/non-existent record or muted
|
|
|
|
|
|
|
|
TODO: enum return value with execution status
|
|
|
|
*/
|
2020-08-26 18:32:22 +00:00
|
|
|
void* furi_take(FuriRecordSubscriber* record);
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
unlock value mutex.
|
|
|
|
*/
|
2020-08-26 18:32:22 +00:00
|
|
|
void furi_give(FuriRecordSubscriber* record);
|
2020-09-01 10:34:23 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
unlock value mutex and notify subscribers that data is chaned.
|
|
|
|
*/
|
|
|
|
void furi_commit(FuriRecordSubscriber* handler);
|