2017-10-15 02:18:42 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
2017-12-29 05:36:22 +00:00
|
|
|
#include "core/hle/kernel/domain.h"
|
2017-10-15 02:18:42 +00:00
|
|
|
#include "core/hle/service/sm/controller.h"
|
|
|
|
|
|
|
|
namespace Service {
|
|
|
|
namespace SM {
|
|
|
|
|
2017-10-15 05:24:22 +00:00
|
|
|
void Controller::ConvertSessionToDomain(Kernel::HLERequestContext& ctx) {
|
2017-12-29 05:36:22 +00:00
|
|
|
auto domain = Kernel::Domain::CreateFromSession(*ctx.ServerSession()->parent).Unwrap();
|
|
|
|
|
2017-10-15 05:24:22 +00:00
|
|
|
IPC::RequestBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-07 15:26:35 +00:00
|
|
|
rb.Push(static_cast<u32>(domain->request_handlers.size()));
|
2017-12-29 05:36:22 +00:00
|
|
|
|
|
|
|
LOG_DEBUG(Service, "called, domain=%d", domain->GetObjectId());
|
2017-10-15 05:24:22 +00:00
|
|
|
}
|
|
|
|
|
2017-12-29 05:39:34 +00:00
|
|
|
void Controller::DuplicateSession(Kernel::HLERequestContext& ctx) {
|
2018-01-07 15:26:35 +00:00
|
|
|
IPC::RequestBuilder rb{ctx, 2, 0, 1};
|
2017-12-29 05:39:34 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-01-07 15:39:57 +00:00
|
|
|
// TODO(Subv): Check if this is correct
|
|
|
|
if (ctx.IsDomain())
|
|
|
|
rb.PushMoveObjects(ctx.Domain());
|
|
|
|
else
|
|
|
|
rb.PushMoveObjects(ctx.ServerSession());
|
2017-12-29 05:39:34 +00:00
|
|
|
|
|
|
|
LOG_DEBUG(Service, "called");
|
|
|
|
}
|
|
|
|
|
2017-10-15 02:18:42 +00:00
|
|
|
void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
|
2017-10-15 05:24:22 +00:00
|
|
|
IPC::RequestBuilder rb{ctx, 3};
|
2017-10-15 02:18:42 +00:00
|
|
|
rb.Push(RESULT_SUCCESS);
|
2017-10-15 05:24:22 +00:00
|
|
|
rb.Push<u32>(0x500);
|
2017-12-29 05:39:34 +00:00
|
|
|
|
2017-10-15 02:18:42 +00:00
|
|
|
LOG_WARNING(Service, "(STUBBED) called");
|
|
|
|
}
|
|
|
|
|
|
|
|
Controller::Controller() : ServiceFramework("IpcController") {
|
|
|
|
static const FunctionInfo functions[] = {
|
2017-10-15 05:24:22 +00:00
|
|
|
{0x00000000, &Controller::ConvertSessionToDomain, "ConvertSessionToDomain"},
|
2017-10-15 02:18:42 +00:00
|
|
|
{0x00000001, nullptr, "ConvertDomainToSession"},
|
2017-12-29 05:39:34 +00:00
|
|
|
{0x00000002, &Controller::DuplicateSession, "DuplicateSession"},
|
2017-10-15 02:18:42 +00:00
|
|
|
{0x00000003, &Controller::QueryPointerBufferSize, "QueryPointerBufferSize"},
|
|
|
|
{0x00000004, nullptr, "DuplicateSessionEx"},
|
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace SM
|
|
|
|
} // namespace Service
|