2014-09-11 22:44:16 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-11 22:44:16 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-21 14:44:11 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2014-09-11 22:44:16 +00:00
|
|
|
|
2015-06-21 14:44:11 +00:00
|
|
|
#include "core/file_sys/archive_backend.h"
|
|
|
|
#include "core/hle/result.h"
|
2014-09-11 22:44:16 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
/// File system interface to the SDMC archive
|
2015-02-06 13:53:14 +00:00
|
|
|
class ArchiveFactory_SDMC final : public ArchiveFactory {
|
2014-09-11 22:44:16 +00:00
|
|
|
public:
|
2015-02-06 13:53:14 +00:00
|
|
|
ArchiveFactory_SDMC(const std::string& mount_point);
|
2014-09-11 22:44:16 +00:00
|
|
|
|
2014-09-27 19:09:04 +00:00
|
|
|
/**
|
|
|
|
* Initialize the archive.
|
|
|
|
* @return true if it initialized successfully
|
|
|
|
*/
|
2014-09-11 22:44:16 +00:00
|
|
|
bool Initialize();
|
|
|
|
|
2014-12-15 04:44:04 +00:00
|
|
|
std::string GetName() const override { return "SDMC"; }
|
2015-02-06 13:53:14 +00:00
|
|
|
|
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> Open(const Path& path) override;
|
|
|
|
ResultCode Format(const Path& path) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string sdmc_directory;
|
2014-09-11 22:44:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|