mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-28 22:33:17 +00:00
* IOFile: removes seek limit checks when file is writable * add virtual devices scaffold * add stdin/out/err as virtual devices * fixed some merging issues * clang-fix --------- Co-authored-by: georgemoralis <giorgosmrls@gmail.com>
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <core/libraries/kernel/orbis_error.h>
|
|
#include "common/types.h"
|
|
#include "common/va_ctx.h"
|
|
|
|
namespace Libraries::Kernel {
|
|
struct OrbisKernelStat;
|
|
struct SceKernelIovec;
|
|
} // namespace Libraries::Kernel
|
|
|
|
namespace Core::Devices {
|
|
|
|
class BaseDevice {
|
|
public:
|
|
explicit BaseDevice();
|
|
|
|
virtual ~BaseDevice() = 0;
|
|
|
|
virtual int ioctl(u64 cmd, Common::VaCtx* args) {
|
|
return ORBIS_KERNEL_ERROR_ENOTTY;
|
|
}
|
|
|
|
virtual s64 write(const void* buf, size_t nbytes) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual size_t readv(const Libraries::Kernel::SceKernelIovec* iov, int iovcnt) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual size_t writev(const Libraries::Kernel::SceKernelIovec* iov, int iovcnt) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual s64 preadv(const Libraries::Kernel::SceKernelIovec* iov, int iovcnt, u64 offset) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual s64 lseek(s64 offset, int whence) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual s64 read(void* buf, size_t nbytes) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual int fstat(Libraries::Kernel::OrbisKernelStat* sb) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual s32 fsync() {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual int ftruncate(s64 length) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual int getdents(void* buf, u32 nbytes, s64* basep) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
|
|
virtual s64 pwrite(const void* buf, size_t nbytes, u64 offset) {
|
|
return ORBIS_KERNEL_ERROR_EBADF;
|
|
}
|
|
};
|
|
|
|
} // namespace Core::Devices
|