mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
64 lines
2.5 KiB
C++
64 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 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 <mesosphere/kern_common.hpp>
|
|
#include <mesosphere/kern_k_resource_limit.hpp>
|
|
#include <mesosphere/kern_k_process.hpp>
|
|
|
|
namespace ams::kern {
|
|
|
|
class KScopedResourceReservation {
|
|
private:
|
|
KResourceLimit *m_limit;
|
|
s64 m_value;
|
|
ams::svc::LimitableResource m_resource;
|
|
bool m_succeeded;
|
|
public:
|
|
ALWAYS_INLINE KScopedResourceReservation(KResourceLimit *l, ams::svc::LimitableResource r, s64 v, s64 timeout) : m_limit(l), m_value(v), m_resource(r) {
|
|
if (m_limit && m_value) {
|
|
m_succeeded = m_limit->Reserve(m_resource, m_value, timeout);
|
|
} else {
|
|
m_succeeded = true;
|
|
}
|
|
}
|
|
|
|
ALWAYS_INLINE KScopedResourceReservation(KResourceLimit *l, ams::svc::LimitableResource r, s64 v = 1) : m_limit(l), m_value(v), m_resource(r) {
|
|
if (m_limit && m_value) {
|
|
m_succeeded = m_limit->Reserve(m_resource, m_value);
|
|
} else {
|
|
m_succeeded = true;
|
|
}
|
|
}
|
|
|
|
ALWAYS_INLINE KScopedResourceReservation(const KProcess *p, ams::svc::LimitableResource r, s64 v, s64 t) : KScopedResourceReservation(p->GetResourceLimit(), r, v, t) { /* ... */ }
|
|
ALWAYS_INLINE KScopedResourceReservation(const KProcess *p, ams::svc::LimitableResource r, s64 v = 1) : KScopedResourceReservation(p->GetResourceLimit(), r, v) { /* ... */ }
|
|
|
|
ALWAYS_INLINE ~KScopedResourceReservation() {
|
|
if (m_limit && m_value && m_succeeded) {
|
|
m_limit->Release(m_resource, m_value);
|
|
}
|
|
}
|
|
|
|
ALWAYS_INLINE void Commit() {
|
|
m_limit = nullptr;
|
|
}
|
|
|
|
ALWAYS_INLINE bool Succeeded() const {
|
|
return m_succeeded;
|
|
}
|
|
};
|
|
|
|
}
|