Archive refactoring WIP (#688)
* view_dispatcher queue * refactoring, all works * scenes Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
@@ -1,831 +1,69 @@
|
||||
#include "archive_i.h"
|
||||
|
||||
static bool archive_get_filenames(ArchiveApp* archive);
|
||||
|
||||
static void update_offset(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
size_t array_size = files_array_size(model->files);
|
||||
uint16_t bounds = array_size > 3 ? 2 : array_size;
|
||||
|
||||
if(array_size > 3 && model->idx >= array_size - 1) {
|
||||
model->list_offset = model->idx - 3;
|
||||
} else if(model->list_offset < model->idx - bounds) {
|
||||
model->list_offset = CLAMP(model->list_offset + 1, array_size - bounds, 0);
|
||||
} else if(model->list_offset > model->idx - bounds) {
|
||||
model->list_offset = CLAMP(model->idx - 1, array_size - bounds, 0);
|
||||
}
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
static void archive_update_last_idx(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
archive->browser.last_idx[archive->browser.depth] =
|
||||
CLAMP(model->idx, files_array_size(model->files) - 1, 0);
|
||||
model->idx = 0;
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
static void archive_switch_dir(ArchiveApp* archive, const char* path) {
|
||||
furi_assert(archive);
|
||||
furi_assert(path);
|
||||
string_set(archive->browser.path, path);
|
||||
archive_get_filenames(archive);
|
||||
update_offset(archive);
|
||||
}
|
||||
|
||||
static void archive_switch_tab(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
model->tab_idx = archive->browser.tab_id;
|
||||
model->idx = 0;
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
archive->browser.depth = 0;
|
||||
archive_switch_dir(archive, tab_default_paths[archive->browser.tab_id]);
|
||||
}
|
||||
|
||||
static void archive_leave_dir(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
char* last_char_ptr = strrchr(string_get_cstr(archive->browser.path), '/');
|
||||
|
||||
if(last_char_ptr) {
|
||||
size_t pos = last_char_ptr - string_get_cstr(archive->browser.path);
|
||||
string_left(archive->browser.path, pos);
|
||||
}
|
||||
|
||||
archive->browser.depth = CLAMP(archive->browser.depth - 1, MAX_DEPTH, 0);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
model->idx = archive->browser.last_idx[archive->browser.depth];
|
||||
model->list_offset =
|
||||
model->idx -
|
||||
(files_array_size(model->files) > 3 ? 3 : files_array_size(model->files));
|
||||
return true;
|
||||
});
|
||||
|
||||
archive_switch_dir(archive, string_get_cstr(archive->browser.path));
|
||||
update_offset(archive);
|
||||
}
|
||||
|
||||
static void archive_enter_dir(ArchiveApp* archive, string_t name) {
|
||||
furi_assert(archive);
|
||||
furi_assert(name);
|
||||
|
||||
archive_update_last_idx(archive);
|
||||
archive->browser.depth = CLAMP(archive->browser.depth + 1, MAX_DEPTH, 0);
|
||||
|
||||
string_cat(archive->browser.path, "/");
|
||||
string_cat(archive->browser.path, archive->browser.name);
|
||||
|
||||
archive_switch_dir(archive, string_get_cstr(archive->browser.path));
|
||||
}
|
||||
|
||||
static bool filter_by_extension(ArchiveApp* archive, FileInfo* file_info, const char* name) {
|
||||
furi_assert(archive);
|
||||
furi_assert(file_info);
|
||||
furi_assert(name);
|
||||
|
||||
bool result = false;
|
||||
const char* filter_ext_ptr = get_tab_ext(archive->browser.tab_id);
|
||||
|
||||
if(strcmp(filter_ext_ptr, "*") == 0) {
|
||||
result = true;
|
||||
} else if(strstr(name, filter_ext_ptr) != NULL) {
|
||||
result = true;
|
||||
} else if(file_info->flags & FSF_DIRECTORY) {
|
||||
result = true;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
static void set_file_type(ArchiveFile_t* file, FileInfo* file_info) {
|
||||
furi_assert(file);
|
||||
furi_assert(file_info);
|
||||
|
||||
for(size_t i = 0; i < SIZEOF_ARRAY(known_ext); i++) {
|
||||
if(string_search_str(file->name, known_ext[i], 0) != STRING_FAILURE) {
|
||||
file->type = i;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if(file_info->flags & FSF_DIRECTORY) {
|
||||
file->type = ArchiveFileTypeFolder;
|
||||
} else {
|
||||
file->type = ArchiveFileTypeUnknown;
|
||||
}
|
||||
}
|
||||
|
||||
static void archive_file_append(ArchiveApp* archive, const char* path, string_t string) {
|
||||
furi_assert(archive);
|
||||
furi_assert(path);
|
||||
furi_assert(string);
|
||||
|
||||
FileWorker* file_worker = file_worker_alloc(false);
|
||||
|
||||
if(!file_worker_open(file_worker, path, FSAM_WRITE, FSOM_OPEN_APPEND)) {
|
||||
FURI_LOG_E("Archive", "Append open error");
|
||||
}
|
||||
|
||||
if(!file_worker_write(file_worker, string_get_cstr(string), string_size(string))) {
|
||||
FURI_LOG_E("Archive", "Append write error");
|
||||
}
|
||||
|
||||
file_worker_close(file_worker);
|
||||
file_worker_free(file_worker);
|
||||
}
|
||||
|
||||
static void archive_view_add_item(ArchiveApp* archive, FileInfo* file_info, const char* name) {
|
||||
furi_assert(archive);
|
||||
furi_assert(file_info);
|
||||
furi_assert(name);
|
||||
|
||||
ArchiveFile_t item;
|
||||
|
||||
if(filter_by_extension(archive, file_info, name)) {
|
||||
ArchiveFile_t_init(&item);
|
||||
string_init_set_str(item.name, name);
|
||||
set_file_type(&item, file_info);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
files_array_push_back(model->files, item);
|
||||
return true;
|
||||
});
|
||||
|
||||
ArchiveFile_t_clear(&item);
|
||||
}
|
||||
}
|
||||
|
||||
static bool archive_is_favorite(ArchiveApp* archive, ArchiveFile_t* selected) {
|
||||
furi_assert(selected);
|
||||
string_t path;
|
||||
string_t buffer;
|
||||
string_init(buffer);
|
||||
bool found = false;
|
||||
|
||||
string_init_printf(
|
||||
path, "%s/%s", string_get_cstr(archive->browser.path), string_get_cstr(selected->name));
|
||||
|
||||
bool load_result =
|
||||
file_worker_open(archive->file_worker, ARCHIVE_FAV_PATH, FSAM_READ, FSOM_OPEN_ALWAYS);
|
||||
|
||||
if(load_result) {
|
||||
while(1) {
|
||||
if(!file_worker_read_until(archive->file_worker, buffer, '\n')) {
|
||||
break;
|
||||
}
|
||||
if(!string_size(buffer)) {
|
||||
break;
|
||||
}
|
||||
if(!string_search(buffer, path)) {
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
string_clear(buffer);
|
||||
string_clear(path);
|
||||
file_worker_close(archive->file_worker);
|
||||
|
||||
return found;
|
||||
}
|
||||
|
||||
static bool archive_favorites_read(ArchiveApp* archive) {
|
||||
string_t buffer;
|
||||
FileInfo file_info;
|
||||
string_init(buffer);
|
||||
|
||||
bool load_result =
|
||||
file_worker_open(archive->file_worker, ARCHIVE_FAV_PATH, FSAM_READ, FSOM_OPEN_EXISTING);
|
||||
|
||||
if(load_result) {
|
||||
while(1) {
|
||||
if(!file_worker_read_until(archive->file_worker, buffer, '\n')) {
|
||||
break;
|
||||
}
|
||||
if(!string_size(buffer)) {
|
||||
break;
|
||||
}
|
||||
|
||||
archive_view_add_item(archive, &file_info, string_get_cstr(buffer));
|
||||
string_clean(buffer);
|
||||
}
|
||||
}
|
||||
string_clear(buffer);
|
||||
file_worker_close(archive->file_worker);
|
||||
|
||||
return load_result;
|
||||
}
|
||||
|
||||
static bool
|
||||
archive_favorites_rename(ArchiveApp* archive, ArchiveFile_t* selected, const char* dst) {
|
||||
furi_assert(selected);
|
||||
string_t path;
|
||||
string_t buffer;
|
||||
string_t temp;
|
||||
|
||||
string_init(buffer);
|
||||
string_init(temp);
|
||||
|
||||
string_init_printf(
|
||||
path, "%s/%s", string_get_cstr(archive->browser.path), string_get_cstr(selected->name));
|
||||
bool load_result =
|
||||
file_worker_open(archive->file_worker, ARCHIVE_FAV_PATH, FSAM_READ, FSOM_OPEN_EXISTING);
|
||||
|
||||
if(load_result) {
|
||||
while(1) {
|
||||
if(!file_worker_read_until(archive->file_worker, buffer, '\n')) {
|
||||
break;
|
||||
}
|
||||
if(!string_size(buffer)) {
|
||||
break;
|
||||
}
|
||||
|
||||
string_printf(
|
||||
temp, "%s\r\n", string_search(buffer, path) ? string_get_cstr(buffer) : dst);
|
||||
archive_file_append(archive, ARCHIVE_FAV_TEMP_PATH, temp);
|
||||
string_clean(temp);
|
||||
}
|
||||
}
|
||||
|
||||
string_clear(temp);
|
||||
string_clear(buffer);
|
||||
string_clear(path);
|
||||
|
||||
file_worker_close(archive->file_worker);
|
||||
file_worker_remove(archive->file_worker, ARCHIVE_FAV_PATH);
|
||||
file_worker_rename(archive->file_worker, ARCHIVE_FAV_TEMP_PATH, ARCHIVE_FAV_PATH);
|
||||
|
||||
return load_result;
|
||||
}
|
||||
|
||||
static bool archive_favorites_delete(ArchiveApp* archive, ArchiveFile_t* selected) {
|
||||
furi_assert(selected);
|
||||
string_t path;
|
||||
string_t buffer;
|
||||
string_init(buffer);
|
||||
|
||||
string_init_printf(
|
||||
path, "%s/%s", string_get_cstr(archive->browser.path), string_get_cstr(selected->name));
|
||||
|
||||
bool load_result =
|
||||
file_worker_open(archive->file_worker, ARCHIVE_FAV_PATH, FSAM_READ, FSOM_OPEN_EXISTING);
|
||||
if(load_result) {
|
||||
while(1) {
|
||||
if(!file_worker_read_until(archive->file_worker, buffer, '\n')) {
|
||||
break;
|
||||
}
|
||||
if(!string_size(buffer)) {
|
||||
break;
|
||||
}
|
||||
|
||||
if(string_search(buffer, path)) {
|
||||
string_t temp;
|
||||
string_init_printf(temp, "%s\r\n", string_get_cstr(buffer));
|
||||
archive_file_append(archive, ARCHIVE_FAV_TEMP_PATH, temp);
|
||||
string_clear(temp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
string_clear(buffer);
|
||||
string_clear(path);
|
||||
|
||||
file_worker_close(archive->file_worker);
|
||||
file_worker_remove(archive->file_worker, ARCHIVE_FAV_PATH);
|
||||
file_worker_rename(archive->file_worker, ARCHIVE_FAV_TEMP_PATH, ARCHIVE_FAV_PATH);
|
||||
|
||||
return load_result;
|
||||
}
|
||||
|
||||
static bool archive_read_dir(ArchiveApp* archive) {
|
||||
FileInfo file_info;
|
||||
File* directory = storage_file_alloc(archive->api);
|
||||
char name[MAX_NAME_LEN];
|
||||
|
||||
if(!storage_dir_open(directory, string_get_cstr(archive->browser.path))) {
|
||||
storage_dir_close(directory);
|
||||
storage_file_free(directory);
|
||||
return false;
|
||||
}
|
||||
while(1) {
|
||||
if(!storage_dir_read(directory, &file_info, name, MAX_NAME_LEN)) {
|
||||
break;
|
||||
}
|
||||
|
||||
uint16_t files_cnt;
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
files_cnt = files_array_size(model->files);
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
if(files_cnt > MAX_FILES) {
|
||||
break;
|
||||
} else if(storage_file_get_error(directory) == FSE_OK) {
|
||||
archive_view_add_item(archive, &file_info, name);
|
||||
} else {
|
||||
storage_dir_close(directory);
|
||||
storage_file_free(directory);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
storage_dir_close(directory);
|
||||
storage_file_free(directory);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool archive_get_filenames(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
files_array_clean(model->files);
|
||||
return true;
|
||||
});
|
||||
|
||||
if(archive->browser.tab_id != ArchiveTabFavorites) {
|
||||
archive_read_dir(archive);
|
||||
} else {
|
||||
archive_favorites_read(archive);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
static void archive_exit_callback(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
AppEvent event;
|
||||
event.type = EventTypeExit;
|
||||
furi_check(osMessageQueuePut(archive->event_queue, &event, 0, osWaitForever) == osOK);
|
||||
}
|
||||
|
||||
static uint32_t archive_previous_callback(void* context) {
|
||||
return ArchiveViewMain;
|
||||
}
|
||||
|
||||
/* file menu */
|
||||
static void archive_add_to_favorites(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
string_t buffer_src;
|
||||
|
||||
string_init_printf(
|
||||
buffer_src,
|
||||
"%s/%s\r\n",
|
||||
string_get_cstr(archive->browser.path),
|
||||
string_get_cstr(archive->browser.name));
|
||||
|
||||
archive_file_append(archive, ARCHIVE_FAV_PATH, buffer_src);
|
||||
|
||||
string_clear(buffer_src);
|
||||
}
|
||||
|
||||
static void archive_text_input_callback(void* context) {
|
||||
bool archive_custom_event_callback(void* context, uint32_t event) {
|
||||
furi_assert(context);
|
||||
|
||||
ArchiveApp* archive = (ArchiveApp*)context;
|
||||
|
||||
string_t buffer_src;
|
||||
string_t buffer_dst;
|
||||
|
||||
string_init_printf(
|
||||
buffer_src,
|
||||
"%s/%s",
|
||||
string_get_cstr(archive->browser.path),
|
||||
string_get_cstr(archive->browser.name));
|
||||
string_init_printf(
|
||||
buffer_dst,
|
||||
"%s/%s",
|
||||
string_get_cstr(archive->browser.path),
|
||||
archive->browser.text_input_buffer);
|
||||
|
||||
string_set(archive->browser.name, archive->browser.text_input_buffer);
|
||||
// append extension
|
||||
|
||||
ArchiveFile_t* file;
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
file = files_array_get(
|
||||
model->files, CLAMP(model->idx, files_array_size(model->files) - 1, 0));
|
||||
file->fav = archive_is_favorite(archive, file);
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
string_cat(buffer_dst, known_ext[file->type]);
|
||||
storage_common_rename(archive->api, string_get_cstr(buffer_src), string_get_cstr(buffer_dst));
|
||||
|
||||
if(file->fav) {
|
||||
archive_favorites_rename(archive, file, string_get_cstr(buffer_dst));
|
||||
}
|
||||
|
||||
view_dispatcher_switch_to_view(archive->view_dispatcher, ArchiveViewMain);
|
||||
archive_get_filenames(archive);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
model->idx = 0;
|
||||
while(model->idx < files_array_size(model->files)) {
|
||||
ArchiveFile_t* current = files_array_get(model->files, model->idx);
|
||||
if(!string_search(current->name, archive->browser.text_input_buffer)) {
|
||||
break;
|
||||
}
|
||||
++model->idx;
|
||||
}
|
||||
return true;
|
||||
});
|
||||
|
||||
update_offset(archive);
|
||||
|
||||
string_clear(buffer_src);
|
||||
string_clear(buffer_dst);
|
||||
return scene_manager_handle_custom_event(archive->scene_manager, event);
|
||||
}
|
||||
|
||||
static void archive_enter_text_input(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
*archive->browser.text_input_buffer = '\0';
|
||||
|
||||
strlcpy(
|
||||
archive->browser.text_input_buffer, string_get_cstr(archive->browser.name), MAX_NAME_LEN);
|
||||
|
||||
archive_trim_file_ext(archive->browser.text_input_buffer);
|
||||
|
||||
text_input_set_header_text(archive->text_input, "Rename:");
|
||||
|
||||
text_input_set_result_callback(
|
||||
archive->text_input,
|
||||
archive_text_input_callback,
|
||||
archive,
|
||||
archive->browser.text_input_buffer,
|
||||
MAX_NAME_LEN,
|
||||
false);
|
||||
|
||||
view_dispatcher_switch_to_view(archive->view_dispatcher, ArchiveViewTextInput);
|
||||
}
|
||||
|
||||
static void archive_show_file_menu(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
archive->browser.menu = true;
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
ArchiveFile_t* selected;
|
||||
selected = files_array_get(model->files, model->idx);
|
||||
model->menu = true;
|
||||
model->menu_idx = 0;
|
||||
selected->fav = is_known_app(selected->type) ? archive_is_favorite(archive, selected) :
|
||||
false;
|
||||
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
static void archive_close_file_menu(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
archive->browser.menu = false;
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
model->menu = false;
|
||||
model->menu_idx = 0;
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
static void archive_open_app(ArchiveApp* archive, const char* app_name, const char* args) {
|
||||
furi_assert(archive);
|
||||
furi_assert(app_name);
|
||||
|
||||
loader_start(archive->loader, app_name, args);
|
||||
}
|
||||
|
||||
static void archive_delete_file(ArchiveApp* archive, ArchiveFile_t* file) {
|
||||
furi_assert(archive);
|
||||
furi_assert(file);
|
||||
|
||||
string_t path;
|
||||
string_init(path);
|
||||
|
||||
string_printf(
|
||||
path, "%s/%s", string_get_cstr(archive->browser.path), string_get_cstr(file->name));
|
||||
|
||||
if(archive_is_favorite(archive, file)) { // remove from favorites
|
||||
archive_favorites_delete(archive, file);
|
||||
}
|
||||
|
||||
file_worker_remove(archive->file_worker, string_get_cstr(path));
|
||||
|
||||
string_clear(path);
|
||||
archive_get_filenames(archive);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
model->idx = CLAMP(model->idx, files_array_size(model->files) - 1, 0);
|
||||
return true;
|
||||
});
|
||||
|
||||
update_offset(archive);
|
||||
}
|
||||
|
||||
static void
|
||||
archive_run_in_app(ArchiveApp* archive, ArchiveFile_t* selected, bool full_path_provided) {
|
||||
string_t full_path;
|
||||
|
||||
if(!full_path_provided) {
|
||||
string_init_printf(
|
||||
full_path,
|
||||
"%s/%s",
|
||||
string_get_cstr(archive->browser.path),
|
||||
string_get_cstr(selected->name));
|
||||
} else {
|
||||
string_init_set(full_path, selected->name);
|
||||
}
|
||||
|
||||
archive_open_app(archive, flipper_app_name[selected->type], string_get_cstr(full_path));
|
||||
string_clear(full_path);
|
||||
}
|
||||
|
||||
static void archive_file_menu_callback(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
ArchiveFile_t* selected;
|
||||
uint8_t idx = 0;
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
selected = files_array_get(model->files, model->idx);
|
||||
idx = model->menu_idx;
|
||||
return true;
|
||||
});
|
||||
|
||||
switch(idx) {
|
||||
case 0:
|
||||
if(is_known_app(selected->type)) {
|
||||
archive_run_in_app(archive, selected, false);
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
if(is_known_app(selected->type)) {
|
||||
if(!archive_is_favorite(archive, selected)) {
|
||||
string_set(archive->browser.name, selected->name);
|
||||
archive_add_to_favorites(archive);
|
||||
} else {
|
||||
// delete from favorites
|
||||
archive_favorites_delete(archive, selected);
|
||||
}
|
||||
archive_close_file_menu(archive);
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
// open rename view
|
||||
if(is_known_app(selected->type)) {
|
||||
archive_enter_text_input(archive);
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
// confirmation?
|
||||
archive_delete_file(archive, selected);
|
||||
archive_close_file_menu(archive);
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
archive_close_file_menu(archive);
|
||||
break;
|
||||
}
|
||||
selected = NULL;
|
||||
}
|
||||
|
||||
static void menu_input_handler(ArchiveApp* archive, InputEvent* event) {
|
||||
furi_assert(archive);
|
||||
furi_assert(archive);
|
||||
|
||||
if(event->type == InputTypeShort) {
|
||||
if(event->key == InputKeyUp || event->key == InputKeyDown) {
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
if(event->key == InputKeyUp) {
|
||||
model->menu_idx = ((model->menu_idx - 1) + MENU_ITEMS) % MENU_ITEMS;
|
||||
} else if(event->key == InputKeyDown) {
|
||||
model->menu_idx = (model->menu_idx + 1) % MENU_ITEMS;
|
||||
}
|
||||
return true;
|
||||
});
|
||||
}
|
||||
|
||||
if(event->key == InputKeyOk) {
|
||||
archive_file_menu_callback(archive);
|
||||
} else if(event->key == InputKeyBack) {
|
||||
archive_close_file_menu(archive);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* main controls */
|
||||
|
||||
static bool archive_view_input(InputEvent* event, void* context) {
|
||||
furi_assert(event);
|
||||
bool archive_back_event_callback(void* context) {
|
||||
furi_assert(context);
|
||||
|
||||
ArchiveApp* archive = context;
|
||||
bool in_menu = archive->browser.menu;
|
||||
|
||||
if(in_menu) {
|
||||
menu_input_handler(archive, event);
|
||||
return true;
|
||||
}
|
||||
|
||||
if(event->type == InputTypeShort) {
|
||||
if(event->key == InputKeyLeft) {
|
||||
if(archive->browser.tab_id > 0) {
|
||||
archive->browser.tab_id = CLAMP(archive->browser.tab_id - 1, ArchiveTabTotal, 0);
|
||||
archive_switch_tab(archive);
|
||||
return true;
|
||||
}
|
||||
} else if(event->key == InputKeyRight) {
|
||||
if(archive->browser.tab_id < ArchiveTabTotal - 1) {
|
||||
archive->browser.tab_id =
|
||||
CLAMP(archive->browser.tab_id + 1, ArchiveTabTotal - 1, 0);
|
||||
archive_switch_tab(archive);
|
||||
return true;
|
||||
}
|
||||
|
||||
} else if(event->key == InputKeyBack) {
|
||||
if(archive->browser.depth == 0) {
|
||||
archive_exit_callback(archive);
|
||||
} else {
|
||||
archive_leave_dir(archive);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if(event->key == InputKeyUp || event->key == InputKeyDown) {
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
uint16_t num_elements = (uint16_t)files_array_size(model->files);
|
||||
if((event->type == InputTypeShort || event->type == InputTypeRepeat)) {
|
||||
if(event->key == InputKeyUp) {
|
||||
model->idx = ((model->idx - 1) + num_elements) % num_elements;
|
||||
} else if(event->key == InputKeyDown) {
|
||||
model->idx = (model->idx + 1) % num_elements;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
});
|
||||
update_offset(archive);
|
||||
}
|
||||
|
||||
if(event->key == InputKeyOk) {
|
||||
ArchiveFile_t* selected;
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
selected = files_array_size(model->files) > 0 ?
|
||||
files_array_get(model->files, model->idx) :
|
||||
NULL;
|
||||
return true;
|
||||
});
|
||||
|
||||
if(selected) {
|
||||
string_set(archive->browser.name, selected->name);
|
||||
|
||||
if(selected->type == ArchiveFileTypeFolder) {
|
||||
if(event->type == InputTypeShort) {
|
||||
archive_enter_dir(archive, archive->browser.name);
|
||||
} else if(event->type == InputTypeLong) {
|
||||
archive_show_file_menu(archive);
|
||||
}
|
||||
} else {
|
||||
if(event->type == InputTypeShort) {
|
||||
if(archive->browser.tab_id == ArchiveTabFavorites) {
|
||||
if(is_known_app(selected->type)) {
|
||||
archive_run_in_app(archive, selected, true);
|
||||
}
|
||||
} else {
|
||||
archive_show_file_menu(archive);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
update_offset(archive);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void archive_free(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
file_worker_free(archive->file_worker);
|
||||
|
||||
view_dispatcher_remove_view(archive->view_dispatcher, ArchiveViewMain);
|
||||
view_dispatcher_remove_view(archive->view_dispatcher, ArchiveViewTextInput);
|
||||
view_dispatcher_free(archive->view_dispatcher);
|
||||
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
files_array_clear(model->files);
|
||||
return false;
|
||||
});
|
||||
|
||||
view_free(archive->view_archive_main);
|
||||
|
||||
string_clear(archive->browser.name);
|
||||
string_clear(archive->browser.path);
|
||||
|
||||
text_input_free(archive->text_input);
|
||||
|
||||
furi_record_close("storage");
|
||||
archive->api = NULL;
|
||||
furi_record_close("gui");
|
||||
archive->gui = NULL;
|
||||
furi_record_close("loader");
|
||||
archive->loader = NULL;
|
||||
furi_thread_free(archive->app_thread);
|
||||
furi_check(osMessageQueueDelete(archive->event_queue) == osOK);
|
||||
|
||||
free(archive);
|
||||
ArchiveApp* archive = (ArchiveApp*)context;
|
||||
return scene_manager_handle_back_event(archive->scene_manager);
|
||||
}
|
||||
|
||||
ArchiveApp* archive_alloc() {
|
||||
ArchiveApp* archive = furi_alloc(sizeof(ArchiveApp));
|
||||
|
||||
archive->event_queue = osMessageQueueNew(8, sizeof(AppEvent), NULL);
|
||||
archive->app_thread = furi_thread_alloc();
|
||||
archive->gui = furi_record_open("gui");
|
||||
archive->loader = furi_record_open("loader");
|
||||
archive->api = furi_record_open("storage");
|
||||
archive->text_input = text_input_alloc();
|
||||
archive->view_archive_main = view_alloc();
|
||||
archive->file_worker = file_worker_alloc(true);
|
||||
|
||||
furi_check(archive->event_queue);
|
||||
|
||||
view_allocate_model(
|
||||
archive->view_archive_main, ViewModelTypeLocking, sizeof(ArchiveViewModel));
|
||||
with_view_model(
|
||||
archive->view_archive_main, (ArchiveViewModel * model) {
|
||||
files_array_init(model->files);
|
||||
return false;
|
||||
});
|
||||
|
||||
view_set_context(archive->view_archive_main, archive);
|
||||
view_set_draw_callback(archive->view_archive_main, archive_view_render);
|
||||
view_set_input_callback(archive->view_archive_main, archive_view_input);
|
||||
view_set_previous_callback(
|
||||
text_input_get_view(archive->text_input), archive_previous_callback);
|
||||
|
||||
// View Dispatcher
|
||||
archive->view_dispatcher = view_dispatcher_alloc();
|
||||
view_dispatcher_add_view(
|
||||
archive->view_dispatcher, ArchiveViewMain, archive->view_archive_main);
|
||||
view_dispatcher_add_view(
|
||||
archive->view_dispatcher, ArchiveViewTextInput, text_input_get_view(archive->text_input));
|
||||
archive->scene_manager = scene_manager_alloc(&archive_scene_handlers, archive);
|
||||
|
||||
view_dispatcher_enable_queue(archive->view_dispatcher);
|
||||
view_dispatcher_attach_to_gui(
|
||||
archive->view_dispatcher, archive->gui, ViewDispatcherTypeFullscreen);
|
||||
|
||||
view_dispatcher_switch_to_view(archive->view_dispatcher, ArchiveTabFavorites);
|
||||
view_dispatcher_set_event_callback_context(archive->view_dispatcher, archive);
|
||||
view_dispatcher_set_custom_event_callback(
|
||||
archive->view_dispatcher, archive_custom_event_callback);
|
||||
view_dispatcher_set_navigation_event_callback(
|
||||
archive->view_dispatcher, archive_back_event_callback);
|
||||
|
||||
archive->main_view = main_view_alloc();
|
||||
|
||||
view_dispatcher_add_view(
|
||||
archive->view_dispatcher, ArchiveViewBrowser, archive_main_get_view(archive->main_view));
|
||||
|
||||
view_dispatcher_add_view(
|
||||
archive->view_dispatcher, ArchiveViewTextInput, text_input_get_view(archive->text_input));
|
||||
|
||||
return archive;
|
||||
}
|
||||
|
||||
void archive_free(ArchiveApp* archive) {
|
||||
furi_assert(archive);
|
||||
|
||||
view_dispatcher_remove_view(archive->view_dispatcher, ArchiveViewBrowser);
|
||||
view_dispatcher_remove_view(archive->view_dispatcher, ArchiveViewTextInput);
|
||||
view_dispatcher_free(archive->view_dispatcher);
|
||||
scene_manager_free(archive->scene_manager);
|
||||
main_view_free(archive->main_view);
|
||||
|
||||
text_input_free(archive->text_input);
|
||||
|
||||
furi_record_close("gui");
|
||||
archive->gui = NULL;
|
||||
|
||||
free(archive);
|
||||
}
|
||||
|
||||
int32_t archive_app(void* p) {
|
||||
ArchiveApp* archive = archive_alloc();
|
||||
|
||||
// default tab
|
||||
archive_switch_tab(archive);
|
||||
|
||||
AppEvent event;
|
||||
while(1) {
|
||||
furi_check(osMessageQueueGet(archive->event_queue, &event, NULL, osWaitForever) == osOK);
|
||||
if(event.type == EventTypeExit) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
scene_manager_next_scene(archive->scene_manager, ArchiveAppSceneBrowser);
|
||||
view_dispatcher_run(archive->view_dispatcher);
|
||||
archive_free(archive);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user