2014-04-15 20:28:03 -07: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-21 18:25:35 -07:00
|
|
|
#include "core/hle/kernel/event.h"
|
2014-04-15 20:28:03 -07:00
|
|
|
|
2014-04-16 17:46:05 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace SRV
|
|
|
|
|
2014-04-15 20:28:03 -07:00
|
|
|
namespace SRV {
|
|
|
|
|
2014-11-18 05:48:11 -08:00
|
|
|
static Handle g_event_handle = 0;
|
2014-05-26 18:55:55 -07:00
|
|
|
|
2014-11-16 19:58:39 -08:00
|
|
|
static void Initialize(Service::Interface* self) {
|
2014-05-29 20:26:58 -07:00
|
|
|
DEBUG_LOG(OSHLE, "called");
|
2014-08-26 15:24:40 -07:00
|
|
|
|
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
|
|
|
|
|
|
|
cmd_buff[1] = 0; // No error
|
2014-04-15 20:28:03 -07:00
|
|
|
}
|
|
|
|
|
2014-11-16 19:58:39 -08:00
|
|
|
static void GetProcSemaphore(Service::Interface* self) {
|
2014-05-29 20:26:58 -07:00
|
|
|
DEBUG_LOG(OSHLE, "called");
|
2014-07-21 18:25:35 -07:00
|
|
|
|
2014-05-16 20:25:16 -07:00
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
2014-07-21 18:25:35 -07: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-16 20:25:16 -07:00
|
|
|
}
|
|
|
|
|
2014-11-16 19:58:39 -08:00
|
|
|
static void GetServiceHandle(Service::Interface* self) {
|
2014-10-22 20:20:01 -07:00
|
|
|
ResultCode res = RESULT_SUCCESS;
|
2014-05-07 18:04:55 -07:00
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
2014-04-15 20:28:03 -07:00
|
|
|
|
2014-04-15 21:03:41 -07:00
|
|
|
std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
|
2014-04-15 20:28:03 -07:00
|
|
|
Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
|
|
|
|
|
2014-06-05 21:35:49 -07:00
|
|
|
if (nullptr != service) {
|
2014-05-18 15:24:24 -07:00
|
|
|
cmd_buff[3] = service->GetHandle();
|
2014-05-29 20:54:09 -07:00
|
|
|
DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(), cmd_buff[3]);
|
2014-04-15 20:28:03 -07:00
|
|
|
} else {
|
2014-05-29 20:54:09 -07:00
|
|
|
ERROR_LOG(OSHLE, "(UNIMPLEMENTED) called port=%s", port_name.c_str());
|
2014-10-22 20:20:01 -07:00
|
|
|
res = UnimplementedFunction(ErrorModule::SRV);
|
2014-04-15 20:28:03 -07:00
|
|
|
}
|
2014-10-22 20:20:01 -07:00
|
|
|
cmd_buff[1] = res.raw;
|
2014-04-15 20:28:03 -07:00
|
|
|
}
|
|
|
|
|
2014-04-24 19:16:54 -07:00
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
2014-04-15 20:28:03 -07:00
|
|
|
{0x00010002, Initialize, "Initialize"},
|
2014-05-16 20:25:16 -07:00
|
|
|
{0x00020000, GetProcSemaphore, "GetProcSemaphore"},
|
2014-06-05 21:35:49 -07:00
|
|
|
{0x00030100, nullptr, "RegisterService"},
|
|
|
|
{0x000400C0, nullptr, "UnregisterService"},
|
2014-04-15 20:28:03 -07:00
|
|
|
{0x00050100, GetServiceHandle, "GetServiceHandle"},
|
2014-11-01 23:15:38 -07:00
|
|
|
{0x000B0000, nullptr, "ReceiveNotification"},
|
|
|
|
{0x000C0080, nullptr, "PublishToSubscriber"}
|
2014-04-15 20:28:03 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
|
|
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface::~Interface() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|