2016-08-06 06:59:41 +00:00
|
|
|
/*
|
|
|
|
VitaShell
|
2017-01-12 16:45:52 +00:00
|
|
|
Copyright (C) 2015-2017, TheFloW
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "main.h"
|
2017-02-13 20:07:09 +00:00
|
|
|
#include "init.h"
|
2016-08-06 06:59:41 +00:00
|
|
|
#include "archive.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "utils.h"
|
2016-09-06 23:52:33 +00:00
|
|
|
#include "sha1.h"
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
static char *devices[] = {
|
2016-08-06 06:59:41 +00:00
|
|
|
"gro0:",
|
|
|
|
"grw0:",
|
|
|
|
"os0:",
|
|
|
|
"pd0:",
|
|
|
|
"sa0:",
|
|
|
|
"tm0:",
|
|
|
|
"ud0:",
|
2017-02-13 10:06:23 +00:00
|
|
|
"uma0:",
|
2016-08-06 06:59:41 +00:00
|
|
|
"ur0:",
|
|
|
|
"ux0:",
|
|
|
|
"vd0:",
|
|
|
|
"vs0:",
|
|
|
|
};
|
|
|
|
|
2017-02-26 21:02:29 +00:00
|
|
|
#define N_DEVICES (sizeof(devices) / sizeof(char **))
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int allocateReadFile(const char *file, void **buffer) {
|
2016-09-05 20:05:05 +00:00
|
|
|
SceUID fd = sceIoOpen(file, SCE_O_RDONLY, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
int size = sceIoLseek32(fd, 0, SCE_SEEK_END);
|
2016-09-14 09:33:52 +00:00
|
|
|
sceIoLseek32(fd, 0, SCE_SEEK_SET);
|
2016-09-05 20:05:05 +00:00
|
|
|
|
|
|
|
*buffer = malloc(size);
|
|
|
|
if (!*buffer) {
|
|
|
|
sceIoClose(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int read = sceIoRead(fd, *buffer, size);
|
|
|
|
sceIoClose(fd);
|
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int ReadFile(const char *file, void *buf, int size) {
|
2016-08-06 06:59:41 +00:00
|
|
|
SceUID fd = sceIoOpen(file, SCE_O_RDONLY, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
int read = sceIoRead(fd, buf, size);
|
|
|
|
|
|
|
|
sceIoClose(fd);
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int WriteFile(const char *file, const void *buf, int size) {
|
2016-08-06 06:59:41 +00:00
|
|
|
SceUID fd = sceIoOpen(file, SCE_O_WRONLY | SCE_O_CREAT | SCE_O_TRUNC, 0777);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
int written = sceIoWrite(fd, buf, size);
|
|
|
|
|
|
|
|
sceIoClose(fd);
|
|
|
|
return written;
|
|
|
|
}
|
|
|
|
|
2017-02-13 10:06:23 +00:00
|
|
|
int getFileSize(const char *file) {
|
2017-02-12 15:27:43 +00:00
|
|
|
SceUID fd = sceIoOpen(file, SCE_O_RDONLY, 0);
|
2016-08-08 21:31:41 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
2016-09-03 22:08:22 +00:00
|
|
|
|
|
|
|
int fileSize = sceIoLseek(fd, 0, SCE_SEEK_END);
|
2016-08-08 21:31:41 +00:00
|
|
|
|
2016-09-03 22:08:22 +00:00
|
|
|
sceIoClose(fd);
|
|
|
|
return fileSize;
|
2016-08-08 21:31:41 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 14:27:16 +00:00
|
|
|
int checkFileExist(const char *file) {
|
|
|
|
SceIoStat stat;
|
|
|
|
memset(&stat, 0, sizeof(SceIoStat));
|
|
|
|
|
|
|
|
return sceIoGetstat(file, &stat) >= 0;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int getFileSha1(const char *file, uint8_t *pSha1Out, FileProcessParam *param) {
|
2016-09-10 12:35:15 +00:00
|
|
|
// Set up SHA1 context
|
2016-09-06 23:52:33 +00:00
|
|
|
SHA1_CTX ctx;
|
|
|
|
sha1_init(&ctx);
|
|
|
|
|
2016-09-07 02:50:52 +00:00
|
|
|
// Open the file to read, else return the error
|
2017-02-12 15:27:43 +00:00
|
|
|
SceUID fd = sceIoOpen(file, SCE_O_RDONLY, 0);
|
2016-09-06 23:52:33 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
2016-09-07 02:50:52 +00:00
|
|
|
// Open up the buffer for copying data into
|
2016-09-06 23:52:33 +00:00
|
|
|
void *buf = malloc(TRANSFER_SIZE);
|
|
|
|
|
2016-09-07 02:50:52 +00:00
|
|
|
// Actually take the SHA1 sum
|
2016-09-12 18:36:07 +00:00
|
|
|
while (1) {
|
|
|
|
int read = sceIoRead(fd, buf, TRANSFER_SIZE);
|
|
|
|
|
|
|
|
if (read < 0) {
|
|
|
|
free(buf);
|
|
|
|
sceIoClose(fd);
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read == 0)
|
|
|
|
break;
|
|
|
|
|
2016-09-06 23:52:33 +00:00
|
|
|
sha1_update(&ctx, buf, read);
|
2016-09-07 02:50:52 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param) {
|
|
|
|
// Defined in io_process.c, check to make sure pointer isn't null before incrementing
|
|
|
|
if (param->value)
|
|
|
|
(*param->value)++; // Note: Max value is filesize/TRANSFER_SIZE
|
2016-09-06 23:52:33 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->SetProgress)
|
|
|
|
param->SetProgress(param->value ? *param->value : 0, param->max);
|
2016-09-06 23:52:33 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
// Check to see if param->cancelHandler exists, if so call it and free memory if cancelled
|
|
|
|
if (param->cancelHandler && param->cancelHandler()) {
|
|
|
|
free(buf);
|
|
|
|
sceIoClose(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-09-06 23:52:33 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
// This is CPU intensive so the progress bar won't refresh unless we sleep
|
|
|
|
// DIALOG_WAIT seemed too long for this application
|
|
|
|
// so I set it to 1/2 of a second every 8192 TRANSFER_SIZE blocks
|
|
|
|
if ((*param->value) % 8192 == 0)
|
|
|
|
sceKernelDelayThread(500000);
|
|
|
|
}
|
2016-09-06 23:52:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 02:50:52 +00:00
|
|
|
// Final iteration of SHA1 sum, dump final value into pSha1Out buffer
|
2016-09-06 23:52:33 +00:00
|
|
|
sha1_final(&ctx, pSha1Out);
|
|
|
|
|
2016-09-07 02:50:52 +00:00
|
|
|
// Free up file buffer
|
2016-09-06 23:52:33 +00:00
|
|
|
free(buf);
|
|
|
|
|
2016-09-07 02:50:52 +00:00
|
|
|
// Close file proper
|
2016-09-06 23:52:33 +00:00
|
|
|
sceIoClose(fd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int getPathInfo(const char *path, uint64_t *size, uint32_t *folders, uint32_t *files, int (* handler)(const char *path)) {
|
2016-08-06 06:59:41 +00:00
|
|
|
SceUID dfd = sceIoDopen(path);
|
|
|
|
if (dfd >= 0) {
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
SceIoDirent dir;
|
|
|
|
memset(&dir, 0, sizeof(SceIoDirent));
|
|
|
|
|
|
|
|
res = sceIoDread(dfd, &dir);
|
|
|
|
if (res > 0) {
|
|
|
|
char *new_path = malloc(strlen(path) + strlen(dir.d_name) + 2);
|
2016-09-06 19:57:04 +00:00
|
|
|
snprintf(new_path, MAX_PATH_LENGTH, "%s%s%s", path, hasEndSlash(path) ? "" : "/", dir.d_name);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-14 09:33:52 +00:00
|
|
|
if (handler && handler(new_path)) {
|
|
|
|
free(new_path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
if (SCE_S_ISDIR(dir.d_stat.st_mode)) {
|
2016-09-14 09:33:52 +00:00
|
|
|
int ret = getPathInfo(new_path, size, folders, files, handler);
|
2016-08-06 06:59:41 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
free(new_path);
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (size)
|
|
|
|
(*size) += dir.d_stat.st_size;
|
|
|
|
|
|
|
|
if (files)
|
|
|
|
(*files)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(new_path);
|
|
|
|
}
|
|
|
|
} while (res > 0);
|
|
|
|
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
|
|
|
|
if (folders)
|
|
|
|
(*folders)++;
|
|
|
|
} else {
|
2016-09-14 09:33:52 +00:00
|
|
|
if (handler && handler(path))
|
|
|
|
return 1;
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
if (size) {
|
|
|
|
SceIoStat stat;
|
|
|
|
memset(&stat, 0, sizeof(SceIoStat));
|
|
|
|
|
|
|
|
int res = sceIoGetstat(path, &stat);
|
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
(*size) += stat.st_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (files)
|
|
|
|
(*files)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int removePath(const char *path, FileProcessParam *param) {
|
2016-08-06 06:59:41 +00:00
|
|
|
SceUID dfd = sceIoDopen(path);
|
|
|
|
if (dfd >= 0) {
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
SceIoDirent dir;
|
|
|
|
memset(&dir, 0, sizeof(SceIoDirent));
|
|
|
|
|
|
|
|
res = sceIoDread(dfd, &dir);
|
|
|
|
if (res > 0) {
|
|
|
|
char *new_path = malloc(strlen(path) + strlen(dir.d_name) + 2);
|
2016-09-06 19:57:04 +00:00
|
|
|
snprintf(new_path, MAX_PATH_LENGTH, "%s%s%s", path, hasEndSlash(path) ? "" : "/", dir.d_name);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
if (SCE_S_ISDIR(dir.d_stat.st_mode)) {
|
2016-09-10 12:35:15 +00:00
|
|
|
int ret = removePath(new_path, param);
|
2016-08-06 06:59:41 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
free(new_path);
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int ret = sceIoRemove(new_path);
|
|
|
|
if (ret < 0) {
|
|
|
|
free(new_path);
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param) {
|
|
|
|
if (param->value)
|
|
|
|
(*param->value)++;
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->SetProgress)
|
|
|
|
param->SetProgress(param->value ? *param->value : 0, param->max);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->cancelHandler && param->cancelHandler()) {
|
|
|
|
free(new_path);
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(new_path);
|
|
|
|
}
|
|
|
|
} while (res > 0);
|
|
|
|
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
|
|
|
|
int ret = sceIoRmdir(path);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param) {
|
|
|
|
if (param->value)
|
|
|
|
(*param->value)++;
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->SetProgress)
|
|
|
|
param->SetProgress(param->value ? *param->value : 0, param->max);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->cancelHandler && param->cancelHandler()) {
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int ret = sceIoRemove(path);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param) {
|
|
|
|
if (param->value)
|
|
|
|
(*param->value)++;
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->SetProgress)
|
|
|
|
param->SetProgress(param->value ? *param->value : 0, param->max);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->cancelHandler && param->cancelHandler()) {
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int copyFile(const char *src_path, const char *dst_path, FileProcessParam *param) {
|
2016-08-06 06:59:41 +00:00
|
|
|
// The source and destination paths are identical
|
2016-09-07 18:39:33 +00:00
|
|
|
if (strcasecmp(src_path, dst_path) == 0) {
|
2016-08-06 06:59:41 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The destination is a subfolder of the source folder
|
|
|
|
int len = strlen(src_path);
|
2017-02-24 23:16:10 +00:00
|
|
|
if (strncasecmp(src_path, dst_path, len) == 0 && (dst_path[len] == '/' || dst_path[len-1] == '/')) {
|
2016-09-06 19:19:21 +00:00
|
|
|
return -2;
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SceUID fdsrc = sceIoOpen(src_path, SCE_O_RDONLY, 0);
|
|
|
|
if (fdsrc < 0)
|
|
|
|
return fdsrc;
|
|
|
|
|
|
|
|
SceUID fddst = sceIoOpen(dst_path, SCE_O_WRONLY | SCE_O_CREAT | SCE_O_TRUNC, 0777);
|
|
|
|
if (fddst < 0) {
|
|
|
|
sceIoClose(fdsrc);
|
|
|
|
return fddst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *buf = malloc(TRANSFER_SIZE);
|
|
|
|
|
2016-09-12 18:36:07 +00:00
|
|
|
while (1) {
|
|
|
|
int read = sceIoRead(fdsrc, buf, TRANSFER_SIZE);
|
|
|
|
|
|
|
|
if (read < 0) {
|
2016-08-21 12:30:40 +00:00
|
|
|
free(buf);
|
|
|
|
|
|
|
|
sceIoClose(fddst);
|
|
|
|
sceIoClose(fdsrc);
|
|
|
|
|
2017-03-05 17:31:21 +00:00
|
|
|
sceIoRemove(dst_path);
|
|
|
|
|
2016-09-12 18:36:07 +00:00
|
|
|
return read;
|
2016-08-21 12:30:40 +00:00
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-12 18:36:07 +00:00
|
|
|
if (read == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
int written = sceIoWrite(fddst, buf, read);
|
|
|
|
|
2016-10-15 14:49:06 +00:00
|
|
|
if (written < 0) {
|
2016-09-12 18:36:07 +00:00
|
|
|
free(buf);
|
|
|
|
|
|
|
|
sceIoClose(fddst);
|
|
|
|
sceIoClose(fdsrc);
|
|
|
|
|
2017-03-05 17:31:21 +00:00
|
|
|
sceIoRemove(dst_path);
|
|
|
|
|
2016-10-15 14:49:06 +00:00
|
|
|
return written;
|
2016-09-12 18:36:07 +00:00
|
|
|
}
|
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param) {
|
|
|
|
if (param->value)
|
|
|
|
(*param->value) += read;
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->SetProgress)
|
|
|
|
param->SetProgress(param->value ? *param->value : 0, param->max);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->cancelHandler && param->cancelHandler()) {
|
|
|
|
free(buf);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
sceIoClose(fddst);
|
|
|
|
sceIoClose(fdsrc);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2017-03-05 17:31:21 +00:00
|
|
|
sceIoRemove(dst_path);
|
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
|
2017-03-05 17:31:21 +00:00
|
|
|
// Inherit file stat
|
|
|
|
SceIoStat stat;
|
|
|
|
memset(&stat, 0, sizeof(SceIoStat));
|
|
|
|
sceIoGetstatByFd(fdsrc, &stat);
|
|
|
|
sceIoChstatByFd(fddst, &stat, 0x3B);
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
sceIoClose(fddst);
|
|
|
|
sceIoClose(fdsrc);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int copyPath(const char *src_path, const char *dst_path, FileProcessParam *param) {
|
2016-08-06 06:59:41 +00:00
|
|
|
// The source and destination paths are identical
|
2016-09-07 18:39:33 +00:00
|
|
|
if (strcasecmp(src_path, dst_path) == 0) {
|
2016-08-06 06:59:41 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The destination is a subfolder of the source folder
|
|
|
|
int len = strlen(src_path);
|
2017-02-24 23:16:10 +00:00
|
|
|
if (strncasecmp(src_path, dst_path, len) == 0 && (dst_path[len] == '/' || dst_path[len-1] == '/')) {
|
2016-09-06 19:19:21 +00:00
|
|
|
return -2;
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SceUID dfd = sceIoDopen(src_path);
|
|
|
|
if (dfd >= 0) {
|
2017-03-05 17:31:21 +00:00
|
|
|
SceIoStat stat;
|
|
|
|
memset(&stat, 0, sizeof(SceIoStat));
|
|
|
|
sceIoGetstatByFd(dfd, &stat);
|
|
|
|
|
|
|
|
int ret = sceIoMkdir(dst_path, stat.st_mode & 0xFFF);
|
2016-08-06 06:59:41 +00:00
|
|
|
if (ret < 0 && ret != SCE_ERROR_ERRNO_EEXIST) {
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param) {
|
|
|
|
if (param->value)
|
2016-10-25 08:43:10 +00:00
|
|
|
(*param->value) += DIRECTORY_SIZE;
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->SetProgress)
|
|
|
|
param->SetProgress(param->value ? *param->value : 0, param->max);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-09-10 12:35:15 +00:00
|
|
|
if (param->cancelHandler && param->cancelHandler()) {
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
SceIoDirent dir;
|
|
|
|
memset(&dir, 0, sizeof(SceIoDirent));
|
|
|
|
|
|
|
|
res = sceIoDread(dfd, &dir);
|
|
|
|
if (res > 0) {
|
|
|
|
char *new_src_path = malloc(strlen(src_path) + strlen(dir.d_name) + 2);
|
2016-09-06 19:57:04 +00:00
|
|
|
snprintf(new_src_path, MAX_PATH_LENGTH, "%s%s%s", src_path, hasEndSlash(src_path) ? "" : "/", dir.d_name);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
char *new_dst_path = malloc(strlen(dst_path) + strlen(dir.d_name) + 2);
|
2016-09-06 19:57:04 +00:00
|
|
|
snprintf(new_dst_path, MAX_PATH_LENGTH, "%s%s%s", dst_path, hasEndSlash(dst_path) ? "" : "/", dir.d_name);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (SCE_S_ISDIR(dir.d_stat.st_mode)) {
|
2016-09-10 12:35:15 +00:00
|
|
|
ret = copyPath(new_src_path, new_dst_path, param);
|
2016-08-06 06:59:41 +00:00
|
|
|
} else {
|
2016-09-10 12:35:15 +00:00
|
|
|
ret = copyFile(new_src_path, new_dst_path, param);
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(new_dst_path);
|
|
|
|
free(new_src_path);
|
|
|
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (res > 0);
|
|
|
|
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
} else {
|
2016-09-10 12:35:15 +00:00
|
|
|
return copyFile(src_path, dst_path, param);
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int movePath(const char *src_path, const char *dst_path, int flags, FileProcessParam *param) {
|
2016-09-06 19:19:21 +00:00
|
|
|
// The source and destination paths are identical
|
2016-09-07 18:39:33 +00:00
|
|
|
if (strcasecmp(src_path, dst_path) == 0) {
|
2016-09-06 19:19:21 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The destination is a subfolder of the source folder
|
|
|
|
int len = strlen(src_path);
|
2017-02-25 12:39:30 +00:00
|
|
|
if (strncasecmp(src_path, dst_path, len) == 0 && (dst_path[len] == '/' || dst_path[len-1] == '/')) {
|
2016-09-06 19:19:21 +00:00
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
int res = sceIoRename(src_path, dst_path);
|
2016-10-27 17:48:05 +00:00
|
|
|
|
2017-03-05 17:31:21 +00:00
|
|
|
if (res == SCE_ERROR_ERRNO_EEXIST && flags & (MOVE_INTEGRATE | MOVE_REPLACE)) {
|
2016-09-06 19:19:21 +00:00
|
|
|
// Src stat
|
|
|
|
SceIoStat src_stat;
|
|
|
|
memset(&src_stat, 0, sizeof(SceIoStat));
|
|
|
|
res = sceIoGetstat(src_path, &src_stat);
|
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
// Dst stat
|
|
|
|
SceIoStat dst_stat;
|
|
|
|
memset(&dst_stat, 0, sizeof(SceIoStat));
|
|
|
|
res = sceIoGetstat(dst_path, &dst_stat);
|
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
// Is dir
|
|
|
|
int src_is_dir = SCE_S_ISDIR(src_stat.st_mode);
|
|
|
|
int dst_is_dir = SCE_S_ISDIR(dst_stat.st_mode);
|
|
|
|
|
|
|
|
// One of them is a file and the other a directory, no replacement or integration possible
|
|
|
|
if (src_is_dir != dst_is_dir)
|
|
|
|
return -3;
|
|
|
|
|
|
|
|
// Replace file
|
|
|
|
if (!src_is_dir && !dst_is_dir && flags & MOVE_REPLACE) {
|
|
|
|
sceIoRemove(dst_path);
|
|
|
|
|
|
|
|
res = sceIoRename(src_path, dst_path);
|
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Integrate directory
|
|
|
|
if (src_is_dir && dst_is_dir && flags & MOVE_INTEGRATE) {
|
|
|
|
SceUID dfd = sceIoDopen(src_path);
|
|
|
|
if (dfd < 0)
|
|
|
|
return dfd;
|
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
SceIoDirent dir;
|
|
|
|
memset(&dir, 0, sizeof(SceIoDirent));
|
|
|
|
|
|
|
|
res = sceIoDread(dfd, &dir);
|
|
|
|
if (res > 0) {
|
|
|
|
char *new_src_path = malloc(strlen(src_path) + strlen(dir.d_name) + 2);
|
2016-09-06 19:57:04 +00:00
|
|
|
snprintf(new_src_path, MAX_PATH_LENGTH, "%s%s%s", src_path, hasEndSlash(src_path) ? "" : "/", dir.d_name);
|
2016-09-06 19:19:21 +00:00
|
|
|
|
|
|
|
char *new_dst_path = malloc(strlen(dst_path) + strlen(dir.d_name) + 2);
|
2016-09-06 19:57:04 +00:00
|
|
|
snprintf(new_dst_path, MAX_PATH_LENGTH, "%s%s%s", dst_path, hasEndSlash(dst_path) ? "" : "/", dir.d_name);
|
2016-09-06 19:19:21 +00:00
|
|
|
|
|
|
|
// Recursive move
|
2016-09-10 12:35:15 +00:00
|
|
|
int ret = movePath(new_src_path, new_dst_path, flags, param);
|
2016-09-06 19:19:21 +00:00
|
|
|
|
|
|
|
free(new_dst_path);
|
|
|
|
free(new_src_path);
|
|
|
|
|
|
|
|
if (ret <= 0) {
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (res > 0);
|
|
|
|
|
|
|
|
sceIoDclose(dfd);
|
2016-09-12 18:36:07 +00:00
|
|
|
|
2016-09-06 19:19:21 +00:00
|
|
|
// Integrated, now remove this directory
|
|
|
|
sceIoRmdir(src_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
typedef struct {
|
|
|
|
char *extension;
|
|
|
|
int type;
|
|
|
|
} ExtensionType;
|
|
|
|
|
|
|
|
static ExtensionType extension_types[] = {
|
2017-01-04 19:08:04 +00:00
|
|
|
{ ".PSP2DMP", FILE_TYPE_PSP2DMP },
|
|
|
|
{ ".TMP", FILE_TYPE_PSP2DMP },
|
2016-08-06 06:59:41 +00:00
|
|
|
{ ".BMP", FILE_TYPE_BMP },
|
2016-09-04 10:55:15 +00:00
|
|
|
{ ".INI", FILE_TYPE_INI },
|
2016-08-06 06:59:41 +00:00
|
|
|
{ ".JPG", FILE_TYPE_JPEG },
|
|
|
|
{ ".JPEG", FILE_TYPE_JPEG },
|
2016-08-08 21:31:41 +00:00
|
|
|
{ ".MP3", FILE_TYPE_MP3 },
|
2016-09-12 13:49:51 +00:00
|
|
|
{ ".OGG", FILE_TYPE_OGG },
|
2016-09-04 10:55:15 +00:00
|
|
|
{ ".PNG", FILE_TYPE_PNG },
|
2017-01-04 19:08:04 +00:00
|
|
|
{ ".RAR", FILE_TYPE_RAR },
|
2016-09-01 16:20:47 +00:00
|
|
|
{ ".SFO", FILE_TYPE_SFO },
|
2016-09-04 10:55:15 +00:00
|
|
|
{ ".TXT", FILE_TYPE_TXT },
|
2016-08-06 06:59:41 +00:00
|
|
|
{ ".VPK", FILE_TYPE_VPK },
|
2016-09-04 10:55:15 +00:00
|
|
|
{ ".XML", FILE_TYPE_XML },
|
2016-08-06 06:59:41 +00:00
|
|
|
{ ".ZIP", FILE_TYPE_ZIP },
|
|
|
|
};
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int getFileType(const char *file) {
|
2016-08-06 06:59:41 +00:00
|
|
|
char *p = strrchr(file, '.');
|
|
|
|
if (p) {
|
|
|
|
int i;
|
2017-02-26 21:02:29 +00:00
|
|
|
for (i = 0; i < (sizeof(extension_types) / sizeof(ExtensionType)); i++) {
|
2016-08-06 06:59:41 +00:00
|
|
|
if (strcasecmp(p, extension_types[i].extension) == 0) {
|
|
|
|
return extension_types[i].type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FILE_TYPE_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
int getNumberOfDevices() {
|
|
|
|
return N_DEVICES;
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
char **getDevices() {
|
|
|
|
return devices;
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
FileListEntry *fileListFindEntry(FileList *list, const char *name) {
|
2016-08-06 06:59:41 +00:00
|
|
|
FileListEntry *entry = list->head;
|
|
|
|
|
2016-08-23 12:50:39 +00:00
|
|
|
int name_length = strlen(name);
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
while (entry) {
|
2016-09-07 18:39:33 +00:00
|
|
|
if (entry->name_length == name_length && strcasecmp(entry->name, name) == 0)
|
2016-08-06 06:59:41 +00:00
|
|
|
return entry;
|
|
|
|
|
|
|
|
entry = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileListEntry *fileListGetNthEntry(FileList *list, int n) {
|
|
|
|
FileListEntry *entry = list->head;
|
|
|
|
|
|
|
|
while (n > 0 && entry) {
|
|
|
|
n--;
|
|
|
|
entry = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n != 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int fileListGetNumberByName(FileList *list, const char *name) {
|
2016-09-04 13:30:39 +00:00
|
|
|
FileListEntry *entry = list->head;
|
|
|
|
|
|
|
|
int name_length = strlen(name);
|
|
|
|
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
while (entry) {
|
2016-09-07 18:39:33 +00:00
|
|
|
if (entry->name_length == name_length && strcasecmp(entry->name, name) == 0)
|
2016-09-04 13:30:39 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
n++;
|
|
|
|
entry = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
void fileListAddEntry(FileList *list, FileListEntry *entry, int sort) {
|
|
|
|
entry->next = NULL;
|
|
|
|
entry->previous = NULL;
|
|
|
|
|
|
|
|
if (list->head == NULL) {
|
|
|
|
list->head = entry;
|
|
|
|
list->tail = entry;
|
|
|
|
} else {
|
|
|
|
if (sort != SORT_NONE) {
|
|
|
|
FileListEntry *p = list->head;
|
|
|
|
FileListEntry *previous = NULL;
|
|
|
|
|
|
|
|
while (p) {
|
2016-10-30 19:00:06 +00:00
|
|
|
// Get the minimum length without /
|
|
|
|
int len = MIN(entry->name_length, p->name_length);
|
2017-02-25 12:39:30 +00:00
|
|
|
if (entry->name[len-1] == '/' || p->name[len-1] == '/')
|
2016-10-30 19:00:06 +00:00
|
|
|
len--;
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
// '..' is always at first
|
|
|
|
if (strcmp(entry->name, "..") == 0)
|
|
|
|
break;
|
|
|
|
|
2016-10-30 19:00:06 +00:00
|
|
|
if (strcmp(p->name, "..") == 0) {
|
|
|
|
previous = p;
|
|
|
|
p = p->next;
|
|
|
|
continue;
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-10-30 19:00:06 +00:00
|
|
|
// Sort by type
|
|
|
|
if (sort == SORT_BY_NAME) {
|
|
|
|
// First folders then files
|
|
|
|
if (entry->is_folder > p->is_folder)
|
|
|
|
break;
|
|
|
|
} else if (sort == SORT_BY_SIZE || sort == SORT_BY_DATE) {
|
|
|
|
// First files then folders
|
|
|
|
if (entry->is_folder < p->is_folder)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sort == SORT_BY_NAME) {
|
|
|
|
// Sort by name within the same type
|
2016-08-06 06:59:41 +00:00
|
|
|
if (entry->is_folder == p->is_folder) {
|
|
|
|
int diff = strncasecmp(entry->name, p->name, len);
|
2016-08-23 12:50:39 +00:00
|
|
|
if (diff < 0 || (diff == 0 && entry->name_length < p->name_length)) {
|
2016-08-06 06:59:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-10-30 19:00:06 +00:00
|
|
|
} else if (sort == SORT_BY_SIZE) {
|
|
|
|
// Sort by name for folders
|
|
|
|
if (entry->is_folder && p->is_folder) {
|
|
|
|
int diff = strncasecmp(entry->name, p->name, len);
|
|
|
|
if (diff < 0 || (diff == 0 && entry->name_length < p->name_length)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (!entry->is_folder && !p->is_folder) {
|
|
|
|
// Sort by size for files
|
|
|
|
if (entry->size > p->size)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Sort by name for files with the same size
|
|
|
|
if (entry->size == p->size) {
|
|
|
|
int diff = strncasecmp(entry->name, p->name, len);
|
|
|
|
if (diff < 0 || (diff == 0 && entry->name_length < p->name_length)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (sort == SORT_BY_DATE) {
|
|
|
|
if (entry->is_folder == p->is_folder) {
|
|
|
|
SceRtcTick entry_tick, p_tick;
|
|
|
|
sceRtcGetTick(&entry->mtime, &entry_tick);
|
|
|
|
sceRtcGetTick(&p->mtime, &p_tick);
|
|
|
|
|
|
|
|
// Sort by date within the same type
|
|
|
|
if (entry_tick.tick > p_tick.tick)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Sort by name for files and folders with the same date
|
|
|
|
if (entry_tick.tick == p_tick.tick) {
|
|
|
|
int diff = strncasecmp(entry->name, p->name, len);
|
|
|
|
if (diff < 0 || (diff == 0 && entry->name_length < p->name_length)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
previous = p;
|
|
|
|
p = p->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (previous == NULL) { // Order: entry (new head) -> p (old head)
|
|
|
|
entry->next = p;
|
|
|
|
p->previous = entry;
|
|
|
|
list->head = entry;
|
|
|
|
} else if (previous->next == NULL) { // Order: p (old tail) -> entry (new tail)
|
|
|
|
FileListEntry *tail = list->tail;
|
|
|
|
tail->next = entry;
|
|
|
|
entry->previous = tail;
|
|
|
|
list->tail = entry;
|
|
|
|
} else { // Order: previous -> entry -> p
|
|
|
|
previous->next = entry;
|
|
|
|
entry->previous = previous;
|
|
|
|
entry->next = p;
|
|
|
|
p->previous = entry;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
FileListEntry *tail = list->tail;
|
|
|
|
tail->next = entry;
|
2016-08-23 12:50:39 +00:00
|
|
|
entry->previous = tail;
|
2016-08-06 06:59:41 +00:00
|
|
|
list->tail = entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
list->length++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fileListRemoveEntry(FileList *list, FileListEntry *entry) {
|
|
|
|
if (entry) {
|
|
|
|
if (entry->previous) {
|
|
|
|
entry->previous->next = entry->next;
|
|
|
|
} else {
|
|
|
|
list->head = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->next) {
|
|
|
|
entry->next->previous = entry->previous;
|
|
|
|
} else {
|
|
|
|
list->tail = entry->previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
list->length--;
|
|
|
|
free(entry);
|
|
|
|
|
2016-09-14 12:30:30 +00:00
|
|
|
if (list->length == 0) {
|
|
|
|
list->head = NULL;
|
|
|
|
list->tail = NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int fileListRemoveEntryByName(FileList *list, const char *name) {
|
2016-08-06 06:59:41 +00:00
|
|
|
FileListEntry *entry = list->head;
|
|
|
|
FileListEntry *previous = NULL;
|
|
|
|
|
2016-08-23 12:50:39 +00:00
|
|
|
int name_length = strlen(name);
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
while (entry) {
|
2016-09-07 18:39:33 +00:00
|
|
|
if (entry->name_length == name_length && strcasecmp(entry->name, name) == 0) {
|
2016-08-06 06:59:41 +00:00
|
|
|
if (previous) {
|
|
|
|
previous->next = entry->next;
|
|
|
|
} else {
|
|
|
|
list->head = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list->tail == entry) {
|
|
|
|
list->tail = previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
list->length--;
|
|
|
|
free(entry);
|
|
|
|
|
2016-09-14 12:30:30 +00:00
|
|
|
if (list->length == 0) {
|
|
|
|
list->head = NULL;
|
|
|
|
list->tail = NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
previous = entry;
|
|
|
|
entry = entry->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fileListEmpty(FileList *list) {
|
|
|
|
FileListEntry *entry = list->head;
|
|
|
|
|
|
|
|
while (entry) {
|
|
|
|
FileListEntry *next = entry->next;
|
|
|
|
free(entry);
|
|
|
|
entry = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
list->head = NULL;
|
|
|
|
list->tail = NULL;
|
|
|
|
list->length = 0;
|
|
|
|
list->files = 0;
|
|
|
|
list->folders = 0;
|
|
|
|
}
|
|
|
|
|
2016-11-01 15:34:15 +00:00
|
|
|
int fileListGetDeviceEntries(FileList *list) {
|
2016-08-06 06:59:41 +00:00
|
|
|
int i;
|
2016-11-01 15:34:15 +00:00
|
|
|
for (i = 0; i < N_DEVICES; i++) {
|
|
|
|
if (devices[i]) {
|
2016-12-11 21:30:07 +00:00
|
|
|
if (is_safe_mode && strcmp(devices[i], "ux0:") != 0)
|
2016-11-01 15:49:27 +00:00
|
|
|
continue;
|
2016-11-01 15:34:15 +00:00
|
|
|
|
2016-08-06 06:59:41 +00:00
|
|
|
SceIoStat stat;
|
|
|
|
memset(&stat, 0, sizeof(SceIoStat));
|
2016-11-01 15:34:15 +00:00
|
|
|
if (sceIoGetstat(devices[i], &stat) >= 0) {
|
2016-08-06 06:59:41 +00:00
|
|
|
FileListEntry *entry = malloc(sizeof(FileListEntry));
|
2016-11-01 15:34:15 +00:00
|
|
|
strcpy(entry->name, devices[i]);
|
2016-08-23 12:50:39 +00:00
|
|
|
entry->name_length = strlen(entry->name);
|
2016-08-06 06:59:41 +00:00
|
|
|
entry->is_folder = 1;
|
|
|
|
entry->type = FILE_TYPE_UNKNOWN;
|
|
|
|
|
2016-09-23 14:13:41 +00:00
|
|
|
SceIoDevInfo info;
|
|
|
|
memset(&info, 0, sizeof(SceIoDevInfo));
|
2016-11-05 23:29:27 +00:00
|
|
|
int res = sceIoDevctl(entry->name, 0x3001, NULL, 0, &info, sizeof(SceIoDevInfo));
|
2016-09-23 14:13:41 +00:00
|
|
|
if (res >= 0) {
|
|
|
|
entry->size = info.free_size;
|
|
|
|
entry->size2 = info.max_size;
|
|
|
|
} else {
|
2016-11-01 15:34:15 +00:00
|
|
|
if (strcmp(devices[i], "ux0:") == 0) {
|
|
|
|
sceAppMgrGetDevInfo("ux0:", (uint64_t *)&entry->size2, (uint64_t *)&entry->size);
|
|
|
|
} else {
|
|
|
|
entry->size = 0;
|
|
|
|
entry->size2 = 0;
|
|
|
|
}
|
2016-09-23 14:13:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-30 11:57:36 +00:00
|
|
|
memcpy(&entry->ctime, (SceDateTime *)&stat.st_ctime, sizeof(SceDateTime));
|
|
|
|
memcpy(&entry->mtime, (SceDateTime *)&stat.st_mtime, sizeof(SceDateTime));
|
|
|
|
memcpy(&entry->atime, (SceDateTime *)&stat.st_atime, sizeof(SceDateTime));
|
2016-08-06 06:59:41 +00:00
|
|
|
|
2016-10-30 19:00:06 +00:00
|
|
|
fileListAddEntry(list, entry, SORT_BY_NAME);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
list->folders++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int fileListGetDirectoryEntries(FileList *list, const char *path, int sort) {
|
2016-08-06 06:59:41 +00:00
|
|
|
SceUID dfd = sceIoDopen(path);
|
|
|
|
if (dfd < 0)
|
|
|
|
return dfd;
|
|
|
|
|
|
|
|
FileListEntry *entry = malloc(sizeof(FileListEntry));
|
|
|
|
strcpy(entry->name, DIR_UP);
|
2016-08-23 12:50:39 +00:00
|
|
|
entry->name_length = strlen(entry->name);
|
2016-08-06 06:59:41 +00:00
|
|
|
entry->is_folder = 1;
|
|
|
|
entry->type = FILE_TYPE_UNKNOWN;
|
2016-10-30 19:00:06 +00:00
|
|
|
fileListAddEntry(list, entry, sort);
|
2016-08-06 06:59:41 +00:00
|
|
|
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
SceIoDirent dir;
|
|
|
|
memset(&dir, 0, sizeof(SceIoDirent));
|
|
|
|
|
|
|
|
res = sceIoDread(dfd, &dir);
|
|
|
|
if (res > 0) {
|
|
|
|
FileListEntry *entry = malloc(sizeof(FileListEntry));
|
|
|
|
|
|
|
|
strcpy(entry->name, dir.d_name);
|
|
|
|
|
|
|
|
entry->is_folder = SCE_S_ISDIR(dir.d_stat.st_mode);
|
|
|
|
if (entry->is_folder) {
|
|
|
|
addEndSlash(entry->name);
|
|
|
|
entry->type = FILE_TYPE_UNKNOWN;
|
|
|
|
list->folders++;
|
|
|
|
} else {
|
|
|
|
entry->type = getFileType(entry->name);
|
|
|
|
list->files++;
|
|
|
|
}
|
|
|
|
|
2016-08-23 12:50:39 +00:00
|
|
|
entry->name_length = strlen(entry->name);
|
2016-08-06 06:59:41 +00:00
|
|
|
entry->size = dir.d_stat.st_size;
|
|
|
|
|
2016-10-30 11:57:36 +00:00
|
|
|
memcpy(&entry->ctime, (SceDateTime *)&dir.d_stat.st_ctime, sizeof(SceDateTime));
|
|
|
|
memcpy(&entry->mtime, (SceDateTime *)&dir.d_stat.st_mtime, sizeof(SceDateTime));
|
|
|
|
memcpy(&entry->atime, (SceDateTime *)&dir.d_stat.st_atime, sizeof(SceDateTime));
|
2016-08-23 12:50:39 +00:00
|
|
|
|
2016-10-30 19:00:06 +00:00
|
|
|
fileListAddEntry(list, entry, sort);
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
} while (res > 0);
|
|
|
|
|
|
|
|
sceIoDclose(dfd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:27:43 +00:00
|
|
|
int fileListGetEntries(FileList *list, const char *path, int sort) {
|
2016-08-06 06:59:41 +00:00
|
|
|
if (isInArchive()) {
|
2017-01-04 14:58:55 +00:00
|
|
|
enum FileTypes type = getArchiveType();
|
|
|
|
if(type == FILE_TYPE_ZIP)
|
|
|
|
return fileListGetArchiveEntries(list, path, sort);
|
|
|
|
else if(type == FILE_TYPE_RAR)
|
|
|
|
return fileListGetRARArchiveEntries(list,path,sort);
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:39:33 +00:00
|
|
|
if (strcasecmp(path, HOME_PATH) == 0) {
|
2016-11-01 15:34:15 +00:00
|
|
|
return fileListGetDeviceEntries(list);
|
2016-08-06 06:59:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-30 19:00:06 +00:00
|
|
|
return fileListGetDirectoryEntries(list, path, sort);
|
2016-08-08 21:31:41 +00:00
|
|
|
}
|