2020-08-18 19:31:52 +08:00

92 lines
3.0 KiB
C

#include <malloc.h>
#include <stdio.h>
#include <string.h>
#include <3ds.h>
#include "action.h"
#include "../resources.h"
#include "../task/uitask.h"
#include "../../core/core.h"
typedef struct {
linked_list* items;
list_item* selected;
} rename_data;
static void action_rename_onresponse(ui_view* view, void* data, SwkbdButton button, const char* response) {
rename_data* renameData = (rename_data*) data;
if(button == SWKBD_BUTTON_CONFIRM) {
Result res = 0;
list_item* selected = renameData->selected;
file_info* targetInfo = (file_info*) selected->data;
char fileName[FILE_NAME_MAX] = {'\0'};
string_escape_file_name(fileName, response, sizeof(fileName));
char parentPath[FILE_PATH_MAX] = {'\0'};
string_get_parent_path(parentPath, targetInfo->path, FILE_PATH_MAX);
char dstPath[FILE_PATH_MAX] = {'\0'};
if(targetInfo->attributes & FS_ATTRIBUTE_DIRECTORY) {
snprintf(dstPath, FILE_PATH_MAX, "%s%s/", parentPath, fileName);
} else {
snprintf(dstPath, FILE_PATH_MAX, "%s%s", parentPath, fileName);
}
FS_Path* srcFsPath = fs_make_path_utf8(targetInfo->path);
if(srcFsPath != NULL) {
FS_Path* dstFsPath = fs_make_path_utf8(dstPath);
if(dstFsPath != NULL) {
if(targetInfo->attributes & FS_ATTRIBUTE_DIRECTORY) {
res = FSUSER_RenameDirectory(targetInfo->archive, *srcFsPath, targetInfo->archive, *dstFsPath);
} else {
res = FSUSER_RenameFile(targetInfo->archive, *srcFsPath, targetInfo->archive, *dstFsPath);
}
fs_free_path_utf8(dstFsPath);
} else {
res = R_APP_OUT_OF_MEMORY;
}
fs_free_path_utf8(srcFsPath);
} else {
res = R_APP_OUT_OF_MEMORY;
}
if(R_SUCCEEDED(res)) {
if(strncmp(selected->name, "<當前目錄>", LIST_ITEM_NAME_MAX) != 0 && strncmp(selected->name, "<當前檔案>", LIST_ITEM_NAME_MAX) != 0) {
string_copy(selected->name, fileName, LIST_ITEM_NAME_MAX);
}
string_copy(targetInfo->name, fileName, FILE_NAME_MAX);
string_copy(targetInfo->path, dstPath, FILE_PATH_MAX);
linked_list_sort(renameData->items, NULL, task_compare_files);
prompt_display_notify("成功", "已重命名", COLOR_TEXT, NULL, NULL, NULL);
} else {
error_display_res(NULL, NULL, res, "無法重命名");
}
}
free(renameData);
}
void action_rename(linked_list* items, list_item* selected) {
rename_data* data = (rename_data*) calloc(1, sizeof(rename_data));
if(data == NULL) {
error_display(NULL, NULL, "無法分配重命名數據");
return;
}
data->items = items;
data->selected = selected;
kbd_display("輸入新的名字", ((file_info*) selected->data)->name, SWKBD_TYPE_NORMAL, 0, SWKBD_NOTEMPTY_NOTBLANK, FILE_NAME_MAX, data, action_rename_onresponse);
}
// オケー