add basic thread pool impl for parallel compilation

master
Daniel Kolesa 2015-08-24 00:41:46 -07:00
parent a072cfeaaf
commit 19fb1100f8
2 changed files with 139 additions and 0 deletions

View File

@ -8,6 +8,8 @@
#include <cubescript.hh>
#include "tpool.hh"
/* represents a rule definition, possibly with a function */
struct Rule {
ostd::String target;

137
tpool.hh 100644
View File

@ -0,0 +1,137 @@
#include <pthread.h>
#include <ostd/types.hh>
#include <ostd/functional.hh>
#include <ostd/vector.hh>
#include <ostd/utility.hh>
struct Mutex {
Mutex() {
pthread_mutex_init(&mtx, nullptr);
locked = false;
}
~Mutex() {
while (locked) unlock();
pthread_mutex_destroy(&mtx);
}
void lock() {
pthread_mutex_lock(&mtx);
locked = true;
}
void unlock() {
locked = false;
pthread_mutex_unlock(&mtx);
}
pthread_mutex_t mtx;
volatile bool locked;
};
struct Cond {
Cond() {
pthread_cond_init(&cnd, nullptr);
}
~Cond() {
pthread_cond_destroy(&cnd);
}
void signal() {
pthread_cond_signal(&cnd);
}
void broadcast() {
pthread_cond_broadcast(&cnd);
}
void wait(Mutex &m) {
pthread_cond_wait(&cnd, &m.mtx);
}
pthread_cond_t cnd;
};
struct Task {
ostd::Function<void()> cb;
Task *next = nullptr;
Task(ostd::Function<void()> &&cb): cb(ostd::move(cb)) {}
};
struct ThreadPool {
ThreadPool(ostd::Size size): size(size) {}
~ThreadPool() {
if (running) destroy();
}
static void *thr_func(void *ptr) {
((ThreadPool *)ptr)->run();
return nullptr;
}
bool init() {
running = true;
for (ostd::Size i = 0; i < size; ++i) {
pthread_t tid;
if (pthread_create(&tid, nullptr, thr_func, this))
return false;
thrs.push(tid);
}
return true;
}
void destroy() {
mtx.lock();
running = false;
mtx.unlock();
cond.broadcast();
for (ostd::Size i = 0; i < size; ++i) {
void *ret;
pthread_join(thrs[i], &ret);
cond.broadcast();
}
}
void run() {
for (;;) {
mtx.lock();
while (running && (tasks == nullptr))
cond.wait(mtx);
if (!running) {
mtx.unlock();
pthread_exit(nullptr);
}
Task *t = tasks;
tasks = t->next;
if (last_task == t)
last_task = nullptr;
mtx.unlock();
t->cb();
delete t;
}
}
void push(ostd::Function<void()> func) {
mtx.lock();
Task *t = new Task(ostd::move(func));
if (last_task)
last_task->next = t;
last_task = t;
if (!tasks)
tasks = t;
cond.signal();
mtx.unlock();
}
private:
ostd::Size size;
Cond cond;
Mutex mtx;
ostd::Vector<pthread_t> thrs;
Task *tasks;
Task *last_task;
volatile bool running;
};