2021-05-18 18:54:56 +00:00
|
|
|
#pragma once
|
2021-09-10 00:57:43 +00:00
|
|
|
#include "file-worker.h"
|
2021-05-18 18:54:56 +00:00
|
|
|
|
2021-09-10 00:57:43 +00:00
|
|
|
#define MAX_FILES 100 //temp
|
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,
|
|
|
|
ArchiveFileTypeIrda,
|
|
|
|
ArchiveFileTypeFolder,
|
|
|
|
ArchiveFileTypeUnknown,
|
|
|
|
AppIdTotal,
|
|
|
|
} ArchiveFileTypeEnum;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
string_t name;
|
|
|
|
ArchiveFileTypeEnum type;
|
2021-06-25 16:57:42 +00:00
|
|
|
bool fav;
|
2021-05-18 18:54:56 +00:00
|
|
|
} ArchiveFile_t;
|
|
|
|
|
|
|
|
static void ArchiveFile_t_init(ArchiveFile_t* obj) {
|
|
|
|
obj->type = ArchiveFileTypeUnknown;
|
|
|
|
string_init(obj->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_init_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
|
|
|
obj->type = src->type;
|
|
|
|
string_init_set(obj->name, src->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_set(ArchiveFile_t* obj, const ArchiveFile_t* src) {
|
|
|
|
obj->type = src->type;
|
|
|
|
string_set(obj->name, src->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ArchiveFile_t_clear(ArchiveFile_t* obj) {
|
|
|
|
string_clear(obj->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
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))))
|
|
|
|
|
2021-09-10 00:57:43 +00:00
|
|
|
bool filter_by_extension(FileInfo* file_info, const char* tab_ext, const char* name);
|
|
|
|
void set_file_type(ArchiveFile_t* file, FileInfo* file_info);
|
2021-09-21 10:56:33 +00:00
|
|
|
void archive_trim_file_path(char* name, bool ext);
|
|
|
|
bool archive_get_filenames(void* context, const char* path);
|
|
|
|
bool archive_dir_empty(void* context, const char* path);
|
2021-09-10 00:57:43 +00:00
|
|
|
bool archive_read_dir(void* context, const char* path);
|
2021-09-21 10:56:33 +00:00
|
|
|
void archive_file_append(const char* path, const char* format, ...);
|
2021-10-12 13:09:34 +00:00
|
|
|
void archive_delete_file(void* context, const char* format, ...);
|