Atmosphere/stratosphere/sm/source/sm_user_service.cpp

91 lines
3.5 KiB
C++
Raw Normal View History

/*
2019-04-08 02:00:49 +00:00
* Copyright (c) 2018-2019 Atmosphère-NX
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2019-06-21 01:23:40 +00:00
#include "sm_user_service.hpp"
#include "impl/sm_service_manager.hpp"
namespace ams::sm {
2019-06-17 16:17:53 +00:00
Result UserService::Initialize(const sf::ClientProcessId &client_process_id) {
this->process_id = client_process_id.GetValue();
2019-06-21 01:23:40 +00:00
this->has_initialized = true;
return ResultSuccess();
2018-04-22 07:13:36 +00:00
}
2019-06-17 16:17:53 +00:00
2019-06-21 01:23:40 +00:00
Result UserService::EnsureInitialized() {
if (!this->has_initialized) {
return sm::ResultInvalidClient();
2019-06-21 01:23:40 +00:00
}
return ResultSuccess();
2018-04-22 07:13:36 +00:00
}
2019-06-17 16:17:53 +00:00
Result UserService::GetService(sf::OutMoveHandle out_h, ServiceName service) {
2019-06-21 01:23:40 +00:00
R_TRY(this->EnsureInitialized());
return impl::GetServiceHandle(out_h.GetHandlePointer(), this->process_id, service);
}
2019-06-17 16:17:53 +00:00
Result UserService::RegisterService(sf::OutMoveHandle out_h, ServiceName service, u32 max_sessions, bool is_light) {
2019-06-21 01:23:40 +00:00
R_TRY(this->EnsureInitialized());
return impl::RegisterService(out_h.GetHandlePointer(), this->process_id, service, max_sessions, is_light);
}
2019-06-17 16:17:53 +00:00
2019-06-21 01:23:40 +00:00
Result UserService::UnregisterService(ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::UnregisterService(this->process_id, service);
}
2019-06-17 16:17:53 +00:00
Result UserService::AtmosphereInstallMitm(sf::OutMoveHandle srv_h, sf::OutMoveHandle qry_h, ServiceName service) {
2019-06-21 01:23:40 +00:00
R_TRY(this->EnsureInitialized());
return impl::InstallMitm(srv_h.GetHandlePointer(), qry_h.GetHandlePointer(), this->process_id, service);
}
2019-06-17 16:17:53 +00:00
2019-06-21 01:23:40 +00:00
Result UserService::AtmosphereUninstallMitm(ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::UninstallMitm(this->process_id, service);
2019-06-21 01:23:40 +00:00
}
Result UserService::AtmosphereAcknowledgeMitmSession(sf::Out<os::ProcessId> client_process_id, sf::Out<ncm::ProgramId> client_program_id, sf::OutMoveHandle fwd_h, ServiceName service) {
2019-06-21 01:23:40 +00:00
R_TRY(this->EnsureInitialized());
return impl::AcknowledgeMitmSession(client_process_id.GetPointer(), client_program_id.GetPointer(), fwd_h.GetHandlePointer(), this->process_id, service);
}
Result UserService::AtmosphereHasMitm(sf::Out<bool> out, ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::HasMitm(out.GetPointer(), service);
}
2019-07-03 05:21:47 +00:00
Result UserService::AtmosphereWaitMitm(ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::WaitMitm(service);
}
Result UserService::AtmosphereDeclareFutureMitm(ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::DeclareFutureMitm(this->process_id, service);
}
Result UserService::AtmosphereHasService(sf::Out<bool> out, ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::HasService(out.GetPointer(), service);
}
2019-06-17 16:17:53 +00:00
2019-07-03 05:21:47 +00:00
Result UserService::AtmosphereWaitService(ServiceName service) {
R_TRY(this->EnsureInitialized());
return impl::WaitService(service);
}
2019-06-21 01:32:00 +00:00
}