VitaShell/file.h

121 lines
3.1 KiB
C
Raw Normal View History

2016-08-06 06:59:41 +00:00
/*
VitaShell
Copyright (C) 2015-2016, TheFloW
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/>.
*/
#ifndef __FILE_H__
#define __FILE_H__
#define MAX_PATH_LENGTH 1024
#define MAX_NAME_LENGTH 256
#define MAX_SHORT_NAME_LENGTH 64
#define MAX_MOUNT_POINT_LENGTH 16
2016-10-25 08:43:10 +00:00
#define DIRECTORY_SIZE (4 * 1024)
#define TRANSFER_SIZE (64 * 1024)
2016-08-06 06:59:41 +00:00
#define HOME_PATH "home"
#define DIR_UP ".."
enum FileTypes {
FILE_TYPE_UNKNOWN,
FILE_TYPE_BMP,
2016-09-04 10:55:15 +00:00
FILE_TYPE_INI,
2016-08-06 06:59:41 +00:00
FILE_TYPE_JPEG,
2016-08-08 21:31:41 +00:00
FILE_TYPE_MP3,
FILE_TYPE_OGG,
2016-09-04 10:55:15 +00:00
FILE_TYPE_PNG,
2016-09-01 16:20:47 +00:00
FILE_TYPE_SFO,
2016-09-04 10:55:15 +00:00
FILE_TYPE_TXT,
2016-08-06 06:59:41 +00:00
FILE_TYPE_VPK,
2016-09-04 10:55:15 +00:00
FILE_TYPE_XML,
2016-08-06 06:59:41 +00:00
FILE_TYPE_ZIP,
};
2016-09-10 12:35:15 +00:00
enum FileSortFlags {
2016-08-06 06:59:41 +00:00
SORT_NONE,
2016-10-30 19:00:06 +00:00
SORT_BY_NAME,
SORT_BY_SIZE,
SORT_BY_DATE,
2016-08-06 06:59:41 +00:00
};
2016-09-10 12:35:15 +00:00
enum FileMoveFlags {
2016-09-06 19:19:21 +00:00
MOVE_INTEGRATE = 0x1, // Integrate directories
MOVE_REPLACE = 0x2, // Replace files
};
2016-09-10 12:35:15 +00:00
typedef struct {
uint64_t *value;
uint64_t max;
void (* SetProgress)(uint64_t value, uint64_t max);
int (* cancelHandler)();
} FileProcessParam;
2016-08-06 06:59:41 +00:00
typedef struct FileListEntry {
struct FileListEntry *next;
struct FileListEntry *previous;
char name[MAX_NAME_LENGTH];
int name_length;
2016-08-06 06:59:41 +00:00
int is_folder;
int type;
SceOff size;
SceOff size2;
2016-10-30 11:57:36 +00:00
SceDateTime ctime;
SceDateTime mtime;
SceDateTime atime;
int reserved[16];
2016-08-06 06:59:41 +00:00
} FileListEntry;
typedef struct {
FileListEntry *head;
FileListEntry *tail;
int length;
char path[MAX_PATH_LENGTH];
int files;
int folders;
} FileList;
2016-09-05 20:05:05 +00:00
int allocateReadFile(char *file, void **buffer);
2016-08-06 06:59:41 +00:00
int ReadFile(char *file, void *buf, int size);
int WriteFile(char *file, void *buf, int size);
2016-08-08 21:31:41 +00:00
int getFileSize(char *pInputFileName);
2016-09-10 12:35:15 +00:00
int getFileSha1(char *pInputFileName, uint8_t *pSha1Out, FileProcessParam *param);
2016-09-14 09:33:52 +00:00
int getPathInfo(char *path, uint64_t *size, uint32_t *folders, uint32_t *files, int (* handler)(char *path));
2016-09-10 12:35:15 +00:00
int removePath(char *path, FileProcessParam *param);
int copyFile(char *src_path, char *dst_path, FileProcessParam *param);
int copyPath(char *src_path, char *dst_path, FileProcessParam *param);
int movePath(char *src_path, char *dst_path, int flags, FileProcessParam *param);
2016-08-06 06:59:41 +00:00
int getFileType(char *file);
int getNumberMountPoints();
char **getMountPoints();
FileListEntry *fileListFindEntry(FileList *list, char *name);
FileListEntry *fileListGetNthEntry(FileList *list, int n);
int fileListGetNumberByName(FileList *list, char *name);
2016-08-06 06:59:41 +00:00
void fileListAddEntry(FileList *list, FileListEntry *entry, int sort);
int fileListRemoveEntry(FileList *list, FileListEntry *entry);
int fileListRemoveEntryByName(FileList *list, char *name);
2016-08-06 06:59:41 +00:00
void fileListEmpty(FileList *list);
2016-10-30 19:00:06 +00:00
int fileListGetEntries(FileList *list, char *path, int sort);
2016-08-06 06:59:41 +00:00
2016-08-08 21:31:41 +00:00
#endif