mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-22 01:44:41 -05:00
67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
#include "devoptab_fs.h"
|
|
|
|
ssize_t __wut_fs_write(struct _reent *r, void *fd, const char *ptr, size_t len) {
|
|
if (!fd || !ptr) {
|
|
r->_errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
// Check that the file was opened with write access
|
|
__wut_fs_file_t *file = (__wut_fs_file_t *) fd;
|
|
if ((file->flags & O_ACCMODE) == O_RDONLY) {
|
|
r->_errno = EBADF;
|
|
return -1;
|
|
}
|
|
|
|
// cache-aligned, cache-line-sized
|
|
__attribute__((aligned(0x40))) uint8_t alignedBuffer[0x40];
|
|
|
|
FSCmdBlock cmd;
|
|
FSInitCmdBlock(&cmd);
|
|
|
|
size_t bytesWritten = 0;
|
|
while (bytesWritten < len) {
|
|
// only use input buffer if cache-aligned and write size is a multiple of cache line size
|
|
// otherwise write from alignedBuffer
|
|
uint8_t *tmp = (uint8_t *) ptr;
|
|
size_t size = len - bytesWritten;
|
|
|
|
if ((uintptr_t) ptr & 0x3F) {
|
|
// write partial cache-line front-end
|
|
tmp = alignedBuffer;
|
|
size = MIN(size, 0x40 - ((uintptr_t) ptr & 0x3F));
|
|
} else if (size < 0x40) {
|
|
// write partial cache-line back-end
|
|
tmp = alignedBuffer;
|
|
} else {
|
|
// write whole cache lines
|
|
size &= ~0x3F;
|
|
}
|
|
|
|
if (tmp == alignedBuffer) {
|
|
memcpy(tmp, ptr, size);
|
|
}
|
|
|
|
FSStatus status = FSWriteFile(__wut_devoptab_fs_client, &cmd, tmp, 1, size,
|
|
file->fd, 0, FS_ERROR_FLAG_ALL);
|
|
if (status < 0) {
|
|
if (bytesWritten != 0) {
|
|
return bytesWritten; // error after partial write
|
|
}
|
|
|
|
r->_errno = __wut_fs_translate_error(status);
|
|
return -1;
|
|
}
|
|
|
|
file->offset += status;
|
|
bytesWritten += status;
|
|
ptr += status;
|
|
|
|
if (status != size) {
|
|
return bytesWritten; // partial write
|
|
}
|
|
}
|
|
|
|
return bytesWritten;
|
|
}
|