/* * Copyright (c) 2018-2020 Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include "impl/fssystem_path_resolution_filesystem.hpp" namespace ams::fssystem { class DirectorySaveDataFileSystem : public impl::IPathResolutionFileSystem { NON_COPYABLE(DirectorySaveDataFileSystem); private: using PathResolutionFileSystem = impl::IPathResolutionFileSystem; friend class impl::IPathResolutionFileSystem; private: os::Mutex accessor_mutex; s32 open_writable_files; public: DirectorySaveDataFileSystem(std::shared_ptr fs); DirectorySaveDataFileSystem(std::unique_ptr fs); Result Initialize(); virtual ~DirectorySaveDataFileSystem(); protected: inline std::optional> GetAccessorLock() { /* We have a real accessor lock that we want to use. */ return std::make_optional>(this->accessor_mutex); } private: Result AllocateWorkBuffer(std::unique_ptr *out, size_t *out_size, size_t ideal_size); Result SynchronizeDirectory(const char *dst, const char *src); Result ResolveFullPath(char *out, size_t out_size, const char *relative_path); public: void OnWritableFileClose(); Result CopySaveFromFileSystem(fs::fsa::IFileSystem *save_fs); public: /* Overridden from IPathResolutionFileSystem */ virtual Result OpenFileImpl(std::unique_ptr *out_file, const char *path, fs::OpenMode mode) override; virtual Result CommitImpl() override; /* Overridden from IPathResolutionFileSystem but not commands. */ virtual Result CommitProvisionallyImpl(s64 counter) override; virtual Result RollbackImpl() override; /* Explicitly overridden to be not implemented. */ virtual Result GetFreeSpaceSizeImpl(s64 *out, const char *path) override; virtual Result GetTotalSpaceSizeImpl(s64 *out, const char *path) override; virtual Result GetFileTimeStampRawImpl(fs::FileTimeStampRaw *out, const char *path) override; virtual Result QueryEntryImpl(char *dst, size_t dst_size, const char *src, size_t src_size, fs::fsa::QueryId query, const char *path) override; virtual Result FlushImpl() override; }; }