2014-04-13 02:55:36 +01: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 03:40:19 +01:00
|
|
|
#include "common/string_util.h"
|
2014-04-13 02:55:36 +01:00
|
|
|
|
2014-04-13 05:38:48 +01:00
|
|
|
#include "core/hle/hle.h"
|
2014-04-13 02:55:36 +01:00
|
|
|
#include "core/hle/service/service.h"
|
2014-04-13 21:33:45 +01:00
|
|
|
#include "core/hle/service/apt.h"
|
2014-04-16 05:03:41 +01:00
|
|
|
#include "core/hle/service/gsp.h"
|
2014-04-17 01:58:36 +01:00
|
|
|
#include "core/hle/service/hid.h"
|
2014-04-16 03:40:19 +01:00
|
|
|
#include "core/hle/service/srv.h"
|
2014-04-13 02:55:36 +01:00
|
|
|
|
|
|
|
namespace Service {
|
|
|
|
|
|
|
|
Manager* g_manager = NULL; ///< Service manager
|
|
|
|
|
2014-04-13 05:38:48 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Service Manager class
|
|
|
|
|
2014-04-13 02:55:36 +01: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) {
|
|
|
|
int index = m_services.size();
|
|
|
|
u32 new_uid = GetUIDFromIndex(index);
|
|
|
|
|
|
|
|
m_services.push_back(service);
|
|
|
|
|
|
|
|
m_port_map[service->GetPortName()] = new_uid;
|
|
|
|
service->m_uid = new_uid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Removes a service from the manager, also frees memory
|
|
|
|
void Manager::DeleteService(std::string port_name) {
|
|
|
|
auto service = FetchFromPortName(port_name);
|
|
|
|
|
|
|
|
m_services.erase(m_services.begin() + GetIndexFromUID(service->m_uid));
|
|
|
|
m_port_map.erase(port_name);
|
|
|
|
|
|
|
|
delete service;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a Service Interface from its UID
|
|
|
|
Interface* Manager::FetchFromUID(u32 uid) {
|
|
|
|
int index = GetIndexFromUID(uid);
|
|
|
|
if (index < (int)m_services.size()) {
|
|
|
|
return m_services[index];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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()) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return FetchFromUID(itr->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-13 05:38:48 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Module interface
|
|
|
|
|
2014-04-13 02:55:36 +01:00
|
|
|
/// Initialize ServiceManager
|
|
|
|
void Init() {
|
|
|
|
g_manager = new Manager;
|
2014-04-16 05:03:41 +01:00
|
|
|
|
2014-04-16 03:40:19 +01:00
|
|
|
g_manager->AddService(new SRV::Interface);
|
2014-04-16 03:42:35 +01:00
|
|
|
g_manager->AddService(new APT_U::Interface);
|
2014-04-16 05:03:41 +01:00
|
|
|
g_manager->AddService(new GSP_GPU::Interface);
|
2014-04-17 01:58:36 +01:00
|
|
|
g_manager->AddService(new HID_User::Interface);
|
2014-04-16 05:03:41 +01:00
|
|
|
|
2014-04-13 03:08:48 +01:00
|
|
|
NOTICE_LOG(HLE, "Services initialized OK");
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Shutdown ServiceManager
|
|
|
|
void Shutdown() {
|
|
|
|
delete g_manager;
|
2014-04-13 03:08:48 +01:00
|
|
|
NOTICE_LOG(HLE, "Services shutdown OK");
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|