855f2584ab
* Storage: correct replacement for "/any" path in path holder * Unit tests: storage, blocking file open test * File stream: error getter * Storage: common copy and common remove now executes in external thread * Filesystems: got rid of unused functions * Storage: untangle dependencies, ram-frendly filesystem api * iButton: context assertions * Storage: pubsub messages * Storage: wait for the file to close if it was open * Storage: fix folder copying * Storage: unit test * Storage: pubsub documentation * Fix merge error * Fix memleak in storage test * Storage: remove unused define Co-authored-by: あく <alleteam@gmail.com>
68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
#pragma once
|
|
#include "file_worker.h"
|
|
#include <m-array.h>
|
|
|
|
#define MAX_FILES 100 //temp
|
|
|
|
typedef enum {
|
|
ArchiveFileTypeIButton,
|
|
ArchiveFileTypeNFC,
|
|
ArchiveFileTypeSubGhz,
|
|
ArchiveFileTypeLFRFID,
|
|
ArchiveFileTypeInfrared,
|
|
ArchiveFileTypeBadUsb,
|
|
ArchiveFileTypeU2f,
|
|
ArchiveFileTypeFolder,
|
|
ArchiveFileTypeUnknown,
|
|
ArchiveFileTypesTotal,
|
|
} ArchiveFileTypeEnum;
|
|
|
|
typedef struct {
|
|
string_t name;
|
|
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;
|
|
string_init(obj->name);
|
|
}
|
|
|
|
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;
|
|
string_init_set(obj->name, src->name);
|
|
}
|
|
|
|
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;
|
|
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))))
|
|
|
|
bool filter_by_extension(FileInfo* file_info, const char* tab_ext, const char* name);
|
|
void set_file_type(ArchiveFile_t* file, FileInfo* file_info, const char* path, bool is_app);
|
|
void archive_trim_file_path(char* name, bool ext);
|
|
void archive_get_file_extension(char* name, char* ext);
|
|
bool archive_get_filenames(void* context, const char* path);
|
|
bool archive_dir_not_empty(void* context, const char* path);
|
|
bool archive_read_dir(void* context, const char* path);
|
|
void archive_file_append(const char* path, const char* format, ...);
|
|
void archive_delete_file(void* context, const char* format, ...); |