 274c12fc56
			
		
	
	
		274c12fc56
		
			
		
	
	
	
	
		
			
			* 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>
		
			
				
	
	
		
			557 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			557 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "flipper.pb.h"
 | |
| #include "furi/common_defines.h"
 | |
| #include "furi/memmgr.h"
 | |
| #include "furi/record.h"
 | |
| #include "pb_decode.h"
 | |
| #include "rpc/rpc.h"
 | |
| #include "rpc_i.h"
 | |
| #include "storage.pb.h"
 | |
| #include "storage/filesystem_api_defines.h"
 | |
| #include "storage/storage.h"
 | |
| #include <stdint.h>
 | |
| #include <lib/toolbox/md5.h>
 | |
| 
 | |
| #define RPC_TAG "RPC_STORAGE"
 | |
| #define MAX_NAME_LENGTH 255
 | |
| #define MAX_DATA_SIZE 512
 | |
| 
 | |
| typedef enum {
 | |
|     RpcStorageStateIdle = 0,
 | |
|     RpcStorageStateWriting,
 | |
| } RpcStorageState;
 | |
| 
 | |
| typedef struct {
 | |
|     Rpc* rpc;
 | |
|     Storage* api;
 | |
|     File* file;
 | |
|     RpcStorageState state;
 | |
|     uint32_t current_command_id;
 | |
| } RpcStorageSystem;
 | |
| 
 | |
| void rpc_print_message(const PB_Main* message);
 | |
| 
 | |
| static void rpc_system_storage_reset_state(RpcStorageSystem* rpc_storage, bool send_error) {
 | |
|     furi_assert(rpc_storage);
 | |
| 
 | |
|     if(rpc_storage->state != RpcStorageStateIdle) {
 | |
|         if(send_error) {
 | |
|             rpc_send_and_release_empty(
 | |
|                 rpc_storage->rpc,
 | |
|                 rpc_storage->current_command_id,
 | |
|                 PB_CommandStatus_ERROR_CONTINUOUS_COMMAND_INTERRUPTED);
 | |
|         }
 | |
| 
 | |
|         if(rpc_storage->state == RpcStorageStateWriting) {
 | |
|             storage_file_close(rpc_storage->file);
 | |
|             storage_file_free(rpc_storage->file);
 | |
|             furi_record_close("storage");
 | |
|         }
 | |
| 
 | |
|         rpc_storage->state = RpcStorageStateIdle;
 | |
|     }
 | |
| }
 | |
| 
 | |
| PB_CommandStatus rpc_system_storage_get_error(FS_Error fs_error) {
 | |
|     PB_CommandStatus pb_error;
 | |
|     switch(fs_error) {
 | |
|     case FSE_OK:
 | |
|         pb_error = PB_CommandStatus_OK;
 | |
|         break;
 | |
|     case FSE_INVALID_NAME:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_INVALID_NAME;
 | |
|         break;
 | |
|     case FSE_INVALID_PARAMETER:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_INVALID_PARAMETER;
 | |
|         break;
 | |
|     case FSE_INTERNAL:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_INTERNAL;
 | |
|         break;
 | |
|     case FSE_ALREADY_OPEN:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_ALREADY_OPEN;
 | |
|         break;
 | |
|     case FSE_DENIED:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_DENIED;
 | |
|         break;
 | |
|     case FSE_EXIST:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_EXIST;
 | |
|         break;
 | |
|     case FSE_NOT_EXIST:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_NOT_EXIST;
 | |
|         break;
 | |
|     case FSE_NOT_READY:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_NOT_READY;
 | |
|         break;
 | |
|     case FSE_NOT_IMPLEMENTED:
 | |
|         pb_error = PB_CommandStatus_ERROR_STORAGE_NOT_IMPLEMENTED;
 | |
|         break;
 | |
|     default:
 | |
|         pb_error = PB_CommandStatus_ERROR;
 | |
|         break;
 | |
|     }
 | |
| 
 | |
|     return pb_error;
 | |
| }
 | |
| 
 | |
| static PB_CommandStatus rpc_system_storage_get_file_error(File* file) {
 | |
|     return rpc_system_storage_get_error(storage_file_get_error(file));
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_info_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_info_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     response->command_id = request->command_id;
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     FS_Error error = storage_common_fs_info(
 | |
|         fs_api,
 | |
|         request->content.storage_info_request.path,
 | |
|         &response->content.storage_info_response.total_space,
 | |
|         &response->content.storage_info_response.free_space);
 | |
| 
 | |
|     response->command_status = rpc_system_storage_get_error(error);
 | |
|     if(error == FSE_OK) {
 | |
|         response->which_content = PB_Main_storage_info_response_tag;
 | |
|     } else {
 | |
|         response->which_content = PB_Main_empty_tag;
 | |
|     }
 | |
| 
 | |
|     rpc_send_and_release(rpc_storage->rpc, response);
 | |
|     free(response);
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_stat_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_stat_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     response->command_id = request->command_id;
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     const char* path = request->content.storage_stat_request.path;
 | |
|     FileInfo fileinfo;
 | |
|     FS_Error error = storage_common_stat(fs_api, path, &fileinfo);
 | |
| 
 | |
|     response->command_status = rpc_system_storage_get_error(error);
 | |
|     response->which_content = PB_Main_empty_tag;
 | |
| 
 | |
|     if(error == FSE_OK) {
 | |
|         response->which_content = PB_Main_storage_stat_response_tag;
 | |
|         response->content.storage_stat_response.has_file = true;
 | |
|         response->content.storage_stat_response.file.type = (fileinfo.flags & FSF_DIRECTORY) ?
 | |
|                                                                 PB_Storage_File_FileType_DIR :
 | |
|                                                                 PB_Storage_File_FileType_FILE;
 | |
|         response->content.storage_stat_response.file.size = fileinfo.size;
 | |
|     }
 | |
| 
 | |
|     rpc_send_and_release(rpc_storage->rpc, response);
 | |
|     free(response);
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_list_root(const PB_Main* request, void* context) {
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     const char* hard_coded_dirs[] = {"any", "int", "ext"};
 | |
| 
 | |
|     PB_Main response = {
 | |
|         .has_next = false,
 | |
|         .command_id = request->command_id,
 | |
|         .command_status = PB_CommandStatus_OK,
 | |
|         .which_content = PB_Main_storage_list_response_tag,
 | |
|     };
 | |
|     furi_assert(COUNT_OF(hard_coded_dirs) < COUNT_OF(response.content.storage_list_response.file));
 | |
| 
 | |
|     for(int i = 0; i < COUNT_OF(hard_coded_dirs); ++i) {
 | |
|         ++response.content.storage_list_response.file_count;
 | |
|         response.content.storage_list_response.file[i].data = NULL;
 | |
|         response.content.storage_list_response.file[i].size = 0;
 | |
|         response.content.storage_list_response.file[i].type = PB_Storage_File_FileType_DIR;
 | |
|         char* str = malloc(strlen(hard_coded_dirs[i]) + 1);
 | |
|         strcpy(str, hard_coded_dirs[i]);
 | |
|         response.content.storage_list_response.file[i].name = str;
 | |
|     }
 | |
| 
 | |
|     rpc_send_and_release(rpc_storage->rpc, &response);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_list_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(context);
 | |
|     furi_assert(request->which_content == PB_Main_storage_list_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     if(!strcmp(request->content.storage_list_request.path, "/")) {
 | |
|         rpc_system_storage_list_root(request, context);
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     File* dir = storage_file_alloc(fs_api);
 | |
| 
 | |
|     PB_Main response = {
 | |
|         .command_id = request->command_id,
 | |
|         .has_next = false,
 | |
|         .which_content = PB_Main_storage_list_response_tag,
 | |
|         .command_status = PB_CommandStatus_OK,
 | |
|     };
 | |
|     PB_Storage_ListResponse* list = &response.content.storage_list_response;
 | |
| 
 | |
|     bool finish = false;
 | |
|     int i = 0;
 | |
| 
 | |
|     if(!storage_dir_open(dir, request->content.storage_list_request.path)) {
 | |
|         response.command_status = rpc_system_storage_get_file_error(dir);
 | |
|         response.which_content = PB_Main_empty_tag;
 | |
|         finish = true;
 | |
|     }
 | |
| 
 | |
|     while(!finish) {
 | |
|         FileInfo fileinfo;
 | |
|         char* name = malloc(MAX_NAME_LENGTH + 1);
 | |
|         if(storage_dir_read(dir, &fileinfo, name, MAX_NAME_LENGTH)) {
 | |
|             if(i == COUNT_OF(list->file)) {
 | |
|                 list->file_count = i;
 | |
|                 response.has_next = true;
 | |
|                 rpc_send_and_release(rpc_storage->rpc, &response);
 | |
|                 i = 0;
 | |
|             }
 | |
|             list->file[i].type = (fileinfo.flags & FSF_DIRECTORY) ? PB_Storage_File_FileType_DIR :
 | |
|                                                                     PB_Storage_File_FileType_FILE;
 | |
|             list->file[i].size = fileinfo.size;
 | |
|             list->file[i].data = NULL;
 | |
|             list->file[i].name = name;
 | |
|             ++i;
 | |
|         } else {
 | |
|             list->file_count = i;
 | |
|             finish = true;
 | |
|             free(name);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     response.has_next = false;
 | |
|     rpc_send_and_release(rpc_storage->rpc, &response);
 | |
| 
 | |
|     storage_dir_close(dir);
 | |
|     storage_file_free(dir);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_read_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_read_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     /* use same message memory to send reponse */
 | |
|     PB_Main* response = malloc(sizeof(PB_Main));
 | |
|     const char* path = request->content.storage_read_request.path;
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     File* file = storage_file_alloc(fs_api);
 | |
|     bool result = false;
 | |
| 
 | |
|     if(storage_file_open(file, path, FSAM_READ, FSOM_OPEN_EXISTING)) {
 | |
|         size_t size_left = storage_file_size(file);
 | |
|         do {
 | |
|             response->command_id = request->command_id;
 | |
|             response->which_content = PB_Main_storage_read_response_tag;
 | |
|             response->command_status = PB_CommandStatus_OK;
 | |
|             response->content.storage_read_response.has_file = true;
 | |
|             response->content.storage_read_response.file.data =
 | |
|                 malloc(PB_BYTES_ARRAY_T_ALLOCSIZE(MIN(size_left, MAX_DATA_SIZE)));
 | |
|             uint8_t* buffer = response->content.storage_read_response.file.data->bytes;
 | |
|             uint16_t* read_size_msg = &response->content.storage_read_response.file.data->size;
 | |
| 
 | |
|             size_t read_size = MIN(size_left, MAX_DATA_SIZE);
 | |
|             *read_size_msg = storage_file_read(file, buffer, read_size);
 | |
|             size_left -= read_size;
 | |
|             result = (*read_size_msg == read_size);
 | |
| 
 | |
|             if(result) {
 | |
|                 response->has_next = (size_left > 0);
 | |
|                 rpc_send_and_release(rpc_storage->rpc, response);
 | |
|             }
 | |
|         } while((size_left != 0) && result);
 | |
| 
 | |
|         if(!result) {
 | |
|             rpc_send_and_release_empty(
 | |
|                 rpc_storage->rpc, request->command_id, rpc_system_storage_get_file_error(file));
 | |
|         }
 | |
|     } else {
 | |
|         rpc_send_and_release_empty(
 | |
|             rpc_storage->rpc, request->command_id, rpc_system_storage_get_file_error(file));
 | |
|     }
 | |
| 
 | |
|     free(response);
 | |
|     storage_file_close(file);
 | |
|     storage_file_free(file);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_write_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_write_request_tag);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     bool result = true;
 | |
| 
 | |
|     if((request->command_id != rpc_storage->current_command_id) &&
 | |
|        (rpc_storage->state == RpcStorageStateWriting)) {
 | |
|         rpc_system_storage_reset_state(rpc_storage, true);
 | |
|     }
 | |
| 
 | |
|     if(rpc_storage->state != RpcStorageStateWriting) {
 | |
|         rpc_storage->api = furi_record_open("storage");
 | |
|         rpc_storage->file = storage_file_alloc(rpc_storage->api);
 | |
|         rpc_storage->current_command_id = request->command_id;
 | |
|         rpc_storage->state = RpcStorageStateWriting;
 | |
|         const char* path = request->content.storage_write_request.path;
 | |
|         result = storage_file_open(rpc_storage->file, path, FSAM_WRITE, FSOM_CREATE_ALWAYS);
 | |
|     }
 | |
| 
 | |
|     File* file = rpc_storage->file;
 | |
| 
 | |
|     if(result) {
 | |
|         uint8_t* buffer = request->content.storage_write_request.file.data->bytes;
 | |
|         size_t buffer_size = request->content.storage_write_request.file.data->size;
 | |
| 
 | |
|         uint16_t written_size = storage_file_write(file, buffer, buffer_size);
 | |
|         result = (written_size == buffer_size);
 | |
| 
 | |
|         if(result && !request->has_next) {
 | |
|             rpc_send_and_release_empty(
 | |
|                 rpc_storage->rpc, rpc_storage->current_command_id, PB_CommandStatus_OK);
 | |
|             rpc_system_storage_reset_state(rpc_storage, false);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     if(!result) {
 | |
|         rpc_send_and_release_empty(
 | |
|             rpc_storage->rpc,
 | |
|             rpc_storage->current_command_id,
 | |
|             rpc_system_storage_get_file_error(file));
 | |
|         rpc_system_storage_reset_state(rpc_storage, false);
 | |
|     }
 | |
| }
 | |
| 
 | |
| static bool rpc_system_storage_is_dir_is_empty(Storage* fs_api, const char* path) {
 | |
|     FileInfo fileinfo;
 | |
|     bool is_dir_is_empty = false;
 | |
|     FS_Error error = storage_common_stat(fs_api, path, &fileinfo);
 | |
|     if((error == FSE_OK) && (fileinfo.flags & FSF_DIRECTORY)) {
 | |
|         File* dir = storage_file_alloc(fs_api);
 | |
|         if(storage_dir_open(dir, path)) {
 | |
|             char* name = malloc(MAX_NAME_LENGTH);
 | |
|             is_dir_is_empty = !storage_dir_read(dir, &fileinfo, name, MAX_NAME_LENGTH);
 | |
|             free(name);
 | |
|         }
 | |
|         storage_dir_close(dir);
 | |
|         storage_file_free(dir);
 | |
|     }
 | |
| 
 | |
|     return is_dir_is_empty;
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_delete_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_delete_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     PB_CommandStatus status = PB_CommandStatus_ERROR;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     char* path = request->content.storage_delete_request.path;
 | |
|     if(!path) {
 | |
|         status = PB_CommandStatus_ERROR_INVALID_PARAMETERS;
 | |
|     } else {
 | |
|         FS_Error error_remove = storage_common_remove(fs_api, path);
 | |
|         // FSE_DENIED is for empty directory, but not only for this
 | |
|         // that's why we have to check it
 | |
|         if((error_remove == FSE_DENIED) && !rpc_system_storage_is_dir_is_empty(fs_api, path)) {
 | |
|             if(request->content.storage_delete_request.recursive) {
 | |
|                 bool deleted = storage_simply_remove_recursive(fs_api, path);
 | |
|                 status = deleted ? PB_CommandStatus_OK : PB_CommandStatus_ERROR;
 | |
|             } else {
 | |
|                 status = PB_CommandStatus_ERROR_STORAGE_DIR_NOT_EMPTY;
 | |
|             }
 | |
|         } else if(error_remove == FSE_NOT_EXIST) {
 | |
|             status = PB_CommandStatus_OK;
 | |
|         } else {
 | |
|             status = rpc_system_storage_get_error(error_remove);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     furi_record_close("storage");
 | |
|     rpc_send_and_release_empty(rpc_storage->rpc, request->command_id, status);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_mkdir_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_mkdir_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     PB_CommandStatus status;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     char* path = request->content.storage_mkdir_request.path;
 | |
|     if(path) {
 | |
|         FS_Error error = storage_common_mkdir(fs_api, path);
 | |
|         status = rpc_system_storage_get_error(error);
 | |
|     } else {
 | |
|         status = PB_CommandStatus_ERROR_INVALID_PARAMETERS;
 | |
|     }
 | |
|     furi_record_close("storage");
 | |
|     rpc_send_and_release_empty(rpc_storage->rpc, request->command_id, status);
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_md5sum_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_md5sum_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     const char* filename = request->content.storage_md5sum_request.path;
 | |
|     if(!filename) {
 | |
|         rpc_send_and_release_empty(
 | |
|             rpc_storage->rpc, request->command_id, PB_CommandStatus_ERROR_INVALID_PARAMETERS);
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
|     File* file = storage_file_alloc(fs_api);
 | |
| 
 | |
|     if(storage_file_open(file, filename, FSAM_READ, FSOM_OPEN_EXISTING)) {
 | |
|         const uint16_t read_size = 512;
 | |
|         const uint8_t hash_size = 16;
 | |
|         uint8_t* data = malloc(read_size);
 | |
|         uint8_t* hash = malloc(sizeof(uint8_t) * hash_size);
 | |
|         md5_context* md5_ctx = malloc(sizeof(md5_context));
 | |
| 
 | |
|         md5_starts(md5_ctx);
 | |
|         while(true) {
 | |
|             uint16_t readed_size = storage_file_read(file, data, read_size);
 | |
|             if(readed_size == 0) break;
 | |
|             md5_update(md5_ctx, data, readed_size);
 | |
|         }
 | |
|         md5_finish(md5_ctx, hash);
 | |
|         free(md5_ctx);
 | |
| 
 | |
|         PB_Main response = {
 | |
|             .command_id = request->command_id,
 | |
|             .command_status = PB_CommandStatus_OK,
 | |
|             .which_content = PB_Main_storage_md5sum_response_tag,
 | |
|             .has_next = false,
 | |
|         };
 | |
| 
 | |
|         char* md5sum = response.content.storage_md5sum_response.md5sum;
 | |
|         size_t md5sum_size = sizeof(response.content.storage_md5sum_response.md5sum);
 | |
|         (void)md5sum_size;
 | |
|         furi_assert(hash_size <= ((md5sum_size - 1) / 2));
 | |
|         for(uint8_t i = 0; i < hash_size; i++) {
 | |
|             md5sum += sprintf(md5sum, "%02x", hash[i]);
 | |
|         }
 | |
| 
 | |
|         free(hash);
 | |
|         free(data);
 | |
|         storage_file_close(file);
 | |
|         rpc_send_and_release(rpc_storage->rpc, &response);
 | |
|     } else {
 | |
|         rpc_send_and_release_empty(
 | |
|             rpc_storage->rpc, request->command_id, rpc_system_storage_get_file_error(file));
 | |
|     }
 | |
| 
 | |
|     storage_file_free(file);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
| }
 | |
| 
 | |
| static void rpc_system_storage_rename_process(const PB_Main* request, void* context) {
 | |
|     furi_assert(request);
 | |
|     furi_assert(request->which_content == PB_Main_storage_rename_request_tag);
 | |
|     furi_assert(context);
 | |
|     RpcStorageSystem* rpc_storage = context;
 | |
|     PB_CommandStatus status;
 | |
|     rpc_system_storage_reset_state(rpc_storage, true);
 | |
| 
 | |
|     Storage* fs_api = furi_record_open("storage");
 | |
| 
 | |
|     FS_Error error = storage_common_rename(
 | |
|         fs_api,
 | |
|         request->content.storage_rename_request.old_path,
 | |
|         request->content.storage_rename_request.new_path);
 | |
|     status = rpc_system_storage_get_error(error);
 | |
| 
 | |
|     furi_record_close("storage");
 | |
|     rpc_send_and_release_empty(rpc_storage->rpc, request->command_id, status);
 | |
| }
 | |
| 
 | |
| void* rpc_system_storage_alloc(Rpc* rpc) {
 | |
|     furi_assert(rpc);
 | |
| 
 | |
|     RpcStorageSystem* rpc_storage = malloc(sizeof(RpcStorageSystem));
 | |
|     rpc_storage->api = furi_record_open("storage");
 | |
|     rpc_storage->rpc = rpc;
 | |
|     rpc_storage->state = RpcStorageStateIdle;
 | |
| 
 | |
|     RpcHandler rpc_handler = {
 | |
|         .message_handler = NULL,
 | |
|         .decode_submessage = NULL,
 | |
|         .context = rpc_storage,
 | |
|     };
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_info_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_info_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_stat_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_stat_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_list_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_list_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_read_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_read_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_write_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_write_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_delete_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_delete_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_mkdir_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_mkdir_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_md5sum_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_md5sum_request_tag, &rpc_handler);
 | |
| 
 | |
|     rpc_handler.message_handler = rpc_system_storage_rename_process;
 | |
|     rpc_add_handler(rpc, PB_Main_storage_rename_request_tag, &rpc_handler);
 | |
| 
 | |
|     return rpc_storage;
 | |
| }
 | |
| 
 | |
| void rpc_system_storage_free(void* ctx) {
 | |
|     RpcStorageSystem* rpc_storage = ctx;
 | |
|     rpc_system_storage_reset_state(rpc_storage, false);
 | |
|     free(rpc_storage);
 | |
| }
 |