// Copyright 2014 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #include #include #include #include "common/common_types.h" #include "common/logging/log.h" #include "core/file_sys/ivfc_archive.h" //////////////////////////////////////////////////////////////////////////////////////////////////// // FileSys namespace namespace FileSys { IVFCArchive::IVFCArchive(std::shared_ptr file, std::unique_ptr delay_generator_) : romfs_file(std::move(file)) { delay_generator = std::move(delay_generator_); } std::string IVFCArchive::GetName() const { return "IVFC"; } ResultVal> IVFCArchive::OpenFile(const Path& path, const Mode& mode) const { std::unique_ptr delay_generator = std::make_unique(); return MakeResult>( std::make_unique(romfs_file, std::move(delay_generator))); } ResultCode IVFCArchive::DeleteFile(const Path& path) const { LOG_CRITICAL(Service_FS, "Attempted to delete a file from an IVFC archive ({}).", GetName()); // TODO(Subv): Verify error code return ResultCode(ErrorDescription::NoData, ErrorModule::FS, ErrorSummary::Canceled, ErrorLevel::Status); } ResultCode IVFCArchive::RenameFile(const Path& src_path, const Path& dest_path) const { LOG_CRITICAL(Service_FS, "Attempted to rename a file within an IVFC archive ({}).", GetName()); // TODO(wwylele): Use correct error code return ResultCode(-1); } ResultCode IVFCArchive::DeleteDirectory(const Path& path) const { LOG_CRITICAL(Service_FS, "Attempted to delete a directory from an IVFC archive ({}).", GetName()); // TODO(wwylele): Use correct error code return ResultCode(-1); } ResultCode IVFCArchive::DeleteDirectoryRecursively(const Path& path) const { LOG_CRITICAL(Service_FS, "Attempted to delete a directory from an IVFC archive ({}).", GetName()); // TODO(wwylele): Use correct error code return ResultCode(-1); } ResultCode IVFCArchive::CreateFile(const Path& path, u64 size) const { LOG_CRITICAL(Service_FS, "Attempted to create a file in an IVFC archive ({}).", GetName()); // TODO: Verify error code return ResultCode(ErrorDescription::NotAuthorized, ErrorModule::FS, ErrorSummary::NotSupported, ErrorLevel::Permanent); } ResultCode IVFCArchive::CreateDirectory(const Path& path) const { LOG_CRITICAL(Service_FS, "Attempted to create a directory in an IVFC archive ({}).", GetName()); // TODO(wwylele): Use correct error code return ResultCode(-1); } ResultCode IVFCArchive::RenameDirectory(const Path& src_path, const Path& dest_path) const { LOG_CRITICAL(Service_FS, "Attempted to rename a file within an IVFC archive ({}).", GetName()); // TODO(wwylele): Use correct error code return ResultCode(-1); } ResultVal> IVFCArchive::OpenDirectory(const Path& path) const { return MakeResult>(std::make_unique()); } u64 IVFCArchive::GetFreeBytes() const { LOG_WARNING(Service_FS, "Attempted to get the free space in an IVFC archive"); return 0; } //////////////////////////////////////////////////////////////////////////////////////////////////// IVFCFile::IVFCFile(std::shared_ptr file, std::unique_ptr delay_generator_) : romfs_file(std::move(file)) { delay_generator = std::move(delay_generator_); } ResultVal IVFCFile::Read(const u64 offset, const std::size_t length, u8* buffer) const { LOG_TRACE(Service_FS, "called offset={}, length={}", offset, length); return MakeResult(romfs_file->ReadFile(offset, length, buffer)); } ResultVal IVFCFile::Write(const u64 offset, const std::size_t length, const bool flush, const u8* buffer) { LOG_ERROR(Service_FS, "Attempted to write to IVFC file"); // TODO(Subv): Find error code return MakeResult(0); } u64 IVFCFile::GetSize() const { return romfs_file->GetSize(); } bool IVFCFile::SetSize(const u64 size) const { LOG_ERROR(Service_FS, "Attempted to set the size of an IVFC file"); return false; } //////////////////////////////////////////////////////////////////////////////////////////////////// IVFCFileInMemory::IVFCFileInMemory(std::vector bytes, u64 offset, u64 size, std::unique_ptr delay_generator_) : romfs_file(std::move(bytes)), data_offset(offset), data_size(size) { delay_generator = std::move(delay_generator_); } ResultVal IVFCFileInMemory::Read(const u64 offset, const std::size_t length, u8* buffer) const { LOG_TRACE(Service_FS, "called offset={}, length={}", offset, length); std::size_t read_length = (std::size_t)std::min((u64)length, data_size - offset); std::memcpy(buffer, romfs_file.data() + data_offset + offset, read_length); return MakeResult(read_length); } ResultVal IVFCFileInMemory::Write(const u64 offset, const std::size_t length, const bool flush, const u8* buffer) { LOG_ERROR(Service_FS, "Attempted to write to IVFC file"); // TODO(Subv): Find error code return MakeResult(0); } u64 IVFCFileInMemory::GetSize() const { return data_size; } bool IVFCFileInMemory::SetSize(const u64 size) const { LOG_ERROR(Service_FS, "Attempted to set the size of an IVFC file"); return false; } } // namespace FileSys