Coverage Report

Created: 2026-07-08 14:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/tmp/bitcoin/src/checkqueue.h
Line
Count
Source
1
// Copyright (c) 2012-present The Bitcoin Core developers
2
// Distributed under the MIT software license, see the accompanying
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5
#ifndef BITCOIN_CHECKQUEUE_H
6
#define BITCOIN_CHECKQUEUE_H
7
8
#include <sync.h>
9
#include <tinyformat.h>
10
#include <util/log.h>
11
#include <util/threadnames.h>
12
13
#include <algorithm>
14
#include <iterator>
15
#include <optional>
16
#include <vector>
17
18
/**
19
 * Queue for verifications that have to be performed.
20
  * The verifications are represented by a type T, which must provide an
21
  * operator(), returning an std::optional<R>.
22
  *
23
  * The overall result of the computation is std::nullopt if all invocations
24
  * return std::nullopt, or one of the other results otherwise.
25
  *
26
  * One thread (the master) is assumed to push batches of verifications
27
  * onto the queue, where they are processed by N-1 worker threads. When
28
  * the master is done adding work, it temporarily joins the worker pool
29
  * as an N'th worker, until all jobs are done.
30
  *
31
  */
32
template <typename T, typename R = std::remove_cvref_t<decltype(std::declval<T>()().value())>>
33
class CCheckQueue
34
{
35
private:
36
    //! Mutex to protect the inner state
37
    Mutex m_mutex;
38
39
    //! Worker threads block on this when out of work
40
    std::condition_variable m_worker_cv;
41
42
    //! Master thread blocks on this when out of work
43
    std::condition_variable m_master_cv;
44
45
    //! The queue of elements to be processed.
46
    //! As the order of booleans doesn't matter, it is used as a LIFO (stack)
47
    std::vector<T> queue GUARDED_BY(m_mutex);
48
49
    //! The number of workers (including the master) that are idle.
50
    int nIdle GUARDED_BY(m_mutex){0};
51
52
    //! The total number of workers (including the master).
53
    int nTotal GUARDED_BY(m_mutex){0};
54
55
    //! The temporary evaluation result.
56
    std::optional<R> m_result GUARDED_BY(m_mutex);
57
58
    /**
59
     * Number of verifications that haven't completed yet.
60
     * This includes elements that are no longer queued, but still in the
61
     * worker's own batches.
62
     */
63
    unsigned int nTodo GUARDED_BY(m_mutex){0};
64
65
    //! The maximum number of elements to be processed in one batch
66
    const unsigned int nBatchSize;
67
68
    std::vector<std::thread> m_worker_threads;
69
    bool m_request_stop GUARDED_BY(m_mutex){false};
70
71
    /// \anchor checkqueue
72
    /** Internal function that does bulk of the verification work. If fMaster, return the final result. */
73
    std::optional<R> Loop(bool fMaster) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
74
159k
    {
75
159k
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
159k
        std::vector<T> vChecks;
77
159k
        vChecks.reserve(nBatchSize);
78
159k
        unsigned int nNow = 0;
79
159k
        std::optional<R> local_result;
80
159k
        bool do_work;
81
5.31M
        do {
82
5.31M
            {
83
5.31M
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
5.31M
                if (nNow) {
86
5.15M
                    if (local_result.has_value() && !m_result.has_value()) {
87
3.63k
                        std::swap(local_result, m_result);
88
3.63k
                    }
89
5.15M
                    nTodo -= nNow;
90
5.15M
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
877k
                        m_master_cv.notify_one();
93
877k
                    }
94
5.15M
                } else {
95
                    // first iteration
96
158k
                    nTotal++;
97
158k
                }
98
                // logically, the do loop starts here
99
7.97M
                while (queue.empty() && !m_request_stop) {
100
2.82M
                    if (fMaster && nTodo == 0) {
101
157k
                        nTotal--;
102
157k
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
157k
                        m_result = std::nullopt;
105
                        // return the current status
106
157k
                        return to_return;
107
157k
                    }
108
2.66M
                    nIdle++;
109
2.66M
                    cond.wait(lock); // wait
110
2.66M
                    nIdle--;
111
2.66M
                }
112
5.15M
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
1.43k
                    return std::nullopt;
115
1.43k
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
5.15M
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
5.15M
                auto start_it = queue.end() - nNow;
124
5.15M
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
5.15M
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
5.15M
                do_work = !m_result.has_value();
128
5.15M
            }
129
            // execute work
130
5.15M
            if (do_work) {
131
11.1M
                for (T& check : vChecks) {
132
11.1M
                    local_result = check();
133
11.1M
                    if (local_result.has_value()) break;
134
11.1M
                }
135
5.14M
            }
136
5.15M
            vChecks.clear();
137
5.15M
        } while (true);
138
159k
    }
CCheckQueue<FakeCheck, int>::Loop(bool)
Line
Count
Source
74
7
    {
75
7
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
7
        std::vector<T> vChecks;
77
7
        vChecks.reserve(nBatchSize);
78
7
        unsigned int nNow = 0;
79
7
        std::optional<R> local_result;
80
7
        bool do_work;
81
7
        do {
82
7
            {
83
7
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
7
                if (nNow) {
86
0
                    if (local_result.has_value() && !m_result.has_value()) {
87
0
                        std::swap(local_result, m_result);
88
0
                    }
89
0
                    nTodo -= nNow;
90
0
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
0
                        m_master_cv.notify_one();
93
0
                    }
94
7
                } else {
95
                    // first iteration
96
7
                    nTotal++;
97
7
                }
98
                // logically, the do loop starts here
99
10
                while (queue.empty() && !m_request_stop) {
100
7
                    if (fMaster && nTodo == 0) {
101
4
                        nTotal--;
102
4
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
4
                        m_result = std::nullopt;
105
                        // return the current status
106
4
                        return to_return;
107
4
                    }
108
3
                    nIdle++;
109
3
                    cond.wait(lock); // wait
110
3
                    nIdle--;
111
3
                }
112
3
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
3
                    return std::nullopt;
115
3
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
0
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
0
                auto start_it = queue.end() - nNow;
124
0
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
0
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
0
                do_work = !m_result.has_value();
128
0
            }
129
            // execute work
130
0
            if (do_work) {
131
0
                for (T& check : vChecks) {
132
0
                    local_result = check();
133
0
                    if (local_result.has_value()) break;
134
0
                }
135
0
            }
136
0
            vChecks.clear();
137
0
        } while (true);
138
7
    }
CCheckQueue<FakeCheckCheckCompletion, int>::Loop(bool)
Line
Count
Source
74
209
    {
75
209
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
209
        std::vector<T> vChecks;
77
209
        vChecks.reserve(nBatchSize);
78
209
        unsigned int nNow = 0;
79
209
        std::optional<R> local_result;
80
209
        bool do_work;
81
4.22M
        do {
82
4.22M
            {
83
4.22M
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
4.22M
                if (nNow) {
86
4.22M
                    if (local_result.has_value() && !m_result.has_value()) {
87
0
                        std::swap(local_result, m_result);
88
0
                    }
89
4.22M
                    nTodo -= nNow;
90
4.22M
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
683k
                        m_master_cv.notify_one();
93
683k
                    }
94
18.4E
                } else {
95
                    // first iteration
96
18.4E
                    nTotal++;
97
18.4E
                }
98
                // logically, the do loop starts here
99
6.34M
                while (queue.empty() && !m_request_stop) {
100
2.11M
                    if (fMaster && nTodo == 0) {
101
198
                        nTotal--;
102
198
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
198
                        m_result = std::nullopt;
105
                        // return the current status
106
198
                        return to_return;
107
198
                    }
108
2.11M
                    nIdle++;
109
2.11M
                    cond.wait(lock); // wait
110
2.11M
                    nIdle--;
111
2.11M
                }
112
4.22M
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
12
                    return std::nullopt;
115
12
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
4.22M
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
4.22M
                auto start_it = queue.end() - nNow;
124
4.22M
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
4.22M
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
4.22M
                do_work = !m_result.has_value();
128
4.22M
            }
129
            // execute work
130
4.22M
            if (do_work) {
131
10.0M
                for (T& check : vChecks) {
132
10.0M
                    local_result = check();
133
10.0M
                    if (local_result.has_value()) break;
134
10.0M
                }
135
4.22M
            }
136
4.22M
            vChecks.clear();
137
4.22M
        } while (true);
138
209
    }
CCheckQueue<FixedCheck, int>::Loop(bool)
Line
Count
Source
74
1.02k
    {
75
1.02k
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
1.02k
        std::vector<T> vChecks;
77
1.02k
        vChecks.reserve(nBatchSize);
78
1.02k
        unsigned int nNow = 0;
79
1.02k
        std::optional<R> local_result;
80
1.02k
        bool do_work;
81
402k
        do {
82
402k
            {
83
402k
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
402k
                if (nNow) {
86
401k
                    if (local_result.has_value() && !m_result.has_value()) {
87
1.01k
                        std::swap(local_result, m_result);
88
1.01k
                    }
89
401k
                    nTodo -= nNow;
90
401k
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
77.0k
                        m_master_cv.notify_one();
93
77.0k
                    }
94
401k
                } else {
95
                    // first iteration
96
1.02k
                    nTotal++;
97
1.02k
                }
98
                // logically, the do loop starts here
99
630k
                while (queue.empty() && !m_request_stop) {
100
229k
                    if (fMaster && nTodo == 0) {
101
1.02k
                        nTotal--;
102
1.02k
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
1.02k
                        m_result = std::nullopt;
105
                        // return the current status
106
1.02k
                        return to_return;
107
1.02k
                    }
108
228k
                    nIdle++;
109
228k
                    cond.wait(lock); // wait
110
228k
                    nIdle--;
111
228k
                }
112
401k
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
6
                    return std::nullopt;
115
6
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
401k
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
401k
                auto start_it = queue.end() - nNow;
124
401k
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
401k
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
401k
                do_work = !m_result.has_value();
128
401k
            }
129
            // execute work
130
401k
            if (do_work) {
131
424k
                for (T& check : vChecks) {
132
424k
                    local_result = check();
133
424k
                    if (local_result.has_value()) break;
134
424k
                }
135
392k
            }
136
401k
            vChecks.clear();
137
401k
        } while (true);
138
1.02k
    }
CCheckQueue<UniqueCheck, int>::Loop(bool)
Line
Count
Source
74
4
    {
75
4
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
4
        std::vector<T> vChecks;
77
4
        vChecks.reserve(nBatchSize);
78
4
        unsigned int nNow = 0;
79
4
        std::optional<R> local_result;
80
4
        bool do_work;
81
1.19k
        do {
82
1.19k
            {
83
1.19k
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
1.19k
                if (nNow) {
86
1.19k
                    if (local_result.has_value() && !m_result.has_value()) {
87
0
                        std::swap(local_result, m_result);
88
0
                    }
89
1.19k
                    nTodo -= nNow;
90
1.19k
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
5
                        m_master_cv.notify_one();
93
5
                    }
94
1.19k
                } else {
95
                    // first iteration
96
4
                    nTotal++;
97
4
                }
98
                // logically, the do loop starts here
99
1.22k
                while (queue.empty() && !m_request_stop) {
100
29
                    if (fMaster && nTodo == 0) {
101
1
                        nTotal--;
102
1
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
1
                        m_result = std::nullopt;
105
                        // return the current status
106
1
                        return to_return;
107
1
                    }
108
28
                    nIdle++;
109
28
                    cond.wait(lock); // wait
110
28
                    nIdle--;
111
28
                }
112
1.19k
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
3
                    return std::nullopt;
115
3
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
1.19k
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
1.19k
                auto start_it = queue.end() - nNow;
124
1.19k
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
1.19k
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
1.19k
                do_work = !m_result.has_value();
128
1.19k
            }
129
            // execute work
130
1.19k
            if (do_work) {
131
99.9k
                for (T& check : vChecks) {
132
99.9k
                    local_result = check();
133
99.9k
                    if (local_result.has_value()) break;
134
99.9k
                }
135
1.19k
            }
136
1.19k
            vChecks.clear();
137
1.19k
        } while (true);
138
4
    }
CCheckQueue<MemoryCheck, int>::Loop(bool)
Line
Count
Source
74
1.00k
    {
75
1.00k
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
1.00k
        std::vector<T> vChecks;
77
1.00k
        vChecks.reserve(nBatchSize);
78
1.00k
        unsigned int nNow = 0;
79
1.00k
        std::optional<R> local_result;
80
1.00k
        bool do_work;
81
493k
        do {
82
493k
            {
83
493k
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
493k
                if (nNow) {
86
492k
                    if (local_result.has_value() && !m_result.has_value()) {
87
0
                        std::swap(local_result, m_result);
88
0
                    }
89
492k
                    nTodo -= nNow;
90
492k
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
97.5k
                        m_master_cv.notify_one();
93
97.5k
                    }
94
492k
                } else {
95
                    // first iteration
96
1.00k
                    nTotal++;
97
1.00k
                }
98
                // logically, the do loop starts here
99
782k
                while (queue.empty() && !m_request_stop) {
100
290k
                    if (fMaster && nTodo == 0) {
101
1.00k
                        nTotal--;
102
1.00k
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
1.00k
                        m_result = std::nullopt;
105
                        // return the current status
106
1.00k
                        return to_return;
107
1.00k
                    }
108
289k
                    nIdle++;
109
289k
                    cond.wait(lock); // wait
110
289k
                    nIdle--;
111
289k
                }
112
492k
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
3
                    return std::nullopt;
115
3
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
492k
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
492k
                auto start_it = queue.end() - nNow;
124
492k
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
492k
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
492k
                do_work = !m_result.has_value();
128
492k
            }
129
            // execute work
130
492k
            if (do_work) {
131
499k
                for (T& check : vChecks) {
132
499k
                    local_result = check();
133
499k
                    if (local_result.has_value()) break;
134
499k
                }
135
492k
            }
136
492k
            vChecks.clear();
137
492k
        } while (true);
138
1.00k
    }
CCheckQueue<FrozenCleanupCheck, int>::Loop(bool)
Line
Count
Source
74
4
    {
75
4
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
4
        std::vector<T> vChecks;
77
4
        vChecks.reserve(nBatchSize);
78
4
        unsigned int nNow = 0;
79
4
        std::optional<R> local_result;
80
4
        bool do_work;
81
5
        do {
82
5
            {
83
5
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
5
                if (nNow) {
86
1
                    if (local_result.has_value() && !m_result.has_value()) {
87
0
                        std::swap(local_result, m_result);
88
0
                    }
89
1
                    nTodo -= nNow;
90
1
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
1
                        m_master_cv.notify_one();
93
1
                    }
94
4
                } else {
95
                    // first iteration
96
4
                    nTotal++;
97
4
                }
98
                // logically, the do loop starts here
99
8
                while (queue.empty() && !m_request_stop) {
100
4
                    if (fMaster && nTodo == 0) {
101
1
                        nTotal--;
102
1
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
1
                        m_result = std::nullopt;
105
                        // return the current status
106
1
                        return to_return;
107
1
                    }
108
3
                    nIdle++;
109
3
                    cond.wait(lock); // wait
110
3
                    nIdle--;
111
3
                }
112
4
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
3
                    return std::nullopt;
115
3
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
1
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
1
                auto start_it = queue.end() - nNow;
124
1
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
1
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
1
                do_work = !m_result.has_value();
128
1
            }
129
            // execute work
130
1
            if (do_work) {
131
1
                for (T& check : vChecks) {
132
1
                    local_result = check();
133
1
                    if (local_result.has_value()) break;
134
1
                }
135
1
            }
136
1
            vChecks.clear();
137
1
        } while (true);
138
4
    }
CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::Loop(bool)
Line
Count
Source
74
157k
    {
75
157k
        std::condition_variable& cond = fMaster ? m_master_cv : m_worker_cv;
76
157k
        std::vector<T> vChecks;
77
157k
        vChecks.reserve(nBatchSize);
78
157k
        unsigned int nNow = 0;
79
157k
        std::optional<R> local_result;
80
157k
        bool do_work;
81
186k
        do {
82
186k
            {
83
186k
                WAIT_LOCK(m_mutex, lock);
84
                // first do the clean-up of the previous loop run (allowing us to do it in the same critsect)
85
186k
                if (nNow) {
86
29.0k
                    if (local_result.has_value() && !m_result.has_value()) {
87
2.62k
                        std::swap(local_result, m_result);
88
2.62k
                    }
89
29.0k
                    nTodo -= nNow;
90
29.0k
                    if (nTodo == 0 && !fMaster) {
91
                        // We processed the last element; inform the master it can exit and return the result
92
19.1k
                        m_master_cv.notify_one();
93
19.1k
                    }
94
157k
                } else {
95
                    // first iteration
96
157k
                    nTotal++;
97
157k
                }
98
                // logically, the do loop starts here
99
211k
                while (queue.empty() && !m_request_stop) {
100
180k
                    if (fMaster && nTodo == 0) {
101
155k
                        nTotal--;
102
155k
                        std::optional<R> to_return = std::move(m_result);
103
                        // reset the status for new work later
104
155k
                        m_result = std::nullopt;
105
                        // return the current status
106
155k
                        return to_return;
107
155k
                    }
108
25.2k
                    nIdle++;
109
25.2k
                    cond.wait(lock); // wait
110
25.2k
                    nIdle--;
111
25.2k
                }
112
30.4k
                if (m_request_stop) {
113
                    // return value does not matter, because m_request_stop is only set in the destructor.
114
1.40k
                    return std::nullopt;
115
1.40k
                }
116
117
                // Decide how many work units to process now.
118
                // * Do not try to do everything at once, but aim for increasingly smaller batches so
119
                //   all workers finish approximately simultaneously.
120
                // * Try to account for idle jobs which will instantly start helping.
121
                // * Don't do batches smaller than 1 (duh), or larger than nBatchSize.
122
29.0k
                nNow = std::max(1U, std::min(nBatchSize, (unsigned int)queue.size() / (nTotal + nIdle + 1)));
123
29.0k
                auto start_it = queue.end() - nNow;
124
29.0k
                vChecks.assign(std::make_move_iterator(start_it), std::make_move_iterator(queue.end()));
125
29.0k
                queue.erase(start_it, queue.end());
126
                // Check whether we need to do work at all
127
29.0k
                do_work = !m_result.has_value();
128
29.0k
            }
129
            // execute work
130
29.0k
            if (do_work) {
131
48.2k
                for (T& check : vChecks) {
132
48.2k
                    local_result = check();
133
48.2k
                    if (local_result.has_value()) break;
134
48.2k
                }
135
28.1k
            }
136
29.0k
            vChecks.clear();
137
29.0k
        } while (true);
138
157k
    }
139
140
public:
141
    //! Mutex to ensure only one concurrent CCheckQueueControl
142
    Mutex m_control_mutex;
143
144
    //! Create a new check queue
145
    explicit CCheckQueue(unsigned int batch_size, int worker_threads_num)
146
1.23k
        : nBatchSize(batch_size)
147
1.23k
    {
148
1.23k
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
1.23k
        m_worker_threads.reserve(worker_threads_num);
150
2.66k
        for (int n = 0; n < worker_threads_num; ++n) {
151
1.43k
            m_worker_threads.emplace_back([this, n]() {
152
1.43k
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
1.43k
                Loop(false /* worker thread */);
154
1.43k
            });
CCheckQueue<FakeCheckCheckCompletion, int>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
12
            m_worker_threads.emplace_back([this, n]() {
152
12
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
12
                Loop(false /* worker thread */);
154
12
            });
CCheckQueue<FixedCheck, int>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
6
            m_worker_threads.emplace_back([this, n]() {
152
6
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
6
                Loop(false /* worker thread */);
154
6
            });
CCheckQueue<UniqueCheck, int>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
CCheckQueue<MemoryCheck, int>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
CCheckQueue<FrozenCleanupCheck, int>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
CCheckQueue<FakeCheck, int>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::CCheckQueue(unsigned int, int)::'lambda'()::operator()() const
Line
Count
Source
151
1.40k
            m_worker_threads.emplace_back([this, n]() {
152
1.40k
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
1.40k
                Loop(false /* worker thread */);
154
1.40k
            });
155
1.43k
        }
156
1.23k
    }
CCheckQueue<FakeCheckCheckCompletion, int>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
4
        : nBatchSize(batch_size)
147
4
    {
148
4
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
4
        m_worker_threads.reserve(worker_threads_num);
150
16
        for (int n = 0; n < worker_threads_num; ++n) {
151
12
            m_worker_threads.emplace_back([this, n]() {
152
12
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
12
                Loop(false /* worker thread */);
154
12
            });
155
12
        }
156
4
    }
CCheckQueue<FixedCheck, int>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
2
        : nBatchSize(batch_size)
147
2
    {
148
2
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
2
        m_worker_threads.reserve(worker_threads_num);
150
8
        for (int n = 0; n < worker_threads_num; ++n) {
151
6
            m_worker_threads.emplace_back([this, n]() {
152
6
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
6
                Loop(false /* worker thread */);
154
6
            });
155
6
        }
156
2
    }
CCheckQueue<UniqueCheck, int>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
1
        : nBatchSize(batch_size)
147
1
    {
148
1
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
1
        m_worker_threads.reserve(worker_threads_num);
150
4
        for (int n = 0; n < worker_threads_num; ++n) {
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
155
3
        }
156
1
    }
CCheckQueue<MemoryCheck, int>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
1
        : nBatchSize(batch_size)
147
1
    {
148
1
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
1
        m_worker_threads.reserve(worker_threads_num);
150
4
        for (int n = 0; n < worker_threads_num; ++n) {
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
155
3
        }
156
1
    }
CCheckQueue<FrozenCleanupCheck, int>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
1
        : nBatchSize(batch_size)
147
1
    {
148
1
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
1
        m_worker_threads.reserve(worker_threads_num);
150
4
        for (int n = 0; n < worker_threads_num; ++n) {
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
155
3
        }
156
1
    }
CCheckQueue<FakeCheck, int>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
1
        : nBatchSize(batch_size)
147
1
    {
148
1
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
1
        m_worker_threads.reserve(worker_threads_num);
150
4
        for (int n = 0; n < worker_threads_num; ++n) {
151
3
            m_worker_threads.emplace_back([this, n]() {
152
3
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
3
                Loop(false /* worker thread */);
154
3
            });
155
3
        }
156
1
    }
CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::CCheckQueue(unsigned int, int)
Line
Count
Source
146
1.22k
        : nBatchSize(batch_size)
147
1.22k
    {
148
1.22k
        LogInfo("Script verification uses %d additional threads", worker_threads_num);
149
1.22k
        m_worker_threads.reserve(worker_threads_num);
150
2.62k
        for (int n = 0; n < worker_threads_num; ++n) {
151
1.40k
            m_worker_threads.emplace_back([this, n]() {
152
1.40k
                util::ThreadRename(strprintf("scriptch.%02i", n));
153
1.40k
                Loop(false /* worker thread */);
154
1.40k
            });
155
1.40k
        }
156
1.22k
    }
157
158
    // Since this class manages its own resources, which is a thread
159
    // pool `m_worker_threads`, copy and move operations are not appropriate.
160
    CCheckQueue(const CCheckQueue&) = delete;
161
    CCheckQueue& operator=(const CCheckQueue&) = delete;
162
    CCheckQueue(CCheckQueue&&) = delete;
163
    CCheckQueue& operator=(CCheckQueue&&) = delete;
164
165
    //! Join the execution until completion. If at least one evaluation wasn't successful, return
166
    //! its error.
167
    std::optional<R> Complete() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
168
157k
    {
169
157k
        return Loop(true /* master thread */);
170
157k
    }
CCheckQueue<FakeCheck, int>::Complete()
Line
Count
Source
168
4
    {
169
4
        return Loop(true /* master thread */);
170
4
    }
CCheckQueue<FakeCheckCheckCompletion, int>::Complete()
Line
Count
Source
168
198
    {
169
198
        return Loop(true /* master thread */);
170
198
    }
CCheckQueue<FixedCheck, int>::Complete()
Line
Count
Source
168
1.02k
    {
169
1.02k
        return Loop(true /* master thread */);
170
1.02k
    }
CCheckQueue<UniqueCheck, int>::Complete()
Line
Count
Source
168
1
    {
169
1
        return Loop(true /* master thread */);
170
1
    }
CCheckQueue<MemoryCheck, int>::Complete()
Line
Count
Source
168
1.00k
    {
169
1.00k
        return Loop(true /* master thread */);
170
1.00k
    }
CCheckQueue<FrozenCleanupCheck, int>::Complete()
Line
Count
Source
168
1
    {
169
1
        return Loop(true /* master thread */);
170
1
    }
CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::Complete()
Line
Count
Source
168
155k
    {
169
155k
        return Loop(true /* master thread */);
170
155k
    }
171
172
    //! Add a batch of checks to the queue
173
    void Add(std::vector<T>&& vChecks) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
174
2.55M
    {
175
2.55M
        if (vChecks.empty()) {
176
281k
            return;
177
281k
        }
178
179
2.27M
        {
180
2.27M
            LOCK(m_mutex);
181
2.27M
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
2.27M
            nTodo += vChecks.size();
183
2.27M
        }
184
185
2.27M
        if (vChecks.size() == 1) {
186
271k
            m_worker_cv.notify_one();
187
1.99M
        } else {
188
1.99M
            m_worker_cv.notify_all();
189
1.99M
        }
190
2.27M
    }
CCheckQueue<FakeCheckCheckCompletion, int>::Add(std::vector<FakeCheckCheckCompletion, std::allocator<FakeCheckCheckCompletion>>&&)
Line
Count
Source
174
2.24M
    {
175
2.24M
        if (vChecks.empty()) {
176
224k
            return;
177
224k
        }
178
179
2.01M
        {
180
2.01M
            LOCK(m_mutex);
181
2.01M
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
2.01M
            nTodo += vChecks.size();
183
2.01M
        }
184
185
2.01M
        if (vChecks.size() == 1) {
186
224k
            m_worker_cv.notify_one();
187
1.79M
        } else {
188
1.79M
            m_worker_cv.notify_all();
189
1.79M
        }
190
2.01M
    }
CCheckQueue<FixedCheck, int>::Add(std::vector<FixedCheck, std::allocator<FixedCheck>>&&)
Line
Count
Source
174
111k
    {
175
111k
        if (vChecks.empty()) {
176
11.1k
            return;
177
11.1k
        }
178
179
100k
        {
180
100k
            LOCK(m_mutex);
181
100k
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
100k
            nTodo += vChecks.size();
183
100k
        }
184
185
100k
        if (vChecks.size() == 1) {
186
11.3k
            m_worker_cv.notify_one();
187
89.2k
        } else {
188
89.2k
            m_worker_cv.notify_all();
189
89.2k
        }
190
100k
    }
CCheckQueue<UniqueCheck, int>::Add(std::vector<UniqueCheck, std::allocator<UniqueCheck>>&&)
Line
Count
Source
174
22.2k
    {
175
22.2k
        if (vChecks.empty()) {
176
2.28k
            return;
177
2.28k
        }
178
179
19.9k
        {
180
19.9k
            LOCK(m_mutex);
181
19.9k
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
19.9k
            nTodo += vChecks.size();
183
19.9k
        }
184
185
19.9k
        if (vChecks.size() == 1) {
186
2.23k
            m_worker_cv.notify_one();
187
17.7k
        } else {
188
17.7k
            m_worker_cv.notify_all();
189
17.7k
        }
190
19.9k
    }
CCheckQueue<MemoryCheck, int>::Add(std::vector<MemoryCheck, std::allocator<MemoryCheck>>&&)
Line
Count
Source
174
111k
    {
175
111k
        if (vChecks.empty()) {
176
11.1k
            return;
177
11.1k
        }
178
179
100k
        {
180
100k
            LOCK(m_mutex);
181
100k
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
100k
            nTodo += vChecks.size();
183
100k
        }
184
185
100k
        if (vChecks.size() == 1) {
186
11.3k
            m_worker_cv.notify_one();
187
89.0k
        } else {
188
89.0k
            m_worker_cv.notify_all();
189
89.0k
        }
190
100k
    }
CCheckQueue<FrozenCleanupCheck, int>::Add(std::vector<FrozenCleanupCheck, std::allocator<FrozenCleanupCheck>>&&)
Line
Count
Source
174
1
    {
175
1
        if (vChecks.empty()) {
176
0
            return;
177
0
        }
178
179
1
        {
180
1
            LOCK(m_mutex);
181
1
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
1
            nTodo += vChecks.size();
183
1
        }
184
185
1
        if (vChecks.size() == 1) {
186
1
            m_worker_cv.notify_one();
187
1
        } else {
188
0
            m_worker_cv.notify_all();
189
0
        }
190
1
    }
CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::Add(std::vector<CScriptCheck, std::allocator<CScriptCheck>>&&)
Line
Count
Source
174
65.5k
    {
175
65.5k
        if (vChecks.empty()) {
176
32.4k
            return;
177
32.4k
        }
178
179
33.1k
        {
180
33.1k
            LOCK(m_mutex);
181
33.1k
            queue.insert(queue.end(), std::make_move_iterator(vChecks.begin()), std::make_move_iterator(vChecks.end()));
182
33.1k
            nTodo += vChecks.size();
183
33.1k
        }
184
185
33.1k
        if (vChecks.size() == 1) {
186
22.5k
            m_worker_cv.notify_one();
187
22.5k
        } else {
188
10.6k
            m_worker_cv.notify_all();
189
10.6k
        }
190
33.1k
    }
191
192
    ~CCheckQueue()
193
1.23k
    {
194
1.23k
        WITH_LOCK(m_mutex, m_request_stop = true);
195
1.23k
        m_worker_cv.notify_all();
196
1.43k
        for (std::thread& t : m_worker_threads) {
197
1.43k
            t.join();
198
1.43k
        }
199
1.23k
    }
CCheckQueue<FakeCheckCheckCompletion, int>::~CCheckQueue()
Line
Count
Source
193
4
    {
194
4
        WITH_LOCK(m_mutex, m_request_stop = true);
195
4
        m_worker_cv.notify_all();
196
12
        for (std::thread& t : m_worker_threads) {
197
12
            t.join();
198
12
        }
199
4
    }
CCheckQueue<FixedCheck, int>::~CCheckQueue()
Line
Count
Source
193
2
    {
194
2
        WITH_LOCK(m_mutex, m_request_stop = true);
195
2
        m_worker_cv.notify_all();
196
6
        for (std::thread& t : m_worker_threads) {
197
6
            t.join();
198
6
        }
199
2
    }
CCheckQueue<UniqueCheck, int>::~CCheckQueue()
Line
Count
Source
193
1
    {
194
1
        WITH_LOCK(m_mutex, m_request_stop = true);
195
1
        m_worker_cv.notify_all();
196
3
        for (std::thread& t : m_worker_threads) {
197
3
            t.join();
198
3
        }
199
1
    }
CCheckQueue<MemoryCheck, int>::~CCheckQueue()
Line
Count
Source
193
1
    {
194
1
        WITH_LOCK(m_mutex, m_request_stop = true);
195
1
        m_worker_cv.notify_all();
196
3
        for (std::thread& t : m_worker_threads) {
197
3
            t.join();
198
3
        }
199
1
    }
CCheckQueue<FrozenCleanupCheck, int>::~CCheckQueue()
Line
Count
Source
193
1
    {
194
1
        WITH_LOCK(m_mutex, m_request_stop = true);
195
1
        m_worker_cv.notify_all();
196
3
        for (std::thread& t : m_worker_threads) {
197
3
            t.join();
198
3
        }
199
1
    }
CCheckQueue<FakeCheck, int>::~CCheckQueue()
Line
Count
Source
193
1
    {
194
1
        WITH_LOCK(m_mutex, m_request_stop = true);
195
1
        m_worker_cv.notify_all();
196
3
        for (std::thread& t : m_worker_threads) {
197
3
            t.join();
198
3
        }
199
1
    }
CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::~CCheckQueue()
Line
Count
Source
193
1.22k
    {
194
1.22k
        WITH_LOCK(m_mutex, m_request_stop = true);
195
1.22k
        m_worker_cv.notify_all();
196
1.40k
        for (std::thread& t : m_worker_threads) {
197
1.40k
            t.join();
198
1.40k
        }
199
1.22k
    }
200
201
156k
    bool HasThreads() const { return !m_worker_threads.empty(); }
202
};
203
204
/**
205
 * RAII-style controller object for a CCheckQueue that guarantees the passed
206
 * queue is finished before continuing.
207
 */
208
template <typename T, typename R = std::remove_cvref_t<decltype(std::declval<T>()().value())>>
209
class SCOPED_LOCKABLE CCheckQueueControl
210
{
211
private:
212
    CCheckQueue<T, R>& m_queue;
213
    UniqueLock<Mutex> m_lock;
214
    bool fDone;
215
216
public:
217
    CCheckQueueControl() = delete;
218
    CCheckQueueControl(const CCheckQueueControl&) = delete;
219
    CCheckQueueControl& operator=(const CCheckQueueControl&) = delete;
220
157k
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<FakeCheck, int>::CCheckQueueControl(CCheckQueue<FakeCheck, int>&)
Line
Count
Source
220
4
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<FakeCheckCheckCompletion, int>::CCheckQueueControl(CCheckQueue<FakeCheckCheckCompletion, int>&)
Line
Count
Source
220
198
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<FixedCheck, int>::CCheckQueueControl(CCheckQueue<FixedCheck, int>&)
Line
Count
Source
220
1.02k
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<UniqueCheck, int>::CCheckQueueControl(CCheckQueue<UniqueCheck, int>&)
Line
Count
Source
220
1
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<MemoryCheck, int>::CCheckQueueControl(CCheckQueue<MemoryCheck, int>&)
Line
Count
Source
220
1.00k
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<FrozenCleanupCheck, int>::CCheckQueueControl(CCheckQueue<FrozenCleanupCheck, int>&)
Line
Count
Source
220
1
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
CCheckQueueControl<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::CCheckQueueControl(CCheckQueue<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>&)
Line
Count
Source
220
155k
    explicit CCheckQueueControl(CCheckQueue<T>& queueIn) EXCLUSIVE_LOCK_FUNCTION(queueIn.m_control_mutex) : m_queue(queueIn), m_lock(LOCK_ARGS(queueIn.m_control_mutex)), fDone(false) {}
221
222
    std::optional<R> Complete()
223
157k
    {
224
157k
        auto ret = m_queue.Complete();
225
157k
        fDone = true;
226
157k
        return ret;
227
157k
    }
CCheckQueueControl<FakeCheck, int>::Complete()
Line
Count
Source
223
4
    {
224
4
        auto ret = m_queue.Complete();
225
4
        fDone = true;
226
4
        return ret;
227
4
    }
CCheckQueueControl<FakeCheckCheckCompletion, int>::Complete()
Line
Count
Source
223
198
    {
224
198
        auto ret = m_queue.Complete();
225
198
        fDone = true;
226
198
        return ret;
227
198
    }
CCheckQueueControl<FixedCheck, int>::Complete()
Line
Count
Source
223
1.02k
    {
224
1.02k
        auto ret = m_queue.Complete();
225
1.02k
        fDone = true;
226
1.02k
        return ret;
227
1.02k
    }
CCheckQueueControl<UniqueCheck, int>::Complete()
Line
Count
Source
223
1
    {
224
1
        auto ret = m_queue.Complete();
225
1
        fDone = true;
226
1
        return ret;
227
1
    }
CCheckQueueControl<MemoryCheck, int>::Complete()
Line
Count
Source
223
1.00k
    {
224
1.00k
        auto ret = m_queue.Complete();
225
1.00k
        fDone = true;
226
1.00k
        return ret;
227
1.00k
    }
CCheckQueueControl<FrozenCleanupCheck, int>::Complete()
Line
Count
Source
223
1
    {
224
1
        auto ret = m_queue.Complete();
225
1
        fDone = true;
226
1
        return ret;
227
1
    }
CCheckQueueControl<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::Complete()
Line
Count
Source
223
155k
    {
224
155k
        auto ret = m_queue.Complete();
225
155k
        fDone = true;
226
155k
        return ret;
227
155k
    }
228
229
    void Add(std::vector<T>&& vChecks)
230
2.55M
    {
231
2.55M
        m_queue.Add(std::move(vChecks));
232
2.55M
    }
CCheckQueueControl<FakeCheckCheckCompletion, int>::Add(std::vector<FakeCheckCheckCompletion, std::allocator<FakeCheckCheckCompletion>>&&)
Line
Count
Source
230
2.24M
    {
231
2.24M
        m_queue.Add(std::move(vChecks));
232
2.24M
    }
CCheckQueueControl<FixedCheck, int>::Add(std::vector<FixedCheck, std::allocator<FixedCheck>>&&)
Line
Count
Source
230
111k
    {
231
111k
        m_queue.Add(std::move(vChecks));
232
111k
    }
CCheckQueueControl<UniqueCheck, int>::Add(std::vector<UniqueCheck, std::allocator<UniqueCheck>>&&)
Line
Count
Source
230
22.2k
    {
231
22.2k
        m_queue.Add(std::move(vChecks));
232
22.2k
    }
CCheckQueueControl<MemoryCheck, int>::Add(std::vector<MemoryCheck, std::allocator<MemoryCheck>>&&)
Line
Count
Source
230
111k
    {
231
111k
        m_queue.Add(std::move(vChecks));
232
111k
    }
CCheckQueueControl<FrozenCleanupCheck, int>::Add(std::vector<FrozenCleanupCheck, std::allocator<FrozenCleanupCheck>>&&)
Line
Count
Source
230
1
    {
231
1
        m_queue.Add(std::move(vChecks));
232
1
    }
CCheckQueueControl<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::Add(std::vector<CScriptCheck, std::allocator<CScriptCheck>>&&)
Line
Count
Source
230
65.5k
    {
231
65.5k
        m_queue.Add(std::move(vChecks));
232
65.5k
    }
233
234
    ~CCheckQueueControl() UNLOCK_FUNCTION()
235
157k
    {
236
157k
        if (!fDone)
237
1.00k
            Complete();
238
157k
    }
CCheckQueueControl<FakeCheck, int>::~CCheckQueueControl()
Line
Count
Source
235
4
    {
236
4
        if (!fDone)
237
4
            Complete();
238
4
    }
CCheckQueueControl<FakeCheckCheckCompletion, int>::~CCheckQueueControl()
Line
Count
Source
235
198
    {
236
198
        if (!fDone)
237
0
            Complete();
238
198
    }
CCheckQueueControl<FixedCheck, int>::~CCheckQueueControl()
Line
Count
Source
235
1.02k
    {
236
1.02k
        if (!fDone)
237
0
            Complete();
238
1.02k
    }
CCheckQueueControl<UniqueCheck, int>::~CCheckQueueControl()
Line
Count
Source
235
1
    {
236
1
        if (!fDone)
237
1
            Complete();
238
1
    }
CCheckQueueControl<MemoryCheck, int>::~CCheckQueueControl()
Line
Count
Source
235
1.00k
    {
236
1.00k
        if (!fDone)
237
1.00k
            Complete();
238
1.00k
    }
CCheckQueueControl<FrozenCleanupCheck, int>::~CCheckQueueControl()
Line
Count
Source
235
1
    {
236
1
        if (!fDone)
237
0
            Complete();
238
1
    }
CCheckQueueControl<CScriptCheck, std::pair<ScriptError_t, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>>::~CCheckQueueControl()
Line
Count
Source
235
155k
    {
236
155k
        if (!fDone)
237
0
            Complete();
238
155k
    }
239
};
240
241
#endif // BITCOIN_CHECKQUEUE_H