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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "sm_ams.h"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::sm::impl {
|
2019-07-18 04:04:00 +01:00
|
|
|
|
|
|
|
/* Utilities. */
|
2019-09-24 11:15:36 +01:00
|
|
|
os::RecursiveMutex &GetUserSessionMutex();
|
|
|
|
os::RecursiveMutex &GetMitmSessionMutex();
|
2019-07-18 04:04:00 +01:00
|
|
|
|
|
|
|
template<typename F>
|
|
|
|
Result DoWithUserSession(F f) {
|
2019-09-24 11:15:36 +01:00
|
|
|
std::scoped_lock<os::RecursiveMutex &> lk(GetUserSessionMutex());
|
2019-07-18 04:04:00 +01:00
|
|
|
{
|
|
|
|
R_ASSERT(smInitialize());
|
|
|
|
ON_SCOPE_EXIT { smExit(); };
|
|
|
|
|
|
|
|
return f();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename F>
|
|
|
|
Result DoWithMitmSession(F f) {
|
2019-09-24 11:15:36 +01:00
|
|
|
std::scoped_lock<os::RecursiveMutex &> lk(GetMitmSessionMutex());
|
2019-07-18 04:04:00 +01:00
|
|
|
{
|
|
|
|
R_ASSERT(smAtmosphereMitmInitialize());
|
|
|
|
ON_SCOPE_EXIT { smAtmosphereMitmExit(); };
|
|
|
|
|
|
|
|
return f();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-23 08:07:20 +01:00
|
|
|
NX_CONSTEXPR SmServiceName ConvertName(sm::ServiceName name) {
|
|
|
|
static_assert(sizeof(SmServiceName) == sizeof(sm::ServiceName));
|
|
|
|
SmServiceName ret = {};
|
|
|
|
__builtin_memcpy(&ret, &name, sizeof(sm::ServiceName));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-07-18 04:04:00 +01:00
|
|
|
}
|