/* * Copyright (c) 2018-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 . */ #include #include "pgl_srv_shell_event_observer.hpp" #include "pgl_srv_shell.hpp" namespace ams::pgl::srv { ShellEventObserver::ShellEventObserver() : message_queue(queue_buffer, QueueCapacity), event(os::EventClearMode_AutoClear, true) { this->heap_handle = lmem::CreateUnitHeap(this->event_info_data, sizeof(this->event_info_data), sizeof(this->event_info_data[0]), lmem::CreateOption_ThreadSafe, 8, GetPointer(this->heap_head)); new (GetPointer(this->holder)) ShellEventObserverHolder(this); RegisterShellEventObserver(GetPointer(this->holder)); } ShellEventObserver::~ShellEventObserver() { UnregisterShellEventObserver(GetPointer(this->holder)); GetReference(this->holder).~ShellEventObserverHolder(); } Result ShellEventObserver::PopEventInfo(pm::ProcessEventInfo *out) { /* Receive an info from the queue. */ uintptr_t info_address; R_UNLESS(this->message_queue.TryReceive(std::addressof(info_address)), pgl::ResultNotAvailable()); pm::ProcessEventInfo *info = reinterpret_cast(info_address); /* Set the output. */ *out = *info; /* Free the received info. */ lmem::FreeToUnitHeap(this->heap_handle, info); return ResultSuccess(); } void ShellEventObserver::Notify(const pm::ProcessEventInfo &info) { /* Allocate a new info. */ auto allocated = reinterpret_cast(lmem::AllocateFromUnitHeap(this->heap_handle)); if (!allocated) { return; } /* Set it to the notification. */ *allocated = info; /* Try to send it. */ if (!this->message_queue.TrySend(reinterpret_cast(allocated))) { lmem::FreeToUnitHeap(this->heap_handle, allocated); return; } /* Notify that we have a new info available. */ this->event.Signal(); } Result EventObserverInterface::GetProcessEventHandle(ams::sf::OutCopyHandle out) { out.SetValue(GetReference(this->observer).GetEvent().GetReadableHandle()); return ResultSuccess(); } Result EventObserverInterface::GetProcessEventInfo(ams::sf::Out out) { return GetReference(this->observer).PopEventInfo(out.GetPointer()); } }