aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ldr/ldr.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-25 22:57:08 -0400
committerLioncash <mathew1800@gmail.com>2018-07-25 23:11:03 -0400
commit3fb124961eb99a2dfaacdc32541464387901edc1 (patch)
treec659f2ecbfc0ff2390b5eceecd5acf703bdb31bc /src/core/hle/service/ldr/ldr.cpp
parentb0adb9a3d9f91e31231bef33792cbf08cc7ecd7f (diff)
service: Add ldr services
Adds the skeleton for the ldr-related services based off the information provided on Switch Brew.
Diffstat (limited to 'src/core/hle/service/ldr/ldr.cpp')
-rw-r--r--src/core/hle/service/ldr/ldr.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp
new file mode 100644
index 000000000..ec32faf15
--- /dev/null
+++ b/src/core/hle/service/ldr/ldr.cpp
@@ -0,0 +1,81 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include <memory>
+
+#include "core/hle/service/ldr/ldr.h"
+#include "core/hle/service/service.h"
+
+namespace Service::LDR {
+
+class DebugMonitor final : public ServiceFramework<DebugMonitor> {
+public:
+ explicit DebugMonitor() : ServiceFramework{"ldr:dmnt"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "AddProcessToDebugLaunchQueue"},
+ {1, nullptr, "ClearDebugLaunchQueue"},
+ {2, nullptr, "GetNsoInfos"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+class ProcessManager final : public ServiceFramework<ProcessManager> {
+public:
+ explicit ProcessManager() : ServiceFramework{"ldr:pm"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "CreateProcess"},
+ {1, nullptr, "GetProgramInfo"},
+ {2, nullptr, "RegisterTitle"},
+ {3, nullptr, "UnregisterTitle"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+class Shell final : public ServiceFramework<Shell> {
+public:
+ explicit Shell() : ServiceFramework{"ldr:shel"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "AddProcessToLaunchQueue"},
+ {1, nullptr, "ClearLaunchQueue"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+class RelocatableObject final : public ServiceFramework<RelocatableObject> {
+public:
+ explicit RelocatableObject() : ServiceFramework{"ldr:ro"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "LoadNro"},
+ {1, nullptr, "UnloadNro"},
+ {2, nullptr, "LoadNrr"},
+ {3, nullptr, "UnloadNrr"},
+ {4, nullptr, "Initialize"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+ }
+};
+
+void InstallInterfaces(SM::ServiceManager& sm) {
+ std::make_shared<DebugMonitor>()->InstallAsService(sm);
+ std::make_shared<ProcessManager>()->InstallAsService(sm);
+ std::make_shared<Shell>()->InstallAsService(sm);
+ std::make_shared<RelocatableObject>()->InstallAsService(sm);
+}
+
+} // namespace Service::LDR