WUMSLoader/source/fs/CFile.cpp

174 lines
3.6 KiB
C++
Raw Normal View History

2020-04-28 14:43:07 +02:00
2022-02-04 21:44:03 +01:00
#include <fs/CFile.hpp>
2020-04-28 14:43:07 +02:00
#include <stdarg.h>
#include <stdio.h>
2022-02-04 21:44:03 +01:00
#include <stdlib.h>
2020-04-28 14:43:07 +02:00
#include <strings.h>
CFile::CFile() {
2022-02-04 21:44:03 +01:00
iFd = -1;
2020-04-28 14:43:07 +02:00
mem_file = NULL;
filesize = 0;
2022-02-04 21:44:03 +01:00
pos = 0;
2020-04-28 14:43:07 +02:00
}
2020-05-17 19:05:51 +02:00
CFile::CFile(const std::string &filepath, eOpenTypes mode) {
2020-04-28 14:43:07 +02:00
iFd = -1;
this->open(filepath, mode);
}
2020-05-17 19:05:51 +02:00
CFile::CFile(const uint8_t *mem, int32_t size) {
2020-04-28 14:43:07 +02:00
iFd = -1;
this->open(mem, size);
}
CFile::~CFile() {
this->close();
}
2020-05-17 19:05:51 +02:00
int32_t CFile::open(const std::string &filepath, eOpenTypes mode) {
2020-04-28 14:43:07 +02:00
this->close();
int32_t openMode = 0;
// This depend on the devoptab implementation.
// see https://github.com/devkitPro/wut/blob/master/libraries/wutdevoptab/devoptab_fs_open.c#L21 fpr reference
2020-05-17 19:05:51 +02:00
switch (mode) {
default:
2022-02-04 21:44:03 +01:00
case ReadOnly: // file must exist
2020-05-17 19:05:51 +02:00
openMode = O_RDONLY;
break;
case WriteOnly: // file will be created / zerod
openMode = O_TRUNC | O_CREAT | O_WRONLY;
break;
case ReadWrite: // file must exist
openMode = O_RDWR;
break;
case Append: // append to file, file will be created if missing. write only
openMode = O_CREAT | O_APPEND | O_WRONLY;
break;
2020-04-28 14:43:07 +02:00
}
//! Using fopen works only on the first launch as expected
//! on the second launch it causes issues because we don't overwrite
//! the .data sections which is needed for a normal application to re-init
//! this will be added with launching as RPX
iFd = ::open(filepath.c_str(), openMode);
2020-05-17 19:05:51 +02:00
if (iFd < 0)
2020-04-28 14:43:07 +02:00
return iFd;
filesize = ::lseek(iFd, 0, SEEK_END);
::lseek(iFd, 0, SEEK_SET);
return 0;
}
2020-05-17 19:05:51 +02:00
int32_t CFile::open(const uint8_t *mem, int32_t size) {
2020-04-28 14:43:07 +02:00
this->close();
mem_file = mem;
filesize = size;
return 0;
}
void CFile::close() {
2020-05-17 19:05:51 +02:00
if (iFd >= 0)
2020-04-28 14:43:07 +02:00
::close(iFd);
2022-02-04 21:44:03 +01:00
iFd = -1;
2020-04-28 14:43:07 +02:00
mem_file = NULL;
filesize = 0;
2022-02-04 21:44:03 +01:00
pos = 0;
2020-04-28 14:43:07 +02:00
}
2020-05-17 19:05:51 +02:00
int32_t CFile::read(uint8_t *ptr, size_t size) {
if (iFd >= 0) {
int32_t ret = ::read(iFd, ptr, size);
if (ret > 0)
2020-04-28 14:43:07 +02:00
pos += ret;
return ret;
}
int32_t readsize = size;
2020-05-17 19:05:51 +02:00
if (readsize > (int64_t) (filesize - pos))
readsize = filesize - pos;
2020-04-28 14:43:07 +02:00
2020-05-17 19:05:51 +02:00
if (readsize <= 0)
2020-04-28 14:43:07 +02:00
return readsize;
2020-05-17 19:05:51 +02:00
if (mem_file != NULL) {
memcpy(ptr, mem_file + pos, readsize);
2020-04-28 14:43:07 +02:00
pos += readsize;
return readsize;
}
return -1;
}
2020-05-17 19:05:51 +02:00
int32_t CFile::write(const uint8_t *ptr, size_t size) {
if (iFd >= 0) {
2020-04-28 14:43:07 +02:00
size_t done = 0;
2020-05-17 19:05:51 +02:00
while (done < size) {
2020-04-28 14:43:07 +02:00
int32_t ret = ::write(iFd, ptr, size - done);
2020-05-17 19:05:51 +02:00
if (ret <= 0)
2020-04-28 14:43:07 +02:00
return ret;
ptr += ret;
done += ret;
pos += ret;
}
return done;
}
return -1;
}
int32_t CFile::seek(long int offset, int32_t origin) {
2022-02-04 21:44:03 +01:00
int32_t ret = 0;
2020-04-28 14:43:07 +02:00
int64_t newPos = pos;
2020-05-17 19:05:51 +02:00
if (origin == SEEK_SET) {
2020-04-28 14:43:07 +02:00
newPos = offset;
2020-05-17 19:05:51 +02:00
} else if (origin == SEEK_CUR) {
2020-04-28 14:43:07 +02:00
newPos += offset;
2020-05-17 19:05:51 +02:00
} else if (origin == SEEK_END) {
newPos = filesize + offset;
2020-04-28 14:43:07 +02:00
}
2020-05-17 19:05:51 +02:00
if (newPos < 0) {
2020-04-28 14:43:07 +02:00
pos = 0;
} else {
pos = newPos;
}
2020-05-17 19:05:51 +02:00
if (iFd >= 0)
2020-04-28 14:43:07 +02:00
ret = ::lseek(iFd, pos, SEEK_SET);
2020-05-17 19:05:51 +02:00
if (mem_file != NULL) {
if (pos > filesize) {
2020-04-28 14:43:07 +02:00
pos = filesize;
}
}
return ret;
}
int32_t CFile::fwrite(const char *format, ...) {
char tmp[512];
2022-02-04 21:44:03 +01:00
tmp[0] = 0;
2020-04-28 14:43:07 +02:00
int32_t result = -1;
va_list va;
va_start(va, format);
2020-05-17 19:05:51 +02:00
if ((vsprintf(tmp, format, va) >= 0)) {
result = this->write((uint8_t *) tmp, strlen(tmp));
2020-04-28 14:43:07 +02:00
}
va_end(va);
return result;
}