2021-05-26 16:23:25 +00:00
|
|
|
#include "app-loader.h"
|
|
|
|
|
|
|
|
#define APP_LOADER_TAG "app_loader"
|
2020-10-17 08:48:52 +00:00
|
|
|
|
2020-10-17 09:58:14 +00:00
|
|
|
typedef struct {
|
2021-02-12 17:24:34 +00:00
|
|
|
FuriThread* thread;
|
|
|
|
const FlipperApplication* current_app;
|
2021-05-26 16:23:25 +00:00
|
|
|
string_t args;
|
2021-02-13 11:40:20 +00:00
|
|
|
Cli* cli;
|
2020-10-17 09:58:14 +00:00
|
|
|
} AppLoaderState;
|
2020-10-17 08:48:52 +00:00
|
|
|
|
2021-03-18 07:58:16 +00:00
|
|
|
static AppLoaderState state;
|
2020-10-17 08:48:52 +00:00
|
|
|
|
2020-10-18 04:10:15 +00:00
|
|
|
// TODO add mutex for contex
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
static void app_loader_menu_callback(void* _ctx) {
|
2021-03-18 07:58:16 +00:00
|
|
|
furi_assert(_ctx);
|
|
|
|
const FlipperApplication* flipper_app = (FlipperApplication*)_ctx;
|
|
|
|
furi_assert(flipper_app->app);
|
|
|
|
furi_assert(flipper_app->name);
|
2020-10-17 10:10:53 +00:00
|
|
|
|
2021-05-26 16:23:25 +00:00
|
|
|
if(furi_thread_get_state(state.thread) != FuriThreadStateStopped) {
|
|
|
|
FURI_LOG_E(APP_LOADER_TAG, "Can't start app. %s is running", state.current_app->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
api_hal_power_insomnia_enter();
|
2021-03-18 07:58:16 +00:00
|
|
|
state.current_app = flipper_app;
|
2021-05-26 16:23:25 +00:00
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Starting furi application: %s", state.current_app->name);
|
2021-03-18 07:58:16 +00:00
|
|
|
furi_thread_set_name(state.thread, flipper_app->name);
|
|
|
|
furi_thread_set_stack_size(state.thread, flipper_app->stack_size);
|
2021-06-24 11:32:33 +00:00
|
|
|
furi_thread_set_context(state.thread, NULL);
|
2021-03-18 07:58:16 +00:00
|
|
|
furi_thread_set_callback(state.thread, flipper_app->app);
|
|
|
|
furi_thread_start(state.thread);
|
2020-10-17 09:58:14 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 13:57:39 +00:00
|
|
|
static void app_loader_cli_callback(Cli* cli, string_t args, void* _ctx) {
|
2021-03-18 07:58:16 +00:00
|
|
|
furi_assert(_ctx);
|
|
|
|
const FlipperApplication* flipper_app = (FlipperApplication*)_ctx;
|
|
|
|
furi_assert(flipper_app->app);
|
|
|
|
furi_assert(flipper_app->name);
|
|
|
|
|
2021-05-26 16:23:25 +00:00
|
|
|
if(furi_thread_get_state(state.thread) != FuriThreadStateStopped) {
|
2021-03-18 07:58:16 +00:00
|
|
|
printf("Can't start, furi application is running");
|
|
|
|
return;
|
|
|
|
}
|
2020-11-17 17:08:31 +00:00
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
api_hal_power_insomnia_enter();
|
2021-05-26 16:23:25 +00:00
|
|
|
state.current_app = flipper_app;
|
|
|
|
printf("Starting furi application %s", state.current_app->name);
|
2021-03-18 07:58:16 +00:00
|
|
|
furi_thread_set_name(state.thread, flipper_app->name);
|
|
|
|
furi_thread_set_stack_size(state.thread, flipper_app->stack_size);
|
|
|
|
furi_thread_set_callback(state.thread, flipper_app->app);
|
|
|
|
furi_thread_start(state.thread);
|
2020-11-17 17:08:31 +00:00
|
|
|
}
|
|
|
|
|
2021-05-26 16:23:25 +00:00
|
|
|
bool app_loader_start(const char* name, const char* args) {
|
|
|
|
furi_assert(name);
|
|
|
|
|
|
|
|
const FlipperApplication* flipper_app = NULL;
|
|
|
|
// Search for application
|
|
|
|
for(size_t i = 0; i < FLIPPER_APPS_COUNT; i++) {
|
|
|
|
if(!strcmp(FLIPPER_APPS[i].name, name)) {
|
|
|
|
flipper_app = &FLIPPER_APPS[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!flipper_app) {
|
|
|
|
FURI_LOG_E(APP_LOADER_TAG, "Can't find application with name %s", name);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(furi_thread_get_state(state.thread) != FuriThreadStateStopped) {
|
|
|
|
FURI_LOG_E(APP_LOADER_TAG, "Can't start app. %s is running", state.current_app->name);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
state.current_app = flipper_app;
|
|
|
|
if(args) {
|
|
|
|
string_set_str(state.args, args);
|
|
|
|
string_strim(state.args);
|
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Start %s app with args: %s", name, args);
|
|
|
|
} else {
|
|
|
|
string_clean(state.args);
|
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Start %s app with no args", name);
|
|
|
|
}
|
|
|
|
furi_thread_set_name(state.thread, flipper_app->name);
|
|
|
|
furi_thread_set_stack_size(state.thread, flipper_app->stack_size);
|
|
|
|
furi_thread_set_context(state.thread, (void*)string_get_cstr(state.args));
|
|
|
|
furi_thread_set_callback(state.thread, flipper_app->app);
|
|
|
|
return furi_thread_start(state.thread);
|
|
|
|
}
|
|
|
|
|
2021-06-23 14:48:44 +00:00
|
|
|
void app_loader_thread_state_callback(FuriThreadState thread_state, void* context) {
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_assert(context);
|
2021-06-23 14:48:44 +00:00
|
|
|
if(thread_state == FuriThreadStateStopped) {
|
|
|
|
FURI_LOG_I(
|
|
|
|
APP_LOADER_TAG,
|
|
|
|
"Application thread stopped, heap leaked: %d",
|
|
|
|
furi_thread_get_heap_size(state.thread));
|
2021-02-12 17:24:34 +00:00
|
|
|
api_hal_power_insomnia_exit();
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 08:48:52 +00:00
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
int32_t app_loader(void* p) {
|
2021-05-26 16:23:25 +00:00
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Starting");
|
2021-02-12 17:24:34 +00:00
|
|
|
state.thread = furi_thread_alloc();
|
2021-06-23 14:48:44 +00:00
|
|
|
furi_thread_enable_heap_trace(state.thread);
|
2021-02-12 17:24:34 +00:00
|
|
|
furi_thread_set_state_context(state.thread, &state);
|
|
|
|
furi_thread_set_state_callback(state.thread, app_loader_thread_state_callback);
|
2021-05-26 16:23:25 +00:00
|
|
|
string_init(state.args);
|
2020-10-17 09:58:14 +00:00
|
|
|
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
ValueMutex* menu_mutex = furi_record_open("menu");
|
2021-02-13 11:40:20 +00:00
|
|
|
state.cli = furi_record_open("cli");
|
2020-10-17 09:58:14 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
// Main menu
|
2021-05-26 16:23:25 +00:00
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Building main menu");
|
2020-11-18 09:39:10 +00:00
|
|
|
with_value_mutex(
|
|
|
|
menu_mutex, (Menu * menu) {
|
2021-02-12 17:24:34 +00:00
|
|
|
for(size_t i = 0; i < FLIPPER_APPS_COUNT; i++) {
|
2021-03-18 07:58:16 +00:00
|
|
|
// Add menu item
|
2020-11-18 09:39:10 +00:00
|
|
|
menu_item_add(
|
|
|
|
menu,
|
|
|
|
menu_item_alloc_function(
|
|
|
|
FLIPPER_APPS[i].name,
|
|
|
|
assets_icons_get(FLIPPER_APPS[i].icon),
|
2021-02-12 17:24:34 +00:00
|
|
|
app_loader_menu_callback,
|
2021-03-18 07:58:16 +00:00
|
|
|
(void*)&FLIPPER_APPS[i]));
|
2020-11-18 09:39:10 +00:00
|
|
|
|
|
|
|
// Add cli command
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
string_t cli_name;
|
|
|
|
string_init_set_str(cli_name, "app_");
|
|
|
|
string_cat_str(cli_name, FLIPPER_APPS[i].name);
|
2021-02-13 11:40:20 +00:00
|
|
|
cli_add_command(
|
2021-03-18 07:58:16 +00:00
|
|
|
state.cli,
|
|
|
|
string_get_cstr(cli_name),
|
|
|
|
app_loader_cli_callback,
|
|
|
|
(void*)&FLIPPER_APPS[i]);
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
string_clear(cli_name);
|
2020-11-17 17:08:31 +00:00
|
|
|
}
|
2020-11-18 09:39:10 +00:00
|
|
|
});
|
2020-10-17 09:58:14 +00:00
|
|
|
|
2021-04-28 10:43:21 +00:00
|
|
|
// Plugins
|
2021-05-26 16:23:25 +00:00
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Building plugins menu");
|
2020-11-18 09:39:10 +00:00
|
|
|
with_value_mutex(
|
|
|
|
menu_mutex, (Menu * menu) {
|
|
|
|
MenuItem* menu_plugins =
|
|
|
|
menu_item_alloc_menu("Plugins", assets_icons_get(A_Plugins_14));
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
for(size_t i = 0; i < FLIPPER_PLUGINS_COUNT; i++) {
|
2021-03-18 07:58:16 +00:00
|
|
|
// Add menu item
|
2020-11-18 09:39:10 +00:00
|
|
|
menu_item_subitem_add(
|
|
|
|
menu_plugins,
|
|
|
|
menu_item_alloc_function(
|
|
|
|
FLIPPER_PLUGINS[i].name,
|
|
|
|
assets_icons_get(FLIPPER_PLUGINS[i].icon),
|
2021-02-12 17:24:34 +00:00
|
|
|
app_loader_menu_callback,
|
2021-03-18 07:58:16 +00:00
|
|
|
(void*)&FLIPPER_PLUGINS[i]));
|
2020-11-18 09:39:10 +00:00
|
|
|
|
|
|
|
// Add cli command
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
string_t cli_name;
|
|
|
|
string_init_set_str(cli_name, "app_");
|
|
|
|
string_cat_str(cli_name, FLIPPER_PLUGINS[i].name);
|
2021-02-13 11:40:20 +00:00
|
|
|
cli_add_command(
|
2021-03-18 07:58:16 +00:00
|
|
|
state.cli,
|
|
|
|
string_get_cstr(cli_name),
|
|
|
|
app_loader_cli_callback,
|
|
|
|
(void*)&FLIPPER_PLUGINS[i]);
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
string_clear(cli_name);
|
2020-11-18 09:39:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
menu_item_add(menu, menu_plugins);
|
|
|
|
});
|
2021-04-30 11:07:13 +00:00
|
|
|
|
|
|
|
// Debug
|
2021-05-26 16:23:25 +00:00
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Building debug menu");
|
2021-04-28 10:43:21 +00:00
|
|
|
with_value_mutex(
|
|
|
|
menu_mutex, (Menu * menu) {
|
|
|
|
MenuItem* menu_debug =
|
|
|
|
menu_item_alloc_menu("Debug tools", assets_icons_get(A_Settings_14));
|
|
|
|
|
|
|
|
for(size_t i = 0; i < FLIPPER_DEBUG_APPS_COUNT; i++) {
|
|
|
|
// Add menu item
|
|
|
|
menu_item_subitem_add(
|
|
|
|
menu_debug,
|
|
|
|
menu_item_alloc_function(
|
|
|
|
FLIPPER_DEBUG_APPS[i].name,
|
|
|
|
assets_icons_get(FLIPPER_DEBUG_APPS[i].icon),
|
|
|
|
app_loader_menu_callback,
|
|
|
|
(void*)&FLIPPER_DEBUG_APPS[i]));
|
|
|
|
|
|
|
|
// Add cli command
|
|
|
|
string_t cli_name;
|
|
|
|
string_init_set_str(cli_name, "app_");
|
|
|
|
string_cat_str(cli_name, FLIPPER_DEBUG_APPS[i].name);
|
|
|
|
cli_add_command(
|
|
|
|
state.cli,
|
|
|
|
string_get_cstr(cli_name),
|
|
|
|
app_loader_cli_callback,
|
|
|
|
(void*)&FLIPPER_DEBUG_APPS[i]);
|
|
|
|
string_clear(cli_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
menu_item_add(menu, menu_debug);
|
|
|
|
});
|
2020-11-18 09:39:10 +00:00
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
// Call on start hooks
|
|
|
|
for(size_t i = 0; i < FLIPPER_ON_SYSTEM_START_COUNT; i++) {
|
|
|
|
(*FLIPPER_ON_SYSTEM_START[i])();
|
|
|
|
}
|
|
|
|
|
2021-05-26 16:23:25 +00:00
|
|
|
FURI_LOG_I(APP_LOADER_TAG, "Started");
|
2020-10-17 08:48:52 +00:00
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
while(1) {
|
|
|
|
osThreadSuspend(osThreadGetId());
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
}
|