Last active
May 24, 2023 23:38
-
-
Save ITotalJustice/92c8e5f59e2dcda0b7118b7f2de92cd1 to your computer and use it in GitHub Desktop.
libnx wrapper for https://github.com/compuphase/minIni
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "minGlue.h" | |
#include <string.h> | |
static bool ini_open(const char* filename, struct NxFile* nxfile, u32 mode) { | |
Result rc = {0}; | |
char filename_buf[FS_MAX_PATH] = {0}; | |
if (R_FAILED(rc = fsOpenSdCardFileSystem(&nxfile->system))) { | |
return false; | |
} | |
strcpy(filename_buf, filename); | |
if (R_FAILED(rc = fsFsOpenFile(&nxfile->system, filename_buf, mode, &nxfile->file))) { | |
if (mode & FsOpenMode_Write) { | |
if (R_FAILED(rc = fsFsCreateFile(&nxfile->system, filename_buf, 0, 0))) { | |
fsFsClose(&nxfile->system); | |
return false; | |
} else { | |
if (R_FAILED(rc = fsFsOpenFile(&nxfile->system, filename_buf, mode, &nxfile->file))) { | |
fsFsClose(&nxfile->system); | |
return false; | |
} | |
} | |
} else { | |
fsFsClose(&nxfile->system); | |
return false; | |
} | |
} | |
nxfile->offset = 0; | |
return true; | |
} | |
bool ini_openread(const char* filename, struct NxFile* nxfile) { | |
return ini_open(filename, nxfile, FsOpenMode_Read); | |
} | |
bool ini_openwrite(const char* filename, struct NxFile* nxfile) { | |
return ini_open(filename, nxfile, FsOpenMode_Write|FsOpenMode_Append); | |
} | |
bool ini_openrewrite(const char* filename, struct NxFile* nxfile) { | |
return ini_open(filename, nxfile, FsOpenMode_Read|FsOpenMode_Write|FsOpenMode_Append); | |
} | |
bool ini_close(struct NxFile* nxfile) { | |
fsFileClose(&nxfile->file); | |
fsFsClose(&nxfile->system); | |
return true; | |
} | |
bool ini_read(char* buffer, u64 size, struct NxFile* nxfile) { | |
u64 bytes_read = {0}; | |
if (R_FAILED(fsFileRead(&nxfile->file, nxfile->offset, buffer, size, FsReadOption_None, &bytes_read))) { | |
return false; | |
} | |
if (!bytes_read) { | |
return false; | |
} | |
char *eol = {0}; | |
if ((eol = strchr(buffer, '\n')) == NULL) { | |
eol = strchr(buffer, '\r'); | |
} | |
if (eol != NULL) { | |
*++eol = '\0'; | |
bytes_read = eol - buffer; | |
} | |
nxfile->offset += bytes_read; | |
return true; | |
} | |
bool ini_write(const char* buffer, struct NxFile* nxfile) { | |
const size_t size = strlen(buffer); | |
if (R_FAILED(fsFileWrite(&nxfile->file, nxfile->offset, buffer, size, FsWriteOption_None))) { | |
return false; | |
} | |
nxfile->offset += size; | |
return true; | |
} | |
bool ini_tell(struct NxFile* nxfile, s64* pos) { | |
*pos = nxfile->offset; | |
return true; | |
} | |
bool ini_seek(struct NxFile* nxfile, s64* pos) { | |
nxfile->offset = *pos; | |
return true; | |
} | |
bool ini_rename(const char* src, const char* dst) { | |
Result rc = {0}; | |
FsFileSystem fs = {0}; | |
char src_buf[FS_MAX_PATH] = {0}; | |
char dst_buf[FS_MAX_PATH] = {0}; | |
if (R_FAILED(rc = fsOpenSdCardFileSystem(&fs))) { | |
return false; | |
} | |
strcpy(src_buf, src); | |
strcpy(dst_buf, dst); | |
rc = fsFsRenameFile(&fs, src_buf, dst_buf); | |
fsFsClose(&fs); | |
return R_SUCCEEDED(rc); | |
} | |
bool ini_remove(const char* filename) { | |
Result rc = {0}; | |
FsFileSystem fs = {0}; | |
char filename_buf[FS_MAX_PATH] = {0}; | |
if (R_FAILED(rc = fsOpenSdCardFileSystem(&fs))) { | |
return false; | |
} | |
strcpy(filename_buf, filename); | |
rc = fsFsDeleteFile(&fs, filename_buf); | |
fsFsClose(&fs); | |
return R_SUCCEEDED(rc); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#if defined __cplusplus | |
extern "C" { | |
#endif | |
#include <switch.h> | |
struct NxFile { | |
FsFile file; | |
FsFileSystem system; | |
s64 offset; | |
}; | |
#define INI_FILETYPE struct NxFile | |
#define INI_FILEPOS s64 | |
#define INI_OPENREWRITE | |
#define INI_REMOVE | |
bool ini_openread(const char* filename, struct NxFile* nxfile); | |
bool ini_openwrite(const char* filename, struct NxFile* nxfile); | |
bool ini_openrewrite(const char* filename, struct NxFile* nxfile); | |
bool ini_close(struct NxFile* nxfile); | |
bool ini_read(char* buffer, u64 size, struct NxFile* nxfile); | |
bool ini_write(const char* buffer, struct NxFile* nxfile); | |
bool ini_tell(struct NxFile* nxfile, s64* pos); | |
bool ini_seek(struct NxFile* nxfile, s64* pos); | |
bool ini_rename(const char* src, const char* dst); | |
bool ini_remove(const char* filename); | |
#if defined __cplusplus | |
} // extern "C" { | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment