2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* 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
|
2019-06-26 23:46:19 +01:00
|
|
|
#include <stratosphere.hpp>
|
2018-04-19 22:28:27 +01:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::ldr {
|
2018-04-19 22:28:27 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Utility reference to make code mounting automatic. */
|
|
|
|
class ScopedCodeMount {
|
|
|
|
NON_COPYABLE(ScopedCodeMount);
|
2020-03-09 10:10:12 +00:00
|
|
|
NON_MOVEABLE(ScopedCodeMount);
|
2019-06-26 23:46:19 +01:00
|
|
|
private:
|
2020-03-09 10:10:12 +00:00
|
|
|
std::scoped_lock<os::Mutex> lk;
|
2019-11-21 12:03:19 +00:00
|
|
|
cfg::OverrideStatus override_status;
|
2020-04-14 10:45:28 +01:00
|
|
|
fs::CodeInfo ams_code_info;
|
|
|
|
fs::CodeInfo sd_or_base_code_info;
|
|
|
|
fs::CodeInfo base_code_info;
|
2020-03-09 10:10:12 +00:00
|
|
|
Result result;
|
2019-11-21 12:03:19 +00:00
|
|
|
bool has_status;
|
2020-03-09 10:10:12 +00:00
|
|
|
bool mounted_ams;
|
2020-04-14 10:45:28 +01:00
|
|
|
bool mounted_sd_or_code;
|
2020-03-09 10:10:12 +00:00
|
|
|
bool mounted_code;
|
2019-06-26 23:46:19 +01:00
|
|
|
public:
|
2019-10-28 04:43:01 +00:00
|
|
|
ScopedCodeMount(const ncm::ProgramLocation &loc);
|
2019-11-21 12:03:19 +00:00
|
|
|
ScopedCodeMount(const ncm::ProgramLocation &loc, const cfg::OverrideStatus &override_status);
|
2019-06-26 23:46:19 +01:00
|
|
|
~ScopedCodeMount();
|
2019-02-23 15:17:33 +00:00
|
|
|
|
2019-06-28 01:37:33 +01:00
|
|
|
Result GetResult() const {
|
|
|
|
return this->result;
|
2019-06-26 23:46:19 +01:00
|
|
|
}
|
2018-10-25 20:52:01 +01:00
|
|
|
|
2019-11-21 12:03:19 +00:00
|
|
|
const cfg::OverrideStatus &GetOverrideStatus() const {
|
2020-02-23 07:05:14 +00:00
|
|
|
AMS_ABORT_UNLESS(this->has_status);
|
2019-11-21 12:03:19 +00:00
|
|
|
return this->override_status;
|
|
|
|
}
|
2020-04-14 10:45:28 +01:00
|
|
|
|
|
|
|
const fs::CodeInfo &GetAtmosphereCodeInfo() const {
|
|
|
|
return this->ams_code_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
const fs::CodeInfo &GetSdOrBaseCodeInfo() const {
|
|
|
|
return this->sd_or_base_code_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
const fs::CodeInfo &GetCodeInfo() const {
|
|
|
|
return this->base_code_info;
|
|
|
|
}
|
2019-06-28 01:37:33 +01:00
|
|
|
private:
|
2019-10-28 04:43:01 +00:00
|
|
|
Result Initialize(const ncm::ProgramLocation &loc);
|
2020-03-09 10:10:12 +00:00
|
|
|
void EnsureOverrideStatus(const ncm::ProgramLocation &loc);
|
2019-06-26 23:46:19 +01:00
|
|
|
};
|
2018-10-25 20:52:01 +01:00
|
|
|
|
2020-03-09 10:10:12 +00:00
|
|
|
constexpr inline const char * const AtmosphereCodeMountName = "ams-code";
|
2020-04-14 10:45:28 +01:00
|
|
|
constexpr inline const char * const SdOrCodeMountName = "sd-code";
|
2020-03-09 10:10:12 +00:00
|
|
|
constexpr inline const char * const CodeMountName = "code";
|
|
|
|
|
|
|
|
#define ENCODE_ATMOSPHERE_CODE_PATH(relative) "ams-code:" relative
|
2020-04-14 10:45:28 +01:00
|
|
|
#define ENCODE_SD_OR_CODE_PATH(relative) "sd-code:" relative
|
2020-03-09 21:53:40 +00:00
|
|
|
#define ENCODE_CODE_PATH(relative) "code:" relative
|
2018-10-25 20:52:01 +01:00
|
|
|
|
2019-06-26 23:46:19 +01:00
|
|
|
/* Redirection API. */
|
2019-10-28 04:43:01 +00:00
|
|
|
Result ResolveContentPath(char *out_path, const ncm::ProgramLocation &loc);
|
|
|
|
Result RedirectContentPath(const char *path, const ncm::ProgramLocation &loc);
|
|
|
|
Result RedirectHtmlDocumentPathForHbl(const ncm::ProgramLocation &loc);
|
2019-06-26 23:46:19 +01:00
|
|
|
|
|
|
|
}
|