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

131 lines
3.0 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"
#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>
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
using id = HANDLE;
#else
using id = std::thread::id;
2022-09-14 13:18:42 +02:00
#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
}
static Status set_affinity_mask(id thread_id, uint64 mask) {
#if TD_WINDOWS
if (static_cast<DWORD_PTR>(mask) != mask) {
return Status::Error("Invalid thread affinity mask specified");
}
if (SetThreadAffinityMask(thread_id, static_cast<DWORD_PTR>(mask))) {
return Status::OK();
}
return OS_ERROR("Failed to set thread affinity mask");
#else
return Status::Error("Unsupported");
#endif
}
static uint64 get_affinity_mask(id thread_id) {
#if TD_WINDOWS
DWORD_PTR process_mask = 0;
DWORD_PTR system_mask = 0;
if (GetProcessAffinityMask(GetCurrentProcess(), &process_mask, &system_mask)) {
auto result = SetThreadAffinityMask(thread_id, process_mask);
if (result != 0 && result != process_mask) {
SetThreadAffinityMask(thread_id, result);
}
return result;
}
#endif
return 0;
}
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() {
return GetCurrentThread();
}
#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