godot/core/os/thread.h

81 lines
3.3 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* thread.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 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. */
/*************************************************************************/
2014-02-10 02:10:30 +01:00
#ifndef THREAD_H
#define THREAD_H
#include "core/typedefs.h"
#include "core/ustring.h"
2014-02-10 02:10:30 +01:00
typedef void (*ThreadCreateCallback)(void *p_userdata);
class Thread {
public:
enum Priority {
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
PRIORITY_LOW,
PRIORITY_NORMAL,
2014-02-10 02:10:30 +01:00
PRIORITY_HIGH
};
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
struct Settings {
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
Priority priority;
Settings() { priority = PRIORITY_NORMAL; }
2014-02-10 02:10:30 +01:00
};
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
typedef uint64_t ID;
2016-03-09 00:00:52 +01:00
protected:
static Thread *(*create_func)(ThreadCreateCallback p_callback, void *, const Settings &);
static ID (*get_thread_id_func)();
static void (*wait_to_finish_func)(Thread *);
static Error (*set_name_func)(const String &);
2014-02-10 02:10:30 +01:00
friend class Main;
2014-02-10 02:10:30 +01:00
static ID _main_thread_id;
2014-02-10 02:10:30 +01:00
Thread();
2016-03-09 00:00:52 +01:00
public:
virtual ID get_id() const = 0;
2016-02-01 00:22:38 +01:00
static Error set_name(const String &p_name);
_FORCE_INLINE_ static ID get_main_id() { return _main_thread_id; } ///< get the ID of the main thread
static ID get_caller_id(); ///< get the ID of the caller function ID
static void wait_to_finish(Thread *p_thread); ///< waits until thread is finished
static Thread *create(ThreadCreateCallback p_callback, void *p_user, const Settings &p_settings = Settings()); ///< Static function to create a thread, will call p_callback
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
virtual ~Thread();
};
#endif