2014-04-13 01:55:36 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/common.h"
|
|
|
|
#include "common/log.h"
|
2014-04-16 02:40:19 +00:00
|
|
|
#include "common/string_util.h"
|
2014-04-13 01:55:36 +00:00
|
|
|
|
2014-04-13 04:38:48 +00:00
|
|
|
#include "core/hle/hle.h"
|
2014-05-19 01:43:29 +00:00
|
|
|
|
2014-04-13 01:55:36 +00:00
|
|
|
#include "core/hle/service/service.h"
|
2014-04-13 20:33:45 +00:00
|
|
|
#include "core/hle/service/apt.h"
|
2014-06-26 21:58:44 +00:00
|
|
|
#include "core/hle/service/fs.h"
|
2014-04-16 04:03:41 +00:00
|
|
|
#include "core/hle/service/gsp.h"
|
2014-04-17 00:58:36 +00:00
|
|
|
#include "core/hle/service/hid.h"
|
2014-05-30 03:26:58 +00:00
|
|
|
#include "core/hle/service/ndm.h"
|
2014-04-16 02:40:19 +00:00
|
|
|
#include "core/hle/service/srv.h"
|
2014-04-13 01:55:36 +00:00
|
|
|
|
2014-05-19 01:43:29 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
|
2014-04-13 01:55:36 +00:00
|
|
|
namespace Service {
|
|
|
|
|
2014-06-06 04:35:49 +00:00
|
|
|
Manager* g_manager = nullptr; ///< Service manager
|
2014-04-13 01:55:36 +00:00
|
|
|
|
2014-04-13 04:38:48 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Service Manager class
|
|
|
|
|
2014-04-13 01:55:36 +00:00
|
|
|
Manager::Manager() {
|
|
|
|
}
|
|
|
|
|
|
|
|
Manager::~Manager() {
|
|
|
|
for(Interface* service : m_services) {
|
|
|
|
DeleteService(service->GetPortName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a service to the manager (does not create it though)
|
|
|
|
void Manager::AddService(Interface* service) {
|
2014-05-20 22:13:25 +00:00
|
|
|
m_port_map[service->GetPortName()] = Kernel::g_object_pool.Create(service);
|
2014-04-13 01:55:36 +00:00
|
|
|
m_services.push_back(service);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Removes a service from the manager, also frees memory
|
|
|
|
void Manager::DeleteService(std::string port_name) {
|
2014-05-19 01:43:29 +00:00
|
|
|
Interface* service = FetchFromPortName(port_name);
|
|
|
|
m_services.erase(std::remove(m_services.begin(), m_services.end(), service), m_services.end());
|
2014-04-13 01:55:36 +00:00
|
|
|
m_port_map.erase(port_name);
|
|
|
|
delete service;
|
|
|
|
}
|
|
|
|
|
2014-05-18 22:24:24 +00:00
|
|
|
/// Get a Service Interface from its Handle
|
|
|
|
Interface* Manager::FetchFromHandle(Handle handle) {
|
2014-05-20 22:13:25 +00:00
|
|
|
return Kernel::g_object_pool.GetFast<Interface>(handle);
|
2014-04-13 01:55:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a Service Interface from its port
|
|
|
|
Interface* Manager::FetchFromPortName(std::string port_name) {
|
|
|
|
auto itr = m_port_map.find(port_name);
|
|
|
|
if (itr == m_port_map.end()) {
|
2014-06-06 04:35:49 +00:00
|
|
|
return nullptr;
|
2014-04-13 01:55:36 +00:00
|
|
|
}
|
2014-05-18 22:24:24 +00:00
|
|
|
return FetchFromHandle(itr->second);
|
2014-04-13 01:55:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-13 04:38:48 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Module interface
|
|
|
|
|
2014-04-13 01:55:36 +00:00
|
|
|
/// Initialize ServiceManager
|
|
|
|
void Init() {
|
|
|
|
g_manager = new Manager;
|
2014-04-16 04:03:41 +00:00
|
|
|
|
2014-04-16 02:40:19 +00:00
|
|
|
g_manager->AddService(new SRV::Interface);
|
2014-04-16 02:42:35 +00:00
|
|
|
g_manager->AddService(new APT_U::Interface);
|
2014-06-26 21:58:44 +00:00
|
|
|
g_manager->AddService(new FS_User::Interface);
|
2014-04-16 04:03:41 +00:00
|
|
|
g_manager->AddService(new GSP_GPU::Interface);
|
2014-04-17 00:58:36 +00:00
|
|
|
g_manager->AddService(new HID_User::Interface);
|
2014-05-30 03:26:58 +00:00
|
|
|
g_manager->AddService(new NDM_U::Interface);
|
2014-04-16 04:03:41 +00:00
|
|
|
|
2014-05-30 03:26:58 +00:00
|
|
|
NOTICE_LOG(HLE, "initialized OK");
|
2014-04-13 01:55:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown ServiceManager
|
|
|
|
void Shutdown() {
|
|
|
|
delete g_manager;
|
2014-05-30 03:26:58 +00:00
|
|
|
NOTICE_LOG(HLE, "shutdown OK");
|
2014-04-13 01:55:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|