2019-06-29 02:20:36 -07:00
|
|
|
/*
|
2021-10-04 12:59:10 -07:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-06-29 02:20:36 -07: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/>.
|
|
|
|
*/
|
2020-05-11 15:02:10 -07:00
|
|
|
#include <stratosphere.hpp>
|
2019-06-29 02:20:36 -07:00
|
|
|
#include "pm_info_service.hpp"
|
|
|
|
#include "impl/pm_process_manager.hpp"
|
2023-10-26 14:44:32 -07:00
|
|
|
#include "impl/pm_spec.hpp"
|
2019-06-29 02:20:36 -07:00
|
|
|
|
2020-07-07 17:07:23 -07:00
|
|
|
namespace ams::pm {
|
2019-06-29 02:20:36 -07:00
|
|
|
|
|
|
|
/* Overrides for libstratosphere pm::info commands. */
|
2020-07-07 17:07:23 -07:00
|
|
|
namespace info {
|
|
|
|
|
2021-01-17 22:03:26 -08:00
|
|
|
Result HasLaunchedBootProgram(bool *out, ncm::ProgramId program_id) {
|
2022-03-21 23:52:16 -07:00
|
|
|
R_RETURN(ldr::pm::HasLaunchedBootProgram(out, program_id));
|
2020-07-07 17:07:23 -07:00
|
|
|
}
|
|
|
|
|
2019-06-29 02:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Actual command implementations. */
|
2019-10-27 21:43:01 -07:00
|
|
|
Result InformationService::GetProgramId(sf::Out<ncm::ProgramId> out, os::ProcessId process_id) {
|
2022-03-21 23:52:16 -07:00
|
|
|
R_RETURN(impl::GetProgramId(out.GetPointer(), process_id));
|
|
|
|
}
|
|
|
|
|
2023-10-17 11:10:09 -07:00
|
|
|
Result InformationService::GetAppletResourceLimitCurrentValue(sf::Out<pm::ResourceLimitValue> out) {
|
2023-10-26 14:44:32 -07:00
|
|
|
R_RETURN(impl::GetResourceLimitCurrentValue(out.GetPointer(), ResourceLimitGroup_Applet));
|
2022-03-21 23:52:16 -07:00
|
|
|
}
|
|
|
|
|
2023-10-17 11:10:09 -07:00
|
|
|
Result InformationService::GetAppletResourceLimitPeakValue(sf::Out<pm::ResourceLimitValue> out) {
|
2023-10-26 14:44:32 -07:00
|
|
|
R_RETURN(impl::GetResourceLimitPeakValue(out.GetPointer(), ResourceLimitGroup_Applet));
|
2019-06-29 02:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Atmosphere extension commands. */
|
2019-10-27 21:43:01 -07:00
|
|
|
Result InformationService::AtmosphereGetProcessId(sf::Out<os::ProcessId> out, ncm::ProgramId program_id) {
|
2022-03-21 23:52:16 -07:00
|
|
|
R_RETURN(impl::GetProcessId(out.GetPointer(), program_id));
|
2019-06-29 02:20:36 -07:00
|
|
|
}
|
|
|
|
|
2021-01-17 22:03:26 -08:00
|
|
|
Result InformationService::AtmosphereHasLaunchedBootProgram(sf::Out<bool> out, ncm::ProgramId program_id) {
|
2022-03-21 23:52:16 -07:00
|
|
|
R_RETURN(pm::info::HasLaunchedBootProgram(out.GetPointer(), program_id));
|
2019-06-29 02:20:36 -07:00
|
|
|
}
|
|
|
|
|
2019-11-21 04:03:19 -08:00
|
|
|
Result InformationService::AtmosphereGetProcessInfo(sf::Out<ncm::ProgramLocation> out_loc, sf::Out<cfg::OverrideStatus> out_status, os::ProcessId process_id) {
|
2021-10-04 17:12:32 -07:00
|
|
|
/* NOTE: We don't need to worry about closing this handle, because it's an in-process copy, not a newly allocated handle. */
|
|
|
|
os::NativeHandle dummy_handle;
|
2022-03-21 23:52:16 -07:00
|
|
|
R_RETURN(impl::AtmosphereGetProcessInfo(&dummy_handle, out_loc.GetPointer(), out_status.GetPointer(), process_id));
|
2019-11-21 04:03:19 -08:00
|
|
|
}
|
|
|
|
|
2019-06-29 02:20:36 -07:00
|
|
|
}
|