TDME2 1.9.121
Thread.h
Go to the documentation of this file.
1#pragma once
2
4
5#include <tdme/tdme.h>
6
7#if defined(CPPTHREADS)
8 #include <thread>
9 using std::thread;
10#else
11 #include <pthread.h>
12#endif
13
14#if !defined(_MSC_VER)
15 #include <time.h>
16#endif
17
18#include <string>
19
20using std::string;
21
22/**
23 * Base class for threads.
24 * @author Andreas Drewke
25 */
27public:
28 /**
29 * @brief Public constructor
30 * @param name name
31 * @param stackSize stack size, defaults to 2MB
32 */
33 Thread(const string& name, size_t stackSize = 2 * 1024 * 1024);
34
35 /**
36 * @brief Public destructor
37 */
38 virtual ~Thread();
39
40 /**
41 * @return hardware thread count
42 */
43 static int getHardwareThreadCount();
44
45 /**
46 * @brief sleeps current thread for given time in milliseconds
47 * @param milliseconds uint64_t milliseconds to wait
48 */
49 static void sleep(const uint64_t milliseconds);
50
51 /**
52 * @brief Blocks caller thread until this thread has been terminated
53 */
54 void join();
55
56 /**
57 * @brief Starts this objects thread
58 */
59 void start();
60
61 /**
62 * @brief Abstract run() method, should be implemented by subclassed class, will be called after spawn by start()
63 */
64 virtual void run() = 0;
65
66 /**
67 * @brief Requests that this thread should be stopped
68 */
69 void stop();
70
71 /**
72 * @brief Returns if stop has been requested
73 * @return bool
74 */
75 bool isStopRequested();
76private:
77 static void *pThreadRun(void *thread);
78 #if defined(CPPTHREADS)
79 thread* thread;
80 #else
81 pthread_t pThread;
82 #endif
83 string name;
85 volatile bool stopRequested;
86 size_t stackSize;
87};
Base class for threads.
Definition: Thread.h:26
virtual void run()=0
Abstract run() method, should be implemented by subclassed class, will be called after spawn by start...
static void * pThreadRun(void *thread)
Definition: Thread.cpp:88
static int getHardwareThreadCount()
Definition: Thread.cpp:30
Thread(const string &name, size_t stackSize=2 *1024 *1024)
Public constructor.
Definition: Thread.cpp:24
void start()
Starts this objects thread.
Definition: Thread.cpp:65
void join()
Blocks caller thread until this thread has been terminated.
Definition: Thread.cpp:55
volatile bool stopRequested
Definition: Thread.h:85
virtual ~Thread()
Public destructor.
Definition: Thread.cpp:27
void stop()
Requests that this thread should be stopped.
Definition: Thread.cpp:94
static void sleep(const uint64_t milliseconds)
sleeps current thread for given time in milliseconds
Definition: Thread.cpp:34
bool isStopRequested()
Returns if stop has been requested.
Definition: Thread.cpp:98