22 #include <condition_variable> 45 virtual bool execute() = 0;
57 class ClosureWorkItem :
public WorkItem {
59 ClosureWorkItem(WorkBatch* batch,
const Body& item_body)
60 : WorkItem(batch), item_body_(item_body) {}
62 bool execute()
override {
89 atomic<bool> canceled =
false;
94 work_items.emplace_back(make_unique<ClosureWorkItem<Body>>(
this, body));
98 class CanceledException {};
118 virtual void checkpoint() = 0;
130 static constexpr
int kAutoThreadCount = 0;
142 void processBatch(unique_ptr<WorkBatch> batch);
148 void executeOneItem();
149 unique_ptr<WorkItem> acquireWork();
154 deque<unique_ptr<WorkItem>> work_items_;
155 vector<thread> worker_threads_;
159 mutable condition_variable queue_cv_;
160 mutable condition_variable results_cv_;
163 class ParallelForSupport {
165 static void init(Controller* controller) {
166 auto thread_pool = make_unique<ThreadPool>(ThreadPool::kAutoThreadCount, controller);
167 CHECK(thread_pool_.exchange(thread_pool.release()) ==
nullptr);
170 static ThreadPool* threadPool() {
return thread_pool_; }
173 static atomic<ThreadPool*> thread_pool_;
Parallel Processing primitives.
Definition: parallel_for_each.cpp:15
vector< unique_ptr< WorkItem > > work_items
The set of work items to be processed.
Definition: thread_pool.h:83
int threadsCount() const
The number of threads managed by this thread pool.
Definition: thread_pool.h:145
WorkBatch * batch() const
The associated (parent) WorkBatch.
Definition: thread_pool.h:48
A basic thread pool (managing a fixed number of threads)
Definition: thread_pool.h:127
A collection of work items to be processed in a fork/join fashion.
Definition: thread_pool.h:81
void pushWork(const Body &body)
Appends a new WorkItem.
Definition: thread_pool.h:93
Classes derived from this are not copyable or movable.
Definition: utils.h:69
Generic work item interface.
Definition: thread_pool.h:39
An optional thread pool controller, which can be used to pause/resume/cancel the queued work items...
Definition: thread_pool.h:107