2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* thread_windows.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2019-01-01 12:53:14 +01:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "thread_windows.h"
|
|
|
|
|
2016-11-02 21:57:35 +01:00
|
|
|
#if defined(WINDOWS_ENABLED) && !defined(UWP_ENABLED)
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/memory.h"
|
2016-06-25 20:20:37 +02:00
|
|
|
|
2017-08-07 12:17:31 +02:00
|
|
|
Thread::ID ThreadWindows::get_id() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return id;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Thread *ThreadWindows::create_thread_windows() {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return memnew(ThreadWindows);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
DWORD ThreadWindows::thread_callback(LPVOID userdata) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ThreadWindows *t = reinterpret_cast<ThreadWindows *>(userdata);
|
2016-06-25 15:40:33 +02:00
|
|
|
|
|
|
|
ScriptServer::thread_enter(); //scripts may need to attach a stack
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
t->id = (ID)GetCurrentThreadId(); // must implement
|
2016-06-25 15:40:33 +02:00
|
|
|
t->callback(t->user);
|
2019-01-19 00:31:10 +01:00
|
|
|
SetEvent(t->handle);
|
2016-06-25 15:40:33 +02:00
|
|
|
|
|
|
|
ScriptServer::thread_exit();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Thread *ThreadWindows::create_func_windows(ThreadCreateCallback p_callback, void *p_user, const Settings &) {
|
|
|
|
|
|
|
|
ThreadWindows *tr = memnew(ThreadWindows);
|
|
|
|
tr->callback = p_callback;
|
|
|
|
tr->user = p_user;
|
2019-01-19 00:31:10 +01:00
|
|
|
tr->handle = CreateEvent(NULL, TRUE, FALSE, NULL);
|
|
|
|
|
|
|
|
QueueUserWorkItem(thread_callback, tr, WT_EXECUTELONGFUNCTION);
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return tr;
|
|
|
|
}
|
2017-08-07 12:17:31 +02:00
|
|
|
Thread::ID ThreadWindows::get_thread_id_func_windows() {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-03-24 09:06:10 +01:00
|
|
|
return (ID)GetCurrentThreadId(); //must implement
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
void ThreadWindows::wait_to_finish_func_windows(Thread *p_thread) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ThreadWindows *tp = static_cast<ThreadWindows *>(p_thread);
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND(!tp);
|
2017-03-05 16:44:50 +01:00
|
|
|
WaitForSingleObject(tp->handle, INFINITE);
|
2014-02-10 02:10:30 +01:00
|
|
|
CloseHandle(tp->handle);
|
2017-03-05 16:44:50 +01:00
|
|
|
//`memdelete(tp);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadWindows::make_default() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
create_func = create_func_windows;
|
2017-08-07 12:17:31 +02:00
|
|
|
get_thread_id_func = get_thread_id_func_windows;
|
2017-03-05 16:44:50 +01:00
|
|
|
wait_to_finish_func = wait_to_finish_func_windows;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-12-08 21:07:33 +01:00
|
|
|
ThreadWindows::ThreadWindows() :
|
|
|
|
handle(NULL) {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ThreadWindows::~ThreadWindows() {
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|