2014-04-16 03:28:03 +00: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"
|
|
|
|
#include "core/hle/service/service.h"
|
2014-07-22 01:25:35 +00:00
|
|
|
#include "core/hle/kernel/event.h"
|
2014-04-16 03:28:03 +00:00
|
|
|
|
2014-04-17 00:46:05 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace SRV
|
|
|
|
|
2014-04-16 03:28:03 +00:00
|
|
|
namespace SRV {
|
|
|
|
|
2014-07-22 01:25:35 +00:00
|
|
|
Handle g_event_handle = 0;
|
2014-05-27 01:55:55 +00:00
|
|
|
|
2014-04-25 02:16:54 +00:00
|
|
|
void Initialize(Service::Interface* self) {
|
2014-05-30 03:26:58 +00:00
|
|
|
DEBUG_LOG(OSHLE, "called");
|
2014-04-16 03:28:03 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 03:25:16 +00:00
|
|
|
void GetProcSemaphore(Service::Interface* self) {
|
2014-05-30 03:26:58 +00:00
|
|
|
DEBUG_LOG(OSHLE, "called");
|
2014-07-22 01:25:35 +00:00
|
|
|
|
2014-05-17 03:25:16 +00:00
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
2014-07-22 01:25:35 +00: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 03:25:16 +00:00
|
|
|
}
|
|
|
|
|
2014-04-25 02:16:54 +00:00
|
|
|
void GetServiceHandle(Service::Interface* self) {
|
2014-05-18 22:12:29 +00:00
|
|
|
Result res = 0;
|
2014-05-08 01:04:55 +00:00
|
|
|
u32* cmd_buff = Service::GetCommandBuffer();
|
2014-04-16 03:28:03 +00:00
|
|
|
|
2014-04-16 04:03:41 +00:00
|
|
|
std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
|
2014-04-16 03:28:03 +00:00
|
|
|
Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
|
|
|
|
|
2014-06-06 04:35:49 +00:00
|
|
|
if (nullptr != service) {
|
2014-05-18 22:24:24 +00:00
|
|
|
cmd_buff[3] = service->GetHandle();
|
2014-05-30 03:54:09 +00:00
|
|
|
DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(), cmd_buff[3]);
|
2014-04-16 03:28:03 +00:00
|
|
|
} else {
|
2014-05-30 03:54:09 +00:00
|
|
|
ERROR_LOG(OSHLE, "(UNIMPLEMENTED) called port=%s", port_name.c_str());
|
2014-04-16 03:28:03 +00:00
|
|
|
res = -1;
|
|
|
|
}
|
|
|
|
cmd_buff[1] = res;
|
|
|
|
}
|
|
|
|
|
2014-04-25 02:16:54 +00:00
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
2014-04-16 03:28:03 +00:00
|
|
|
{0x00010002, Initialize, "Initialize"},
|
2014-05-17 03:25:16 +00:00
|
|
|
{0x00020000, GetProcSemaphore, "GetProcSemaphore"},
|
2014-06-06 04:35:49 +00:00
|
|
|
{0x00030100, nullptr, "RegisterService"},
|
|
|
|
{0x000400C0, nullptr, "UnregisterService"},
|
2014-04-16 03:28:03 +00:00
|
|
|
{0x00050100, GetServiceHandle, "GetServiceHandle"},
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
|
|
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface::~Interface() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|