1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
/************************************************************************
*
* Copyright (C) 2009-2025 IRCAD France
* Copyright (C) 2012-2019 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#pragma once
#include <future>
#include <any>
#include <optional>
#include <core/base.hpp>
#include <core/clock.hpp>
#include <sight/core/config.hpp>
namespace sight::core::thread
{
using thread_id_t = std::thread::id;
/**
* @brief Retrieves the identifier of the current thread.
*
* @return The identifier of the current thread.
*
* @note The type `thread_id_t` represents the identifier of a thread.
*/
SIGHT_CORE_API thread_id_t get_current_thread_id();
/// The type `thread_native_id` represents the native identifier of a thread.
using thread_native_id_t = std::thread::native_handle_type;
/**
* @brief Retrieves the native identifier of the current thread.
*
* @return The native identifier of the current thread.
*/
SIGHT_CORE_API thread_native_id_t get_current_thread_native_id();
/**
* @brief Sets the name of the specified thread.
*
* This function sets the name of the thread identified by `_thread_id` to the given `_thread_name`.
*
* @param _thread_name The name to be assigned to the thread
* @param _thread_id (Optional) The native handle of the thread whose name is to be set. If not provided,
* the name of the current thread is set.
*/
SIGHT_CORE_API void set_thread_name(
const std::string& _thread_name,
std::optional<std::thread::native_handle_type> _thread_id = std::nullopt
);
/**
* @brief Retrieves the name of the specified thread.
*
* This function retrieves the name of the thread identified by `_thread_id`.
*
* @param _thread_id (Optional) The native handle of the thread whose name is to be retrieved. If not provided,
* the name of the current thread is retrieved.
* @return A string containing the name of the specified thread.
*/
SIGHT_CORE_API std::string get_thread_name(std::optional<std::thread::native_handle_type> _thread_id = std::nullopt);
/**
* @brief Retrieves the maximum length of a thread name.
*
* This function returns the maximum length of a thread name that can be set including the terminating null byte ('\0').
*
* @return The maximum length of a thread name.
*/
constexpr int get_max_length_of_thread_name()
{
constexpr auto g_max_thread_name_length = 16; // 15 characters + \0
return g_max_thread_name_length;
}
class timer; // NOLINT(bugprone-forward-declaration-namespace)
// cspell:ignore tparam
/**
* @brief This class creates and manages a task loop.
* The default implementation create a loop in a new thread.
*/
class SIGHT_CORE_CLASS_API worker
{
public:
using period_t = core::clock::type;
using task_t = std::function<void ()>;
using exit_return_type = std::any;
using future_t = std::shared_future<exit_return_type>;
using sptr = std::shared_ptr<worker>;
worker() = default;
virtual ~worker() = default;
/// Waits for the last task to be processed and stops the loop
SIGHT_CORE_API virtual void stop() = 0;
/// Requests invocation of the given task handler and returns immediately.
virtual void post(task_t _handler) = 0;
/**
* @brief Requests invocation of the given callable and returns a shared future.
*
* Returns immediately if called from another thread. Otherwise, the given callable is called
* immediately.
*
* @tparam R future's value type
* @tparam CALLABLE Any type wrappable with a std::function< void() >
*
* @returns a std::shared_future associated with the result of the given callable
*/
template<typename R, typename CALLABLE>
std::shared_future<R> post_task(CALLABLE _f);
/// Returns the worker's thread id
SIGHT_CORE_API virtual thread_id_t get_thread_id() const = 0;
/// Sets the worker's name (useful for debugging).
SIGHT_CORE_API virtual void set_thread_name(const std::string& _thread_name) = 0;
/// Creates and returns a core::thread::timer running in this Worker
SIGHT_CORE_API virtual SPTR(core::thread::timer) create_timer() = 0;
/**
* @brief Returns a std::shared_future associated with the execution of Worker's loop
* @warning Calling get_future() may be blocking if it is required by a specific implementation (for example, the Qt
* implementation).
*/
virtual future_t get_future()
{
return m_future;
}
/**
* @brief Processes worker pending tasks for the calling thread
* for maxtime milliseconds or until there are no more tasks to process.
* You can call this function occasionally when your program is busy performing a long operation.
*
* @param _maxtime milliseconds to process worker pending tasks.
* @warning Qt implementation processes all Qt and Worker pending events, be careful.
* @warning WxWidgets version is not yet implemented.
*/
SIGHT_CORE_API virtual void process_tasks(period_t _maxtime) = 0;
/**
* @brief Processes all worker pending tasks for the calling thread
* until there are no more tasks to process.
* You can call this function occasionally when your program is busy performing a long operation.
* @warning WxWidgets version is not yet implemented.
*/
SIGHT_CORE_API virtual void process_tasks() = 0;
/// Creates and returns a new instance of Worker default implementation
/// (boost::Asio).
SIGHT_CORE_API static SPTR(worker) make();
protected:
/// Copy constructor forbidden
worker(const worker&);
/// Copy operator forbidden
worker& operator=(const worker&);
/// Worker's loop future
future_t m_future;
};
using worker_key_type = std::string;
/**
* @brief Get a registered worker given a key, if the key does not exist a null pointer is returned
* @param _key name of the worker thread
* @note This method is thread safe.
*/
SIGHT_CORE_API core::thread::worker::sptr get_worker(const worker_key_type& _key);
/**
* @brief Registers a worker.
* The caller is still responsible of the lifetime of the worker and should call remove_worker() symmetrically.
* @param _key name of the worker thread
* @param _worker pointer to the worker thread
* @note This method is thread safe.
*/
SIGHT_CORE_API void add_worker(const worker_key_type& _key, core::thread::worker::sptr _worker);
/**
* @brief Stops and unregisters a worker
* @param _key name of the worker thread
* @note This method is thread safe.
*/
SIGHT_CORE_API void remove_worker(const worker_key_type& _key);
/**
* @brief Stops and unregisters a worker
* @param _worker pointer to the worker thread
* @note This method is thread safe.
*/
SIGHT_CORE_API void remove_worker(core::thread::worker::sptr _worker);
/**
* @brief Get the default registered worker
* @note This method is thread safe.
*/
SIGHT_CORE_API core::thread::worker::sptr get_default_worker();
/**
* @brief Set the default registered worker.
*
* This is only needed in rare cases and should be used at the start of an application. This replaces and destroys
* the default WorkerAsio, which should not be already in use.
* If you use this method, you need to call reset_default_worker() to unregister the worker thread.
*
* @param _worker pointer to the worker thread
* @note This method is thread safe.
* @throw sight::core::exception if the worker is null or if the previous default worker is already in use.
*/
SIGHT_CORE_API void set_default_worker(core::thread::worker::sptr _worker);
/**
* @brief Reset the default registered worker.
*
* Beware that there would be no default thread registered after that call. So this is really intended to be called
* at the end of the run of an application.
*
* @note This method is thread safe.
*/
SIGHT_CORE_API void reset_default_worker();
} // namespace sight::core::thread
#include "core/thread/worker.hxx"
|