123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- /**************************************************************************/
- /* command_queue_mt.h */
- /**************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /**************************************************************************/
- /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /**************************************************************************/
- #ifndef COMMAND_QUEUE_MT_H
- #define COMMAND_QUEUE_MT_H
- #include "core/object/worker_thread_pool.h"
- #include "core/os/condition_variable.h"
- #include "core/os/memory.h"
- #include "core/os/mutex.h"
- #include "core/templates/local_vector.h"
- #include "core/templates/simple_type.h"
- #include "core/typedefs.h"
- #define COMMA(N) _COMMA_##N
- #define _COMMA_0
- #define _COMMA_1 ,
- #define _COMMA_2 ,
- #define _COMMA_3 ,
- #define _COMMA_4 ,
- #define _COMMA_5 ,
- #define _COMMA_6 ,
- #define _COMMA_7 ,
- #define _COMMA_8 ,
- #define _COMMA_9 ,
- #define _COMMA_10 ,
- #define _COMMA_11 ,
- #define _COMMA_12 ,
- #define _COMMA_13 ,
- #define _COMMA_14 ,
- #define _COMMA_15 ,
- // 1-based comma separated list of ITEMs
- #define COMMA_SEP_LIST(ITEM, LENGTH) _COMMA_SEP_LIST_##LENGTH(ITEM)
- #define _COMMA_SEP_LIST_15(ITEM) \
- _COMMA_SEP_LIST_14(ITEM) \
- , ITEM(15)
- #define _COMMA_SEP_LIST_14(ITEM) \
- _COMMA_SEP_LIST_13(ITEM) \
- , ITEM(14)
- #define _COMMA_SEP_LIST_13(ITEM) \
- _COMMA_SEP_LIST_12(ITEM) \
- , ITEM(13)
- #define _COMMA_SEP_LIST_12(ITEM) \
- _COMMA_SEP_LIST_11(ITEM) \
- , ITEM(12)
- #define _COMMA_SEP_LIST_11(ITEM) \
- _COMMA_SEP_LIST_10(ITEM) \
- , ITEM(11)
- #define _COMMA_SEP_LIST_10(ITEM) \
- _COMMA_SEP_LIST_9(ITEM) \
- , ITEM(10)
- #define _COMMA_SEP_LIST_9(ITEM) \
- _COMMA_SEP_LIST_8(ITEM) \
- , ITEM(9)
- #define _COMMA_SEP_LIST_8(ITEM) \
- _COMMA_SEP_LIST_7(ITEM) \
- , ITEM(8)
- #define _COMMA_SEP_LIST_7(ITEM) \
- _COMMA_SEP_LIST_6(ITEM) \
- , ITEM(7)
- #define _COMMA_SEP_LIST_6(ITEM) \
- _COMMA_SEP_LIST_5(ITEM) \
- , ITEM(6)
- #define _COMMA_SEP_LIST_5(ITEM) \
- _COMMA_SEP_LIST_4(ITEM) \
- , ITEM(5)
- #define _COMMA_SEP_LIST_4(ITEM) \
- _COMMA_SEP_LIST_3(ITEM) \
- , ITEM(4)
- #define _COMMA_SEP_LIST_3(ITEM) \
- _COMMA_SEP_LIST_2(ITEM) \
- , ITEM(3)
- #define _COMMA_SEP_LIST_2(ITEM) \
- _COMMA_SEP_LIST_1(ITEM) \
- , ITEM(2)
- #define _COMMA_SEP_LIST_1(ITEM) \
- _COMMA_SEP_LIST_0(ITEM) \
- ITEM(1)
- #define _COMMA_SEP_LIST_0(ITEM)
- // 1-based semicolon separated list of ITEMs
- #define SEMIC_SEP_LIST(ITEM, LENGTH) _SEMIC_SEP_LIST_##LENGTH(ITEM)
- #define _SEMIC_SEP_LIST_15(ITEM) \
- _SEMIC_SEP_LIST_14(ITEM); \
- ITEM(15)
- #define _SEMIC_SEP_LIST_14(ITEM) \
- _SEMIC_SEP_LIST_13(ITEM); \
- ITEM(14)
- #define _SEMIC_SEP_LIST_13(ITEM) \
- _SEMIC_SEP_LIST_12(ITEM); \
- ITEM(13)
- #define _SEMIC_SEP_LIST_12(ITEM) \
- _SEMIC_SEP_LIST_11(ITEM); \
- ITEM(12)
- #define _SEMIC_SEP_LIST_11(ITEM) \
- _SEMIC_SEP_LIST_10(ITEM); \
- ITEM(11)
- #define _SEMIC_SEP_LIST_10(ITEM) \
- _SEMIC_SEP_LIST_9(ITEM); \
- ITEM(10)
- #define _SEMIC_SEP_LIST_9(ITEM) \
- _SEMIC_SEP_LIST_8(ITEM); \
- ITEM(9)
- #define _SEMIC_SEP_LIST_8(ITEM) \
- _SEMIC_SEP_LIST_7(ITEM); \
- ITEM(8)
- #define _SEMIC_SEP_LIST_7(ITEM) \
- _SEMIC_SEP_LIST_6(ITEM); \
- ITEM(7)
- #define _SEMIC_SEP_LIST_6(ITEM) \
- _SEMIC_SEP_LIST_5(ITEM); \
- ITEM(6)
- #define _SEMIC_SEP_LIST_5(ITEM) \
- _SEMIC_SEP_LIST_4(ITEM); \
- ITEM(5)
- #define _SEMIC_SEP_LIST_4(ITEM) \
- _SEMIC_SEP_LIST_3(ITEM); \
- ITEM(4)
- #define _SEMIC_SEP_LIST_3(ITEM) \
- _SEMIC_SEP_LIST_2(ITEM); \
- ITEM(3)
- #define _SEMIC_SEP_LIST_2(ITEM) \
- _SEMIC_SEP_LIST_1(ITEM); \
- ITEM(2)
- #define _SEMIC_SEP_LIST_1(ITEM) \
- _SEMIC_SEP_LIST_0(ITEM) \
- ITEM(1)
- #define _SEMIC_SEP_LIST_0(ITEM)
- // 1-based space separated list of ITEMs
- #define SPACE_SEP_LIST(ITEM, LENGTH) _SPACE_SEP_LIST_##LENGTH(ITEM)
- #define _SPACE_SEP_LIST_15(ITEM) \
- _SPACE_SEP_LIST_14(ITEM) \
- ITEM(15)
- #define _SPACE_SEP_LIST_14(ITEM) \
- _SPACE_SEP_LIST_13(ITEM) \
- ITEM(14)
- #define _SPACE_SEP_LIST_13(ITEM) \
- _SPACE_SEP_LIST_12(ITEM) \
- ITEM(13)
- #define _SPACE_SEP_LIST_12(ITEM) \
- _SPACE_SEP_LIST_11(ITEM) \
- ITEM(12)
- #define _SPACE_SEP_LIST_11(ITEM) \
- _SPACE_SEP_LIST_10(ITEM) \
- ITEM(11)
- #define _SPACE_SEP_LIST_10(ITEM) \
- _SPACE_SEP_LIST_9(ITEM) \
- ITEM(10)
- #define _SPACE_SEP_LIST_9(ITEM) \
- _SPACE_SEP_LIST_8(ITEM) \
- ITEM(9)
- #define _SPACE_SEP_LIST_8(ITEM) \
- _SPACE_SEP_LIST_7(ITEM) \
- ITEM(8)
- #define _SPACE_SEP_LIST_7(ITEM) \
- _SPACE_SEP_LIST_6(ITEM) \
- ITEM(7)
- #define _SPACE_SEP_LIST_6(ITEM) \
- _SPACE_SEP_LIST_5(ITEM) \
- ITEM(6)
- #define _SPACE_SEP_LIST_5(ITEM) \
- _SPACE_SEP_LIST_4(ITEM) \
- ITEM(5)
- #define _SPACE_SEP_LIST_4(ITEM) \
- _SPACE_SEP_LIST_3(ITEM) \
- ITEM(4)
- #define _SPACE_SEP_LIST_3(ITEM) \
- _SPACE_SEP_LIST_2(ITEM) \
- ITEM(3)
- #define _SPACE_SEP_LIST_2(ITEM) \
- _SPACE_SEP_LIST_1(ITEM) \
- ITEM(2)
- #define _SPACE_SEP_LIST_1(ITEM) \
- _SPACE_SEP_LIST_0(ITEM) \
- ITEM(1)
- #define _SPACE_SEP_LIST_0(ITEM)
- #define ARG(N) p##N
- #define PARAM(N) P##N p##N
- #define TYPE_PARAM(N) typename P##N
- #define PARAM_DECL(N) GetSimpleTypeT<P##N> p##N
- #define DECL_CMD(N) \
- template <typename T, typename M COMMA(N) COMMA_SEP_LIST(TYPE_PARAM, N)> \
- struct Command##N : public CommandBase { \
- T *instance; \
- M method; \
- SEMIC_SEP_LIST(PARAM_DECL, N); \
- virtual void call() override { \
- (instance->*method)(COMMA_SEP_LIST(ARG, N)); \
- } \
- };
- #define DECL_CMD_RET(N) \
- template <typename T, typename M, COMMA_SEP_LIST(TYPE_PARAM, N) COMMA(N) typename R> \
- struct CommandRet##N : public SyncCommand { \
- R *ret; \
- T *instance; \
- M method; \
- SEMIC_SEP_LIST(PARAM_DECL, N); \
- virtual void call() override { \
- *ret = (instance->*method)(COMMA_SEP_LIST(ARG, N)); \
- } \
- };
- #define DECL_CMD_SYNC(N) \
- template <typename T, typename M COMMA(N) COMMA_SEP_LIST(TYPE_PARAM, N)> \
- struct CommandSync##N : public SyncCommand { \
- T *instance; \
- M method; \
- SEMIC_SEP_LIST(PARAM_DECL, N); \
- virtual void call() override { \
- (instance->*method)(COMMA_SEP_LIST(ARG, N)); \
- } \
- };
- #define TYPE_ARG(N) P##N
- #define CMD_TYPE(N) Command##N<T, M COMMA(N) COMMA_SEP_LIST(TYPE_ARG, N)>
- #define CMD_ASSIGN_PARAM(N) cmd->p##N = p##N
- #define DECL_PUSH(N) \
- template <typename T, typename M COMMA(N) COMMA_SEP_LIST(TYPE_PARAM, N)> \
- void push(T *p_instance, M p_method COMMA(N) COMMA_SEP_LIST(PARAM, N)) { \
- MutexLock mlock(mutex); \
- CMD_TYPE(N) *cmd = allocate<CMD_TYPE(N)>(); \
- cmd->instance = p_instance; \
- cmd->method = p_method; \
- SEMIC_SEP_LIST(CMD_ASSIGN_PARAM, N); \
- if (pump_task_id != WorkerThreadPool::INVALID_TASK_ID) { \
- WorkerThreadPool::get_singleton()->notify_yield_over(pump_task_id); \
- } \
- }
- #define CMD_RET_TYPE(N) CommandRet##N<T, M, COMMA_SEP_LIST(TYPE_ARG, N) COMMA(N) R>
- #define DECL_PUSH_AND_RET(N) \
- template <typename T, typename M, COMMA_SEP_LIST(TYPE_PARAM, N) COMMA(N) typename R> \
- void push_and_ret(T *p_instance, M p_method, COMMA_SEP_LIST(PARAM, N) COMMA(N) R *r_ret) { \
- MutexLock mlock(mutex); \
- CMD_RET_TYPE(N) *cmd = allocate<CMD_RET_TYPE(N)>(); \
- cmd->instance = p_instance; \
- cmd->method = p_method; \
- SEMIC_SEP_LIST(CMD_ASSIGN_PARAM, N); \
- cmd->ret = r_ret; \
- if (pump_task_id != WorkerThreadPool::INVALID_TASK_ID) { \
- WorkerThreadPool::get_singleton()->notify_yield_over(pump_task_id); \
- } \
- sync_tail++; \
- _wait_for_sync(mlock); \
- }
- #define CMD_SYNC_TYPE(N) CommandSync##N<T, M COMMA(N) COMMA_SEP_LIST(TYPE_ARG, N)>
- #define DECL_PUSH_AND_SYNC(N) \
- template <typename T, typename M COMMA(N) COMMA_SEP_LIST(TYPE_PARAM, N)> \
- void push_and_sync(T *p_instance, M p_method COMMA(N) COMMA_SEP_LIST(PARAM, N)) { \
- MutexLock mlock(mutex); \
- CMD_SYNC_TYPE(N) *cmd = allocate<CMD_SYNC_TYPE(N)>(); \
- cmd->instance = p_instance; \
- cmd->method = p_method; \
- SEMIC_SEP_LIST(CMD_ASSIGN_PARAM, N); \
- if (pump_task_id != WorkerThreadPool::INVALID_TASK_ID) { \
- WorkerThreadPool::get_singleton()->notify_yield_over(pump_task_id); \
- } \
- sync_tail++; \
- _wait_for_sync(mlock); \
- }
- #define MAX_CMD_PARAMS 15
- class CommandQueueMT {
- struct CommandBase {
- bool sync = false;
- virtual void call() = 0;
- virtual ~CommandBase() = default;
- };
- struct SyncCommand : public CommandBase {
- virtual void call() override {}
- SyncCommand() {
- sync = true;
- }
- };
- DECL_CMD(0)
- SPACE_SEP_LIST(DECL_CMD, 15)
- // Commands that return.
- DECL_CMD_RET(0)
- SPACE_SEP_LIST(DECL_CMD_RET, 15)
- /* commands that don't return but sync */
- DECL_CMD_SYNC(0)
- SPACE_SEP_LIST(DECL_CMD_SYNC, 15)
- /***** BASE *******/
- static const uint32_t DEFAULT_COMMAND_MEM_SIZE_KB = 64;
- BinaryMutex mutex;
- LocalVector<uint8_t> command_mem;
- ConditionVariable sync_cond_var;
- uint32_t sync_head = 0;
- uint32_t sync_tail = 0;
- uint32_t sync_awaiters = 0;
- WorkerThreadPool::TaskID pump_task_id = WorkerThreadPool::INVALID_TASK_ID;
- uint64_t flush_read_ptr = 0;
- template <typename T>
- T *allocate() {
- // alloc size is size+T+safeguard
- static_assert(sizeof(T) < UINT32_MAX, "Type too large to fit in the command queue.");
- uint32_t alloc_size = ((sizeof(T) + 8U - 1U) & ~(8U - 1U));
- uint64_t size = command_mem.size();
- command_mem.resize(size + alloc_size + 8);
- *(uint64_t *)&command_mem[size] = alloc_size;
- T *cmd = memnew_placement(&command_mem[size + 8], T);
- return cmd;
- }
- _FORCE_INLINE_ void _prevent_sync_wraparound() {
- bool safe_to_reset = !sync_awaiters;
- bool already_sync_to_latest = sync_head == sync_tail;
- if (safe_to_reset && already_sync_to_latest) {
- sync_head = 0;
- sync_tail = 0;
- }
- }
- void _flush() {
- if (unlikely(flush_read_ptr)) {
- // Re-entrant call.
- return;
- }
- MutexLock lock(mutex);
- while (flush_read_ptr < command_mem.size()) {
- uint64_t size = *(uint64_t *)&command_mem[flush_read_ptr];
- flush_read_ptr += 8;
- CommandBase *cmd = reinterpret_cast<CommandBase *>(&command_mem[flush_read_ptr]);
- uint32_t allowance_id = WorkerThreadPool::thread_enter_unlock_allowance_zone(lock);
- cmd->call();
- WorkerThreadPool::thread_exit_unlock_allowance_zone(allowance_id);
- // Handle potential realloc due to the command and unlock allowance.
- cmd = reinterpret_cast<CommandBase *>(&command_mem[flush_read_ptr]);
- if (unlikely(cmd->sync)) {
- sync_head++;
- lock.~MutexLock(); // Give an opportunity to awaiters right away.
- sync_cond_var.notify_all();
- new (&lock) MutexLock(mutex);
- // Handle potential realloc happened during unlock.
- cmd = reinterpret_cast<CommandBase *>(&command_mem[flush_read_ptr]);
- }
- cmd->~CommandBase();
- flush_read_ptr += size;
- }
- command_mem.clear();
- flush_read_ptr = 0;
- _prevent_sync_wraparound();
- }
- _FORCE_INLINE_ void _wait_for_sync(MutexLock<BinaryMutex> &p_lock) {
- sync_awaiters++;
- uint32_t sync_head_goal = sync_tail;
- do {
- sync_cond_var.wait(p_lock);
- } while (sync_head < sync_head_goal);
- sync_awaiters--;
- _prevent_sync_wraparound();
- }
- void _no_op() {}
- public:
- /* NORMAL PUSH COMMANDS */
- DECL_PUSH(0)
- SPACE_SEP_LIST(DECL_PUSH, 15)
- /* PUSH AND RET COMMANDS */
- DECL_PUSH_AND_RET(0)
- SPACE_SEP_LIST(DECL_PUSH_AND_RET, 15)
- /* PUSH AND RET SYNC COMMANDS*/
- DECL_PUSH_AND_SYNC(0)
- SPACE_SEP_LIST(DECL_PUSH_AND_SYNC, 15)
- _FORCE_INLINE_ void flush_if_pending() {
- if (unlikely(command_mem.size() > 0)) {
- _flush();
- }
- }
- void flush_all() {
- _flush();
- }
- void sync() {
- push_and_sync(this, &CommandQueueMT::_no_op);
- }
- void wait_and_flush() {
- ERR_FAIL_COND(pump_task_id == WorkerThreadPool::INVALID_TASK_ID);
- WorkerThreadPool::get_singleton()->wait_for_task_completion(pump_task_id);
- _flush();
- }
- void set_pump_task_id(WorkerThreadPool::TaskID p_task_id) {
- MutexLock lock(mutex);
- pump_task_id = p_task_id;
- }
- CommandQueueMT();
- ~CommandQueueMT();
- };
- #undef ARG
- #undef PARAM
- #undef TYPE_PARAM
- #undef PARAM_DECL
- #undef DECL_CMD
- #undef DECL_CMD_RET
- #undef DECL_CMD_SYNC
- #undef TYPE_ARG
- #undef CMD_TYPE
- #undef CMD_ASSIGN_PARAM
- #undef DECL_PUSH
- #undef CMD_RET_TYPE
- #undef DECL_PUSH_AND_RET
- #undef CMD_SYNC_TYPE
- #undef DECL_CMD_SYNC
- #endif // COMMAND_QUEUE_MT_H
|