#include <cstring>
#include <string>
#include <thread>
#include <utility>
#if (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
#include <pthread.h>
#include <pthread_np.h>
#endif
#include <util/threadnames.h>
#if __has_include(<sys/prctl.h>)
#include <sys/prctl.h>
#endif
static void SetThreadName(const char* name)
{
#if defined(PR_SET_NAME)
::prctl(PR_SET_NAME, name, 0, 0, 0);
#elif (defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__))
pthread_set_name_np(pthread_self(), name);
#elif defined(__APPLE__)
pthread_setname_np(name);
#else
(void)name;
#endif
}
static thread_local char g_thread_name[128]{'\0'};
std::string util::ThreadGetInternalName() { return g_thread_name; }
static void SetInternalName(const std::string& name)
{
const size_t copy_bytes{std::min(sizeof(g_thread_name) - 1, name.length())};
std::memcpy(g_thread_name, name.data(), copy_bytes);
g_thread_name[copy_bytes] = '\0';
}
void util::ThreadRename(const std::string& name)
{
SetThreadName(("b-" + name).c_str());
SetInternalName(name);
}
void util::ThreadSetInternalName(const std::string& name)
{
SetInternalName(name);
}