2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-19 22:28:27 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
|
|
|
|
#include "ldr_registration.hpp"
|
|
|
|
|
2019-02-23 15:17:33 +00:00
|
|
|
struct OverrideKey {
|
|
|
|
u64 key_combination;
|
|
|
|
bool override_by_default;
|
|
|
|
};
|
|
|
|
|
2018-04-19 22:28:27 +01:00
|
|
|
class ContentManagement {
|
|
|
|
public:
|
2018-04-21 06:58:42 +01:00
|
|
|
static Result MountCode(u64 tid, FsStorageId sid);
|
2018-07-30 00:35:43 +01:00
|
|
|
static Result MountCodeNspOnSd(u64 tid);
|
2018-09-20 00:21:46 +01:00
|
|
|
static void TryMountHblNspOnSd();
|
2018-04-21 06:58:42 +01:00
|
|
|
static Result UnmountCode();
|
|
|
|
static Result MountCodeForTidSid(Registration::TidSid *tid_sid);
|
2018-04-19 22:28:27 +01:00
|
|
|
|
2018-05-08 09:59:18 +01:00
|
|
|
static Result ResolveContentPath(char *out_path, u64 tid, FsStorageId sid);
|
|
|
|
static Result RedirectContentPath(const char *path, u64 tid, FsStorageId sid);
|
|
|
|
static Result ResolveContentPathForTidSid(char *out_path, Registration::TidSid *tid_sid);
|
|
|
|
static Result RedirectContentPathForTidSid(const char *path, Registration::TidSid *tid_sid);
|
2019-03-20 14:53:56 +00:00
|
|
|
|
|
|
|
static void RedirectHtmlDocumentPathForHbl(u64 tid, FsStorageId sid);
|
|
|
|
|
2018-05-01 23:49:20 +01:00
|
|
|
static bool HasCreatedTitle(u64 tid);
|
|
|
|
static void SetCreatedTitle(u64 tid);
|
2018-10-23 06:53:40 +01:00
|
|
|
static void RefreshConfigurationData();
|
2018-05-01 23:49:20 +01:00
|
|
|
static void TryMountSdCard();
|
2019-03-20 14:53:56 +00:00
|
|
|
|
2019-02-23 15:17:33 +00:00
|
|
|
static OverrideKey GetTitleOverrideKey(u64 tid);
|
|
|
|
static bool ShouldOverrideContentsWithSD(u64 tid);
|
|
|
|
static bool ShouldOverrideContentsWithHBL(u64 tid);
|
2018-10-25 20:52:01 +01:00
|
|
|
|
|
|
|
/* SetExternalContentSource extension */
|
|
|
|
class ExternalContentSource {
|
|
|
|
public:
|
|
|
|
static void GenerateMountpointName(u64 tid, char *out, size_t max_length);
|
|
|
|
|
|
|
|
ExternalContentSource(u64 tid, const char *mountpoint);
|
|
|
|
~ExternalContentSource();
|
|
|
|
|
|
|
|
ExternalContentSource(const ExternalContentSource &other) = delete;
|
|
|
|
ExternalContentSource(ExternalContentSource &&other) = delete;
|
|
|
|
ExternalContentSource &operator=(const ExternalContentSource &other) = delete;
|
|
|
|
ExternalContentSource &operator=(ExternalContentSource &&other) = delete;
|
|
|
|
|
|
|
|
const u64 tid;
|
|
|
|
char mountpoint[32];
|
|
|
|
};
|
|
|
|
static ExternalContentSource *GetExternalContentSource(u64 tid); /* returns nullptr if no ECS is set */
|
|
|
|
static Result SetExternalContentSource(u64 tid, FsFileSystem filesystem); /* takes ownership of filesystem */
|
|
|
|
static void ClearExternalContentSource(u64 tid);
|
2018-04-19 22:28:27 +01:00
|
|
|
};
|