2014-09-11 18:44:16 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-11 18:44:16 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-21 10:44:11 -04:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include "core/file_sys/archive_backend.h"
|
|
|
|
#include "core/hle/result.h"
|
2014-09-11 18:44:16 -04:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2016-10-17 11:00:50 -04:00
|
|
|
/// Archive backend for SDMC archive
|
|
|
|
class SDMCArchive : public ArchiveBackend {
|
|
|
|
public:
|
|
|
|
SDMCArchive(const std::string& mount_point_) : mount_point(mount_point_) {}
|
|
|
|
|
|
|
|
std::string GetName() const override {
|
|
|
|
return "SDMCArchive: " + mount_point;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultVal<std::unique_ptr<FileBackend>> OpenFile(const Path& path,
|
|
|
|
const Mode& mode) const override;
|
|
|
|
ResultCode DeleteFile(const Path& path) const override;
|
|
|
|
ResultCode RenameFile(const Path& src_path, const Path& dest_path) const override;
|
|
|
|
ResultCode DeleteDirectory(const Path& path) const override;
|
|
|
|
ResultCode DeleteDirectoryRecursively(const Path& path) const override;
|
|
|
|
ResultCode CreateFile(const Path& path, u64 size) const override;
|
|
|
|
ResultCode CreateDirectory(const Path& path) const override;
|
|
|
|
ResultCode RenameDirectory(const Path& src_path, const Path& dest_path) const override;
|
|
|
|
ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory(const Path& path) const override;
|
|
|
|
u64 GetFreeBytes() const override;
|
|
|
|
|
|
|
|
protected:
|
2016-10-19 23:45:01 -04:00
|
|
|
ResultVal<std::unique_ptr<FileBackend>> OpenFileBase(const Path& path, const Mode& mode) const;
|
2016-10-17 11:00:50 -04:00
|
|
|
std::string mount_point;
|
|
|
|
};
|
|
|
|
|
2014-09-11 18:44:16 -04:00
|
|
|
/// File system interface to the SDMC archive
|
2015-02-06 08:53:14 -05:00
|
|
|
class ArchiveFactory_SDMC final : public ArchiveFactory {
|
2014-09-11 18:44:16 -04:00
|
|
|
public:
|
2015-02-06 08:53:14 -05:00
|
|
|
ArchiveFactory_SDMC(const std::string& mount_point);
|
2014-09-11 18:44:16 -04:00
|
|
|
|
2014-09-27 15:09:04 -04:00
|
|
|
/**
|
|
|
|
* Initialize the archive.
|
|
|
|
* @return true if it initialized successfully
|
|
|
|
*/
|
2014-09-11 18:44:16 -04:00
|
|
|
bool Initialize();
|
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
std::string GetName() const override {
|
|
|
|
return "SDMC";
|
|
|
|
}
|
2015-02-06 08:53:14 -05:00
|
|
|
|
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> Open(const Path& path) override;
|
2015-12-28 13:51:44 -05:00
|
|
|
ResultCode Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) override;
|
|
|
|
ResultVal<ArchiveFormatInfo> GetFormatInfo(const Path& path) const override;
|
2015-02-06 08:53:14 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string sdmc_directory;
|
2014-09-11 18:44:16 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|