2019-08-12 13:45:57 +02:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2019-08-12 13:45:57 +02:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2019-08-14 02:13:34 +02:00
|
|
|
#include "td/utils/common.h"
|
2019-08-12 13:45:57 +02:00
|
|
|
#include "td/utils/port/thread_local.h"
|
|
|
|
|
|
|
|
#include <array>
|
2019-08-13 22:52:54 +02:00
|
|
|
#include <atomic>
|
2019-08-12 13:45:57 +02:00
|
|
|
|
|
|
|
namespace td {
|
2020-06-26 01:24:13 +02:00
|
|
|
|
2019-08-12 13:45:57 +02:00
|
|
|
template <class T>
|
|
|
|
class ThreadLocalStorage {
|
|
|
|
public:
|
2019-08-14 02:13:34 +02:00
|
|
|
T &get() {
|
2019-08-12 13:45:57 +02:00
|
|
|
return thread_local_node().value;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class F>
|
2019-08-14 02:13:34 +02:00
|
|
|
void for_each(F &&f) {
|
2019-08-13 22:52:54 +02:00
|
|
|
int32 n = max_thread_id_.load();
|
|
|
|
for (int32 i = 0; i < n; i++) {
|
2019-08-12 13:45:57 +02:00
|
|
|
f(nodes_[i].value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
template <class F>
|
2019-08-14 02:13:34 +02:00
|
|
|
void for_each(F &&f) const {
|
2019-08-13 22:52:54 +02:00
|
|
|
int32 n = max_thread_id_.load();
|
|
|
|
for (int32 i = 0; i < n; i++) {
|
2019-08-12 13:45:57 +02:00
|
|
|
f(nodes_[i].value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct Node {
|
2020-11-06 15:22:44 +01:00
|
|
|
T value;
|
2019-08-13 22:52:54 +02:00
|
|
|
char padding[TD_CONCURRENCY_PAD];
|
2019-08-12 13:45:57 +02:00
|
|
|
};
|
2019-08-13 22:52:54 +02:00
|
|
|
static constexpr int32 MAX_THREAD_ID = 128;
|
|
|
|
std::atomic<int32> max_thread_id_{MAX_THREAD_ID};
|
2019-08-12 13:45:57 +02:00
|
|
|
std::array<Node, MAX_THREAD_ID> nodes_;
|
|
|
|
|
2019-08-14 02:13:34 +02:00
|
|
|
Node &thread_local_node() {
|
2019-08-12 13:45:57 +02:00
|
|
|
auto thread_id = get_thread_id();
|
|
|
|
CHECK(0 <= thread_id && static_cast<size_t>(thread_id) < nodes_.size());
|
|
|
|
return nodes_[thread_id];
|
|
|
|
}
|
|
|
|
};
|
2020-06-26 01:24:13 +02:00
|
|
|
|
2019-08-12 13:45:57 +02:00
|
|
|
} // namespace td
|