2018-11-10 08:54:12 +00:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-11-10 08:54:12 +00: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/>.
|
|
|
|
*/
|
|
|
|
#include "fatal_task.hpp"
|
|
|
|
|
2018-11-10 09:04:40 +00:00
|
|
|
#include "fatal_task_error_report.hpp"
|
2018-11-10 11:16:13 +00:00
|
|
|
#include "fatal_task_screen.hpp"
|
2018-11-10 11:51:19 +00:00
|
|
|
#include "fatal_task_sound.hpp"
|
2018-11-10 11:05:14 +00:00
|
|
|
#include "fatal_task_clock.hpp"
|
2018-11-10 09:19:52 +00:00
|
|
|
#include "fatal_task_power.hpp"
|
2018-11-10 09:04:40 +00:00
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::fatal::srv {
|
2018-11-10 09:04:40 +00:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
namespace {
|
2018-11-10 08:54:12 +00:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
class TaskThread {
|
|
|
|
NON_COPYABLE(TaskThread);
|
|
|
|
private:
|
|
|
|
static constexpr int TaskThreadPriority = 15;
|
|
|
|
private:
|
2019-09-24 11:15:36 +01:00
|
|
|
os::Thread thread;
|
2019-07-19 03:09:35 +01:00
|
|
|
private:
|
|
|
|
static void RunTaskImpl(void *arg) {
|
|
|
|
ITask *task = reinterpret_cast<ITask *>(arg);
|
2018-11-10 08:54:12 +00:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
if (R_FAILED(task->Run())) {
|
|
|
|
/* TODO: Log task failure, somehow? */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
TaskThread() { /* ... */ }
|
|
|
|
void StartTask(ITask *task) {
|
2019-10-19 04:31:15 +01:00
|
|
|
R_ASSERT(this->thread.Initialize(&RunTaskImpl, task, task->GetStack(), task->GetStackSize(), TaskThreadPriority));
|
2019-07-19 03:09:35 +01:00
|
|
|
R_ASSERT(this->thread.Start());
|
|
|
|
}
|
|
|
|
};
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
class TaskManager {
|
|
|
|
NON_COPYABLE(TaskManager);
|
|
|
|
private:
|
|
|
|
static constexpr size_t MaxTasks = 8;
|
|
|
|
private:
|
|
|
|
TaskThread task_threads[MaxTasks];
|
|
|
|
size_t task_count = 0;
|
|
|
|
public:
|
|
|
|
TaskManager() { /* ... */ }
|
|
|
|
void StartTask(ITask *task) {
|
2019-10-24 10:30:10 +01:00
|
|
|
AMS_ASSERT(this->task_count < MaxTasks);
|
2019-07-19 03:09:35 +01:00
|
|
|
this->task_threads[this->task_count++].StartTask(task);
|
|
|
|
}
|
|
|
|
};
|
2018-11-10 08:54:12 +00:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
/* Global task manager. */
|
|
|
|
TaskManager g_task_manager;
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
}
|
2019-06-18 00:41:03 +01:00
|
|
|
|
2019-07-19 03:09:35 +01:00
|
|
|
void RunTasks(const ThrowContext *ctx) {
|
|
|
|
g_task_manager.StartTask(GetErrorReportTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetPowerControlTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetShowFatalTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetStopSoundTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetBacklightControlTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetAdjustClockTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetPowerButtonObserveTask(ctx));
|
|
|
|
g_task_manager.StartTask(GetStateTransitionStopTask(ctx));
|
|
|
|
}
|
2018-11-10 08:54:12 +00:00
|
|
|
|
|
|
|
}
|