Files
eden/src/core/hle/service/ldn/ldn.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

157 lines
5.7 KiB
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-07-26 01:16:08 -04:00
2022-08-07 23:54:51 +02:00
#include "core/core.h"
#include "core/hle/service/cmif_serialization.h"
2018-07-26 01:16:08 -04:00
#include "core/hle/service/ldn/ldn.h"
#include "core/hle/service/ldn/monitor_service.h"
#include "core/hle/service/ldn/sf_monitor_service.h"
#include "core/hle/service/ldn/sf_service.h"
#include "core/hle/service/ldn/sf_service_monitor.h"
#include "core/hle/service/ldn/system_local_communication_service.h"
#include "core/hle/service/ldn/user_local_communication_service.h"
2018-07-26 01:16:08 -04:00
namespace Service::LDN {
class IMonitorServiceCreator final : public ServiceFramework<IMonitorServiceCreator> {
2018-07-26 01:16:08 -04:00
public:
explicit IMonitorServiceCreator(Core::System& system_) : ServiceFramework{system_, "ldn:m"} {
2018-07-26 01:16:08 -04:00
// clang-format off
static const FunctionInfo functions[] = {
{0, C<&IMonitorServiceCreator::CreateMonitorService>, "CreateMonitorService"}
2018-07-26 01:16:08 -04:00
};
// clang-format on
RegisterHandlers(functions);
}
private:
Result CreateMonitorService(OutInterface<IMonitorService> out_interface) {
LOG_DEBUG(Service_LDN, "called");
*out_interface = std::make_shared<IMonitorService>(system);
R_SUCCEED();
2018-07-26 01:16:08 -04:00
}
};
class ISystemServiceCreator final : public ServiceFramework<ISystemServiceCreator> {
2018-07-26 01:16:08 -04:00
public:
explicit ISystemServiceCreator(Core::System& system_) : ServiceFramework{system_, "ldn:s"} {
2018-07-26 01:16:08 -04:00
// clang-format off
static const FunctionInfo functions[] = {
{0, C<&ISystemServiceCreator::CreateSystemLocalCommunicationService>, "CreateSystemLocalCommunicationService"},
2024-04-05 01:58:30 +02:00
{1, nullptr, "CreateClientProcessMonitor"} // 18.0.0+
2019-04-10 14:48:37 -04:00
};
// clang-format on
RegisterHandlers(functions);
}
private:
Result CreateSystemLocalCommunicationService(
OutInterface<ISystemLocalCommunicationService> out_interface) {
LOG_DEBUG(Service_LDN, "called");
*out_interface = std::make_shared<ISystemLocalCommunicationService>(system);
R_SUCCEED();
2018-07-26 01:16:08 -04:00
}
};
class IUserServiceCreator final : public ServiceFramework<IUserServiceCreator> {
2018-07-26 01:16:08 -04:00
public:
explicit IUserServiceCreator(Core::System& system_) : ServiceFramework{system_, "ldn:u"} {
2018-07-26 01:16:08 -04:00
// clang-format off
static const FunctionInfo functions[] = {
{0, C<&IUserServiceCreator::CreateUserLocalCommunicationService>, "CreateUserLocalCommunicationService"},
2024-04-05 01:58:30 +02:00
{1, nullptr, "CreateClientProcessMonitor"} // 18.0.0+
2018-07-26 01:16:08 -04:00
};
// clang-format on
RegisterHandlers(functions);
}
private:
Result CreateUserLocalCommunicationService(
OutInterface<IUserLocalCommunicationService> out_interface) {
LOG_DEBUG(Service_LDN, "called");
*out_interface = std::make_shared<IUserLocalCommunicationService>(system);
R_SUCCEED();
2018-07-26 01:16:08 -04:00
}
};
class ISfServiceCreator final : public ServiceFramework<ISfServiceCreator> {
public:
explicit ISfServiceCreator(Core::System& system_, bool is_system_, const char* name_)
: ServiceFramework{system_, name_}, is_system{is_system_} {
// clang-format off
static const FunctionInfo functions[] = {
{0, C<&ISfServiceCreator::CreateNetworkService>, "CreateNetworkService"},
{8, C<&ISfServiceCreator::CreateNetworkServiceMonitor>, "CreateNetworkServiceMonitor"},
};
// clang-format on
RegisterHandlers(functions);
}
private:
Result CreateNetworkService(OutInterface<ISfService> out_interface, u32 input,
u64 reserved_input) {
LOG_WARNING(Service_LDN, "(STUBBED) called reserved_input={} input={}", reserved_input,
input);
*out_interface = std::make_shared<ISfService>(system);
R_SUCCEED();
}
Result CreateNetworkServiceMonitor(OutInterface<ISfServiceMonitor> out_interface,
u64 reserved_input) {
LOG_WARNING(Service_LDN, "(STUBBED) called reserved_input={}", reserved_input);
*out_interface = std::make_shared<ISfServiceMonitor>(system);
R_SUCCEED();
}
bool is_system{};
};
class ISfMonitorServiceCreator final : public ServiceFramework<ISfMonitorServiceCreator> {
public:
explicit ISfMonitorServiceCreator(Core::System& system_) : ServiceFramework{system_, "lp2p:m"} {
// clang-format off
static const FunctionInfo functions[] = {
{0, C<&ISfMonitorServiceCreator::CreateMonitorService>, "CreateMonitorService"},
};
// clang-format on
RegisterHandlers(functions);
}
private:
Result CreateMonitorService(OutInterface<ISfMonitorService> out_interface, u64 reserved_input) {
LOG_INFO(Service_LDN, "called, reserved_input={}", reserved_input);
*out_interface = std::make_shared<ISfMonitorService>(system);
R_SUCCEED();
}
};
2023-02-18 16:26:48 -05:00
void LoopProcess(Core::System& system) {
auto server_manager = std::make_unique<ServerManager>(system);
server_manager->RegisterNamedService("ldn:m", std::make_shared<IMonitorServiceCreator>(system));
server_manager->RegisterNamedService("ldn:s", std::make_shared<ISystemServiceCreator>(system));
server_manager->RegisterNamedService("ldn:u", std::make_shared<IUserServiceCreator>(system));
server_manager->RegisterNamedService(
"lp2p:app", std::make_shared<ISfServiceCreator>(system, false, "lp2p:app"));
server_manager->RegisterNamedService(
"lp2p:sys", std::make_shared<ISfServiceCreator>(system, true, "lp2p:sys"));
server_manager->RegisterNamedService("lp2p:m",
std::make_shared<ISfMonitorServiceCreator>(system));
2023-02-18 16:26:48 -05:00
ServerManager::RunServer(std::move(server_manager));
2018-07-26 01:16:08 -04:00
}
} // namespace Service::LDN