[FL-1293] iButton key rename (#479)
* ibutton: remove existing key file before saving new * ibutton: save key name in iButtunKey object * ibutton: rename IBUTTON_KEY_SIZE -> IBUTTON_KEY_DATA_SIZE * ibutton: clear key when enter one manually * ibutton: change strcpy -> strlcpy Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
@@ -37,6 +37,8 @@ bool iButtonSceneAddType::on_event(iButtonApp* app, iButtonEvent* event) {
|
||||
app->get_key()->set_type(iButtonKeyType::KeyMetakom);
|
||||
break;
|
||||
}
|
||||
app->get_key()->set_name("");
|
||||
app->get_key()->clear_data();
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneAddValue);
|
||||
consumed = true;
|
||||
}
|
||||
|
@@ -34,18 +34,27 @@ bool iButtonSceneSaveName::on_event(iButtonApp* app, iButtonEvent* event) {
|
||||
iButtonKey* key = app->get_key();
|
||||
File key_file;
|
||||
string_t key_file_name;
|
||||
string_init_set_str(key_file_name, "ibutton/");
|
||||
string_cat_str(key_file_name, app->get_text_store());
|
||||
uint8_t key_data[IBUTTON_KEY_SIZE + 1];
|
||||
key_data[0] = static_cast<uint8_t>(key->get_key_type());
|
||||
memcpy(key_data + 1, key->get_data(), IBUTTON_KEY_SIZE);
|
||||
|
||||
// Create ibutton directory if necessary
|
||||
app->get_fs_api()->common.mkdir("ibutton");
|
||||
|
||||
// First remove key if it was saved
|
||||
string_init_set_str(key_file_name, "ibutton/");
|
||||
string_cat_str(key_file_name, key->get_name());
|
||||
app->get_fs_api()->common.remove(string_get_cstr(key_file_name));
|
||||
|
||||
// Save the key
|
||||
key->set_name(app->get_text_store());
|
||||
string_set_str(key_file_name, "ibutton/");
|
||||
string_cat_str(key_file_name, app->get_text_store());
|
||||
uint8_t key_data[IBUTTON_KEY_DATA_SIZE + 1];
|
||||
key_data[0] = static_cast<uint8_t>(key->get_key_type());
|
||||
memcpy(key_data + 1, key->get_data(), IBUTTON_KEY_DATA_SIZE);
|
||||
bool res = app->get_fs_api()->file.open(
|
||||
&key_file, string_get_cstr(key_file_name), FSAM_WRITE, FSOM_CREATE_ALWAYS);
|
||||
// TODO process file system errors from file system service
|
||||
if(res) {
|
||||
res = app->get_fs_api()->file.write(&key_file, key_data, IBUTTON_KEY_SIZE + 1);
|
||||
res = app->get_fs_api()->file.write(&key_file, key_data, IBUTTON_KEY_DATA_SIZE + 1);
|
||||
res = app->get_fs_api()->file.close(&key_file);
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneSaveSuccess);
|
||||
} else {
|
||||
|
@@ -43,12 +43,12 @@ bool iButtonSceneStart::on_event(iButtonApp* app, iButtonEvent* event) {
|
||||
string_init_set_str(key_str, "ibutton/");
|
||||
string_cat_str(key_str, app->get_file_name());
|
||||
File key_file;
|
||||
uint8_t key_data[IBUTTON_KEY_SIZE + 1] = {};
|
||||
uint8_t key_data[IBUTTON_KEY_DATA_SIZE + 1] = {};
|
||||
// Read data from file
|
||||
// TODO handle false return
|
||||
res = app->get_fs_api()->file.open(
|
||||
&key_file, string_get_cstr(key_str), FSAM_READ, FSOM_OPEN_EXISTING);
|
||||
res = app->get_fs_api()->file.read(&key_file, key_data, IBUTTON_KEY_SIZE + 1);
|
||||
res = app->get_fs_api()->file.read(&key_file, key_data, IBUTTON_KEY_DATA_SIZE + 1);
|
||||
res = app->get_fs_api()->file.close(&key_file);
|
||||
string_clear(key_str);
|
||||
// Set key
|
||||
@@ -58,7 +58,7 @@ bool iButtonSceneStart::on_event(iButtonApp* app, iButtonEvent* event) {
|
||||
}
|
||||
app->get_key()->set_name(app->get_file_name());
|
||||
app->get_key()->set_type(key_type);
|
||||
app->get_key()->set_data(key_data + 1, IBUTTON_KEY_SIZE);
|
||||
app->get_key()->set_data(key_data + 1, IBUTTON_KEY_DATA_SIZE);
|
||||
app->switch_to_next_scene(iButtonApp::Scene::SceneSavedKeyMenu);
|
||||
} else {
|
||||
// TODO add error scene
|
||||
|
Reference in New Issue
Block a user