M*LIB: non-inlined strings, FuriString primitive (#1795)
* Quicksave 1 * Header stage complete * Source stage complete * Lint & merge fixes * Includes * Documentation step 1 * FBT: output free size considering BT STACK * Documentation step 2 * py lint * Fix music player plugin * unit test stage 1: string allocator, mem, getters, setters, appends, compare, search. * unit test: string equality * unit test: string replace * unit test: string start_with, end_with * unit test: string trim * unit test: utf-8 * Rename * Revert fw_size changes * Simplify CLI backspace handling * Simplify CLI character insert * Merge fixes * Furi: correct filenaming and spelling * Bt: remove furi string include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
		@@ -1,5 +1,4 @@
 | 
			
		||||
#include "../subghz_i.h"
 | 
			
		||||
#include "m-string.h"
 | 
			
		||||
#include "subghz/types.h"
 | 
			
		||||
#include <lib/toolbox/random_name.h>
 | 
			
		||||
#include "../helpers/subghz_custom_event.h"
 | 
			
		||||
@@ -21,21 +20,21 @@ void subghz_scene_save_name_on_enter(void* context) {
 | 
			
		||||
    TextInput* text_input = subghz->text_input;
 | 
			
		||||
    bool dev_name_empty = false;
 | 
			
		||||
 | 
			
		||||
    string_t file_name;
 | 
			
		||||
    string_t dir_name;
 | 
			
		||||
    string_init(file_name);
 | 
			
		||||
    string_init(dir_name);
 | 
			
		||||
    FuriString* file_name;
 | 
			
		||||
    FuriString* dir_name;
 | 
			
		||||
    file_name = furi_string_alloc();
 | 
			
		||||
    dir_name = furi_string_alloc();
 | 
			
		||||
 | 
			
		||||
    if(!subghz_path_is_file(subghz->file_path)) {
 | 
			
		||||
        char file_name_buf[SUBGHZ_MAX_LEN_NAME] = {0};
 | 
			
		||||
        set_random_name(file_name_buf, SUBGHZ_MAX_LEN_NAME);
 | 
			
		||||
        string_set_str(file_name, file_name_buf);
 | 
			
		||||
        string_set_str(subghz->file_path, SUBGHZ_APP_FOLDER);
 | 
			
		||||
        furi_string_set(file_name, file_name_buf);
 | 
			
		||||
        furi_string_set(subghz->file_path, SUBGHZ_APP_FOLDER);
 | 
			
		||||
        //highlighting the entire filename by default
 | 
			
		||||
        dev_name_empty = true;
 | 
			
		||||
    } else {
 | 
			
		||||
        string_set(subghz->file_path_tmp, subghz->file_path);
 | 
			
		||||
        path_extract_dirname(string_get_cstr(subghz->file_path), dir_name);
 | 
			
		||||
        furi_string_set(subghz->file_path_tmp, subghz->file_path);
 | 
			
		||||
        path_extract_dirname(furi_string_get_cstr(subghz->file_path), dir_name);
 | 
			
		||||
        path_extract_filename(subghz->file_path, file_name, true);
 | 
			
		||||
        if(scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneReadRAW) !=
 | 
			
		||||
           SubGhzCustomEventManagerNoSet) {
 | 
			
		||||
@@ -46,10 +45,10 @@ void subghz_scene_save_name_on_enter(void* context) {
 | 
			
		||||
            }
 | 
			
		||||
            path_extract_filename(subghz->file_path, file_name, true);
 | 
			
		||||
        }
 | 
			
		||||
        string_set(subghz->file_path, dir_name);
 | 
			
		||||
        furi_string_set(subghz->file_path, dir_name);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    strncpy(subghz->file_name_tmp, string_get_cstr(file_name), SUBGHZ_MAX_LEN_NAME);
 | 
			
		||||
    strncpy(subghz->file_name_tmp, furi_string_get_cstr(file_name), SUBGHZ_MAX_LEN_NAME);
 | 
			
		||||
    text_input_set_header_text(text_input, "Name signal");
 | 
			
		||||
    text_input_set_result_callback(
 | 
			
		||||
        text_input,
 | 
			
		||||
@@ -59,12 +58,12 @@ void subghz_scene_save_name_on_enter(void* context) {
 | 
			
		||||
        MAX_TEXT_INPUT_LEN, // buffer size
 | 
			
		||||
        dev_name_empty);
 | 
			
		||||
 | 
			
		||||
    ValidatorIsFile* validator_is_file =
 | 
			
		||||
        validator_is_file_alloc_init(string_get_cstr(subghz->file_path), SUBGHZ_APP_EXTENSION, "");
 | 
			
		||||
    ValidatorIsFile* validator_is_file = validator_is_file_alloc_init(
 | 
			
		||||
        furi_string_get_cstr(subghz->file_path), SUBGHZ_APP_EXTENSION, "");
 | 
			
		||||
    text_input_set_validator(text_input, validator_is_file_callback, validator_is_file);
 | 
			
		||||
 | 
			
		||||
    string_clear(file_name);
 | 
			
		||||
    string_clear(dir_name);
 | 
			
		||||
    furi_string_free(file_name);
 | 
			
		||||
    furi_string_free(dir_name);
 | 
			
		||||
 | 
			
		||||
    view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdTextInput);
 | 
			
		||||
}
 | 
			
		||||
@@ -75,14 +74,14 @@ bool subghz_scene_save_name_on_event(void* context, SceneManagerEvent event) {
 | 
			
		||||
        if(!strcmp(subghz->file_name_tmp, "") ||
 | 
			
		||||
           scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneReadRAW) !=
 | 
			
		||||
               SubGhzCustomEventManagerNoSet) {
 | 
			
		||||
            string_set(subghz->file_path, subghz->file_path_tmp);
 | 
			
		||||
            furi_string_set(subghz->file_path, subghz->file_path_tmp);
 | 
			
		||||
        }
 | 
			
		||||
        scene_manager_previous_scene(subghz->scene_manager);
 | 
			
		||||
        return true;
 | 
			
		||||
    } else if(event.type == SceneManagerEventTypeCustom) {
 | 
			
		||||
        if(event.event == SubGhzCustomEventSceneSaveName) {
 | 
			
		||||
            if(strcmp(subghz->file_name_tmp, "")) {
 | 
			
		||||
                string_cat_printf(
 | 
			
		||||
                furi_string_cat_printf(
 | 
			
		||||
                    subghz->file_path, "/%s%s", subghz->file_name_tmp, SUBGHZ_APP_EXTENSION);
 | 
			
		||||
                if(subghz_path_is_file(subghz->file_path_tmp)) {
 | 
			
		||||
                    if(!subghz_rename_file(subghz)) {
 | 
			
		||||
@@ -92,7 +91,9 @@ bool subghz_scene_save_name_on_event(void* context, SceneManagerEvent event) {
 | 
			
		||||
                    if(scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneSetType) !=
 | 
			
		||||
                       SubGhzCustomEventManagerNoSet) {
 | 
			
		||||
                        subghz_save_protocol_to_file(
 | 
			
		||||
                            subghz, subghz->txrx->fff_data, string_get_cstr(subghz->file_path));
 | 
			
		||||
                            subghz,
 | 
			
		||||
                            subghz->txrx->fff_data,
 | 
			
		||||
                            furi_string_get_cstr(subghz->file_path));
 | 
			
		||||
                        scene_manager_set_scene_state(
 | 
			
		||||
                            subghz->scene_manager,
 | 
			
		||||
                            SubGhzSceneSetType,
 | 
			
		||||
@@ -102,14 +103,14 @@ bool subghz_scene_save_name_on_event(void* context, SceneManagerEvent event) {
 | 
			
		||||
                            subghz,
 | 
			
		||||
                            subghz_history_get_raw_data(
 | 
			
		||||
                                subghz->txrx->history, subghz->txrx->idx_menu_chosen),
 | 
			
		||||
                            string_get_cstr(subghz->file_path));
 | 
			
		||||
                            furi_string_get_cstr(subghz->file_path));
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                if(scene_manager_get_scene_state(subghz->scene_manager, SubGhzSceneReadRAW) !=
 | 
			
		||||
                   SubGhzCustomEventManagerNoSet) {
 | 
			
		||||
                    subghz_protocol_raw_gen_fff_data(
 | 
			
		||||
                        subghz->txrx->fff_data, string_get_cstr(subghz->file_path));
 | 
			
		||||
                        subghz->txrx->fff_data, furi_string_get_cstr(subghz->file_path));
 | 
			
		||||
                    scene_manager_set_scene_state(
 | 
			
		||||
                        subghz->scene_manager, SubGhzSceneReadRAW, SubGhzCustomEventManagerNoSet);
 | 
			
		||||
                } else {
 | 
			
		||||
@@ -119,7 +120,7 @@ bool subghz_scene_save_name_on_event(void* context, SceneManagerEvent event) {
 | 
			
		||||
                scene_manager_next_scene(subghz->scene_manager, SubGhzSceneSaveSuccess);
 | 
			
		||||
                return true;
 | 
			
		||||
            } else {
 | 
			
		||||
                string_set_str(subghz->error_str, "No name file");
 | 
			
		||||
                furi_string_set(subghz->error_str, "No name file");
 | 
			
		||||
                scene_manager_next_scene(subghz->scene_manager, SubGhzSceneShowErrorSub);
 | 
			
		||||
                return true;
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user