2019-07-18 04:04:00 +01: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/>.
|
|
|
|
*/
|
|
|
|
#include "sm_utils.hpp"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::sm {
|
2019-07-18 04:04:00 +01:00
|
|
|
|
|
|
|
/* Ordinary SM API. */
|
|
|
|
Result GetService(Service *out, ServiceName name) {
|
|
|
|
return impl::DoWithUserSession([&]() {
|
2019-10-23 08:07:20 +01:00
|
|
|
return smGetServiceWrapper(out, impl::ConvertName(name));
|
2019-07-18 04:04:00 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Result RegisterService(Handle *out, ServiceName name, size_t max_sessions, bool is_light) {
|
|
|
|
return impl::DoWithUserSession([&]() {
|
2019-10-23 08:07:20 +01:00
|
|
|
return smRegisterService(out, impl::ConvertName(name), is_light, static_cast<int>(max_sessions));
|
2019-07-18 04:04:00 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Result UnregisterService(ServiceName name) {
|
|
|
|
return impl::DoWithUserSession([&]() {
|
2019-10-23 08:07:20 +01:00
|
|
|
return smUnregisterService(impl::ConvertName(name));
|
2019-07-18 04:04:00 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Atmosphere extensions. */
|
|
|
|
Result HasService(bool *out, ServiceName name) {
|
|
|
|
return impl::DoWithUserSession([&]() {
|
2019-10-23 08:07:20 +01:00
|
|
|
return smAtmosphereHasService(out, impl::ConvertName(name));
|
2019-07-18 04:04:00 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Result WaitService(ServiceName name) {
|
|
|
|
return impl::DoWithUserSession([&]() {
|
2019-10-23 08:07:20 +01:00
|
|
|
return smAtmosphereWaitService(impl::ConvertName(name));
|
2019-07-18 04:04:00 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-10-20 01:42:53 +01:00
|
|
|
namespace impl {
|
|
|
|
|
|
|
|
void DoWithSessionImpl(void (*Invoker)(void *), void *Function) {
|
|
|
|
impl::DoWithUserSession([&]() {
|
|
|
|
Invoker(Function);
|
2019-10-24 09:40:44 +01:00
|
|
|
return ResultSuccess();
|
2019-10-20 01:42:53 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-07-18 04:04:00 +01:00
|
|
|
}
|