5#ifndef BITCOIN_CHECKQUEUE_H
6#define BITCOIN_CHECKQUEUE_H
32template <typename T, typename R = std::remove_cvref_t<decltype(std::declval<T>()().value())>>
74 std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
75 std::vector<T> vChecks;
76 vChecks.reserve(nBatchSize);
77 unsigned int nNow = 0;
78 std::optional<R> local_result;
85 if (local_result.has_value() && !m_result.has_value()) {
86 std::swap(local_result, m_result);
89 if (nTodo == 0 && !fMaster) {
91 m_master_cv.notify_one();
98 while (queue.empty() && !m_request_stop) {
99 if (fMaster && nTodo == 0) {
101 std::optional<R> to_return = std::move(m_result);
103 m_result = std::nullopt;
111 if (m_request_stop) {
121 nNow = std::max(1U, std::min(nBatchSize, (
unsigned int)queue.size() / (nTotal + nIdle + 1)));
122 auto start_it = queue.end() - nNow;
123 vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
124 queue.erase(start_it, queue.end());
126 do_work = !m_result.has_value();
130 for (
T& check : vChecks) {
131 local_result = check();
132 if (local_result.has_value())
break;
144 explicit CCheckQueue(
unsigned int batch_size,
int worker_threads_num)
145 : nBatchSize(batch_size)
147 LogInfo(
"Script verification uses %d additional threads", worker_threads_num);
148 m_worker_threads.reserve(worker_threads_num);
149 for (
int n = 0; n < worker_threads_num; ++n) {
150 m_worker_threads.emplace_back([
this, n]() {
174 if (vChecks.empty()) {
180 queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
181 nTodo += vChecks.size();
184 if (vChecks.size() == 1) {
185 m_worker_cv.notify_one();
187 m_worker_cv.notify_all();
193 WITH_LOCK(m_mutex, m_request_stop =
true);
194 m_worker_cv.notify_all();
195 for (std::thread&
t : m_worker_threads) {
200 bool HasThreads()
const {
return !m_worker_threads.empty(); }
207template <typename T, typename R = std::remove_cvref_t<decltype(std::declval<T>()().value())>>
221 if (pqueue !=
nullptr) {
228 if (pqueue ==
nullptr)
return std::nullopt;
234 void Add(std::vector<T>&& vChecks)
236 if (pqueue !=
nullptr) {
237 pqueue->
Add(std::move(vChecks));
245 if (pqueue !=
nullptr) {
RAII-style controller object for a CCheckQueue that guarantees the passed queue is finished before co...
CCheckQueueControl & operator=(const CCheckQueueControl &)=delete
CCheckQueueControl(const CCheckQueueControl &)=delete
CCheckQueueControl()=delete
CCheckQueue< T, R > *const pqueue
CCheckQueueControl(CCheckQueue< T > *const pqueueIn)
std::optional< R > Complete()
void Add(std::vector< T > &&vChecks)
Queue for verifications that have to be performed.
bool m_request_stop GUARDED_BY(m_mutex)
std::optional< R > Complete() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Join the execution until completion.
unsigned int nTodo GUARDED_BY(m_mutex)
Number of verifications that haven't completed yet.
Mutex m_control_mutex
Mutex to ensure only one concurrent CCheckQueueControl.
std::vector< T > queue GUARDED_BY(m_mutex)
The queue of elements to be processed.
CCheckQueue(const CCheckQueue &)=delete
void Add(std::vector< T > &&vChecks) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Add a batch of checks to the queue.
int nIdle GUARDED_BY(m_mutex)
The number of workers (including the master) that are idle.
CCheckQueue & operator=(CCheckQueue &&)=delete
int nTotal GUARDED_BY(m_mutex)
The total number of workers (including the master).
CCheckQueue(unsigned int batch_size, int worker_threads_num)
Create a new check queue.
Mutex m_mutex
Mutex to protect the inner state.
std::optional< R > Loop(bool fMaster) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Internal function that does bulk of the verification work.
std::condition_variable m_worker_cv
Worker threads block on this when out of work.
std::vector< std::thread > m_worker_threads
const unsigned int nBatchSize
The maximum number of elements to be processed in one batch.
std::optional< R > m_result GUARDED_BY(m_mutex)
The temporary evaluation result.
CCheckQueue(CCheckQueue &&)=delete
std::condition_variable m_master_cv
Master thread blocks on this when out of work.
CCheckQueue & operator=(const CCheckQueue &)=delete
#define T(expected, seed, data)
void ThreadRename(const std::string &)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name.
#define WAIT_LOCK(cs, name)
#define ENTER_CRITICAL_SECTION(cs)
#define LEAVE_CRITICAL_SECTION(cs)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define EXCLUSIVE_LOCKS_REQUIRED(...)