Skip to content
Snippets Groups Projects
Commit 2ba4e226 authored by mailwl's avatar mailwl
Browse files

Service/PCTL: convert to module, add services, stub

PCTL::CreateServiceWithoutInitialize and IParentalControlService::Initialize, required by Kirby Star Allies
parent ea3151f4
No related branches found
No related tags found
No related merge requests found
...@@ -181,10 +181,10 @@ add_library(core STATIC ...@@ -181,10 +181,10 @@ add_library(core STATIC
hle/service/nvflinger/buffer_queue.h hle/service/nvflinger/buffer_queue.h
hle/service/nvflinger/nvflinger.cpp hle/service/nvflinger/nvflinger.cpp
hle/service/nvflinger/nvflinger.h hle/service/nvflinger/nvflinger.h
hle/service/pctl/module.cpp
hle/service/pctl/module.h
hle/service/pctl/pctl.cpp hle/service/pctl/pctl.cpp
hle/service/pctl/pctl.h hle/service/pctl/pctl.h
hle/service/pctl/pctl_a.cpp
hle/service/pctl/pctl_a.h
hle/service/service.cpp hle/service/service.cpp
hle/service/service.h hle/service/service.h
hle/service/set/set.cpp hle/service/set/set.cpp
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
#include "common/logging/log.h" #include "common/logging/log.h"
#include "core/hle/ipc_helpers.h" #include "core/hle/ipc_helpers.h"
#include "core/hle/service/pctl/pctl_a.h" #include "core/hle/service/pctl/module.h"
#include "core/hle/service/pctl/pctl.h"
namespace Service::PCTL { namespace Service::PCTL {
...@@ -12,7 +13,7 @@ class IParentalControlService final : public ServiceFramework<IParentalControlSe ...@@ -12,7 +13,7 @@ class IParentalControlService final : public ServiceFramework<IParentalControlSe
public: public:
IParentalControlService() : ServiceFramework("IParentalControlService") { IParentalControlService() : ServiceFramework("IParentalControlService") {
static const FunctionInfo functions[] = { static const FunctionInfo functions[] = {
{1, nullptr, "Initialize"}, {1, &IParentalControlService::Initialize, "Initialize"},
{1001, nullptr, "CheckFreeCommunicationPermission"}, {1001, nullptr, "CheckFreeCommunicationPermission"},
{1002, nullptr, "ConfirmLaunchApplicationPermission"}, {1002, nullptr, "ConfirmLaunchApplicationPermission"},
{1003, nullptr, "ConfirmResumeApplicationPermission"}, {1003, nullptr, "ConfirmResumeApplicationPermission"},
...@@ -108,20 +109,38 @@ public: ...@@ -108,20 +109,38 @@ public:
}; };
RegisterHandlers(functions); RegisterHandlers(functions);
} }
private:
void Initialize(Kernel::HLERequestContext& ctx) {
NGLOG_WARNING(Service_PCTL, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 2, 0, 0};
rb.Push(RESULT_SUCCESS);
}
}; };
void PCTL_A::CreateService(Kernel::HLERequestContext& ctx) {
void Module::Interface::CreateService(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(RESULT_SUCCESS);
rb.PushIpcInterface<IParentalControlService>();
NGLOG_DEBUG(Service_PCTL, "called");
}
void Module::Interface::CreateServiceWithoutInitialize(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2, 0, 1}; IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
rb.PushIpcInterface<IParentalControlService>(); rb.PushIpcInterface<IParentalControlService>();
NGLOG_DEBUG(Service_PCTL, "called"); NGLOG_DEBUG(Service_PCTL, "called");
} }
PCTL_A::PCTL_A() : ServiceFramework("pctl:a") { Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
static const FunctionInfo functions[] = { : ServiceFramework(name), module(std::move(module)) {}
{0, &PCTL_A::CreateService, "CreateService"},
{1, nullptr, "CreateServiceWithoutInitialize"}, void InstallInterfaces(SM::ServiceManager& service_manager) {
}; auto module = std::make_shared<Module>();
RegisterHandlers(functions); std::make_shared<PCTL>(module, "pctl")->InstallAsService(service_manager);
std::make_shared<PCTL>(module, "pctl:a")->InstallAsService(service_manager);
std::make_shared<PCTL>(module, "pctl:r")->InstallAsService(service_manager);
std::make_shared<PCTL>(module, "pctl:s")->InstallAsService(service_manager);
} }
} // namespace Service::PCTL } // namespace Service::PCTL
...@@ -8,13 +8,21 @@ ...@@ -8,13 +8,21 @@
namespace Service::PCTL { namespace Service::PCTL {
class PCTL_A final : public ServiceFramework<PCTL_A> { class Module final {
public: public:
PCTL_A(); class Interface : public ServiceFramework<Interface> {
~PCTL_A() = default; public:
Interface(std::shared_ptr<Module> module, const char* name);
private: void CreateService(Kernel::HLERequestContext& ctx);
void CreateService(Kernel::HLERequestContext& ctx); void CreateServiceWithoutInitialize(Kernel::HLERequestContext& ctx);
protected:
std::shared_ptr<Module> module;
};
}; };
/// Registers all PCTL services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);
} // namespace Service::PCTL } // namespace Service::PCTL
...@@ -3,12 +3,15 @@ ...@@ -3,12 +3,15 @@
// Refer to the license.txt file included. // Refer to the license.txt file included.
#include "core/hle/service/pctl/pctl.h" #include "core/hle/service/pctl/pctl.h"
#include "core/hle/service/pctl/pctl_a.h"
namespace Service::PCTL { namespace Service::PCTL {
void InstallInterfaces(SM::ServiceManager& service_manager) { PCTL::PCTL(std::shared_ptr<Module> module, const char* name)
std::make_shared<PCTL_A>()->InstallAsService(service_manager); : Module::Interface(std::move(module), name) {
static const FunctionInfo functions[] = {
{0, &PCTL::CreateService, "CreateService"},
{1, &PCTL::CreateServiceWithoutInitialize, "CreateServiceWithoutInitialize"},
};
RegisterHandlers(functions);
} }
} // namespace Service::PCTL } // namespace Service::PCTL
...@@ -4,11 +4,13 @@ ...@@ -4,11 +4,13 @@
#pragma once #pragma once
#include "core/hle/service/service.h" #include "core/hle/service/pctl/module.h"
namespace Service::PCTL { namespace Service::PCTL {
/// Registers all PCTL services with the specified service manager. class PCTL final : public Module::Interface {
void InstallInterfaces(SM::ServiceManager& service_manager); public:
explicit PCTL(std::shared_ptr<Module> module, const char* name);
};
} // namespace Service::PCTL } // namespace Service::PCTL
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
#include "core/hle/service/nifm/nifm.h" #include "core/hle/service/nifm/nifm.h"
#include "core/hle/service/ns/ns.h" #include "core/hle/service/ns/ns.h"
#include "core/hle/service/nvdrv/nvdrv.h" #include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/pctl/pctl.h" #include "core/hle/service/pctl/module.h"
#include "core/hle/service/service.h" #include "core/hle/service/service.h"
#include "core/hle/service/set/settings.h" #include "core/hle/service/set/settings.h"
#include "core/hle/service/sm/controller.h" #include "core/hle/service/sm/controller.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment