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-04-14 11:28:59 +00:00
|
|
|
#include <m-string.h>
|
|
|
|
#include <storage/storage.h>
|
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,
|
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-06-09 07:09:52 +00:00
|
|
|
string_t path;
|
2021-05-18 18:54:56 +00:00
|
|
|
ArchiveFileTypeEnum type;
|
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) {
|
|
|
|
obj->type = ArchiveFileTypeUnknown;
|
2022-02-10 13:01:49 +00:00
|
|
|
obj->is_app = false;
|
|
|
|
obj->fav = false;
|
2022-06-09 07:09:52 +00:00
|
|
|
string_init(obj->path);
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_init_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
|
|
|
obj->type = src->type;
|
2022-02-10 13:01:49 +00:00
|
|
|
obj->is_app = src->is_app;
|
|
|
|
obj->fav = src->fav;
|
2022-06-09 07:09:52 +00:00
|
|
|
string_init_set(obj->path, src->path);
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
|
|
|
obj->type = src->type;
|
2022-02-10 13:01:49 +00:00
|
|
|
obj->is_app = src->is_app;
|
|
|
|
obj->fav = src->fav;
|
2022-06-09 07:09:52 +00:00
|
|
|
string_set(obj->path, src->path);
|
2021-05-18 18:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_clear(ArchiveFile_t* obj) {
|
2022-06-09 07:09:52 +00:00
|
|
|
string_clear(obj->path);
|
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);
|
2021-09-21 10:56:33 +00:00
|
|
|
void archive_file_append(const char* path, const char* format, ...);
|
2022-04-06 17:44:06 +00:00
|
|
|
void archive_delete_file(void* context, const char* format, ...);
|