2021-05-18 18:54:56 +00:00
|
|
|
#pragma once
|
2022-04-14 11:28:59 +00:00
|
|
|
|
2022-04-01 12:21:31 +00:00
|
|
|
#include <m-array.h>
|
2022-10-05 15:15:23 +00:00
|
|
|
#include <furi.h>
|
2022-04-14 11:28:59 +00:00
|
|
|
#include <storage/storage.h>
|
2021-05-18 18:54:56 +00:00
|
|
|
|
2022-10-06 15:37:53 +00:00
|
|
|
#define FAP_MANIFEST_MAX_ICON_SIZE 32
|
|
|
|
|
2021-05-18 18:54:56 +00:00
|
|
|
typedef enum {
|
|
|
|
ArchiveFileTypeIButton,
|
|
|
|
ArchiveFileTypeNFC,
|
Skorp subghz signal archive (#667)
* SubGhz: Add millis() furi, add subghz history struct
* SubGhz: Fix subghz history
* Gubghz: Fix code repeat history, add clean history
* SubGhz: reading and adding keys to history
* Gui: Renaming Sub 1-Ghz -> SubGhz
* Archive: Renaming Sub 1-Ghz -> SubGhz
* SubGhz: Add menu history, modified button for sending a signal, changed output of data about accepted protocol
* Archive: Fix name subghz
* SubGhz: Menu navigation
* Assets: Add assets/SubGHz/icon.png
* Assets: add new icons for subghz
* SubGhz: Fix name Add manually scene
* SubGhz: Fix load icon Read scene. rename encoder struct, rename protocol function load from file, add load raw data protocol, add info pleasant signals all protocol
* SubGhz: fix memory leak
* SubGhz: change of receiving frequency for read scene
* SubGhz: Add save/load frequency and preset, add automatic configuration of transmit/receive to the desired frequency and modulation, add button "save" config scene
* SubGhz: Fix frequency and preset, fix frequency add manualli scene, fix re-executing the parser
* Furi-hal-subghz: add 2-FSK config, fix ook config 650KHz BW Tx filter
* Fix formatting and release build
* SubGhz: Delete read scene
* SubGhz: Fix frequency add manualli scene, refactoring code
* SubGhz: 2 profiles for OOK, fix broken build.
* SubGhz: Add passing static codes from read scene, add notification read scene, refactoring code
* SubGhz: fix assert on worker double stop.
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-08-28 13:51:48 +00:00
|
|
|
ArchiveFileTypeSubGhz,
|
2021-05-18 18:54:56 +00:00
|
|
|
ArchiveFileTypeLFRFID,
|
2022-02-25 15:22:58 +00:00
|
|
|
ArchiveFileTypeInfrared,
|
2022-02-10 13:01:49 +00:00
|
|
|
ArchiveFileTypeBadUsb,
|
|
|
|
ArchiveFileTypeU2f,
|
2022-04-13 20:50:25 +00:00
|
|
|
ArchiveFileTypeUpdateManifest,
|
2022-10-06 15:37:53 +00:00
|
|
|
ArchiveFileTypeApplication,
|
2021-05-18 18:54:56 +00:00
|
|
|
ArchiveFileTypeFolder,
|
|
|
|
ArchiveFileTypeUnknown,
|
2022-04-06 17:44:06 +00:00
|
|
|
ArchiveFileTypeLoading,
|
2021-05-18 18:54:56 +00:00
|
|
|
} ArchiveFileTypeEnum;
|
|
|
|
|
|
|
|
typedef struct {
|
2022-10-05 15:15:23 +00:00
|
|
|
FuriString* path;
|
2021-05-18 18:54:56 +00:00
|
|
|
ArchiveFileTypeEnum type;
|
2022-10-06 15:37:53 +00:00
|
|
|
uint8_t* custom_icon_data;
|
|
|
|
FuriString* custom_name;
|
2021-06-25 16:57:42 +00:00
|
|
|
bool fav;
|
2022-02-10 13:01:49 +00:00
|
|
|
bool is_app;
|
2021-05-18 18:54:56 +00:00
|
|
|
} ArchiveFile_t;
|
|
|
|
|
|
|
|
static void ArchiveFile_t_init(ArchiveFile_t* obj) {
|
2022-10-06 15:37:53 +00:00
|
|
|
obj->path = furi_string_alloc();
|
2021-05-18 18:54:56 +00:00
|
|
|
obj->type = ArchiveFileTypeUnknown;
|
2022-10-06 15:37:53 +00:00
|
|
|
obj->custom_icon_data = NULL;
|
|
|
|
obj->custom_name = furi_string_alloc();
|
2022-02-10 13:01:49 +00:00
|
|
|
obj->fav = false;
|
2022-10-06 15:37:53 +00:00
|
|
|
obj->is_app = false;
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_init_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
2022-10-06 15:37:53 +00:00
|
|
|
obj->path = furi_string_alloc_set(src->path);
|
2021-05-18 18:54:56 +00:00
|
|
|
obj->type = src->type;
|
2022-10-06 15:37:53 +00:00
|
|
|
if(src->custom_icon_data) {
|
|
|
|
obj->custom_icon_data = malloc(FAP_MANIFEST_MAX_ICON_SIZE);
|
|
|
|
memcpy(obj->custom_icon_data, src->custom_icon_data, FAP_MANIFEST_MAX_ICON_SIZE);
|
|
|
|
} else {
|
|
|
|
obj->custom_icon_data = NULL;
|
|
|
|
}
|
|
|
|
obj->custom_name = furi_string_alloc_set(src->custom_name);
|
2022-02-10 13:01:49 +00:00
|
|
|
obj->fav = src->fav;
|
2022-10-06 15:37:53 +00:00
|
|
|
obj->is_app = src->is_app;
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
2022-10-06 15:37:53 +00:00
|
|
|
furi_string_set(obj->path, src->path);
|
2021-05-18 18:54:56 +00:00
|
|
|
obj->type = src->type;
|
2022-10-06 15:37:53 +00:00
|
|
|
if(src->custom_icon_data) {
|
|
|
|
obj->custom_icon_data = malloc(FAP_MANIFEST_MAX_ICON_SIZE);
|
|
|
|
memcpy(obj->custom_icon_data, src->custom_icon_data, FAP_MANIFEST_MAX_ICON_SIZE);
|
|
|
|
} else {
|
|
|
|
obj->custom_icon_data = NULL;
|
|
|
|
}
|
|
|
|
furi_string_set(obj->custom_name, src->custom_name);
|
2022-02-10 13:01:49 +00:00
|
|
|
obj->fav = src->fav;
|
2022-10-06 15:37:53 +00:00
|
|
|
obj->is_app = src->is_app;
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_clear(ArchiveFile_t* obj) {
|
2022-10-05 15:15:23 +00:00
|
|
|
furi_string_free(obj->path);
|
2022-10-06 15:37:53 +00:00
|
|
|
if(obj->custom_icon_data) {
|
|
|
|
free(obj->custom_icon_data);
|
|
|
|
obj->custom_icon_data = NULL;
|
|
|
|
}
|
|
|
|
furi_string_free(obj->custom_name);
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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))))
|
|
|
|
|
2022-06-09 07:09:52 +00:00
|
|
|
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);
|
2022-10-07 13:35:15 +00:00
|
|
|
void archive_file_append(const char* path, const char* format, ...)
|
|
|
|
_ATTRIBUTE((__format__(__printf__, 2, 3)));
|
|
|
|
void archive_delete_file(void* context, const char* format, ...)
|
|
|
|
_ATTRIBUTE((__format__(__printf__, 2, 3)));
|