4bf29827f8
* Quicksave 1 * Header stage complete * Source stage complete * Lint & merge fixes * Includes * Documentation step 1 * FBT: output free size considering BT STACK * Documentation step 2 * py lint * Fix music player plugin * unit test stage 1: string allocator, mem, getters, setters, appends, compare, search. * unit test: string equality * unit test: string replace * unit test: string start_with, end_with * unit test: string trim * unit test: utf-8 * Rename * Revert fw_size changes * Simplify CLI backspace handling * Simplify CLI character insert * Merge fixes * Furi: correct filenaming and spelling * Bt: remove furi string include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
#pragma once
|
|
#include "rpc.h"
|
|
#include "storage/filesystem_api_defines.h"
|
|
#include <pb.h>
|
|
#include <pb_decode.h>
|
|
#include <pb_encode.h>
|
|
#include <flipper.pb.h>
|
|
#include <cli/cli.h>
|
|
|
|
typedef void* (*RpcSystemAlloc)(RpcSession* session);
|
|
typedef void (*RpcSystemFree)(void* context);
|
|
typedef void (*PBMessageHandler)(const PB_Main* msg_request, void* context);
|
|
|
|
typedef struct {
|
|
bool (*decode_submessage)(pb_istream_t* stream, const pb_field_t* field, void** arg);
|
|
PBMessageHandler message_handler;
|
|
void* context;
|
|
} RpcHandler;
|
|
|
|
void rpc_send(RpcSession* session, PB_Main* main_message);
|
|
|
|
void rpc_send_and_release(RpcSession* session, PB_Main* main_message);
|
|
|
|
void rpc_send_and_release_empty(RpcSession* session, uint32_t command_id, PB_CommandStatus status);
|
|
|
|
void rpc_add_handler(RpcSession* session, pb_size_t message_tag, RpcHandler* handler);
|
|
|
|
void* rpc_system_system_alloc(RpcSession* session);
|
|
void* rpc_system_storage_alloc(RpcSession* session);
|
|
void rpc_system_storage_free(void* ctx);
|
|
void* rpc_system_app_alloc(RpcSession* session);
|
|
void rpc_system_app_free(void* ctx);
|
|
void* rpc_system_gui_alloc(RpcSession* session);
|
|
void rpc_system_gui_free(void* ctx);
|
|
void* rpc_system_gpio_alloc(RpcSession* session);
|
|
void rpc_system_gpio_free(void* ctx);
|
|
|
|
void rpc_debug_print_message(const PB_Main* message);
|
|
void rpc_debug_print_data(const char* prefix, uint8_t* buffer, size_t size);
|
|
|
|
void rpc_cli_command_start_session(Cli* cli, FuriString* args, void* context);
|
|
|
|
PB_CommandStatus rpc_system_storage_get_error(FS_Error fs_error);
|