From f84b9ed4e8c38928e8e1bb57c2914256375b5af4 Mon Sep 17 00:00:00 2001 From: David Marcec Date: Sat, 6 Oct 2018 16:49:01 +1000 Subject: Ported #4296 from citra This will allow us to easily remove the use of "NFC" in "System" --- src/core/hle/kernel/client_port.h | 6 +++++- src/core/hle/kernel/server_port.h | 1 + src/core/hle/service/sm/sm.h | 19 +++++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/core/hle/kernel/client_port.h b/src/core/hle/kernel/client_port.h index f3dfebbb1..a82b29417 100644 --- a/src/core/hle/kernel/client_port.h +++ b/src/core/hle/kernel/client_port.h @@ -7,13 +7,13 @@ #include #include "common/common_types.h" #include "core/hle/kernel/object.h" +#include "core/hle/kernel/server_port.h" #include "core/hle/result.h" namespace Kernel { class ClientSession; class KernelCore; -class ServerPort; class ClientPort final : public Object { public: @@ -30,6 +30,10 @@ public: return HANDLE_TYPE; } + SharedPtr GetServerPort() const { + return server_port; + } + /** * Creates a new Session pair, adds the created ServerSession to the associated ServerPort's * list of pending sessions, and signals the ServerPort, causing any threads diff --git a/src/core/hle/kernel/server_port.h b/src/core/hle/kernel/server_port.h index 62fb51349..e52f8245f 100644 --- a/src/core/hle/kernel/server_port.h +++ b/src/core/hle/kernel/server_port.h @@ -11,6 +11,7 @@ #include "common/common_types.h" #include "core/hle/kernel/object.h" #include "core/hle/kernel/wait_object.h" +#include "core/hle/result.h" namespace Kernel { diff --git a/src/core/hle/service/sm/sm.h b/src/core/hle/service/sm/sm.h index da2c51082..4f8145dda 100644 --- a/src/core/hle/service/sm/sm.h +++ b/src/core/hle/service/sm/sm.h @@ -6,9 +6,12 @@ #include #include +#include #include +#include "core/hle/kernel/client_port.h" #include "core/hle/kernel/object.h" +#include "core/hle/kernel/server_port.h" #include "core/hle/result.h" #include "core/hle/service/service.h" @@ -48,6 +51,22 @@ public: ResultVal> GetServicePort(const std::string& name); ResultVal> ConnectToService(const std::string& name); + template + std::shared_ptr GetService(const std::string& service_name) const { + static_assert(std::is_base_of_v, + "Not a base of ServiceFrameworkBase"); + auto service = registered_services.find(service_name); + if (service == registered_services.end()) { + LOG_DEBUG(Service, "Can't find service: {}", service_name); + return nullptr; + } + auto port = service->second->GetServerPort(); + if (port == nullptr) { + return nullptr; + } + return std::static_pointer_cast(port->hle_handler); + } + void InvokeControlRequest(Kernel::HLERequestContext& context); private: -- cgit v1.2.3 From 612ce89ecaa3588a46f222d178673f4ee6c5637d Mon Sep 17 00:00:00 2001 From: David Marcec Date: Sat, 6 Oct 2018 17:47:33 +1000 Subject: Added forward define for ServerPort --- src/core/hle/kernel/client_port.cpp | 4 ++++ src/core/hle/kernel/client_port.h | 6 ++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/core/hle/kernel/client_port.cpp b/src/core/hle/kernel/client_port.cpp index 873d6c516..d4c91d529 100644 --- a/src/core/hle/kernel/client_port.cpp +++ b/src/core/hle/kernel/client_port.cpp @@ -17,6 +17,10 @@ namespace Kernel { ClientPort::ClientPort(KernelCore& kernel) : Object{kernel} {} ClientPort::~ClientPort() = default; +SharedPtr ClientPort::GetServerPort() const { + return server_port; +} + ResultVal> ClientPort::Connect() { // Note: Threads do not wait for the server endpoint to call // AcceptSession before returning from this call. diff --git a/src/core/hle/kernel/client_port.h b/src/core/hle/kernel/client_port.h index a82b29417..6cd607206 100644 --- a/src/core/hle/kernel/client_port.h +++ b/src/core/hle/kernel/client_port.h @@ -7,13 +7,13 @@ #include #include "common/common_types.h" #include "core/hle/kernel/object.h" -#include "core/hle/kernel/server_port.h" #include "core/hle/result.h" namespace Kernel { class ClientSession; class KernelCore; +class ServerPort; class ClientPort final : public Object { public: @@ -30,9 +30,7 @@ public: return HANDLE_TYPE; } - SharedPtr GetServerPort() const { - return server_port; - } + SharedPtr GetServerPort() const; /** * Creates a new Session pair, adds the created ServerSession to the associated ServerPort's -- cgit v1.2.3