Implement folder copy

+ Change error messaging internally
+ inproved recursive file deletion
This commit is contained in:
Such Meme, Many Skill
2020-01-04 20:18:26 +01:00
parent 6d75aa688c
commit ef76834ef4
8 changed files with 189 additions and 50 deletions

View File

@@ -329,15 +329,10 @@ void gfx_put_big_sep()
gfx_con.fntsz = prevFontSize; gfx_con.fntsz = prevFontSize;
} }
void gfx_printf(const char *fmt, ...) void gfx_vprintf(const char *fmt, va_list ap)
{ {
if (gfx_con.mute)
return;
va_list ap;
int fill, fcnt; int fill, fcnt;
va_start(ap, fmt);
while(*fmt) while(*fmt)
{ {
if(*fmt == '%') if(*fmt == '%')
@@ -389,7 +384,7 @@ void gfx_printf(const char *fmt, ...)
gfx_putc('%'); gfx_putc('%');
break; break;
case '\0': case '\0':
goto out; return;
default: default:
gfx_putc('%'); gfx_putc('%');
gfx_putc(*fmt); gfx_putc(*fmt);
@@ -400,8 +395,17 @@ void gfx_printf(const char *fmt, ...)
gfx_putc(*fmt); gfx_putc(*fmt);
fmt++; fmt++;
} }
}
void gfx_printf(const char *fmt, ...)
{
if (gfx_con.mute)
return;
va_list ap;
va_start(ap, fmt);
gfx_vprintf(fmt, ap);
out:
va_end(ap); va_end(ap);
} }

View File

@@ -20,6 +20,7 @@
#define _GFX_H_ #define _GFX_H_
#include "../../common/common_gfx.h" #include "../../common/common_gfx.h"
#include <stdarg.h>
#define EPRINTF(text) gfx_printf("%k"text"%k\n", 0xFFFF0000, 0xFFCCCCCC) #define EPRINTF(text) gfx_printf("%k"text"%k\n", 0xFFFF0000, 0xFFCCCCCC)
#define EPRINTFARGS(text, args...) gfx_printf("%k"text"%k\n", 0xFFFF0000, args, 0xFFCCCCCC) #define EPRINTFARGS(text, args...) gfx_printf("%k"text"%k\n", 0xFFFF0000, args, 0xFFCCCCCC)
@@ -37,6 +38,7 @@ void gfx_con_setpos(u32 x, u32 y);
void gfx_putc(char c); void gfx_putc(char c);
void gfx_puts(const char *s); void gfx_puts(const char *s);
void gfx_printf(const char *fmt, ...); void gfx_printf(const char *fmt, ...);
void gfx_vprintf(const char *fmt, va_list ap);
void gfx_hexdump(u32 base, const u8 *buf, u32 len); void gfx_hexdump(u32 base, const u8 *buf, u32 len);
void gfx_set_pixel(u32 x, u32 y, u32 color); void gfx_set_pixel(u32 x, u32 y, u32 color);

View File

@@ -29,10 +29,11 @@ menu_item explfilemenu[9] = {
{"View Hex", COLOR_GREEN, HEXVIEW, 1} {"View Hex", COLOR_GREEN, HEXVIEW, 1}
}; };
menu_item explfoldermenu[4] = { menu_item explfoldermenu[5] = {
{"-- Folder Menu --\n", COLOR_BLUE, -1, 0}, {"-- Folder Menu --\n", COLOR_BLUE, -1, 0},
{"Back", COLOR_WHITE, -1, 1}, {"Back", COLOR_WHITE, -1, 1},
{"Return to main menu\n", COLOR_BLUE, EXITFOLDER, 1}, {"Return to main menu\n", COLOR_BLUE, EXITFOLDER, 1},
{"Copy to clipboard", COLOR_VIOLET, COPYFOLDER, 1},
{"Delete folder", COLOR_RED, DELETEFOLDER, 1} {"Delete folder", COLOR_RED, DELETEFOLDER, 1}
}; };
@@ -135,7 +136,7 @@ void viewbytes(char *path){
clearscreen(); clearscreen();
res = f_open(&in, path, FA_READ | FA_OPEN_EXISTING); res = f_open(&in, path, FA_READ | FA_OPEN_EXISTING);
if (res != FR_OK){ if (res != FR_OK){
message("File Opening Failed", COLOR_RED); message(COLOR_RED, "File Opening Failed\nErrcode %d", res);
return; return;
} }
@@ -146,7 +147,7 @@ void viewbytes(char *path){
res = f_read(&in, &print, 2048 * sizeof(u8), &size); res = f_read(&in, &print, 2048 * sizeof(u8), &size);
if (res != FR_OK){ if (res != FR_OK){
message("Reading Failed", COLOR_RED); message(COLOR_RED, "Reading Failed!\nErrcode %d", res);
return; return;
} }
@@ -166,8 +167,9 @@ void viewbytes(char *path){
f_close(&in); f_close(&in);
} }
int copy(const char *locin, const char *locout, bool print){ int copy(const char *locin, const char *locout, bool print, bool canCancel){
FIL in, out; FIL in, out;
FILINFO in_info;
u64 sizeoffile, sizecopied = 0, totalsize; u64 sizeoffile, sizecopied = 0, totalsize;
UINT temp1, temp2; UINT temp1, temp2;
u8 *buff; u8 *buff;
@@ -183,6 +185,9 @@ int copy(const char *locin, const char *locout, bool print){
return 1; return 1;
} }
if (f_stat(locin, &in_info))
return 1;
if (f_open(&out, locout, FA_CREATE_ALWAYS | FA_WRITE)){ if (f_open(&out, locout, FA_CREATE_ALWAYS | FA_WRITE)){
return 2; return 2;
} }
@@ -204,18 +209,23 @@ int copy(const char *locin, const char *locout, bool print){
sizecopied += temp1; sizecopied += temp1;
if (print && 10 > i++){ if (print && 10 > i++){
gfx_printf("%k[%d%%/100%%]%k", COLOR_GREEN, ((sizecopied * 100) / totalsize) ,COLOR_WHITE); gfx_printf("%k[%d%%]%k", COLOR_GREEN, ((sizecopied * 100) / totalsize) ,COLOR_WHITE);
gfx_con_setpos(x, y); gfx_con_setpos(x, y);
i = 0; i = 0;
if (btn_read() & BTN_VOL_DOWN){ if (canCancel)
f_unlink(locout); if (btn_read() & BTN_VOL_DOWN){
break; f_unlink(locout);
} break;
}
} }
} }
if (in_info.fattrib & AM_ARC){
f_chmod(locout, AM_ARC, AM_ARC);
}
f_close(&in); f_close(&in);
f_close(&out); f_close(&out);
free(buff); free(buff);
@@ -244,11 +254,11 @@ void copyfile(const char *path, const char *outfolder){
if (strcmp(rootpath, "emmc:/")) if (strcmp(rootpath, "emmc:/"))
f_rename(path, outstring); f_rename(path, outstring);
else else
message("\nMoving in emummc is not allowed!", COLOR_RED); message(COLOR_RED, "\nMoving in emummc is not allowed!");
} }
else if (clipboardhelper & OPERATIONCOPY) { else if (clipboardhelper & OPERATIONCOPY) {
res = copy(path, outstring, true); res = copy(path, outstring, true, true);
if (res){ if (res){
gfx_printf("\n\n%kSomething went wrong while copying!\n\nErrcode: %d%k", COLOR_RED, res, COLOR_WHITE); gfx_printf("\n\n%kSomething went wrong while copying!\n\nErrcode: %d%k", COLOR_RED, res, COLOR_WHITE);
btn_wait(); btn_wait();
@@ -256,7 +266,7 @@ void copyfile(const char *path, const char *outfolder){
} }
else { else {
message("\nClipboard is empty!", COLOR_RED); message(COLOR_RED, "\nClipboard is empty!");
} }
free (outstring); free (outstring);
@@ -346,9 +356,8 @@ int readfolder(const char *path){
createfileobjects(getfolderentryamount(path)); createfileobjects(getfolderentryamount(path));
if ((res = f_opendir(&dir, path))){ if ((res = f_opendir(&dir, path))){
char errmes[50] = ""; message(COLOR_RED, "Error during f_opendir: %d", res);
sprintf(errmes, "Error during f_opendir: %d", res); return -1;
message(errmes, COLOR_RED);
} }
while (!f_readdir(&dir, &fno) && fno.fname[0]){ while (!f_readdir(&dir, &fno) && fno.fname[0]){
@@ -373,18 +382,20 @@ int delfile(const char *path, const char *filename){
return -1; return -1;
} }
void makestring(char *in, char **out){
*out = (char *) malloc (strlen(in) + 1);
strcpy(*out, in);
}
int del_recursive(char *path){ int del_recursive(char *path){
DIR dir; DIR dir;
FILINFO fno; FILINFO fno;
int res; int res;
char *localpath; char *localpath = NULL;
localpath = (char*) malloc (strlen(path) + 1); makestring(path, &localpath);
strcpy(localpath, path);
if ((res = f_opendir(&dir, localpath))){ if ((res = f_opendir(&dir, localpath))){
char errmes[50] = ""; message(COLOR_RED, "Error during f_opendir: %d", res);
sprintf(errmes, "Error during f_opendir: %d", res);
message(errmes, COLOR_RED);
return -1; return -1;
} }
@@ -392,8 +403,16 @@ int del_recursive(char *path){
if (fno.fattrib & AM_DIR) if (fno.fattrib & AM_DIR)
del_recursive(getnextloc(localpath, fno.fname)); del_recursive(getnextloc(localpath, fno.fname));
else if ((res = f_unlink(getnextloc(localpath, fno.fname)))) else {
return res; gfx_box(0, 47, 719, 63, COLOR_DEFAULT);
SWAPCOLOR(COLOR_RED);
gfx_printf("\r");
gfx_print_length(37, fno.fname);
gfx_printf(" ");
if ((res = f_unlink(getnextloc(localpath, fno.fname))))
return res;
}
} }
f_closedir(&dir); f_closedir(&dir);
@@ -407,6 +426,86 @@ int del_recursive(char *path){
return 0; return 0;
} }
int copy_recursive(char *path, char *dstpath){
DIR dir;
FILINFO fno;
int res;
char *startpath = NULL, *destpath = NULL, *destfoldername = NULL, *temp = NULL;
makestring(path, &startpath);
makestring(strrchr(path, '/') + 1, &destfoldername);
destpath = (char*) malloc (strlen(dstpath) + strlen(destfoldername) + 2);
sprintf(destpath, (dstpath[strlen(dstpath) - 1] == '/') ? "%s%s" : "%s/%s", dstpath, destfoldername);
if ((res = f_opendir(&dir, startpath))){
message(COLOR_RED, "Error during f_opendir: %d", res);
return -1;
}
f_mkdir(destpath);
while (!f_readdir(&dir, &fno) && fno.fname[0]){
if (fno.fattrib & AM_DIR){
copy_recursive(getnextloc(startpath, fno.fname), destpath);
}
else {
gfx_box(0, 47, 719, 63, COLOR_DEFAULT);
SWAPCOLOR(COLOR_GREEN);
gfx_printf("\r");
gfx_print_length(37, fno.fname);
gfx_printf(" ");
makestring(getnextloc(startpath, fno.fname), &temp);
if ((res = copy(temp, getnextloc(destpath, fno.fname), true, false))){
message(COLOR_RED, "Copy failed!\nErrcode %d", res);
return -1;
}
free(temp);
}
}
if (f_stat(startpath, &fno))
return -2;
if (fno.fattrib & AM_ARC){
f_chmod(destpath, AM_ARC, AM_ARC);
}
f_closedir(&dir);
free(startpath);
free(destpath);
free(destfoldername);
return 0;
}
void copyfolder(char *in, char *out){
bool fatalerror = false;
int res;
if (!strcmp(in, rootpath)){
message(COLOR_RED, "In is root\nAborting!");
fatalerror = true;
}
if (strstr(out, in) != NULL && !fatalerror){
message(COLOR_RED, "\nOut is a part of in!\nAborting");
fatalerror = true;
}
if (!fatalerror){
clearscreen();
gfx_printf("\nCopying folder, please wait\n");
if ((res = copy_recursive(in, out)))
message(COLOR_RED, "copy_recursive() failed!\nErrcode %d", res);
}
clipboardhelper = 0;
}
int filemenu(fs_entry file){ int filemenu(fs_entry file){
int temp; int temp;
strlcpy(explfilemenu[1].name, file.name, 43); strlcpy(explfilemenu[1].name, file.name, 43);
@@ -448,26 +547,28 @@ int filemenu(fs_entry file){
int foldermenu(){ int foldermenu(){
int res; int res;
char temp[50] = "";
res = makemenu(explfoldermenu, 4); res = makemenu(explfoldermenu, 5);
switch (res){ switch (res){
case EXITFOLDER: case EXITFOLDER:
return -1; return -1;
case DELETEFOLDER: case DELETEFOLDER:
if (makewaitmenu("Do you want to delete this folder?\nThe entire folder, with all subcontents\n will be deleted!!!\n\nPress vol+/- to cancel\n", "Press power to contine...", 7)){ if (makewaitmenu("Do you want to delete this folder?\nThe entire folder, with all subcontents\n will be deleted!!!\n\nPress vol+/- to cancel\n", "Press power to contine...", 3)){
clearscreen(); clearscreen();
gfx_printf("\nDeleting folder, please wait..."); gfx_printf("\nDeleting folder, please wait...\n");
if ((res = del_recursive(currentpath))){ if ((res = del_recursive(currentpath))){
sprintf(temp, "Error during del_recursive()! %d", res); message(COLOR_RED, "Error during del_recursive()! %d", res);
message(temp, COLOR_RED);
} }
writecurpath(getprevloc(currentpath)); writecurpath(getprevloc(currentpath));
return readfolder(currentpath) + 1; return readfolder(currentpath) + 1;
} }
break; break;
case COPYFOLDER:
writeclipboard(currentpath, false, true);
break;
} }
return 0; return 0;
} }
@@ -502,7 +603,12 @@ void fileexplorer(const char *startpath){
break; break;
case -1: case -1:
copyfile(clipboard, currentpath); if (clipboardhelper & ISDIR){
copyfolder(clipboard, currentpath);
}
else {
copyfile(clipboard, currentpath);
}
amount = readfolder(currentpath); amount = readfolder(currentpath);
break; break;

View File

@@ -39,11 +39,12 @@ enum filemenuoptions {
enum foldermenuoptions { enum foldermenuoptions {
EXITFOLDER = 1, EXITFOLDER = 1,
DELETEFOLDER DELETEFOLDER,
COPYFOLDER
}; };
int readfolder(const char *path); int readfolder(const char *path);
void fileexplorer(const char *startpath); void fileexplorer(const char *startpath);
bool checkfile(char* path); bool checkfile(char* path);
u64 getfilesize(char *path); u64 getfilesize(char *path);
int copy(const char *locin, const char *locout, bool print); int copy(const char *locin, const char *locout, bool print, bool canCancel);

View File

@@ -8,6 +8,7 @@
#include "gfx.h" #include "gfx.h"
#include "fs.h" #include "fs.h"
#include "../mem/minerva.h" #include "../mem/minerva.h"
#include <stdarg.h>
const char fixedoptions[3][50] = { const char fixedoptions[3][50] = {
"Folder -> previous folder ", "Folder -> previous folder ",
@@ -29,9 +30,16 @@ void clearscreen(){
gfx_printf("%k%KTegraexplorer v1.1.1%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT); gfx_printf("%k%KTegraexplorer v1.1.1%k%K\n", COLOR_DEFAULT, COLOR_WHITE, COLOR_WHITE, COLOR_DEFAULT);
} }
int message(char* message, u32 color){ int message(u32 color, const char* message, ...){
va_list ap;
va_start(ap, message);
clearscreen(); clearscreen();
gfx_printf("%k%s%k", color, message, COLOR_DEFAULT); SWAPCOLOR(color);
gfx_vprintf(message, ap);
va_end(ap);
return btn_wait(); return btn_wait();
} }
@@ -109,6 +117,22 @@ int makewaitmenu(char *initialmessage, char *hiddenmessage, int timer){
} }
} }
void gfx_print_length(int size, char *toprint){
char *temp;
temp = (char*) malloc (size + 1);
if (strlen(toprint) > size){
strlcpy(temp, toprint, size);
memset(temp + size - 3, '.', 3);
memset(temp + size, '\0', 1);
}
else
strcpy(temp, toprint);
gfx_printf("%s", temp);
free(temp);
}
void printfsentry(fs_entry file, bool highlight, bool refresh){ void printfsentry(fs_entry file, bool highlight, bool refresh){
int size = 0; int size = 0;
char *display; char *display;
@@ -124,6 +148,7 @@ void printfsentry(fs_entry file, bool highlight, bool refresh){
else else
strcpy(display, file.name); strcpy(display, file.name);
if (highlight) if (highlight)
gfx_printf("%K%k", COLOR_WHITE, COLOR_DEFAULT); gfx_printf("%K%k", COLOR_WHITE, COLOR_DEFAULT);
else else
@@ -164,7 +189,7 @@ int makefilemenu(fs_entry *files, int amount, char *path){
bool refresh = false; bool refresh = false;
clearscreen(); clearscreen();
gfx_con_setpos(544, 0); gfx_con_setpos(544, 0);
gfx_printf("%K%k%d\n%K%k%s%k\n\n", COLOR_WHITE, COLOR_DEFAULT, amount, COLOR_DEFAULT, COLOR_GREEN, path, COLOR_DEFAULT); gfx_printf("%K%k%d files\n%K%k%s%k\n\n", COLOR_WHITE, COLOR_DEFAULT, amount, COLOR_DEFAULT, COLOR_GREEN, path, COLOR_DEFAULT);
while (1){ while (1){
gfx_con_setpos(0, 47); gfx_con_setpos(0, 47);
timer = get_tmr_ms(); timer = get_tmr_ms();

View File

@@ -6,8 +6,9 @@
#define RESETCOLOR gfx_printf("%k%K", COLOR_WHITE, COLOR_DEFAULT) #define RESETCOLOR gfx_printf("%k%K", COLOR_WHITE, COLOR_DEFAULT)
int makemenu(menu_item menu[], int menuamount); int makemenu(menu_item menu[], int menuamount);
int message(char* message, u32 color); int message(u32 color, const char* message, ...);
void clearscreen(); void clearscreen();
int makefilemenu(fs_entry *files, int amount, char *path); int makefilemenu(fs_entry *files, int amount, char *path);
void printbytes(u8 print[], u32 size, u32 offset); void printbytes(u8 print[], u32 size, u32 offset);
int makewaitmenu(char *initialmessage, char *hiddenmessage, int timer); int makewaitmenu(char *initialmessage, char *hiddenmessage, int timer);
void gfx_print_length(int size, char *toprint);

View File

@@ -86,7 +86,7 @@ void te_main(){
int res; int res;
if (dump_biskeys() == -1){ if (dump_biskeys() == -1){
message("Biskeys failed to dump!\nEmmc will not be mounted!", COLOR_RED); message(COLOR_RED, "Biskeys failed to dump!\nEmmc will not be mounted!");
mainmenu[1].property = -1; mainmenu[1].property = -1;
mainmenu[2].property = -1; mainmenu[2].property = -1;
mainmenu[3].property = -1; mainmenu[3].property = -1;
@@ -110,7 +110,7 @@ void te_main(){
fileexplorer("emmc:/"); fileexplorer("emmc:/");
} }
else else
message("EMMC failed to mount!", COLOR_RED); message(COLOR_RED, "EMMC failed to mount!");
} }
break; break;
@@ -153,7 +153,7 @@ void te_main(){
break; break;
case CREDITS: case CREDITS:
message(CREDITS_MESSAGE, COLOR_WHITE); message(COLOR_WHITE, CREDITS_MESSAGE);
break; break;
case EXIT: case EXIT:

View File

@@ -122,7 +122,7 @@ int dumpfirmware(){
else else
sprintf(syspath, "%s/%s", path, fno.fname); sprintf(syspath, "%s/%s", path, fno.fname);
ret = copy(syspath, sdpath, false); ret = copy(syspath, sdpath, false, false);
gfx_printf("%d %s\r", ++amount, fno.fname); gfx_printf("%d %s\r", ++amount, fno.fname);