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;
|
2018-05-04 06:58:25 +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
|
|
|
}
|
|
|
|
|
2018-06-15 07:47:07 +01:00
|
|
|
std::shared_ptr<Registration::Process> get_process() {
|
|
|
|
return this->process;
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
|
2018-06-15 00:50:01 +01:00
|
|
|
/* IWaitable */
|
2018-06-03 06:46:27 +01:00
|
|
|
Handle get_handle() override {
|
2018-06-15 07:47:07 +01:00
|
|
|
return this->process->handle;
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
|
2018-06-03 06:46:27 +01:00
|
|
|
void handle_deferred() override {
|
2018-05-04 06:58:25 +01:00
|
|
|
/* TODO: Panic, because we can never be deferred. */
|
|
|
|
}
|
|
|
|
|
2018-06-03 06:46:27 +01:00
|
|
|
Result handle_signaled(u64 timeout) override {
|
2018-06-15 07:47:07 +01:00
|
|
|
return Registration::HandleSignaledProcess(this->get_process());
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-15 07:47:07 +01:00
|
|
|
class ProcessList final {
|
2018-05-04 06:58:25 +01:00
|
|
|
private:
|
|
|
|
HosRecursiveMutex mutex;
|
2018-06-15 07:47:07 +01:00
|
|
|
WaitableManager *manager;
|
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;
|
2018-05-04 06:58:25 +01:00
|
|
|
|
2018-07-02 15:10:57 +01:00
|
|
|
auto get_unique_lock() {
|
|
|
|
return std::unique_lock{this->mutex};
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
2018-07-02 15:10:57 +01:00
|
|
|
|
2018-06-15 07:47:07 +01:00
|
|
|
void set_manager(WaitableManager *manager) {
|
|
|
|
this->manager = manager;
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
|
2018-06-15 07:47:07 +01:00
|
|
|
WaitableManager *get_manager() {
|
|
|
|
return this->manager;
|
2018-05-04 06:58:25 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|