2014-04-16 04:28:03 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-16 04:28:03 +01:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
|
2014-04-16 04:28:03 +01:00
|
|
|
#include "core/hle/hle.h"
|
|
|
|
#include "core/hle/service/srv.h"
|
2014-07-22 02:25:35 +01:00
|
|
|
#include "core/hle/kernel/event.h"
|
2014-04-16 04:28:03 +01:00
|
|
|
|
2014-04-17 01:46:05 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace SRV
|
|
|
|
|
2014-04-16 04:28:03 +01:00
|
|
|
namespace SRV {
|
|
|
|
|
2015-01-23 05:11:25 +00:00
|
|
|
static Kernel::SharedPtr<Kernel::Event> event_handle;
|
2014-05-27 02:55:55 +01:00
|
|
|
|
2014-11-17 03:58:39 +00:00
|
|
|
static void Initialize(Service::Interface* self) {
|
2014-12-14 05:30:11 +00:00
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
2014-08-26 23:24:40 +01:00
|
|
|
|
|
|
|
cmd_buff[1] = 0; // No error
|
2014-04-16 04:28:03 +01:00
|
|
|
}
|
|
|
|
|
2014-11-17 03:58:39 +00:00
|
|
|
static void GetProcSemaphore(Service::Interface* self) {
|
2014-12-14 05:30:11 +00:00
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
2014-07-22 02:25:35 +01:00
|
|
|
|
|
|
|
// TODO(bunnei): Change to a semaphore once these have been implemented
|
2015-02-01 02:14:40 +00:00
|
|
|
event_handle = Kernel::Event::Create(RESETTYPE_ONESHOT, "SRV:Event");
|
2015-01-23 05:11:25 +00:00
|
|
|
event_handle->Clear();
|
2014-07-22 02:25:35 +01:00
|
|
|
|
|
|
|
cmd_buff[1] = 0; // No error
|
2015-01-23 05:11:25 +00:00
|
|
|
cmd_buff[3] = Kernel::g_handle_table.Create(event_handle).MoveFrom();
|
2014-05-17 04:25:16 +01:00
|
|
|
}
|
|
|
|
|
2014-11-17 03:58:39 +00:00
|
|
|
static void GetServiceHandle(Service::Interface* self) {
|
2014-10-23 04:20:01 +01:00
|
|
|
ResultCode res = RESULT_SUCCESS;
|
2014-12-14 05:30:11 +00:00
|
|
|
u32* cmd_buff = Kernel::GetCommandBuffer();
|
2014-04-16 04:28:03 +01:00
|
|
|
|
2014-04-16 05:03:41 +01:00
|
|
|
std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
|
2015-01-30 18:07:04 +00:00
|
|
|
auto it = Service::g_srv_services.find(port_name);
|
2014-04-16 04:28:03 +01:00
|
|
|
|
2015-01-30 18:07:04 +00:00
|
|
|
if (it != Service::g_srv_services.end()) {
|
|
|
|
cmd_buff[3] = Kernel::g_handle_table.Create(it->second).MoveFrom();
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Service_SRV, "called port=%s, handle=0x%08X", port_name.c_str(), cmd_buff[3]);
|
2014-04-16 04:28:03 +01:00
|
|
|
} else {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Service_SRV, "(UNIMPLEMENTED) called port=%s", port_name.c_str());
|
2014-10-23 04:20:01 +01:00
|
|
|
res = UnimplementedFunction(ErrorModule::SRV);
|
2014-04-16 04:28:03 +01:00
|
|
|
}
|
2014-10-23 04:20:01 +01:00
|
|
|
cmd_buff[1] = res.raw;
|
2014-04-16 04:28:03 +01:00
|
|
|
}
|
|
|
|
|
2014-04-25 03:16:54 +01:00
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
2015-01-02 00:58:27 +00:00
|
|
|
{0x00010002, Initialize, "Initialize"},
|
|
|
|
{0x00020000, GetProcSemaphore, "GetProcSemaphore"},
|
|
|
|
{0x00030100, nullptr, "RegisterService"},
|
|
|
|
{0x000400C0, nullptr, "UnregisterService"},
|
|
|
|
{0x00050100, GetServiceHandle, "GetServiceHandle"},
|
|
|
|
{0x000600C2, nullptr, "RegisterHandle"},
|
|
|
|
{0x00090040, nullptr, "Subscribe"},
|
|
|
|
{0x000B0000, nullptr, "ReceiveNotification"},
|
|
|
|
{0x000C0080, nullptr, "PublishToSubscriber"},
|
2014-04-16 04:28:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
2015-01-30 18:56:49 +00:00
|
|
|
Register(FunctionTable);
|
2014-04-16 04:28:03 +01:00
|
|
|
}
|
|
|
|
|
2015-07-17 06:24:13 +01:00
|
|
|
Interface::~Interface() {
|
|
|
|
event_handle = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-16 04:28:03 +01:00
|
|
|
} // namespace
|