barrier/lib/mt/CThreadRep.h

169 lines
3.5 KiB
C
Raw Normal View History

2002-08-02 19:57:46 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2002 Chris Schoeneman
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* found in the file COPYING that should have accompanied this file.
*
* This package is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
2001-10-06 14:13:28 +00:00
#ifndef CTHREADREP_H
#define CTHREADREP_H
#include "common.h"
2001-10-06 14:13:28 +00:00
#if HAVE_PTHREAD
2001-10-06 14:13:28 +00:00
#include <pthread.h>
#elif WINDOWS_LIKE
#define WIN32_LEAN_AND_MEAN
2001-10-06 14:13:28 +00:00
#include <windows.h>
#endif
class CMutex;
2001-10-06 14:13:28 +00:00
class IJob;
//! Internal thread class; do not use directly
2001-10-06 14:13:28 +00:00
class CThreadRep {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
CThreadRep(IJob*, void* userData);
// manipulators
// initialize the thread library
static void initThreads();
2001-10-06 14:13:28 +00:00
// change ref count
void ref();
void unref();
2002-04-29 14:40:01 +00:00
// the calling thread sleeps for t seconds. if t == 0.0 then
// the thread yields the CPU.
void sleep(double timeout);
2001-10-06 14:13:28 +00:00
// cancel the thread
void cancel();
// set cancellation state
bool enableCancel(bool enable);
// permanently disable further cancellation and start cancel cleanup
// if cancel has been called and cancellation hasn't been started yet.
void testCancel();
// wait for thread to exit or for current thread to cancel
bool wait(CThreadRep*, double timeout);
#if WINDOWS_LIKE
// wait for a message on the queue
bool waitForEvent(double timeout);
#endif
2002-04-29 14:40:01 +00:00
// set the priority
void setPriority(int n);
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
// accessors
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
// get the exit result for this thread. thread must be terminated.
void* getResult() const;
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
// get the user data passed to the constructor
void* getUserData() const;
2001-10-06 14:13:28 +00:00
// get the current cancellable state
bool isCancellable() const;
#if HAVE_PTHREAD
2001-10-06 14:13:28 +00:00
bool isExited() const;
#elif WINDOWS_LIKE
2001-10-06 14:13:28 +00:00
HANDLE getExitEvent() const;
HANDLE getCancelEvent() const;
#endif
2002-04-29 14:40:01 +00:00
// return the thread rep for the calling thread. the returned
// rep has been ref()'d.
static CThreadRep* getCurrentThreadRep();
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
protected:
2001-10-06 14:13:28 +00:00
virtual ~CThreadRep();
2002-04-29 14:40:01 +00:00
private:
2001-10-06 14:13:28 +00:00
// internal constructor
CThreadRep();
// initialization/cleanup
void init();
void fini();
// thread rep lookup
static CThreadRep* find();
// thread functions
#if HAVE_PTHREAD
2001-10-06 14:13:28 +00:00
static void* threadFunc(void* arg);
static void threadCancel(int);
static void* threadSignalHandler(void*);
#elif WINDOWS_LIKE
2001-10-06 14:13:28 +00:00
static unsigned int __stdcall threadFunc(void* arg);
#endif
void doThreadFunc();
// not implemented
CThreadRep(const CThreadRep&);
CThreadRep& operator=(const CThreadRep&);
2002-04-29 14:40:01 +00:00
private:
static CMutex* s_mutex;
2001-10-06 14:13:28 +00:00
static CThreadRep* s_head;
CThreadRep* m_prev;
CThreadRep* m_next;
int m_refCount;
2001-10-06 14:13:28 +00:00
IJob* m_job;
void* m_userData;
void* m_result;
bool m_cancellable;
bool m_cancelling;
#if HAVE_PTHREAD
2001-10-06 14:13:28 +00:00
pthread_t m_thread;
bool m_exit;
bool m_cancel;
static pthread_t s_signalThread;
2001-10-06 14:13:28 +00:00
#endif
#if WINDOWS_LIKE
2001-10-06 14:13:28 +00:00
HANDLE m_thread;
DWORD m_id;
HANDLE m_exit;
HANDLE m_cancel;
#endif
};
//
// CThreadPtr -- auto unref'ing pointer to thread rep
//
class CThreadPtr {
2002-04-29 14:40:01 +00:00
public:
CThreadPtr(CThreadRep* rep) : m_rep(rep) { }
~CThreadPtr() { m_rep->unref(); }
CThreadRep* operator->() const { return m_rep; }
2002-04-29 14:40:01 +00:00
private:
// not implemented
CThreadPtr(const CThreadPtr&);
CThreadPtr& operator=(const CThreadPtr&);
2002-04-29 14:40:01 +00:00
private:
CThreadRep* m_rep;
};
2001-10-06 14:13:28 +00:00
#endif