unleashed-firmware/applications/playlist/playlist.c

590 lines
19 KiB
C
Raw Normal View History

2022-08-07 00:02:01 +00:00
#include <furi.h>
#include <gui/gui.h>
#include <input/input.h>
#include <dialogs/dialogs.h>
#include <storage/storage.h>
2022-08-08 23:14:28 +00:00
#include <lib/toolbox/path.h>
2022-08-07 00:02:01 +00:00
#include <assets_icons.h>
#include <flipper_format/flipper_format_i.h>
#include <applications/subghz/subghz_i.h>
2022-08-08 22:12:06 +00:00
#include "flipper_format_stream.h"
#include "flipper_format_stream_i.h"
2022-08-10 22:44:35 +00:00
#include <lib/subghz/transmitter.h>
#include <lib/subghz/protocols/raw.h>
2022-08-08 22:12:06 +00:00
#include "playlist_file.h"
#define PLAYLIST_FOLDER "/ext/playlist"
#define PLAYLIST_EXT ".txt"
#define TAG "Playlist"
2022-08-07 00:02:01 +00:00
2022-08-08 00:02:39 +00:00
#define STATE_OVERVIEW 2
2022-08-07 00:02:01 +00:00
#define WIDTH 128
#define HEIGHT 64
2022-08-08 22:12:06 +00:00
typedef struct {
2022-08-08 23:14:28 +00:00
int current_count; // number of processed files
int total_count; // number of items in the playlist
2022-08-08 22:12:06 +00:00
// last 3 files
string_t prev_0_path; // current file
string_t prev_1_path; // previous file
2022-08-08 23:14:28 +00:00
string_t prev_2_path; // previous previous file
string_t prev_3_path; // you get the idea
2022-08-08 22:12:06 +00:00
} DisplayMeta;
2022-08-07 00:02:01 +00:00
typedef struct {
2022-08-08 00:02:39 +00:00
FuriThread* thread;
Storage* storage;
FlipperFormat* format;
2022-08-08 22:12:06 +00:00
DisplayMeta* meta;
2022-08-08 23:14:28 +00:00
string_t file_path; // path to the playlist file
2022-08-10 22:44:35 +00:00
bool ctl_request_exit; // can be set to true if the worker should exit
bool ctl_pause; // can be set to true if the worker should pause
bool is_running; // indicates if the worker is running
2022-08-08 00:02:39 +00:00
} PlaylistWorker;
2022-08-08 00:55:18 +00:00
typedef struct {
FuriMutex* mutex;
FuriMessageQueue* input_queue;
ViewPort* view_port;
Gui* gui;
2022-08-08 00:02:39 +00:00
2022-08-08 22:12:06 +00:00
DisplayMeta* meta;
2022-08-08 00:55:18 +00:00
PlaylistWorker* worker;
2022-08-08 00:02:39 +00:00
2022-08-08 00:55:18 +00:00
string_t file_path; // Path to the playlist file
2022-08-07 00:02:01 +00:00
2022-08-08 00:55:18 +00:00
int state; // Current state for rendering
} Playlist;
2022-08-07 00:02:01 +00:00
2022-08-08 00:55:18 +00:00
////////////////////////////////////////////////////////////////////////////////
2022-08-07 00:02:01 +00:00
2022-08-08 00:02:39 +00:00
static int32_t playlist_worker_thread(void* ctx) {
PlaylistWorker* worker = ctx;
if(!flipper_format_file_open_existing(worker->format, string_get_cstr(worker->file_path))) {
2022-08-10 22:44:35 +00:00
worker->is_running = false;
2022-08-08 00:02:39 +00:00
return 0;
}
2022-08-10 22:44:35 +00:00
// allocate subghz environment
SubGhzEnvironment* environment = subghz_environment_alloc();
2022-08-08 00:02:39 +00:00
2022-08-10 22:44:35 +00:00
string_t data, preset, protocol;
2022-08-08 00:02:39 +00:00
string_init(data);
2022-08-10 22:44:35 +00:00
string_init(preset);
string_init(protocol);
FlipperFormat* fff_data = flipper_format_string_alloc();
while(flipper_format_read_string(worker->format, "sub", data)) {
2022-08-08 22:12:06 +00:00
// wait if paused
2022-08-10 22:44:35 +00:00
while(!worker->ctl_request_exit && worker->ctl_pause) {
FURI_LOG_I(TAG, "Just Paused. Waiting...");
2022-08-08 22:12:06 +00:00
furi_delay_ms(100);
2022-08-08 00:02:39 +00:00
}
2022-08-10 22:44:35 +00:00
// exit loop if requested to stop
if(worker->ctl_request_exit) {
FURI_LOG_I(TAG, "Requested to exit. Exiting loop...");
break;
}
2022-08-08 22:12:06 +00:00
// send .sub files
++worker->meta->current_count;
const char* str = string_get_cstr(data);
2022-08-10 22:44:35 +00:00
FURI_LOG_I(TAG, "(worker) Sending %s", str);
// it's not fancy, but it works for now :)
2022-08-08 22:12:06 +00:00
string_reset(worker->meta->prev_3_path);
string_set_str(worker->meta->prev_3_path, string_get_cstr(worker->meta->prev_2_path));
string_reset(worker->meta->prev_2_path);
string_set_str(worker->meta->prev_2_path, string_get_cstr(worker->meta->prev_1_path));
string_reset(worker->meta->prev_1_path);
string_set_str(worker->meta->prev_1_path, string_get_cstr(worker->meta->prev_0_path));
string_reset(worker->meta->prev_0_path);
string_set_str(worker->meta->prev_0_path, str);
2022-08-10 22:44:35 +00:00
// actual sending of .sub file
{
// open .sub file
FlipperFormat* fff_file = flipper_format_file_alloc(worker->storage);
2022-08-08 22:12:06 +00:00
2022-08-10 22:44:35 +00:00
if(!flipper_format_file_open_existing(fff_file, str)) {
FURI_LOG_E(TAG, " (TX) Failed to open %s", str);
flipper_format_free(fff_file);
continue;
}
// read frequency or default to 433.92MHz
uint32_t frequency = 0;
if(!flipper_format_read_uint32(fff_file, "Frequency", &frequency, 1)) {
FURI_LOG_W(TAG, " (TX) Missing Frequency, defaulting to 433.92MHz");
frequency = 433920000;
}
FURI_LOG_I(TAG, " (TX) Frequency: %u", frequency);
// TODO: check if freq is allowed to transmit
// check if preset is present
if(!flipper_format_read_string(fff_file, "Preset", preset)) {
FURI_LOG_E(TAG, " (TX) Missing Preset");
flipper_format_free(fff_file);
continue;
}
FuriHalSubGhzPreset enum_preset;
if(string_cmp_str(preset, "FuriHalSubGhzPresetOok270Async") == 0) {
enum_preset = FuriHalSubGhzPresetOok270Async;
FURI_LOG_I(TAG, " (TX) Preset: Ook270Async");
} else if(string_cmp_str(preset, "FuriHalSubGhzPresetOok650Async") == 0) {
enum_preset = FuriHalSubGhzPresetOok650Async;
FURI_LOG_I(TAG, " (TX) Preset: Ook650Async");
} else if(string_cmp_str(preset, "FuriHalSubGhzPreset2FSKDev238Async") == 0) {
enum_preset = FuriHalSubGhzPreset2FSKDev238Async;
FURI_LOG_I(TAG, " (TX) Preset: 2FSKDev238Async");
} else if(string_cmp_str(preset, "FuriHalSubGhzPreset2FSKDev476Async") == 0) {
enum_preset = FuriHalSubGhzPreset2FSKDev476Async;
FURI_LOG_I(TAG, " (TX) Preset: 2FSKDev476Async");
} else if(string_cmp_str(preset, "FuriHalSubGhzPresetMSK99_97KbAsync") == 0) {
enum_preset = FuriHalSubGhzPresetMSK99_97KbAsync;
FURI_LOG_I(TAG, " (TX) Preset: MSK99_97KbAsync");
} else if(string_cmp_str(preset, "FuriHalSubGhzPresetMSK99_97KbAsync") == 0) {
enum_preset = FuriHalSubGhzPresetMSK99_97KbAsync;
FURI_LOG_I(TAG, " (TX) Preset: MSK99_97KbAsync");
} else if(string_cmp_str(preset, "FuriHalSubGhzPresetCustom") == 0) {
enum_preset = FuriHalSubGhzPresetCustom;
FURI_LOG_I(TAG, " (TX) Preset: Custom");
} else {
FURI_LOG_E(TAG, " (TX) Invalid Preset");
flipper_format_free(fff_file);
continue;
}
// check if protocol is present
if(!flipper_format_read_string(fff_file, "Protocol", protocol)) {
FURI_LOG_E(TAG, " (TX) Missing Protocol");
flipper_format_free(fff_file);
continue;
}
FURI_LOG_I(TAG, " (TX) Protocol: %s", string_get_cstr(protocol));
if(!string_cmp_str(protocol, "RAW")) {
subghz_protocol_raw_gen_fff_data(fff_data, str);
} else {
stream_copy_full(
flipper_format_get_raw_stream(fff_file),
flipper_format_get_raw_stream(fff_data));
}
flipper_format_free(fff_file);
// (try to) send file
SubGhzTransmitter* transmitter =
subghz_transmitter_alloc_init(environment, string_get_cstr(protocol));
subghz_transmitter_deserialize(transmitter, fff_data);
furi_hal_subghz_reset();
furi_hal_subghz_load_preset(enum_preset);
frequency = furi_hal_subghz_set_frequency_and_path(frequency);
furi_hal_power_suppress_charge_enter();
FURI_LOG_I(TAG, " (TX) Start sending ...");
furi_hal_subghz_start_async_tx(subghz_transmitter_yield, transmitter);
while(!furi_hal_subghz_is_async_tx_complete()) {
if(worker->ctl_request_exit || worker->ctl_pause) {
FURI_LOG_I(TAG, " (TX) Requested to exit. Cancelling sending...");
break;
}
FURI_LOG_I(TAG, " (TX) Sending...");
furi_delay_ms(100);
}
FURI_LOG_I(TAG, " (TX) Done sending.");
furi_hal_subghz_stop_async_tx();
furi_hal_subghz_sleep();
furi_hal_power_suppress_charge_exit();
subghz_transmitter_free(transmitter);
} // end of start_send section
} // end of loop
FURI_LOG_I(TAG, "Exited Loop. Clean Up.");
2022-08-08 00:02:39 +00:00
string_clear(data);
2022-08-10 22:44:35 +00:00
string_clear(preset);
string_clear(protocol);
FURI_LOG_I(TAG, " Cleaning up TX");
subghz_environment_free(environment);
flipper_format_file_close(worker->format);
2022-08-08 00:02:39 +00:00
2022-08-08 22:12:06 +00:00
FURI_LOG_I(TAG, "Done reading. Read %d data lines.", worker->meta->current_count);
2022-08-10 22:44:35 +00:00
worker->is_running = false;
2022-08-08 00:02:39 +00:00
return 0;
}
2022-08-08 22:12:06 +00:00
////////////////////////////////////////////////////////////////////////////////
void playlist_meta_reset(DisplayMeta* instance) {
instance->current_count = 0;
string_clear(instance->prev_0_path);
string_clear(instance->prev_1_path);
string_clear(instance->prev_2_path);
string_clear(instance->prev_3_path);
}
DisplayMeta* playlist_meta_alloc() {
DisplayMeta* instance = malloc(sizeof(DisplayMeta));
string_init(instance->prev_0_path);
string_init(instance->prev_1_path);
string_init(instance->prev_2_path);
string_init(instance->prev_3_path);
playlist_meta_reset(instance);
return instance;
}
void playlist_meta_free(DisplayMeta* instance) {
string_clear(instance->prev_0_path);
string_clear(instance->prev_1_path);
string_clear(instance->prev_2_path);
string_clear(instance->prev_3_path);
free(instance);
}
////////////////////////////////////////////////////////////////////////////////
PlaylistWorker* playlist_worker_alloc(DisplayMeta* meta) {
2022-08-08 00:02:39 +00:00
PlaylistWorker* instance = malloc(sizeof(PlaylistWorker));
instance->thread = furi_thread_alloc();
furi_thread_set_name(instance->thread, "PlaylistWorker");
furi_thread_set_stack_size(instance->thread, 2048);
furi_thread_set_context(instance->thread, instance);
furi_thread_set_callback(instance->thread, playlist_worker_thread);
instance->storage = furi_record_open(RECORD_STORAGE);
instance->format = flipper_format_file_alloc(instance->storage);
2022-08-08 22:12:06 +00:00
instance->meta = meta;
2022-08-10 22:44:35 +00:00
instance->ctl_pause = true; // require the user to manually start the worker
2022-08-08 00:02:39 +00:00
string_init(instance->file_path);
return instance;
}
2022-08-08 00:55:18 +00:00
void playlist_worker_free(PlaylistWorker* instance) {
furi_assert(instance);
furi_thread_free(instance->thread);
flipper_format_free(instance->format);
furi_record_close(RECORD_STORAGE);
string_clear(instance->file_path);
free(instance);
}
2022-08-08 00:02:39 +00:00
void playlist_worker_stop(PlaylistWorker* worker) {
furi_assert(worker);
2022-08-10 22:44:35 +00:00
furi_assert(worker->is_running);
2022-08-08 00:02:39 +00:00
2022-08-10 22:44:35 +00:00
worker->ctl_request_exit = true;
2022-08-08 00:02:39 +00:00
furi_thread_join(worker->thread);
}
bool playlist_worker_running(PlaylistWorker* worker) {
furi_assert(worker);
2022-08-10 22:44:35 +00:00
return worker->is_running;
2022-08-08 00:02:39 +00:00
}
2022-08-08 00:55:18 +00:00
void playlist_worker_start(PlaylistWorker* instance, const char* file_path) {
2022-08-08 00:02:39 +00:00
furi_assert(instance);
2022-08-10 22:44:35 +00:00
furi_assert(!instance->is_running);
2022-08-08 00:02:39 +00:00
2022-08-08 00:55:18 +00:00
string_set_str(instance->file_path, file_path);
2022-08-10 22:44:35 +00:00
instance->is_running = true;
2022-08-08 00:02:39 +00:00
2022-08-08 22:12:06 +00:00
// reset meta (current/total)
playlist_meta_reset(instance->meta);
2022-08-08 00:02:39 +00:00
furi_thread_start(instance->thread);
}
2022-08-08 00:55:18 +00:00
////////////////////////////////////////////////////////////////////////////////
2022-08-08 00:02:39 +00:00
2022-08-08 00:55:18 +00:00
static void render_callback(Canvas* canvas, void* ctx) {
Playlist* app = ctx;
furi_check(furi_mutex_acquire(app->mutex, FuriWaitForever) == FuriStatusOk);
2022-08-08 00:02:39 +00:00
2022-08-08 00:55:18 +00:00
canvas_clear(canvas);
2022-08-08 00:02:39 +00:00
2022-08-08 00:55:18 +00:00
switch(app->state) {
case STATE_OVERVIEW:
2022-08-08 22:12:06 +00:00
// draw progress bar
2022-08-08 00:55:18 +00:00
{
2022-08-08 22:12:06 +00:00
double progress = (double)app->meta->current_count / (double)app->meta->total_count;
canvas_set_color(canvas, ColorBlack);
canvas_draw_rframe(canvas, 1, HEIGHT - 12, WIDTH - 2, 11, 2);
if(progress > 0) {
int progress_width = (int)(progress * (double)(WIDTH - 2));
canvas_draw_rbox(canvas, 1, HEIGHT - 12, progress_width, 11, 2);
}
// draw progress text
string_t progress_text;
string_init(progress_text);
string_printf(
progress_text, "%d/%d", app->meta->current_count, app->meta->total_count);
2022-08-08 00:55:18 +00:00
2022-08-08 22:12:06 +00:00
if(progress >= (double).5) {
canvas_set_color(canvas, ColorWhite);
} else {
canvas_set_color(canvas, ColorBlack);
}
2022-08-08 00:55:18 +00:00
canvas_set_font(canvas, FontSecondary);
canvas_draw_str_aligned(
2022-08-08 22:12:06 +00:00
canvas,
WIDTH / 2,
HEIGHT - 3,
AlignCenter,
AlignBottom,
string_get_cstr(progress_text));
string_clear(progress_text);
2022-08-08 00:55:18 +00:00
}
2022-08-08 23:14:28 +00:00
// draw last and current file
{
canvas_set_color(canvas, ColorBlack);
string_t path;
string_init(path);
canvas_set_font(canvas, FontSecondary);
// current
if(!string_empty_p(app->meta->prev_0_path)) {
path_extract_filename(app->meta->prev_0_path, path, true);
int w = canvas_string_width(canvas, string_get_cstr(path));
canvas_set_color(canvas, ColorBlack);
canvas_draw_rbox(canvas, 1, 1, w + 4, 12, 2);
canvas_set_color(canvas, ColorWhite);
canvas_draw_str_aligned(canvas, 3, 3, AlignLeft, AlignTop, string_get_cstr(path));
string_reset(path);
}
// last 3
canvas_set_color(canvas, ColorBlack);
if(!string_empty_p(app->meta->prev_1_path)) {
path_extract_filename(app->meta->prev_1_path, path, true);
canvas_draw_str_aligned(canvas, 3, 15, AlignLeft, AlignTop, string_get_cstr(path));
string_reset(path);
}
if(!string_empty_p(app->meta->prev_2_path)) {
path_extract_filename(app->meta->prev_2_path, path, true);
canvas_draw_str_aligned(canvas, 6, 26, AlignLeft, AlignTop, string_get_cstr(path));
string_reset(path);
}
if(!string_empty_p(app->meta->prev_3_path)) {
path_extract_filename(app->meta->prev_3_path, path, true);
canvas_draw_str_aligned(canvas, 9, 37, AlignLeft, AlignTop, string_get_cstr(path));
string_reset(path);
}
string_clear(path);
}
2022-08-08 22:12:06 +00:00
// draw controls
{
canvas_set_font(canvas, FontSecondary);
2022-08-08 23:14:28 +00:00
const int ctl_w = 24;
const int ctl_h = 18;
// draw background
2022-08-08 22:12:06 +00:00
canvas_set_color(canvas, ColorBlack);
2022-08-08 23:14:28 +00:00
canvas_draw_rbox(canvas, WIDTH - ctl_w, HEIGHT / 2 - ctl_h / 2, ctl_w, ctl_h, 3);
canvas_draw_box(canvas, WIDTH - 3, HEIGHT / 2 - ctl_h / 2, 3, ctl_h); // right corner
// draw circle (OK)
canvas_set_color(canvas, ColorWhite);
const int disc_r = 3;
canvas_draw_disc(
canvas, WIDTH - ctl_w / 2, HEIGHT / 2 - ctl_h / 2 + disc_r + 1, disc_r);
// draw texts
2022-08-10 22:44:35 +00:00
if(!app->worker->is_running) {
2022-08-08 23:14:28 +00:00
canvas_draw_str_aligned(
canvas, WIDTH - ctl_w / 2, HEIGHT / 2 + 4, AlignCenter, AlignCenter, "STA");
2022-08-10 22:44:35 +00:00
} else if(app->worker->ctl_pause) {
2022-08-08 23:14:28 +00:00
canvas_draw_str_aligned(
canvas, WIDTH - ctl_w / 2, HEIGHT / 2 + 4, AlignCenter, AlignCenter, "RES");
2022-08-08 22:12:06 +00:00
} else {
2022-08-08 23:14:28 +00:00
canvas_draw_str_aligned(
canvas, WIDTH - ctl_w / 2, HEIGHT / 2 + 4, AlignCenter, AlignCenter, "PAU");
2022-08-08 22:12:06 +00:00
}
2022-08-08 00:55:18 +00:00
}
break;
}
furi_mutex_release(app->mutex);
2022-08-08 00:02:39 +00:00
}
2022-08-08 00:55:18 +00:00
static void input_callback(InputEvent* event, void* ctx) {
Playlist* app = ctx;
furi_message_queue_put(app->input_queue, event, 0);
}
////////////////////////////////////////////////////////////////////////////////
2022-08-08 22:12:06 +00:00
Playlist* playlist_alloc(DisplayMeta* meta) {
Playlist* app = malloc(sizeof(Playlist));
2022-08-08 00:02:39 +00:00
app->state = 0;
2022-08-08 22:12:06 +00:00
2022-08-08 00:55:18 +00:00
string_init(app->file_path);
2022-08-08 22:12:06 +00:00
string_set_str(app->file_path, PLAYLIST_FOLDER);
2022-08-08 00:55:18 +00:00
2022-08-08 22:12:06 +00:00
app->meta = meta;
2022-08-08 00:55:18 +00:00
app->worker = NULL;
2022-08-08 00:02:39 +00:00
2022-08-07 00:02:01 +00:00
app->mutex = furi_mutex_alloc(FuriMutexTypeNormal);
app->input_queue = furi_message_queue_alloc(32, sizeof(InputEvent));
// view port
app->view_port = view_port_alloc();
view_port_draw_callback_set(app->view_port, render_callback, app);
view_port_input_callback_set(app->view_port, input_callback, app);
// gui
app->gui = furi_record_open(RECORD_GUI);
gui_add_view_port(app->gui, app->view_port, GuiLayerFullscreen);
return app;
}
void playlist_free(Playlist* app) {
2022-08-07 00:02:01 +00:00
string_clear(app->file_path);
gui_remove_view_port(app->gui, app->view_port);
furi_record_close(RECORD_GUI);
view_port_free(app->view_port);
furi_message_queue_free(app->input_queue);
furi_mutex_free(app->mutex);
2022-08-08 22:12:06 +00:00
playlist_meta_free(app->meta);
2022-08-07 00:02:01 +00:00
free(app);
}
int32_t playlist_app(void* p) {
2022-08-07 00:02:01 +00:00
UNUSED(p);
// create playlist folder
2022-08-08 22:12:06 +00:00
{
Storage* storage = furi_record_open(RECORD_STORAGE);
if(!storage_simply_mkdir(storage, PLAYLIST_FOLDER)) {
FURI_LOG_E(TAG, "Could not create folder %s", PLAYLIST_FOLDER);
}
furi_record_close(RECORD_STORAGE);
2022-08-07 00:02:01 +00:00
}
2022-08-08 22:12:06 +00:00
// create app
DisplayMeta* meta = playlist_meta_alloc();
Playlist* app = playlist_alloc(meta);
2022-08-07 00:02:01 +00:00
// select playlist file
2022-08-08 22:12:06 +00:00
{
DialogsApp* dialogs = furi_record_open(RECORD_DIALOGS);
const bool res = dialog_file_browser_show(
dialogs, app->file_path, app->file_path, PLAYLIST_EXT, true, &I_sub1_10px, true);
furi_record_close(RECORD_DIALOGS);
2022-08-08 00:02:39 +00:00
// check if a file was selected
if(!res) {
FURI_LOG_E(TAG, "No file selected");
2022-08-08 22:12:06 +00:00
goto exit_cleanup;
2022-08-07 00:02:01 +00:00
}
2022-08-08 22:12:06 +00:00
}
2022-08-07 00:02:01 +00:00
2022-08-08 22:12:06 +00:00
////////////////////////////////////////////////////////////////////////////////
2022-08-08 00:02:39 +00:00
2022-08-08 22:12:06 +00:00
app->worker = playlist_worker_alloc(meta);
// count playlist items
{
Storage* storage = furi_record_open(RECORD_STORAGE);
app->meta->total_count =
playlist_count_playlist_items(storage, string_get_cstr(app->file_path));
furi_record_close(RECORD_STORAGE);
}
2022-08-08 00:02:39 +00:00
2022-08-08 22:12:06 +00:00
// start thread
playlist_worker_start(app->worker, string_get_cstr(app->file_path));
app->state = STATE_OVERVIEW;
bool exit_loop = false;
InputEvent input;
while(1) { // close application if no file was selected
furi_check(
furi_message_queue_get(app->input_queue, &input, FuriWaitForever) == FuriStatusOk);
switch(input.key) {
case InputKeyOk:
// toggle pause state
2022-08-10 22:44:35 +00:00
if(!app->worker->is_running) {
2022-08-08 22:12:06 +00:00
playlist_worker_start(app->worker, string_get_cstr(app->file_path));
} else {
2022-08-10 22:44:35 +00:00
app->worker->ctl_pause = !app->worker->ctl_pause;
2022-08-08 00:02:39 +00:00
}
2022-08-08 22:12:06 +00:00
break;
case InputKeyBack:
FURI_LOG_I(TAG, "Pressed Back button. Application will exit");
exit_loop = true;
break;
default:
break;
}
2022-08-08 00:02:39 +00:00
2022-08-08 22:12:06 +00:00
furi_mutex_release(app->mutex);
// exit application
if(exit_loop == true) {
break;
2022-08-07 00:02:01 +00:00
}
2022-08-08 22:12:06 +00:00
view_port_update(app->view_port);
}
exit_cleanup:
2022-08-08 00:55:18 +00:00
if(app->worker != NULL) {
if(playlist_worker_running(app->worker)) {
2022-08-08 00:02:39 +00:00
FURI_LOG_I(TAG, "Thread is still running. Requesting thread to finish ...");
2022-08-08 00:55:18 +00:00
playlist_worker_stop(app->worker);
2022-08-08 00:02:39 +00:00
}
2022-08-08 00:55:18 +00:00
playlist_worker_free(app->worker);
2022-08-07 00:02:01 +00:00
}
playlist_free(app);
2022-08-07 00:02:01 +00:00
return 0;
2022-08-10 22:44:35 +00:00
}