mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
25 lines
948 B
C
25 lines
948 B
C
#include <core/record.h>
|
|
#include "storage.h"
|
|
#include <toolbox/tar/tar_archive.h>
|
|
|
|
FS_Error storage_int_backup(Storage* storage, const char* dstname) {
|
|
furi_check(storage);
|
|
|
|
TarArchive* archive = tar_archive_alloc(storage);
|
|
bool success = tar_archive_open(archive, dstname, TAR_OPEN_MODE_WRITE) &&
|
|
tar_archive_add_dir(archive, STORAGE_INT_PATH_PREFIX, "") &&
|
|
tar_archive_finalize(archive);
|
|
tar_archive_free(archive);
|
|
return success ? FSE_OK : FSE_INTERNAL;
|
|
}
|
|
|
|
FS_Error
|
|
storage_int_restore(Storage* storage, const char* srcname, Storage_name_converter converter) {
|
|
furi_check(storage);
|
|
|
|
TarArchive* archive = tar_archive_alloc(storage);
|
|
bool success = tar_archive_open(archive, srcname, TAR_OPEN_MODE_READ) &&
|
|
tar_archive_unpack_to(archive, STORAGE_INT_PATH_PREFIX, converter);
|
|
tar_archive_free(archive);
|
|
return success ? FSE_OK : FSE_INTERNAL;
|
|
}
|