2014-06-27 20:18:56 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-06-27 20:18:56 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-02-06 13:53:14 +00:00
|
|
|
#include <memory>
|
2015-06-21 14:44:11 +00:00
|
|
|
#include <string>
|
2014-06-27 20:18:56 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2015-06-21 14:44:11 +00:00
|
|
|
#include "core/file_sys/archive_backend.h"
|
|
|
|
#include "core/hle/result.h"
|
2014-06-27 20:18:56 +00:00
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
/// File system interface to the RomFS archive
|
2015-02-06 13:53:14 +00:00
|
|
|
class ArchiveFactory_RomFS final : public ArchiveFactory {
|
2014-06-27 20:18:56 +00:00
|
|
|
public:
|
2015-07-11 22:16:33 +00:00
|
|
|
ArchiveFactory_RomFS(Loader::AppLoader& app_loader);
|
2014-06-27 20:18:56 +00:00
|
|
|
|
2014-12-15 04:44:04 +00:00
|
|
|
std::string GetName() const override { return "RomFS"; }
|
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:
|
2015-07-09 21:55:23 +00:00
|
|
|
std::shared_ptr<FileUtil::IOFile> romfs_file;
|
|
|
|
u64 data_offset;
|
|
|
|
u64 data_size;
|
2014-06-27 20:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|