2015-01-01 09:39:27 -08:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-21 07:44:11 -07:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include "core/file_sys/archive_backend.h"
|
|
|
|
#include "core/hle/result.h"
|
2015-01-01 09:39:27 -08:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2016-10-21 07:10:55 -07:00
|
|
|
/// File system interface to the NCCH archive
|
|
|
|
class ArchiveFactory_NCCH final : public ArchiveFactory {
|
2015-01-01 09:39:27 -08:00
|
|
|
public:
|
2016-10-21 07:10:55 -07:00
|
|
|
ArchiveFactory_NCCH(const std::string& mount_point);
|
2015-01-01 09:39:27 -08:00
|
|
|
|
2016-09-17 17:38:01 -07:00
|
|
|
std::string GetName() const override {
|
2016-10-21 07:10:55 -07:00
|
|
|
return "NCCH";
|
2016-09-17 17:38:01 -07:00
|
|
|
}
|
2015-02-06 05:53:14 -08:00
|
|
|
|
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> Open(const Path& path) override;
|
2015-12-28 10:51:44 -08:00
|
|
|
ResultCode Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) override;
|
|
|
|
ResultVal<ArchiveFormatInfo> GetFormatInfo(const Path& path) const override;
|
2015-01-01 09:39:27 -08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string mount_point;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|