2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* 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-17 23:27:29 +01:00
|
|
|
|
2018-05-04 06:58:25 +01:00
|
|
|
#pragma once
|
2018-07-02 15:10:57 +01:00
|
|
|
#include <mutex>
|
2018-05-04 06:58:25 +01:00
|
|
|
#include <switch.h>
|
|
|
|
#include <stratosphere.hpp>
|
2018-07-02 13:25:40 +01:00
|
|
|
#include "pm_registration.hpp"
|
2018-05-04 06:58:25 +01:00
|
|
|
|
2018-06-03 06:46:27 +01:00
|
|
|
class ProcessWaiter final : public IWaitable {
|
2018-05-04 06:58:25 +01:00
|
|
|
public:
|
2018-06-15 07:47:07 +01:00
|
|
|
std::shared_ptr<Registration::Process> process;
|
2019-06-17 23:27:29 +01:00
|
|
|
|
2018-06-15 07:47:07 +01:00
|
|
|
ProcessWaiter(std::shared_ptr<Registration::Process> p) : process(p) {
|
|
|
|
/* ... */
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
2019-06-17 23:27:29 +01:00
|
|
|
|
|
|
|
std::shared_ptr<Registration::Process> GetProcess() {
|
|
|
|
return this->process;
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
2019-06-17 23:27:29 +01:00
|
|
|
|
|
|
|
/* IWaitable */
|
2018-10-30 00:29:35 +00:00
|
|
|
Handle GetHandle() override {
|
2018-06-15 07:47:07 +01:00
|
|
|
return this->process->handle;
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
2019-06-17 23:27:29 +01:00
|
|
|
|
2018-10-30 00:29:35 +00:00
|
|
|
Result HandleSignaled(u64 timeout) override {
|
|
|
|
return Registration::HandleSignaledProcess(this->GetProcess());
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-15 07:47:07 +01:00
|
|
|
class ProcessList final {
|
2019-06-17 23:27:29 +01:00
|
|
|
private:
|
2019-03-26 00:12:19 +00:00
|
|
|
HosRecursiveMutex m;
|
|
|
|
|
|
|
|
HosRecursiveMutex *GetMutex() {
|
|
|
|
return &this->m;
|
|
|
|
}
|
2018-05-04 06:58:25 +01:00
|
|
|
public:
|
2018-06-15 07:47:07 +01:00
|
|
|
std::vector<std::shared_ptr<Registration::Process>> processes;
|
2019-06-17 23:27:29 +01:00
|
|
|
|
2019-03-26 00:12:19 +00:00
|
|
|
void lock() {
|
|
|
|
GetMutex()->lock();
|
|
|
|
}
|
2019-06-17 23:27:29 +01:00
|
|
|
|
2019-03-26 00:12:19 +00:00
|
|
|
void unlock() {
|
|
|
|
GetMutex()->unlock();
|
|
|
|
}
|
2019-06-17 23:27:29 +01:00
|
|
|
|
2019-03-26 00:12:19 +00:00
|
|
|
void try_lock() {
|
|
|
|
GetMutex()->try_lock();
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|