mirror of
https://github.com/znc/znc.git
synced 2026-08-07 17:33:34 +02:00
Add a generic threads abstraction
This should make it easier to work with threads. It provides classes for mutexes and condition variables. Additionally, there is a special CMutexGuard that automatically unlocks the mutex on destruction and a CThreadPool class. This thread pool is used to replace the thread pool in the sockets code. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
+5
-23
@@ -11,6 +11,7 @@
|
||||
|
||||
#include <znc/zncconfig.h>
|
||||
#include <znc/Csocket.h>
|
||||
#include <znc/Threads.h>
|
||||
|
||||
class CModule;
|
||||
|
||||
@@ -120,7 +121,8 @@ private:
|
||||
addrinfo* aiTarget;
|
||||
addrinfo* aiBind;
|
||||
};
|
||||
struct TDNSArg {
|
||||
class CDNSJob : public CJob {
|
||||
public:
|
||||
CString sHostname;
|
||||
TDNSTask* task;
|
||||
int fd;
|
||||
@@ -128,33 +130,13 @@ private:
|
||||
|
||||
int iRes;
|
||||
addrinfo* aiResult;
|
||||
};
|
||||
struct TDNSStatus {
|
||||
/* mutex which protects this whole struct */
|
||||
pthread_mutex_t mutex;
|
||||
/* condition variable for idle threads */
|
||||
pthread_cond_t cond;
|
||||
/* When this is true, all threads should exit */
|
||||
bool done;
|
||||
/* Total number of running DNS threads */
|
||||
size_t num_threads;
|
||||
/* Number of DNS threads which don't have any work */
|
||||
size_t num_idle;
|
||||
/* List of pending DNS jobs */
|
||||
std::list<TDNSArg *> jobs;
|
||||
|
||||
void run();
|
||||
};
|
||||
void StartTDNSThread(TDNSTask* task, bool bBind);
|
||||
void SetTDNSThreadFinished(TDNSTask* task, bool bBind, addrinfo* aiResult);
|
||||
void RetrieveTDNSResult();
|
||||
static void* TDNSThread(void* argument);
|
||||
static void DoDNS(TDNSArg *arg);
|
||||
|
||||
/** Must be called with threadStatus->mutex held.
|
||||
* @returns false when the calling DNS thread should exit.
|
||||
*/
|
||||
static bool ThreadNeeded(struct TDNSStatus* status);
|
||||
|
||||
TDNSStatus m_threadStatus;
|
||||
#endif
|
||||
protected:
|
||||
};
|
||||
|
||||
@@ -0,0 +1,230 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2012 See the AUTHORS file for details.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 as published
|
||||
* by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#ifndef _THREADS_H
|
||||
#define _THREADS_H
|
||||
|
||||
#include <znc/zncconfig.h>
|
||||
|
||||
#ifdef HAVE_PTHREAD
|
||||
|
||||
#include <znc/Utils.h>
|
||||
|
||||
#include <cerrno>
|
||||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <list>
|
||||
#include <pthread.h>
|
||||
|
||||
/**
|
||||
* This class represents a non-recursive mutex. Only a single thread may own the
|
||||
* mutex at any point in time.
|
||||
*/
|
||||
class CMutex {
|
||||
public:
|
||||
friend class CConditionVariable;
|
||||
|
||||
CMutex() {
|
||||
int i = pthread_mutex_init(&m_mutex, NULL);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't initialize mutex: " + CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
~CMutex() {
|
||||
int i = pthread_mutex_destroy(&m_mutex);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't destroy mutex: " + CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
void lock() {
|
||||
int i = pthread_mutex_lock(&m_mutex);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't lock mutex: " + CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
int i = pthread_mutex_unlock(&m_mutex);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't unlock mutex: " + CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
pthread_mutex_t m_mutex;
|
||||
};
|
||||
|
||||
/**
|
||||
* A mutex locker should always be used as an automatic variable. This
|
||||
* class makes sure that the mutex is unlocked when this class is destructed.
|
||||
* For example, this makes it easier to make code exception-safe.
|
||||
*/
|
||||
class CMutexLocker {
|
||||
public:
|
||||
CMutexLocker(CMutex& mutex, bool initiallyLocked = true)
|
||||
: m_mutex(mutex), m_locked(false) {
|
||||
if (initiallyLocked)
|
||||
lock();
|
||||
}
|
||||
|
||||
~CMutexLocker() {
|
||||
if (m_locked)
|
||||
unlock();
|
||||
}
|
||||
|
||||
void lock() {
|
||||
assert(!m_locked);
|
||||
m_mutex.lock();
|
||||
m_locked = true;
|
||||
}
|
||||
|
||||
void unlock() {
|
||||
assert(m_locked);
|
||||
m_locked = false;
|
||||
m_mutex.unlock();
|
||||
}
|
||||
|
||||
private:
|
||||
CMutex &m_mutex;
|
||||
bool m_locked;
|
||||
};
|
||||
|
||||
/**
|
||||
* A condition variable makes it possible for threads to wait until some
|
||||
* condition is reached at which point the thread can wake up again.
|
||||
*/
|
||||
class CConditionVariable {
|
||||
public:
|
||||
CConditionVariable() {
|
||||
int i = pthread_cond_init(&m_cond, NULL);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't initialize condition variable: "
|
||||
+ CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
~CConditionVariable() {
|
||||
int i = pthread_cond_destroy(&m_cond);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't destroy condition variable: "
|
||||
+ CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
void wait(CMutex& mutex) {
|
||||
int i = pthread_cond_wait(&m_cond, &mutex.m_mutex);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't wait on condition variable: "
|
||||
+ CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
void signal() {
|
||||
int i = pthread_cond_signal(&m_cond);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't signal condition variable: "
|
||||
+ CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
void broadcast() {
|
||||
int i = pthread_cond_broadcast(&m_cond);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't broadcast condition variable: "
|
||||
+ CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
pthread_cond_t m_cond;
|
||||
};
|
||||
|
||||
class CThread {
|
||||
public:
|
||||
typedef void *threadRoutine(void *);
|
||||
static void startThread(threadRoutine *func, void *arg) {
|
||||
pthread_t thr;
|
||||
sigset_t old_sigmask, sigmask;
|
||||
|
||||
/* Block all signals. The thread will inherit our signal mask
|
||||
* and thus won't ever try to handle signals.
|
||||
*/
|
||||
int i = sigfillset(&sigmask);
|
||||
i |= pthread_sigmask(SIG_SETMASK, &sigmask, &old_sigmask);
|
||||
i |= pthread_create(&thr, NULL, func, arg);
|
||||
i |= pthread_sigmask(SIG_SETMASK, &old_sigmask, NULL);
|
||||
i |= pthread_detach(thr);
|
||||
if (i) {
|
||||
CUtils::PrintError("Can't start new thread: "
|
||||
+ CString(strerror(errno)));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
class CJob {
|
||||
public:
|
||||
virtual ~CJob() {}
|
||||
virtual void run() = 0;
|
||||
};
|
||||
|
||||
class CThreadPool {
|
||||
private:
|
||||
CThreadPool() : m_done(false), m_num_threads(0), m_num_idle(0) {
|
||||
}
|
||||
|
||||
~CThreadPool();
|
||||
|
||||
public:
|
||||
static CThreadPool& Get();
|
||||
|
||||
void addJob(CJob *job);
|
||||
|
||||
private:
|
||||
// Check if the calling thread is still needed, must be called with m_mutex held
|
||||
bool threadNeeded() const;
|
||||
|
||||
void threadFunc();
|
||||
static void *threadPoolFunc(void *arg) {
|
||||
CThreadPool &pool = *reinterpret_cast<CThreadPool *>(arg);
|
||||
pool.threadFunc();
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// mutex protecting all of these members
|
||||
CMutex m_mutex;
|
||||
|
||||
// condition variable for waiting idle threads
|
||||
CConditionVariable m_cond;
|
||||
|
||||
// when this is true, all threads should exit
|
||||
bool m_done;
|
||||
|
||||
// total number of running threads
|
||||
size_t m_num_threads;
|
||||
|
||||
// number of idle threads waiting on the condition variable
|
||||
size_t m_num_idle;
|
||||
|
||||
std::list<CJob *> m_jobs;
|
||||
};
|
||||
|
||||
#endif // HAVE_PTHREAD
|
||||
#endif // !_THREADS_H
|
||||
Reference in New Issue
Block a user