2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-09-06 04:36:58 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-09-06 12:14:18 +00:00
|
|
|
|
2018-04-08 09:57:36 +00:00
|
|
|
#include <optional>
|
2010-09-06 12:14:18 +00:00
|
|
|
#include <string>
|
2014-02-20 03:11:52 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-09-06 04:36:58 +00:00
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2023-06-13 20:22:56 +00:00
|
|
|
enum class FromWhichRoot
|
2015-06-21 17:19:52 +00:00
|
|
|
{
|
2023-06-13 20:22:56 +00: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 17:19:52 +00:00
|
|
|
};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-01-06 20:59:02 +00:00
|
|
|
std::string RootUserPath(FromWhichRoot from);
|
2017-03-05 13:04:35 +00:00
|
|
|
|
2018-04-08 09:57:36 +00: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 13:04:35 +00:00
|
|
|
// Returns /import/%08x/%08x. Intended for use by ES.
|
2018-04-08 09:57:36 +00:00
|
|
|
std::string GetImportTitlePath(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2017-03-05 13:04:35 +00:00
|
|
|
|
2018-04-08 09:57:36 +00:00
|
|
|
std::string GetTicketFileName(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2022-11-01 01:02:19 +00:00
|
|
|
std::string GetV1TicketFileName(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2018-04-08 09:57:36 +00: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 11:06:21 +00:00
|
|
|
std::string GetMiiDatabasePath(std::optional<FromWhichRoot> from = {});
|
2016-11-26 14:39:00 +00:00
|
|
|
|
2017-08-06 15:11:25 +00:00
|
|
|
// Returns whether a path is within an installed title's directory.
|
2018-04-08 09:57:36 +00:00
|
|
|
bool IsTitlePath(const std::string& path, std::optional<FromWhichRoot> from = {},
|
|
|
|
u64* title_id = nullptr);
|
2017-08-06 15:11:25 +00:00
|
|
|
|
2016-11-26 14:39:00 +00: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 11:11:52 +00: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 11:06:21 +00:00
|
|
|
} // namespace Common
|