2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-09-06 06:36:58 +02:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2010-09-06 14:14:18 +02:00
|
|
|
|
2018-04-08 11:57:36 +02:00
|
|
|
#include <optional>
|
2010-09-06 14:14:18 +02:00
|
|
|
#include <string>
|
2014-02-20 04:11:52 +01:00
|
|
|
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-09-06 06:36:58 +02:00
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2023-06-13 22:22:56 +02:00
|
|
|
enum class FromWhichRoot
|
2015-06-21 19:19:52 +02:00
|
|
|
{
|
2023-06-13 22:22:56 +02:00
|
|
|
Configured, // not related to currently running game - use D_WIIROOT_IDX
|
|
|
|
Session, // request from currently running game - use D_SESSION_WIIROOT_IDX
|
2015-06-21 19:19:52 +02:00
|
|
|
};
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2017-01-06 21:59:02 +01:00
|
|
|
std::string RootUserPath(FromWhichRoot from);
|
2017-03-05 14:04:35 +01:00
|
|
|
|
2018-04-08 11:57:36 +02:00
|
|
|
// The following functions return paths relative to the NAND root.
|
|
|
|
// If a FromWhichRoot is passed, the NAND root on the host filesystem will be prepended to the path.
|
|
|
|
// TODO: remove the from parameter after all code is migrated off direct FS access.
|
|
|
|
|
2017-03-05 14:04:35 +01:00
|
|
|
// Returns /import/%08x/%08x. Intended for use by ES.
|
2018-04-08 11:57:36 +02:00
|
|
|
std::string GetImportTitlePath(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2017-03-05 14:04:35 +01:00
|
|
|
|
2018-04-08 11:57:36 +02:00
|
|
|
std::string GetTicketFileName(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2022-11-01 02:02:19 +01:00
|
|
|
std::string GetV1TicketFileName(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2018-04-08 11:57:36 +02:00
|
|
|
std::string GetTitlePath(u64 title_id, std::optional<FromWhichRoot> from = {});
|
|
|
|
std::string GetTitleDataPath(u64 title_id, std::optional<FromWhichRoot> from = {});
|
|
|
|
std::string GetTitleContentPath(u64 title_id, std::optional<FromWhichRoot> from = {});
|
|
|
|
std::string GetTMDFileName(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2019-04-08 13:06:21 +02:00
|
|
|
std::string GetMiiDatabasePath(std::optional<FromWhichRoot> from = {});
|
2016-11-26 15:39:00 +01:00
|
|
|
|
2017-08-06 17:11:25 +02:00
|
|
|
// Returns whether a path is within an installed title's directory.
|
2018-04-08 11:57:36 +02:00
|
|
|
bool IsTitlePath(const std::string& path, std::optional<FromWhichRoot> from = {},
|
|
|
|
u64* title_id = nullptr);
|
2017-08-06 17:11:25 +02:00
|
|
|
|
2016-11-26 15:39:00 +01:00
|
|
|
// Escapes characters that are invalid or have special meanings in the host file system
|
|
|
|
std::string EscapeFileName(const std::string& filename);
|
|
|
|
// Escapes characters that are invalid or have special meanings in the host file system
|
|
|
|
std::string EscapePath(const std::string& path);
|
|
|
|
// Reverses escaping done by EscapeFileName
|
|
|
|
std::string UnescapeFileName(const std::string& filename);
|
2021-05-28 13:11:52 +02:00
|
|
|
// Tests for a file name being "safe" as per the escaping defined in EscapeFileName
|
|
|
|
bool IsFileNameSafe(const std::string_view filename);
|
2019-04-08 13:06:21 +02:00
|
|
|
} // namespace Common
|