Files
botw/lib/sead/include/filedevice/nin/seadNinFileDeviceBaseNin.h
T
Léo Lam 18c60323a9 Switch to subrepos
git subrepo clone https://github.com/open-ead/sead lib/sead

subrepo:
  subdir:   "lib/sead"
  merged:   "1b66e825d"
upstream:
  origin:   "https://github.com/open-ead/sead"
  branch:   "master"
  commit:   "1b66e825d"
git-subrepo:
  version:  "0.4.3"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"

git subrepo clone (merge) https://github.com/open-ead/nnheaders lib/NintendoSDK

subrepo:
  subdir:   "lib/NintendoSDK"
  merged:   "9ee21399f"
upstream:
  origin:   "https://github.com/open-ead/nnheaders"
  branch:   "master"
  commit:   "9ee21399f"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"

git subrepo clone https://github.com/open-ead/agl lib/agl

subrepo:
  subdir:   "lib/agl"
  merged:   "7c063271b"
upstream:
  origin:   "https://github.com/open-ead/agl"
  branch:   "master"
  commit:   "7c063271b"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"

git subrepo clone https://github.com/open-ead/EventFlow lib/EventFlow

subrepo:
  subdir:   "lib/EventFlow"
  merged:   "c35d21b34"
upstream:
  origin:   "https://github.com/open-ead/EventFlow"
  branch:   "master"
  commit:   "c35d21b34"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"
2022-03-21 21:31:42 +01:00

52 lines
2.2 KiB
C++

#pragma once
#include <nn/fs.h>
#include "filedevice/seadFileDevice.h"
#include "prim/seadSafeString.h"
namespace sead
{
class NinFileDeviceBase : public FileDevice
{
SEAD_RTTI_OVERRIDE(NinFileDeviceBase, FileDevice)
public:
NinFileDeviceBase(const SafeString& name, const SafeString& mount_point);
protected:
struct FileHandleInner;
struct DirectoryHandleInner;
bool doIsAvailable_() const override;
FileDevice* doOpen_(FileHandle* handle, const SafeString& path, FileOpenFlag flag) override;
bool doClose_(FileHandle* handle) override;
bool doFlush_(FileHandle* handle) override;
bool doRemove_(const SafeString& path) override;
bool doRead_(u32* bytesRead, FileHandle* handle, u8* outBuffer, u32 bytesToRead) override;
bool doWrite_(u32* bytesWritten, FileHandle* handle, const u8* inBuffer,
u32 bytesToWrite) override;
bool doSeek_(FileHandle* handle, s32 offset, SeekOrigin origin) override;
bool doGetCurrentSeekPos_(u32* seekPos, FileHandle* handle) override;
bool doGetFileSize_(u32* fileSize, const SafeString& path) override;
bool doGetFileSize_(u32* fileSize, FileHandle* handle) override;
bool doIsExistFile_(bool* exists, const SafeString& path) override;
bool doIsExistDirectory_(bool* exists, const SafeString& path) override;
FileDevice* doOpenDirectory_(DirectoryHandle* handle, const SafeString& path) override;
bool doCloseDirectory_(DirectoryHandle* handle) override;
bool doReadDirectory_(u32* entriesRead, DirectoryHandle* handle, DirectoryEntry* entries,
u32 entriesToRead) override;
bool doMakeDirectory_(const SafeString& path, u32 u_32) override;
s32 doGetLastRawError_() const override;
void doResolvePath_(BufferedSafeString* out, const SafeString& path) const override;
virtual bool formatPathForFS_(BufferedSafeString* out, const SafeString& path) const;
FileHandleInner* getFileHandleInner_(HandleBase* handle, bool construct = false) const;
DirectoryHandleInner* getDirectoryHandleInner_(HandleBase* handle,
bool construct = false) const;
nn::Result mLastError = nn::ResultSuccess{};
SafeString mMountPoint;
};
} // namespace sead