TDME2 1.9.121
Thread.cpp
Go to the documentation of this file.
2
3#if defined(_WIN32) && defined(_MSC_VER)
4 #define NOMINMAX
5 #include <windows.h>
6#else
7 #include <unistd.h>
8#endif
9
10#include <iostream>
11#include <string>
12#include <thread>
13
14#include <tdme/tdme.h>
16
18
19using std::string;
20
23
24Thread::Thread(const string& name, size_t stackSize): name(name), pThreadCreated(false), stopRequested(false), stackSize(stackSize) {
25}
26
28}
29
31 return std::thread::hardware_concurrency();
32}
33
34void Thread::sleep(const uint64_t milliseconds) {
35 #if defined(CPPTHREADS)
36 #else
37 // TODO: Check nanosleep from time.h
38 // struct timespec time;
39 // time.tv_sec = milliseconds / 1000;
40 // time.tv_nsec = (milliseconds - (time.tv_sec * 1000)) * 1000000;
41 // nanosleep(&time, &time);
42 #if defined(_WIN32) && defined(_MSC_VER)
43 Sleep(milliseconds);
44 #else
45 uint64_t secondsWaited = 0L;
46 while (milliseconds - (secondsWaited * 1000L) >= 1000L) {
47 ::sleep(1);
48 secondsWaited++;
49 }
50 usleep((milliseconds - (secondsWaited * 1000L)) * 1000L);
51 #endif
52 #endif
53}
54
56 #if defined(CPPTHREADS)
57 thread->join();
58 #else
59 void* status;
60 auto result = pthread_join(pThread, &status);
61 PTHREAD_CHECK_ERROR(name, "Could not join pthread", "pthread_join");
62 #endif
63}
64
66 #if defined(CPPTHREADS)
67 thread = new std::thread(pThreadRun, (void*)this);
68 #else
69 // set up thread attributes
70 pthread_attr_t pThreadAttr;
71 pthread_attr_init(&pThreadAttr);
72 // joinable state
73 pthread_attr_setdetachstate(&pThreadAttr, PTHREAD_CREATE_JOINABLE);
74
75 size_t currentStackSize;
76 pthread_attr_getstacksize(&pThreadAttr, &currentStackSize);
77 if (currentStackSize != stackSize) {
78 Console::println("Thread::start(): " + name + ": changing stack size from " + to_string(currentStackSize) + " to " + to_string(stackSize));
79 pthread_attr_setstacksize(&pThreadAttr, stackSize);
80 }
81
82 // create thread
83 auto result = pthread_create(&pThread, &pThreadAttr, &pThreadRun, (void*)this);
84 PTHREAD_CHECK_ERROR(name, "Could not create pthread", "pthread_create");
85 #endif
86}
87
88void* Thread::pThreadRun(void *thread) {
89 static_cast<Thread*>(thread)->run();
90 pthread_exit(NULL);
91 return NULL;
92}
93
95 stopRequested = true;
96}
97
99 return stopRequested;
100}
101
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
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
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
Console class.
Definition: Console.h:26