summaryrefslogtreecommitdiff
path: root/node/Thread.cpp
blob: 37a1a5a5a74ae1fc5b837b7bac8d076253d2ae00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
 * ZeroTier One - Global Peer to Peer Ethernet
 * Copyright (C) 2012-2013  ZeroTier Networks LLC
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * --
 *
 * ZeroTier may be used and distributed under the terms of the GPLv3, which
 * are available at: http://www.gnu.org/licenses/gpl-3.0.html
 *
 * If you would like to embed ZeroTier into a commercial application or
 * redistribute it in a modified binary form, please contact ZeroTier Networks
 * LLC. Start here: http://www.zerotier.com/
 */

#include "Thread.hpp"

#if defined(__APPLE__) || defined(__linux__) || defined(linux) || defined(__LINUX__) || defined(__linux)

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <stdexcept>

extern "C" {
static void *__m_thread_main(void *ptr)
{
	((ZeroTier::Thread *)ptr)->__intl_run();
	return (void *)0;
}
}

namespace ZeroTier {

Thread::Thread() :
	suicidalThread(false),
	_impl(malloc(sizeof(pthread_t))),
	_running()
{
	memset(_impl,0,sizeof(pthread_t));
}

Thread::~Thread()
{
	free(_impl);
}

void Thread::start()
{
	if (!*_running) {
		++_running;
		pthread_create((pthread_t *)_impl,(const pthread_attr_t *)0,&__m_thread_main,(void *)this);
	}
}

void Thread::join()
{
	void *tmp;
	if (*_running)
		pthread_join(*((pthread_t *)_impl),&tmp);
}

void Thread::sleep(unsigned long ms)
{
	usleep(ms);
}

void Thread::__intl_run()
{
	for(;;) {
		_notInit = false;
		this->main();
		if (suicidalThread) {
			delete this;
			return;
		}
		if (_notInit) // UGLY ASS HACK: see main()
			usleep(50);
		else break;
	}
	--_running;
}

void Thread::main()
	throw()
{
	_notInit = true; // UGLY ASS HACK: retry if subclass has not defined virtual function pointer yet
}

} // namespace ZeroTier

#endif

#ifdef _WIN32

#include <Windows.h>
#include <stdio.h>
#include <stdlib.h>

DWORD WINAPI __m_thread_main(LPVOID lpParam)
{
	((ZeroTier::Thread *)lpParam)->__intl_run();
	return 0;
}

struct __m_thread_info
{
	HANDLE threadHandle;
	DWORD threadId;
	bool started;
};

namespace ZeroTier {

Thread::Thread() :
	suicidalThread(false),
	_impl(malloc(sizeof(__m_thread_info))),
	_running()
{
	memset(_impl,0,sizeof(__m_thread_info));
}

Thread::~Thread()
{
	if (((__m_thread_info *)_impl)->started)
		CloseHandle(((__m_thread_info *)_impl)->threadHandle);
	free(_impl);
}

void Thread::start()
{
	if (!*_running) {
		++_running;
		if ((((__m_thread_info *)_impl)->threadHandle = CreateThread(NULL,0,__m_thread_main,this,0,&(((__m_thread_info *)_impl)->threadId))) != NULL) {
			((__m_thread_info *)_impl)->started = true;
		}
	}
}

void Thread::join()
{
	if (*_running)
		WaitForSingleObject(((__m_thread_info *)_impl)->threadHandle,INFINITE);
}

void Thread::__intl_run()
{
	for(;;) {
		_notInit = false;
		this->main();
		if (suicidalThread) {
			delete this;
			return;
		}
		if (_notInit)
			Thread::sleep(50);
		else break;
	}
	--_running;
}

void Thread::main()
	throw()
{
	_notInit = true; // HACK: retry if subclass has not defined virtual function pointer yet
}

struct _Thread_RunInBackgroundData
{
	void (*func)(void *);
	void *ptr;
	HANDLE threadHandle;
	DWORD threadId;
};

} // namespace ZeroTier

#endif