2014-12-29 18:04:37 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
#include "core/file_sys/disk_archive.h"
|
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
/// File system interface to the ExtSaveData archive
|
2015-02-06 13:53:14 +00:00
|
|
|
class ArchiveFactory_ExtSaveData final : public ArchiveFactory {
|
2014-12-29 18:04:37 +00:00
|
|
|
public:
|
2015-02-06 13:53:14 +00:00
|
|
|
ArchiveFactory_ExtSaveData(const std::string& mount_point, bool shared);
|
2014-12-29 18:04:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the archive.
|
|
|
|
* @return true if it initialized successfully
|
|
|
|
*/
|
|
|
|
bool Initialize();
|
|
|
|
|
|
|
|
std::string GetName() const override { return "ExtSaveData"; }
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> Open(const Path& path) override;
|
|
|
|
ResultCode Format(const Path& path) override;
|
2014-12-29 18:04:37 +00:00
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
const std::string& GetMountPoint() const { return mount_point; }
|
|
|
|
|
|
|
|
private:
|
2014-12-29 18:04:37 +00:00
|
|
|
/**
|
2015-02-06 13:53:14 +00:00
|
|
|
* This holds the full directory path for this archive, it is only set after a successful call
|
|
|
|
* to Open, this is formed as <base extsavedatapath>/<type>/<high>/<low>.
|
2014-12-29 18:04:37 +00:00
|
|
|
* See GetExtSaveDataPath for the code that extracts this data from an archive path.
|
|
|
|
*/
|
2015-02-06 13:53:14 +00:00
|
|
|
std::string mount_point;
|
2014-12-29 18:04:37 +00:00
|
|
|
};
|
|
|
|
|
2015-01-14 04:56:00 +00:00
|
|
|
/**
|
|
|
|
* Constructs a path to the concrete ExtData archive in the host filesystem based on the
|
|
|
|
* input Path and base mount point.
|
|
|
|
* @param mount_point The base mount point of the ExtSaveData archives.
|
|
|
|
* @param path The path that identifies the requested concrete ExtSaveData archive.
|
|
|
|
* @returns The complete path to the specified extdata archive in the host filesystem
|
|
|
|
*/
|
|
|
|
std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a path to the base folder to hold concrete ExtSaveData archives in the host file system.
|
|
|
|
* @param mount_point The base folder where this folder resides, ie. SDMC or NAND.
|
|
|
|
* @param shared Whether this ExtSaveData container is for SharedExtSaveDatas or not.
|
|
|
|
* @returns The path to the base ExtSaveData archives' folder in the host file system
|
|
|
|
*/
|
|
|
|
std::string GetExtDataContainerPath(const std::string& mount_point, bool shared);
|
|
|
|
|
2014-12-29 18:04:37 +00:00
|
|
|
} // namespace FileSys
|