Atmosphere/libraries/libmesosphere/source/kern_k_worker_task_manager.cpp

115 lines
3.6 KiB
C++
Raw Normal View History

2020-02-14 10:56:42 +00:00
/*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <mesosphere.hpp>
namespace ams::kern {
void KWorkerTaskManager::Initialize(WorkerType wt, s32 priority) {
/* Set type, other members already initialized in constructor. */
m_type = wt;
2020-02-14 10:56:42 +00:00
/* Reserve a thread from the system limit. */
MESOSPHERE_ABORT_UNLESS(Kernel::GetSystemResourceLimit().Reserve(ams::svc::LimitableResource_ThreadCountMax, 1));
/* Create a new thread. */
m_thread = KThread::Create();
MESOSPHERE_ABORT_UNLESS(m_thread != nullptr);
2020-02-14 10:56:42 +00:00
/* Launch the new thread. */
MESOSPHERE_R_ABORT_UNLESS(KThread::InitializeKernelThread(m_thread, ThreadFunction, reinterpret_cast<uintptr_t>(this), priority, cpu::NumCores - 1));
2020-02-14 10:56:42 +00:00
/* Register the new thread. */
KThread::Register(m_thread);
2020-02-14 10:56:42 +00:00
/* Run the thread. */
m_thread->Run();
2020-02-14 10:56:42 +00:00
}
void KWorkerTaskManager::AddTask(WorkerType type, KWorkerTask *task) {
MESOSPHERE_ASSERT(type <= WorkerType_Count);
Kernel::GetWorkerTaskManager(type).AddTask(task);
}
void KWorkerTaskManager::ThreadFunction(uintptr_t arg) {
reinterpret_cast<KWorkerTaskManager *>(arg)->ThreadFunctionImpl();
}
void KWorkerTaskManager::ThreadFunctionImpl() {
while (true) {
KWorkerTask *task = nullptr;
/* Get a worker task. */
{
KScopedSchedulerLock sl;
task = this->GetTask();
if (task == nullptr) {
/* If there's nothing to do, set ourselves as waiting. */
m_active = false;
m_thread->SetState(KThread::ThreadState_Waiting);
2020-02-14 10:56:42 +00:00
continue;
}
m_active = true;
2020-02-14 10:56:42 +00:00
}
/* Do the task. */
task->DoWorkerTask();
/* Destroy any objects we may need to close. */
m_thread->DestroyClosedObjects();
2020-02-14 10:56:42 +00:00
}
}
KWorkerTask *KWorkerTaskManager::GetTask() {
MESOSPHERE_ASSERT(KScheduler::IsSchedulerLockedByCurrentThread());
KWorkerTask *next = m_head_task;
2020-02-14 10:56:42 +00:00
if (next) {
/* Advance the list. */
if (m_head_task == m_tail_task) {
m_head_task = nullptr;
m_tail_task = nullptr;
2020-02-14 10:56:42 +00:00
} else {
m_head_task = m_head_task->GetNextTask();
2020-02-14 10:56:42 +00:00
}
/* Clear the next task's next. */
next->SetNextTask(nullptr);
}
return next;
}
void KWorkerTaskManager::AddTask(KWorkerTask *task) {
KScopedSchedulerLock sl;
MESOSPHERE_ASSERT(task->GetNextTask() == nullptr);
/* Insert the task. */
if (m_tail_task) {
m_tail_task->SetNextTask(task);
m_tail_task = task;
2020-02-14 10:56:42 +00:00
} else {
m_head_task = task;
m_tail_task = task;
2020-02-14 10:56:42 +00:00
/* Make ourselves active if we need to. */
if (!m_active) {
m_thread->SetState(KThread::ThreadState_Runnable);
2020-02-14 10:56:42 +00:00
}
}
}
}