mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:30:00 +00:00
sm: Make use of IsBaseOf for GetService
This commit is contained in:
parent
9b75481755
commit
6a0b77996b
1 changed files with 2 additions and 3 deletions
|
@ -9,6 +9,7 @@
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
#include "common/concepts.h"
|
||||||
#include "core/hle/kernel/client_port.h"
|
#include "core/hle/kernel/client_port.h"
|
||||||
#include "core/hle/kernel/object.h"
|
#include "core/hle/kernel/object.h"
|
||||||
#include "core/hle/kernel/server_port.h"
|
#include "core/hle/kernel/server_port.h"
|
||||||
|
@ -56,10 +57,8 @@ public:
|
||||||
ResultVal<std::shared_ptr<Kernel::ClientPort>> GetServicePort(const std::string& name);
|
ResultVal<std::shared_ptr<Kernel::ClientPort>> GetServicePort(const std::string& name);
|
||||||
ResultVal<std::shared_ptr<Kernel::ClientSession>> ConnectToService(const std::string& name);
|
ResultVal<std::shared_ptr<Kernel::ClientSession>> ConnectToService(const std::string& name);
|
||||||
|
|
||||||
template <typename T>
|
template <Common::IsBaseOf<Kernel::SessionRequestHandler> T>
|
||||||
std::shared_ptr<T> GetService(const std::string& service_name) const {
|
std::shared_ptr<T> GetService(const std::string& service_name) const {
|
||||||
static_assert(std::is_base_of_v<Kernel::SessionRequestHandler, T>,
|
|
||||||
"Not a base of ServiceFrameworkBase");
|
|
||||||
auto service = registered_services.find(service_name);
|
auto service = registered_services.find(service_name);
|
||||||
if (service == registered_services.end()) {
|
if (service == registered_services.end()) {
|
||||||
LOG_DEBUG(Service, "Can't find service: {}", service_name);
|
LOG_DEBUG(Service, "Can't find service: {}", service_name);
|
||||||
|
|
Loading…
Reference in a new issue