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>
65 lines
1.7 KiB
C
65 lines
1.7 KiB
C
#pragma once
|
|
|
|
#include <m-array.h>
|
|
#include <furi.h>
|
|
#include <storage/storage.h>
|
|
|
|
typedef enum {
|
|
ArchiveFileTypeIButton,
|
|
ArchiveFileTypeNFC,
|
|
ArchiveFileTypeSubGhz,
|
|
ArchiveFileTypeLFRFID,
|
|
ArchiveFileTypeInfrared,
|
|
ArchiveFileTypeBadUsb,
|
|
ArchiveFileTypeU2f,
|
|
ArchiveFileTypeUpdateManifest,
|
|
ArchiveFileTypeFolder,
|
|
ArchiveFileTypeUnknown,
|
|
ArchiveFileTypeLoading,
|
|
} ArchiveFileTypeEnum;
|
|
|
|
typedef struct {
|
|
FuriString* path;
|
|
ArchiveFileTypeEnum type;
|
|
bool fav;
|
|
bool is_app;
|
|
} ArchiveFile_t;
|
|
|
|
static void ArchiveFile_t_init(ArchiveFile_t* obj) {
|
|
obj->type = ArchiveFileTypeUnknown;
|
|
obj->is_app = false;
|
|
obj->fav = false;
|
|
obj->path = furi_string_alloc();
|
|
}
|
|
|
|
static void ArchiveFile_t_init_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
|
obj->type = src->type;
|
|
obj->is_app = src->is_app;
|
|
obj->fav = src->fav;
|
|
obj->path = furi_string_alloc_set(src->path);
|
|
}
|
|
|
|
static void ArchiveFile_t_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
|
obj->type = src->type;
|
|
obj->is_app = src->is_app;
|
|
obj->fav = src->fav;
|
|
furi_string_set(obj->path, src->path);
|
|
}
|
|
|
|
static void ArchiveFile_t_clear(ArchiveFile_t* obj) {
|
|
furi_string_free(obj->path);
|
|
}
|
|
|
|
ARRAY_DEF(
|
|
files_array,
|
|
ArchiveFile_t,
|
|
(INIT(API_2(ArchiveFile_t_init)),
|
|
SET(API_6(ArchiveFile_t_set)),
|
|
INIT_SET(API_6(ArchiveFile_t_init_set)),
|
|
CLEAR(API_2(ArchiveFile_t_clear))))
|
|
|
|
void archive_set_file_type(ArchiveFile_t* file, const char* path, bool is_folder, bool is_app);
|
|
bool archive_get_items(void* context, const char* path);
|
|
void archive_file_append(const char* path, const char* format, ...);
|
|
void archive_delete_file(void* context, const char* format, ...);
|