[FL-2274] Inventing streams and moving FFF to them (#981)
* Streams: string stream * String stream: updated insert/delete api * Streams: generic stream interface and string stream implementation * Streams: helpers for insert and delete_and_insert * FFF: now compatible with streams * MinUnit: introduced tests with arguments * FFF: stream access violation * Streams: copy data between streams * Streams: file stream * FFF: documentation * FFStream: documentation * FFF: alloc as file * MinUnit: support for nested tests * Streams: changed delete_and_insert, now it returns success flag. Added ability dump stream inner parameters and data to cout. * FFF: simplified file open function * Streams: unit tests * FFF: tests * Streams: declare cache_size constant as define, to allow variable modified arrays * FFF: lib moved to a separate folder * iButton: new FFF * RFID: new FFF * Animations: new FFF * IR: new FFF * NFC: new FFF * Flipper file format: delete lib * U2F: new FFF * Subghz: new FFF and streams * Streams: read line * Streams: split * FuriCore: implement memset with extra asserts * FuriCore: implement extra heap asserts without inventing memset * Scene manager: protected access to the scene id stack with a size check * NFC worker: dirty fix for issue where hal_nfc was busy on app start * Furi: update allocator to erase memory on allocation. Replace furi_alloc with malloc. * FuriCore: cleanup memmgr code. * Furi HAL: furi_hal_init is split into critical and non-critical parts. The critical part is currently clock and console. * Memmgr: added ability to track allocations and deallocations through console. * FFStream: some speedup * Streams, FF: minor fixes * Tests: restore * File stream: a slightly more thread-safe version of file_stream_delete_and_insert Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#include <input/input.h>
|
||||
#include <gui/elements.h>
|
||||
#include <notification/notification_messages.h>
|
||||
#include <lib/flipper_file/flipper_file.h>
|
||||
#include <flipper_format/flipper_format.h>
|
||||
#include "../notification/notification.h"
|
||||
#include "views/subghz_receiver.h"
|
||||
|
||||
@@ -198,7 +198,7 @@ bool subghz_key_load(SubGhz* subghz, const char* file_path) {
|
||||
furi_assert(file_path);
|
||||
|
||||
Storage* storage = furi_record_open("storage");
|
||||
FlipperFile* flipper_file = flipper_file_alloc(storage);
|
||||
FlipperFormat* flipper_format = flipper_format_file_alloc(storage);
|
||||
|
||||
// Load device data
|
||||
bool loaded = false;
|
||||
@@ -209,12 +209,12 @@ bool subghz_key_load(SubGhz* subghz, const char* file_path) {
|
||||
uint32_t version;
|
||||
|
||||
do {
|
||||
if(!flipper_file_open_existing(flipper_file, string_get_cstr(path))) {
|
||||
if(!flipper_format_file_open_existing(flipper_format, string_get_cstr(path))) {
|
||||
FURI_LOG_E(
|
||||
SUBGHZ_PARSER_TAG, "Unable to open file for read: %s", string_get_cstr(path));
|
||||
break;
|
||||
}
|
||||
if(!flipper_file_read_header(flipper_file, temp_str, &version)) {
|
||||
if(!flipper_format_read_header(flipper_format, temp_str, &version)) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Missing or incorrect header");
|
||||
break;
|
||||
}
|
||||
@@ -227,13 +227,13 @@ bool subghz_key_load(SubGhz* subghz, const char* file_path) {
|
||||
break;
|
||||
}
|
||||
|
||||
if(!flipper_file_read_uint32(
|
||||
flipper_file, "Frequency", (uint32_t*)&subghz->txrx->frequency, 1)) {
|
||||
if(!flipper_format_read_uint32(
|
||||
flipper_format, "Frequency", (uint32_t*)&subghz->txrx->frequency, 1)) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Missing Frequency");
|
||||
break;
|
||||
}
|
||||
|
||||
if(!flipper_file_read_string(flipper_file, "Preset", temp_str)) {
|
||||
if(!flipper_format_read_string(flipper_format, "Preset", temp_str)) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Missing Preset");
|
||||
break;
|
||||
}
|
||||
@@ -241,7 +241,7 @@ bool subghz_key_load(SubGhz* subghz, const char* file_path) {
|
||||
break;
|
||||
}
|
||||
|
||||
if(!flipper_file_read_string(flipper_file, "Protocol", temp_str)) {
|
||||
if(!flipper_format_read_string(flipper_format, "Protocol", temp_str)) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Missing Protocol");
|
||||
break;
|
||||
}
|
||||
@@ -253,7 +253,7 @@ bool subghz_key_load(SubGhz* subghz, const char* file_path) {
|
||||
break;
|
||||
}
|
||||
if(!subghz->txrx->protocol_result->to_load_protocol_from_file(
|
||||
flipper_file, subghz->txrx->protocol_result, string_get_cstr(path))) {
|
||||
flipper_format, subghz->txrx->protocol_result, string_get_cstr(path))) {
|
||||
break;
|
||||
}
|
||||
loaded = true;
|
||||
@@ -265,8 +265,7 @@ bool subghz_key_load(SubGhz* subghz, const char* file_path) {
|
||||
string_clear(temp_str);
|
||||
string_clear(path);
|
||||
|
||||
flipper_file_close(flipper_file);
|
||||
flipper_file_free(flipper_file);
|
||||
flipper_format_free(flipper_format);
|
||||
|
||||
furi_record_close("storage");
|
||||
|
||||
@@ -301,7 +300,7 @@ bool subghz_save_protocol_to_file(SubGhz* subghz, const char* dev_name) {
|
||||
furi_assert(subghz->txrx->protocol_result);
|
||||
|
||||
Storage* storage = furi_record_open("storage");
|
||||
FlipperFile* flipper_file = flipper_file_alloc(storage);
|
||||
FlipperFormat* flipper_format = flipper_format_file_alloc(storage);
|
||||
string_t dev_file_name;
|
||||
string_init(dev_file_name);
|
||||
string_t temp_str;
|
||||
@@ -328,18 +327,18 @@ bool subghz_save_protocol_to_file(SubGhz* subghz, const char* dev_name) {
|
||||
}
|
||||
|
||||
// Open file
|
||||
if(!flipper_file_open_always(flipper_file, string_get_cstr(dev_file_name))) {
|
||||
if(!flipper_format_file_open_always(flipper_format, string_get_cstr(dev_file_name))) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Unable to open file for write: %s", dev_file_name);
|
||||
break;
|
||||
}
|
||||
|
||||
if(!flipper_file_write_header_cstr(
|
||||
flipper_file, SUBGHZ_KEY_FILE_TYPE, SUBGHZ_KEY_FILE_VERSION)) {
|
||||
if(!flipper_format_write_header_cstr(
|
||||
flipper_format, SUBGHZ_KEY_FILE_TYPE, SUBGHZ_KEY_FILE_VERSION)) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Unable to add header");
|
||||
break;
|
||||
}
|
||||
|
||||
if(!flipper_file_write_uint32(flipper_file, "Frequency", &subghz->txrx->frequency, 1)) {
|
||||
if(!flipper_format_write_uint32(flipper_format, "Frequency", &subghz->txrx->frequency, 1)) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Unable to add Frequency");
|
||||
break;
|
||||
}
|
||||
@@ -347,13 +346,13 @@ bool subghz_save_protocol_to_file(SubGhz* subghz, const char* dev_name) {
|
||||
if(!subghz_get_preset_name(subghz, temp_str)) {
|
||||
break;
|
||||
}
|
||||
if(!flipper_file_write_string_cstr(flipper_file, "Preset", string_get_cstr(temp_str))) {
|
||||
if(!flipper_format_write_string_cstr(flipper_format, "Preset", string_get_cstr(temp_str))) {
|
||||
FURI_LOG_E(SUBGHZ_PARSER_TAG, "Unable to add Preset");
|
||||
break;
|
||||
}
|
||||
|
||||
if(!subghz->txrx->protocol_result->to_save_file(
|
||||
subghz->txrx->protocol_result, flipper_file)) {
|
||||
subghz->txrx->protocol_result, flipper_format)) {
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -363,8 +362,7 @@ bool subghz_save_protocol_to_file(SubGhz* subghz, const char* dev_name) {
|
||||
string_clear(temp_str);
|
||||
string_clear(dev_file_name);
|
||||
|
||||
flipper_file_close(flipper_file);
|
||||
flipper_file_free(flipper_file);
|
||||
flipper_format_free(flipper_format);
|
||||
|
||||
furi_record_close("storage");
|
||||
|
||||
|
Reference in New Issue
Block a user