tdlight/tdutils/td/utils/port/detail/ThreadStl.h

152 lines
3.7 KiB
C
Raw Normal View History

//
2022-01-01 01:35:39 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/utils/port/config.h"
#ifdef TD_THREAD_STL
#include "td/utils/common.h"
#include "td/utils/invoke.h"
2022-09-17 12:21:04 +02:00
#if TD_WINDOWS
#include "td/utils/port/detail/NativeFd.h"
#endif
#include "td/utils/port/detail/ThreadIdGuard.h"
#include "td/utils/port/thread_local.h"
#include "td/utils/Slice.h"
#include "td/utils/Status.h"
#include <thread>
#include <tuple>
#include <type_traits>
#include <utility>
2022-09-17 20:58:00 +02:00
#if TD_WINDOWS
#define TD_HAVE_THREAD_AFFINITY 1
#endif
namespace td {
namespace detail {
2022-08-21 23:46:22 +02:00
class ThreadStl {
public:
ThreadStl() = default;
ThreadStl(const ThreadStl &other) = delete;
ThreadStl &operator=(const ThreadStl &other) = delete;
ThreadStl(ThreadStl &&) = default;
ThreadStl &operator=(ThreadStl &&) = default;
~ThreadStl() {
join();
}
2022-08-21 23:46:22 +02:00
template <class Function, class... Args>
2021-12-09 22:27:13 +01:00
explicit ThreadStl(Function &&f, Args &&...args) {
thread_ = std::thread([args = std::make_tuple(decay_copy(std::forward<Function>(f)),
decay_copy(std::forward<Args>(args))...)]() mutable {
ThreadIdGuard thread_id_guard;
invoke_tuple(std::move(args));
clear_thread_locals();
});
}
void join() {
if (thread_.joinable()) {
thread_.join();
}
}
2022-08-21 23:46:22 +02:00
void detach() {
if (thread_.joinable()) {
thread_.detach();
}
}
2022-08-21 23:46:22 +02:00
void set_name(CSlice name) {
2022-08-21 23:46:22 +02:00
// not supported
}
static unsigned hardware_concurrency() {
return std::thread::hardware_concurrency();
}
2022-09-14 13:18:42 +02:00
#if TD_WINDOWS
2022-09-17 12:21:04 +02:00
using id = DWORD;
2022-09-14 13:18:42 +02:00
#else
using id = std::thread::id;
2022-09-14 13:18:42 +02:00
#endif
2022-10-04 21:48:55 +02:00
id get_id() noexcept {
#if TD_WINDOWS
return GetThreadId(thread_.native_handle());
#else
return thread_.get_id();
#endif
}
2022-08-21 23:46:22 +02:00
static void send_real_time_signal(id thread_id, int real_time_signal_number) {
// not supported
}
2022-09-17 20:58:00 +02:00
#if TD_HAVE_THREAD_AFFINITY
static Status set_affinity_mask(id thread_id, uint64 mask) {
if (static_cast<DWORD_PTR>(mask) != mask) {
return Status::Error("Invalid thread affinity mask specified");
}
2022-09-17 12:21:04 +02:00
auto handle = OpenThread(THREAD_SET_LIMITED_INFORMATION | THREAD_QUERY_LIMITED_INFORMATION, FALSE, thread_id);
if (handle == nullptr) {
return Status::Error("Failed to access thread");
}
NativeFd thread_handle(handle);
if (SetThreadAffinityMask(thread_handle.fd(), static_cast<DWORD_PTR>(mask))) {
return Status::OK();
}
return OS_ERROR("Failed to set thread affinity mask");
}
static uint64 get_affinity_mask(id thread_id) {
DWORD_PTR process_mask = 0;
DWORD_PTR system_mask = 0;
if (GetProcessAffinityMask(GetCurrentProcess(), &process_mask, &system_mask)) {
2022-09-17 12:21:04 +02:00
auto handle = OpenThread(THREAD_SET_LIMITED_INFORMATION | THREAD_QUERY_LIMITED_INFORMATION, FALSE, thread_id);
if (handle == nullptr) {
return 0;
}
NativeFd thread_handle(handle);
auto result = SetThreadAffinityMask(thread_handle.fd(), process_mask);
if (result != 0 && result != process_mask) {
2022-09-17 12:21:04 +02:00
SetThreadAffinityMask(thread_handle.fd(), result);
}
return result;
}
return 0;
}
2022-09-17 20:58:00 +02:00
#endif
private:
std::thread thread_;
template <class T>
std::decay_t<T> decay_copy(T &&v) {
return std::forward<T>(v);
}
};
2022-08-21 23:46:22 +02:00
namespace this_thread_stl {
2022-09-14 13:18:42 +02:00
#if TD_WINDOWS
inline ThreadStl::id get_id() {
2022-09-17 12:21:04 +02:00
return GetCurrentThreadId();
2022-09-14 13:18:42 +02:00
}
#else
using std::this_thread::get_id;
2022-09-14 13:18:42 +02:00
#endif
} // namespace this_thread_stl
2022-08-21 23:46:22 +02:00
} // namespace detail
} // namespace td
#endif