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"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
|
2014-04-17 01:46:05 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Namespace SRV
|
|
|
|
|
2014-04-16 04:28:03 +01:00
|
|
|
namespace SRV {
|
|
|
|
|
2014-04-25 03:16:54 +01:00
|
|
|
void Initialize(Service::Interface* self) {
|
2014-04-16 04:28:03 +01:00
|
|
|
NOTICE_LOG(OSHLE, "SRV::Sync - Initialize");
|
|
|
|
}
|
|
|
|
|
2014-04-25 03:16:54 +01:00
|
|
|
void GetServiceHandle(Service::Interface* self) {
|
2014-04-16 04:28:03 +01:00
|
|
|
Syscall::Result res = 0;
|
|
|
|
u32* cmd_buff = (u32*)HLE::GetPointer(HLE::CMD_BUFFER_ADDR + Service::kCommandHeaderOffset);
|
|
|
|
|
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-04-17 02:22:15 +01:00
|
|
|
NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(),
|
2014-04-16 04:28:03 +01:00
|
|
|
service->GetUID());
|
|
|
|
|
|
|
|
if (NULL != service) {
|
|
|
|
cmd_buff[3] = service->GetUID();
|
|
|
|
} else {
|
2014-04-17 02:22:15 +01:00
|
|
|
ERROR_LOG(OSHLE, "Service %s does not exist", port_name.c_str());
|
2014-04-16 04:28:03 +01:00
|
|
|
res = -1;
|
|
|
|
}
|
|
|
|
cmd_buff[1] = res;
|
|
|
|
|
|
|
|
//return res;
|
|
|
|
}
|
|
|
|
|
2014-04-25 03:16:54 +01:00
|
|
|
const Interface::FunctionInfo FunctionTable[] = {
|
2014-04-16 04:28:03 +01:00
|
|
|
{0x00010002, Initialize, "Initialize"},
|
|
|
|
{0x00020000, NULL, "GetProcSemaphore"},
|
|
|
|
{0x00030100, NULL, "RegisterService"},
|
|
|
|
{0x000400C0, NULL, "UnregisterService"},
|
|
|
|
{0x00050100, GetServiceHandle, "GetServiceHandle"},
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface class
|
|
|
|
|
|
|
|
Interface::Interface() {
|
|
|
|
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
|
|
|
|
}
|
|
|
|
|
|
|
|
Interface::~Interface() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|