2019-06-29 10:20:36 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 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/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::pm::info {
|
2019-06-29 10:20:36 +01:00
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
class InformationService final : public sf::IServiceObject {
|
2019-06-29 10:20:36 +01:00
|
|
|
private:
|
|
|
|
enum class CommandId {
|
2019-10-28 04:43:01 +00:00
|
|
|
GetProgramId = 0,
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
AtmosphereGetProcessId = 65000,
|
2019-10-28 04:43:01 +00:00
|
|
|
AtmosphereHasLaunchedProgram = 65001,
|
2019-11-21 12:03:19 +00:00
|
|
|
AtmosphereGetProcessInfo = 65002,
|
2019-06-29 10:20:36 +01:00
|
|
|
};
|
|
|
|
private:
|
|
|
|
/* Actual command implementations. */
|
2019-10-28 04:43:01 +00:00
|
|
|
Result GetProgramId(sf::Out<ncm::ProgramId> out, os::ProcessId process_id);
|
2019-06-29 10:20:36 +01:00
|
|
|
|
|
|
|
/* Atmosphere extension commands. */
|
2019-10-28 04:43:01 +00:00
|
|
|
Result AtmosphereGetProcessId(sf::Out<os::ProcessId> out, ncm::ProgramId program_id);
|
|
|
|
Result AtmosphereHasLaunchedProgram(sf::Out<bool> out, ncm::ProgramId program_id);
|
2019-11-21 12:03:19 +00:00
|
|
|
Result AtmosphereGetProcessInfo(sf::Out<ncm::ProgramLocation> out_loc, sf::Out<cfg::OverrideStatus> out_status, os::ProcessId process_id);
|
2019-06-29 10:20:36 +01:00
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
2019-10-28 04:43:01 +00:00
|
|
|
MAKE_SERVICE_COMMAND_META(GetProgramId),
|
2019-06-29 10:20:36 +01:00
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereGetProcessId),
|
2019-10-28 04:43:01 +00:00
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereHasLaunchedProgram),
|
2019-11-21 12:03:19 +00:00
|
|
|
MAKE_SERVICE_COMMAND_META(AtmosphereGetProcessInfo),
|
2019-06-29 10:20:36 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|