2014-04-16 04:28:03 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
|
2014-11-18 13:48:11 +00:00
|
|
|
static Handle g_event_handle = 0;
|
2014-05-27 02:55:55 +01:00
|
|
|
|
2014-11-17 03:58:39 +00:00
|
|
|
static void Initialize(Service::Interface* self) {
|
2014-05-30 04:26:58 +01:00
|
|
|
DEBUG_LOG(OSHLE, "called");
|
2014-08-26 23:24:40 +01:00
|
|
|
|
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
|
|
|
|
|
|
|
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-05-30 04:26:58 +01:00
|
|
|
DEBUG_LOG(OSHLE, "called");
|
2014-07-22 02:25:35 +01:00
|
|
|
|
2014-05-17 04:25:16 +01:00
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
2014-07-22 02:25:35 +01:00
|
|
|
|
|
|
|
// TODO(bunnei): Change to a semaphore once these have been implemented
|
|
|
|
g_event_handle = Kernel::CreateEvent(RESETTYPE_ONESHOT, "SRV:Event");
|
|
|
|
Kernel::SetEventLocked(g_event_handle, false);
|
|
|
|
|
|
|
|
cmd_buff[1] = 0; // No error
|
|
|
|
cmd_buff[3] = g_event_handle;
|
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-05-08 02:04:55 +01:00
|
|
|
u32* cmd_buff = Service::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);
|
2014-04-16 04:28:03 +01:00
|
|
|
Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
|
|
|
|
|
2014-06-06 05:35:49 +01:00
|
|
|
if (nullptr != service) {
|
2014-05-18 23:24:24 +01:00
|
|
|
cmd_buff[3] = service->GetHandle();
|
2014-05-30 04:54:09 +01:00
|
|
|
DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(), cmd_buff[3]);
|
2014-04-16 04:28:03 +01:00
|
|
|
} else {
|
2014-05-30 04:54:09 +01:00
|
|
|
ERROR_LOG(OSHLE, "(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[] = {
|
2014-04-16 04:28:03 +01:00
|
|
|
{0x00010002, Initialize, "Initialize"},
|
2014-05-17 04:25:16 +01:00
|
|
|
{0x00020000, GetProcSemaphore, "GetProcSemaphore"},
|
2014-06-06 05:35:49 +01:00
|
|
|
{0x00030100, nullptr, "RegisterService"},
|
|
|
|
{0x000400C0, nullptr, "UnregisterService"},
|
2014-04-16 04:28:03 +01:00
|
|
|
{0x00050100, GetServiceHandle, "GetServiceHandle"},
|
2014-11-02 06:15:38 +00:00
|
|
|
{0x000B0000, nullptr, "ReceiveNotification"},
|
|
|
|
{0x000C0080, nullptr, "PublishToSubscriber"}
|
2014-04-16 04:28:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
|
|
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface::~Interface() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|