2015-04-07 12:13:12 +02:00
|
|
|
/*
|
|
|
|
This file is a part of the JThread package, which contains some object-
|
|
|
|
oriented thread wrappers for different thread implementations.
|
|
|
|
|
|
|
|
Copyright (c) 2000-2006 Jori Liesenborgs (jori.liesenborgs@gmail.com)
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THREADING_THREAD_H
|
|
|
|
#define THREADING_THREAD_H
|
|
|
|
|
|
|
|
#include "threading/atomic.h"
|
|
|
|
#include "threading/mutex.h"
|
2015-10-17 05:43:29 +02:00
|
|
|
#include "threads.h"
|
2015-04-07 12:13:12 +02:00
|
|
|
|
|
|
|
#include <string>
|
2015-10-17 05:43:29 +02:00
|
|
|
#if USE_CPP11_THREADS
|
2015-10-17 07:16:17 +02:00
|
|
|
#include <thread> // for std::thread
|
|
|
|
#endif
|
|
|
|
#ifdef _AIX
|
|
|
|
#include <sys/thread.h> // for tid_t
|
2015-04-07 12:13:12 +02:00
|
|
|
#endif
|
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
/*
|
|
|
|
* On platforms using pthreads, these five priority classes correlate to
|
|
|
|
* even divisions between the minimum and maximum reported thread priority.
|
|
|
|
*/
|
|
|
|
#if !defined(_WIN32)
|
|
|
|
#define THREAD_PRIORITY_LOWEST 0
|
|
|
|
#define THREAD_PRIORITY_BELOW_NORMAL 1
|
|
|
|
#define THREAD_PRIORITY_NORMAL 2
|
|
|
|
#define THREAD_PRIORITY_ABOVE_NORMAL 3
|
|
|
|
#define THREAD_PRIORITY_HIGHEST 4
|
2015-04-07 12:13:12 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
class Thread {
|
2015-04-07 12:13:12 +02:00
|
|
|
public:
|
2015-10-17 05:43:29 +02:00
|
|
|
Thread(const std::string &name="");
|
|
|
|
virtual ~Thread();
|
2015-04-07 12:13:12 +02:00
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
/*
|
|
|
|
* Begins execution of a new thread at the pure virtual method Thread::run().
|
|
|
|
* Execution of the thread is guaranteed to have started after this function
|
|
|
|
* returns.
|
|
|
|
*/
|
2015-04-07 12:13:12 +02:00
|
|
|
bool start();
|
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
/*
|
|
|
|
* Requests that the thread exit gracefully.
|
|
|
|
* Returns immediately; thread execution is guaranteed to be complete after
|
|
|
|
* a subsequent call to Thread::wait.
|
|
|
|
*/
|
|
|
|
bool stop();
|
2015-04-07 12:13:12 +02:00
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
/*
|
|
|
|
* Immediately terminates the thread.
|
|
|
|
* This should be used with extreme caution, as the thread will not have
|
|
|
|
* any opportunity to release resources it may be holding (such as memory
|
|
|
|
* or locks).
|
|
|
|
*/
|
|
|
|
bool kill();
|
2015-04-07 12:13:12 +02:00
|
|
|
|
|
|
|
/*
|
2015-10-17 05:43:29 +02:00
|
|
|
* Waits for thread to finish.
|
|
|
|
* Note: This does not stop a thread, you have to do this on your own.
|
2015-04-07 12:13:12 +02:00
|
|
|
* Returns immediately if the thread is not started.
|
|
|
|
*/
|
|
|
|
void wait();
|
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
/*
|
|
|
|
* Returns true if the calling thread is this Thread object.
|
|
|
|
*/
|
|
|
|
bool isCurrentThread();
|
|
|
|
|
|
|
|
inline bool isRunning() { return m_running; }
|
|
|
|
inline bool stopRequested() { return m_request_stop; }
|
|
|
|
inline threadid_t getThreadId() { return m_thread_id; }
|
|
|
|
inline threadhandle_t getThreadHandle() { return m_thread_handle; }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the thread return value.
|
|
|
|
* Returns true if the thread has exited and the return value was available,
|
|
|
|
* or false if the thread has yet to finish.
|
|
|
|
*/
|
|
|
|
bool getReturnValue(void **ret);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Binds (if possible, otherwise sets the affinity of) the thread to the
|
|
|
|
* specific processor specified by proc_number.
|
|
|
|
*/
|
|
|
|
bool bindToProcessor(unsigned int proc_number);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sets the thread priority to the specified priority.
|
|
|
|
*
|
|
|
|
* prio can be one of: THREAD_PRIORITY_LOWEST, THREAD_PRIORITY_BELOW_NORMAL,
|
|
|
|
* THREAD_PRIORITY_NORMAL, THREAD_PRIORITY_ABOVE_NORMAL, THREAD_PRIORITY_HIGHEST.
|
|
|
|
* On Windows, any of the other priorites as defined by SetThreadPriority
|
|
|
|
* are supported as well.
|
|
|
|
*
|
|
|
|
* Note that it may be necessary to first set the threading policy or
|
|
|
|
* scheduling algorithm to one that supports thread priorities if not
|
|
|
|
* supported by default, otherwise this call will have no effect.
|
|
|
|
*/
|
|
|
|
bool setPriority(int prio);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sets the currently executing thread's name to where supported; useful
|
|
|
|
* for debugging.
|
|
|
|
*/
|
2015-04-07 12:13:12 +02:00
|
|
|
static void setName(const std::string &name);
|
|
|
|
|
2015-10-17 05:43:29 +02:00
|
|
|
/*
|
|
|
|
* Returns the number of processors/cores configured and active on this machine.
|
|
|
|
*/
|
|
|
|
static unsigned int getNumberOfProcessors();
|
|
|
|
|
2015-04-07 12:13:12 +02:00
|
|
|
protected:
|
2015-10-17 05:43:29 +02:00
|
|
|
std::string m_name;
|
2015-04-07 12:13:12 +02:00
|
|
|
|
|
|
|
virtual void *run() = 0;
|
|
|
|
|
|
|
|
private:
|
2015-10-17 05:43:29 +02:00
|
|
|
void *m_retval;
|
|
|
|
Atomic<bool> m_request_stop;
|
|
|
|
Atomic<bool> m_running;
|
|
|
|
Mutex m_continue_mutex;
|
|
|
|
|
|
|
|
threadid_t m_thread_id;
|
|
|
|
threadhandle_t m_thread_handle;
|
|
|
|
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
static ThreadStartFunc threadProc;
|
|
|
|
|
|
|
|
#ifdef _AIX
|
|
|
|
// For AIX, there does not exist any mapping from pthread_t to tid_t
|
|
|
|
// available to us, so we maintain one ourselves. This is set on thread start.
|
|
|
|
tid_t m_kernel_thread_id;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if USE_CPP11_THREADS
|
|
|
|
std::thread *m_thread_obj;
|
2015-04-07 12:13:12 +02:00
|
|
|
#endif
|
2015-10-17 05:43:29 +02:00
|
|
|
|
2015-04-07 12:13:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|