From 0ccaaafca30c245330a62bd39519fb05720a0bf2 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 30 Nov 2018 23:44:08 -0500 Subject: file_sys: Override missing mutating functions to be stubbed out for ReadOnlyVfsDirectory by default Ensures that read only indeed means read only. --- src/core/file_sys/vfs.cpp | 20 ++++++++++++++++++++ src/core/file_sys/vfs.h | 5 +++++ 2 files changed, 25 insertions(+) (limited to 'src/core/file_sys') diff --git a/src/core/file_sys/vfs.cpp b/src/core/file_sys/vfs.cpp index a4a3236f4..e33327ef0 100644 --- a/src/core/file_sys/vfs.cpp +++ b/src/core/file_sys/vfs.cpp @@ -453,10 +453,30 @@ std::shared_ptr ReadOnlyVfsDirectory::CreateFile(std::string_view name) return nullptr; } +std::shared_ptr ReadOnlyVfsDirectory::CreateFileAbsolute(std::string_view path) { + return nullptr; +} + +std::shared_ptr ReadOnlyVfsDirectory::CreateFileRelative(std::string_view path) { + return nullptr; +} + +std::shared_ptr ReadOnlyVfsDirectory::CreateDirectoryAbsolute(std::string_view path) { + return nullptr; +} + +std::shared_ptr ReadOnlyVfsDirectory::CreateDirectoryRelative(std::string_view path) { + return nullptr; +} + bool ReadOnlyVfsDirectory::DeleteSubdirectory(std::string_view name) { return false; } +bool ReadOnlyVfsDirectory::DeleteSubdirectoryRecursive(std::string_view name) { + return false; +} + bool ReadOnlyVfsDirectory::CleanSubdirectoryRecursive(std::string_view name) { return false; } diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h index 6e1db36f1..e5641b255 100644 --- a/src/core/file_sys/vfs.h +++ b/src/core/file_sys/vfs.h @@ -282,7 +282,12 @@ public: bool IsReadable() const override; std::shared_ptr CreateSubdirectory(std::string_view name) override; std::shared_ptr CreateFile(std::string_view name) override; + std::shared_ptr CreateFileAbsolute(std::string_view path) override; + std::shared_ptr CreateFileRelative(std::string_view path) override; + std::shared_ptr CreateDirectoryAbsolute(std::string_view path) override; + std::shared_ptr CreateDirectoryRelative(std::string_view path) override; bool DeleteSubdirectory(std::string_view name) override; + bool DeleteSubdirectoryRecursive(std::string_view name) override; bool CleanSubdirectoryRecursive(std::string_view name) override; bool DeleteFile(std::string_view name) override; bool Rename(std::string_view name) override; -- cgit v1.2.3