2020-04-16 00:37:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019-2020 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/os.hpp>
|
|
|
|
#include <stratosphere/pm.hpp>
|
|
|
|
#include <stratosphere/pgl/pgl_types.hpp>
|
|
|
|
#include <stratosphere/pgl/sf/pgl_sf_i_event_observer.hpp>
|
2021-04-11 08:07:55 +00:00
|
|
|
#include <stratosphere/pgl/tipc/pgl_tipc_i_event_observer.hpp>
|
2020-04-16 00:37:11 +00:00
|
|
|
|
|
|
|
namespace ams::pgl {
|
|
|
|
|
2021-04-11 08:07:55 +00:00
|
|
|
namespace impl {
|
|
|
|
|
|
|
|
class EventObserverInterface {
|
|
|
|
NON_COPYABLE(EventObserverInterface);
|
|
|
|
NON_MOVEABLE(EventObserverInterface);
|
|
|
|
public:
|
|
|
|
constexpr EventObserverInterface() = default;
|
|
|
|
|
|
|
|
virtual ~EventObserverInterface() { /* ... */ }
|
|
|
|
|
|
|
|
virtual Result GetSystemEvent(os::SystemEventType *out) = 0;
|
|
|
|
virtual Result GetProcessEventInfo(pm::ProcessEventInfo *out) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class EventObserverByCmif final : public EventObserverInterface {
|
|
|
|
NON_COPYABLE(EventObserverByCmif);
|
|
|
|
NON_MOVEABLE(EventObserverByCmif);
|
|
|
|
private:
|
|
|
|
ams::sf::SharedPointer<pgl::sf::IEventObserver> m_cmif_interface;
|
|
|
|
public:
|
|
|
|
explicit EventObserverByCmif(ams::sf::SharedPointer<pgl::sf::IEventObserver> intf) : m_cmif_interface(intf) { /* ... */ }
|
|
|
|
public:
|
|
|
|
virtual Result GetSystemEvent(os::SystemEventType *out) override {
|
|
|
|
ams::sf::CopyHandle handle;
|
|
|
|
R_TRY(m_cmif_interface->GetProcessEventHandle(std::addressof(handle)));
|
|
|
|
os::AttachSystemEvent(out, handle.GetValue(), true, svc::InvalidHandle, false, os::EventClearMode_AutoClear);
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Result GetProcessEventInfo(pm::ProcessEventInfo *out) override {
|
|
|
|
return m_cmif_interface->GetProcessEventInfo(out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> requires tipc::IsIEventObserver<T>
|
|
|
|
class EventObserverByTipc final : public EventObserverInterface {
|
|
|
|
NON_COPYABLE(EventObserverByTipc);
|
|
|
|
NON_MOVEABLE(EventObserverByTipc);
|
|
|
|
private:
|
|
|
|
T m_tipc_interface;
|
|
|
|
public:
|
|
|
|
template<typename... Args>
|
|
|
|
explicit EventObserverByTipc(Args &&... args) : m_tipc_interface(std::forward<Args>(args)...) { /* ... */ }
|
|
|
|
public:
|
|
|
|
virtual Result GetSystemEvent(os::SystemEventType *out) override {
|
|
|
|
ams::tipc::CopyHandle handle;
|
|
|
|
R_TRY(m_tipc_interface.GetProcessEventHandle(std::addressof(handle)));
|
|
|
|
os::AttachSystemEvent(out, handle.GetValue(), true, svc::InvalidHandle, false, os::EventClearMode_AutoClear);
|
|
|
|
return ResultSuccess();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Result GetProcessEventInfo(pm::ProcessEventInfo *out) override {
|
|
|
|
return m_tipc_interface.GetProcessEventInfo(ams::tipc::Out<pm::ProcessEventInfo>(out));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-16 00:37:11 +00:00
|
|
|
class EventObserver {
|
|
|
|
NON_COPYABLE(EventObserver);
|
|
|
|
private:
|
2021-04-11 08:07:55 +00:00
|
|
|
std::unique_ptr<impl::EventObserverInterface> m_impl;
|
2020-04-16 00:37:11 +00:00
|
|
|
public:
|
|
|
|
EventObserver() { /* ... */ }
|
2021-04-11 08:07:55 +00:00
|
|
|
|
|
|
|
explicit EventObserver(std::unique_ptr<impl::EventObserverInterface> impl) : m_impl(std::move(impl)) { /* ... */ }
|
2020-04-16 00:37:11 +00:00
|
|
|
|
|
|
|
EventObserver(EventObserver &&rhs) {
|
2021-04-11 08:07:55 +00:00
|
|
|
m_impl = std::move(rhs.m_impl);
|
2020-04-16 00:37:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EventObserver &operator=(EventObserver &&rhs) {
|
|
|
|
EventObserver(std::move(rhs)).Swap(*this);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Swap(EventObserver &rhs) {
|
2021-04-11 08:07:55 +00:00
|
|
|
std::swap(m_impl, rhs.m_impl);
|
2020-04-16 00:37:11 +00:00
|
|
|
}
|
|
|
|
public:
|
|
|
|
Result GetSystemEvent(os::SystemEventType *out) {
|
2021-04-11 08:07:55 +00:00
|
|
|
return m_impl->GetSystemEvent(out);
|
2020-04-16 00:37:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GetProcessEventInfo(pm::ProcessEventInfo *out) {
|
2021-04-11 08:07:55 +00:00
|
|
|
return m_impl->GetProcessEventInfo(out);
|
2020-04-16 00:37:11 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|