mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
a097babe18
* boot2: Simplify g_additional_launch_programs It appears that Stratosphère is targeting C++17. In C++17, std::make_tuple is not required for initialisating a tuple anymore. Same thing, but less typing * Replace std::make_tuple with {} More readable and less noise. Also fixes two missing return statements.
88 lines
3.1 KiB
C++
88 lines
3.1 KiB
C++
#include <switch.h>
|
|
#include <stratosphere/servicesession.hpp>
|
|
#include "sm_user_service.hpp"
|
|
#include "sm_registration.hpp"
|
|
|
|
Result UserService::dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) {
|
|
Result rc = 0xF601;
|
|
switch ((UserServiceCmd)cmd_id) {
|
|
case User_Cmd_Initialize:
|
|
rc = WrapIpcCommandImpl<&UserService::initialize>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
|
break;
|
|
case User_Cmd_GetService:
|
|
rc = WrapIpcCommandImpl<&UserService::get_service>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
|
break;
|
|
case User_Cmd_RegisterService:
|
|
rc = WrapIpcCommandImpl<&UserService::register_service>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
|
break;
|
|
case User_Cmd_UnregisterService:
|
|
rc = WrapIpcCommandImpl<&UserService::unregister_service>(this, r, out_c, pointer_buffer, pointer_buffer_size);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
Result UserService::handle_deferred() {
|
|
/* If we're deferred, GetService failed. */
|
|
return WrapDeferredIpcCommandImpl<&UserService::deferred_get_service>(this, this->deferred_service);;
|
|
}
|
|
|
|
|
|
std::tuple<Result> UserService::initialize(PidDescriptor pid) {
|
|
this->pid = pid.pid;
|
|
this->has_initialized = true;
|
|
return {0};
|
|
}
|
|
|
|
std::tuple<Result, MovedHandle> UserService::get_service(u64 service) {
|
|
Handle session_h = 0;
|
|
Result rc = 0x415;
|
|
#ifdef SM_ENABLE_SMHAX
|
|
if (!this->has_initialized) {
|
|
rc = Registration::GetServiceForPid(Registration::GetInitialProcessId(), service, &session_h);
|
|
}
|
|
#endif
|
|
if (this->has_initialized) {
|
|
rc = Registration::GetServiceForPid(this->pid, service, &session_h);
|
|
}
|
|
/* It's possible that this will end up deferring us...take that into account. */
|
|
if (rc == RESULT_DEFER_SESSION) {
|
|
this->deferred_service = service;
|
|
}
|
|
return {rc, MovedHandle{session_h}};
|
|
}
|
|
|
|
std::tuple<Result, MovedHandle> UserService::deferred_get_service(u64 service) {
|
|
Handle session_h = 0;
|
|
Result rc = Registration::GetServiceHandle(service, &session_h);
|
|
return {rc, MovedHandle{session_h}};
|
|
}
|
|
|
|
std::tuple<Result, MovedHandle> UserService::register_service(u64 service, u8 is_light, u32 max_sessions) {
|
|
Handle service_h = 0;
|
|
Result rc = 0x415;
|
|
#ifdef SM_ENABLE_SMHAX
|
|
if (!this->has_initialized) {
|
|
rc = Registration::RegisterServiceForPid(Registration::GetInitialProcessId(), service, max_sessions, is_light != 0, &service_h);
|
|
}
|
|
#endif
|
|
if (this->has_initialized) {
|
|
rc = Registration::RegisterServiceForPid(this->pid, service, max_sessions, is_light != 0, &service_h);
|
|
}
|
|
return {rc, MovedHandle{service_h}};
|
|
}
|
|
|
|
std::tuple<Result> UserService::unregister_service(u64 service) {
|
|
Result rc = 0x415;
|
|
#ifdef SM_ENABLE_SMHAX
|
|
if (!this->has_initialized) {
|
|
rc = Registration::UnregisterServiceForPid(Registration::GetInitialProcessId(), service);
|
|
}
|
|
#endif
|
|
if (this->has_initialized) {
|
|
rc = Registration::UnregisterServiceForPid(this->pid, service);
|
|
}
|
|
return {rc};
|
|
}
|