2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2010-09-05 22:36:58 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2010-09-06 06:14:18 -06:00
|
|
|
|
2018-04-08 03:57:36 -06:00
|
|
|
#include <optional>
|
2010-09-06 06:14:18 -06:00
|
|
|
#include <string>
|
2014-02-19 20:11:52 -07:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-09-05 22:36:58 -06:00
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
enum FromWhichRoot
|
|
|
|
{
|
|
|
|
FROM_CONFIGURED_ROOT, // not related to currently running game - use D_WIIROOT_IDX
|
|
|
|
FROM_SESSION_ROOT, // request from currently running game - use D_SESSION_WIIROOT_IDX
|
|
|
|
};
|
|
|
|
|
2017-01-06 13:59:02 -07:00
|
|
|
std::string RootUserPath(FromWhichRoot from);
|
2017-03-05 06:04:35 -07:00
|
|
|
|
2018-04-08 03:57:36 -06: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 06:04:35 -07:00
|
|
|
// Returns /import/%08x/%08x. Intended for use by ES.
|
2018-04-08 03:57:36 -06:00
|
|
|
std::string GetImportTitlePath(u64 title_id, std::optional<FromWhichRoot> from = {});
|
2017-03-05 06:04:35 -07:00
|
|
|
|
2018-04-08 03:57:36 -06:00
|
|
|
std::string GetTicketFileName(u64 title_id, std::optional<FromWhichRoot> from = {});
|
|
|
|
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 05:06:21 -06:00
|
|
|
std::string GetMiiDatabasePath(std::optional<FromWhichRoot> from = {});
|
2016-11-26 07:39:00 -07:00
|
|
|
|
2017-08-06 09:11:25 -06:00
|
|
|
// Returns whether a path is within an installed title's directory.
|
2018-04-08 03:57:36 -06:00
|
|
|
bool IsTitlePath(const std::string& path, std::optional<FromWhichRoot> from = {},
|
|
|
|
u64* title_id = nullptr);
|
2017-08-06 09:11:25 -06:00
|
|
|
|
2016-11-26 07:39:00 -07: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);
|
2019-04-08 05:06:21 -06:00
|
|
|
} // namespace Common
|