2025-08-03 08:30:17 -07:00
|
|
|
/* Copyright (C) 2025 Wildfire Games.
|
2023-12-02 16:30:12 -08:00
|
|
|
* This file is part of 0 A.D.
|
2021-06-03 07:48:38 -07:00
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
2021-06-03 07:48:38 -07:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
2021-06-03 07:48:38 -07:00
|
|
|
* 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
|
2023-12-02 16:30:12 -08:00
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
2021-06-03 07:48:38 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INCLUDED_THREADING_TASKMANAGER
|
|
|
|
|
#define INCLUDED_THREADING_TASKMANAGER
|
|
|
|
|
|
2024-09-18 09:40:21 -07:00
|
|
|
#include "ps/Singleton.h"
|
2021-06-03 07:48:38 -07:00
|
|
|
|
2025-08-03 08:30:17 -07:00
|
|
|
#include <cstddef>
|
|
|
|
|
#include <functional>
|
2021-06-03 07:48:38 -07:00
|
|
|
#include <memory>
|
2025-08-03 08:30:17 -07:00
|
|
|
#include <type_traits>
|
|
|
|
|
#include <utility>
|
2021-06-03 07:48:38 -07:00
|
|
|
|
|
|
|
|
namespace Threading
|
|
|
|
|
{
|
|
|
|
|
enum class TaskPriority
|
|
|
|
|
{
|
|
|
|
|
NORMAL,
|
|
|
|
|
LOW
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The task manager creates all worker threads on initialisation,
|
|
|
|
|
* and manages the task queues.
|
|
|
|
|
* See implementation for additional comments.
|
|
|
|
|
*/
|
2024-09-18 09:40:21 -07:00
|
|
|
class TaskManager : public Singleton<TaskManager>
|
2021-06-03 07:48:38 -07:00
|
|
|
{
|
|
|
|
|
friend class WorkerThread;
|
|
|
|
|
public:
|
|
|
|
|
TaskManager();
|
|
|
|
|
~TaskManager();
|
|
|
|
|
TaskManager(const TaskManager&) = delete;
|
|
|
|
|
TaskManager(TaskManager&&) = delete;
|
|
|
|
|
TaskManager& operator=(const TaskManager&) = delete;
|
|
|
|
|
TaskManager& operator=(TaskManager&&) = delete;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return the number of threaded workers.
|
|
|
|
|
*/
|
|
|
|
|
size_t GetNumberOfWorkers() const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Push a task to be executed.
|
|
|
|
|
*/
|
2025-08-24 00:08:31 -07:00
|
|
|
void PushTask(std::function<void()> func, TaskPriority priority = TaskPriority::NORMAL);
|
2021-06-03 07:48:38 -07:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TaskManager(size_t numberOfWorkers);
|
|
|
|
|
|
|
|
|
|
class Impl;
|
2022-11-18 11:32:20 -08:00
|
|
|
const std::unique_ptr<Impl> m;
|
2021-06-03 07:48:38 -07:00
|
|
|
};
|
|
|
|
|
} // namespace Threading
|
|
|
|
|
|
2024-09-18 09:40:21 -07:00
|
|
|
#define g_TaskManager Threading::TaskManager::GetSingleton()
|
|
|
|
|
|
2021-06-03 07:48:38 -07:00
|
|
|
#endif // INCLUDED_THREADING_TASKMANAGER
|