5 #ifndef BITCOIN_CHECKQUEUE_H 6 #define BITCOIN_CHECKQUEUE_H 32 template <
typename T,
typename R = std::remove_cvref_t<decltype(std::declval<T>()().value())>>
75 std::vector<T> vChecks;
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) {
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)
147 LogInfo(
"Script verification uses %d additional threads", worker_threads_num);
149 for (
int n = 0; n < worker_threads_num; ++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) {
207 template <
typename T,
typename R = std::remove_cvref_t<decltype(std::declval<T>()().value())>>
228 if (
pqueue ==
nullptr)
return std::nullopt;
234 void Add(std::vector<T>&& vChecks)
237 pqueue->Add(std::move(vChecks));
251 #endif // BITCOIN_CHECKQUEUE_H
std::optional< R > Complete() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Join the execution until completion.
CCheckQueueControl()=delete
int nIdle GUARDED_BY(m_mutex)
The number of workers (including the master) that are idle.
RAII-style controller object for a CCheckQueue that guarantees the passed queue is finished before co...
std::condition_variable m_worker_cv
Worker threads block on this when out of work.
void ThreadRename(const std::string &)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name...
CCheckQueueControl(CCheckQueue< T > *const pqueueIn)
void Add(std::vector< T > &&vChecks) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Add a batch of checks to the queue.
#define LEAVE_CRITICAL_SECTION(cs)
std::condition_variable m_master_cv
Master thread blocks on this when out of work.
#define WAIT_LOCK(cs, name)
Queue for verifications that have to be performed.
Mutex m_control_mutex
Mutex to ensure only one concurrent CCheckQueueControl.
void Add(std::vector< T > &&vChecks)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
int nTotal GUARDED_BY(m_mutex)
The total number of workers (including the master).
std::optional< R > Loop(bool fMaster) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Internal function that does bulk of the verification work.
Mutex m_mutex
Mutex to protect the inner state.
#define ENTER_CRITICAL_SECTION(cs)
#define EXCLUSIVE_LOCKS_REQUIRED(...)
std::vector< std::thread > m_worker_threads
const unsigned int nBatchSize
The maximum number of elements to be processed in one batch.
CCheckQueueControl & operator=(const CCheckQueueControl &)=delete
std::vector< T > queue GUARDED_BY(m_mutex)
The queue of elements to be processed.
bool m_request_stop GUARDED_BY(m_mutex)
CCheckQueue(unsigned int batch_size, int worker_threads_num)
Create a new check queue.
CCheckQueue< T, R > *const pqueue
CCheckQueue & operator=(const CCheckQueue &)=delete
std::optional< R > Complete()