-
Notifications
You must be signed in to change notification settings - Fork 23
/
rdthread.c
211 lines (157 loc) · 4.81 KB
/
rdthread.c
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*
* librd - Rapid Development C library
*
* Copyright (c) 2012-2013, Magnus Edenhill
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "rd.h"
#include "rdthread.h"
#include "rdqueue.h"
#include "rdevent.h"
#include "rdlog.h"
#include <sys/prctl.h>
#include <stdarg.h>
rd_thread_t *rd_mainthread;
__thread rd_thread_t *rd_currthread;
void rd_thread_init (void) {
pthread_t thr = pthread_self();
rd_mainthread = rd_thread_create0("main", &thr);
rd_currthread = rd_mainthread;
}
int rd_thread_poll (int timeout_ms) {
rd_fifoq_elm_t *rfqe;
int cnt = 0;
int nowait = timeout_ms == RD_POLL_NOWAIT;
while ((rfqe = rd_fifoq_pop0(&rd_currthread->rdt_eventq,
nowait, timeout_ms))) {
rd_thread_event_t *rte = rfqe->rfqe_ptr;
rd_thread_event_call(rte);
rd_fifoq_elm_release(&rd_currthread->rdt_eventq, rfqe);
cnt++;
if (unlikely(rd_currthread->rdt_state == RD_THREAD_S_EXITING))
break;
}
return cnt;
}
static void rd_thread_destroy (rd_thread_t *rdt) {
assert(rdt->rdt_state != RD_THREAD_S_RUNNING);
if (rdt->rdt_name)
free(rdt->rdt_name);
rd_fifoq_destroy(&rdt->rdt_eventq);
free(rdt);
}
void rd_thread_cleanup (void) {
extern void rd_string_thread_cleanup ();
rd_string_thread_cleanup();
}
void rd_thread_dispatch (void) {
while (rd_currthread->rdt_state == RD_THREAD_S_RUNNING) {
/* FIXME: Proper conding for all thread inputs. */
rd_thread_poll(100);
}
rd_thread_cleanup();
}
static void *rd_thread_start_routine (void *arg) {
rd_thread_t *rdt = arg;
void *ret;
/* By default with block the user-defined signals. */
rd_thread_sigmask(SIG_BLOCK, SIGUSR1, SIGUSR2, RD_SIG_END);
rd_currthread = rdt;
ret = rdt->rdt_start(rdt->rdt_start_arg);
rd_thread_cleanup();
rd_thread_destroy(rdt);
return ret;
}
rd_thread_t *rd_thread_create0 (const char *name, pthread_t *pthread) {
rd_thread_t *rdt;
rdt = calloc(1, sizeof(*rdt));
if (name)
rdt->rdt_name = strdup(name);
rdt->rdt_state = RD_THREAD_S_RUNNING;
rd_fifoq_init(&rdt->rdt_eventq);
if (pthread)
rdt->rdt_thread = *pthread;
return rdt;
}
int rd_thread_create (rd_thread_t **rdt,
const char *name,
const pthread_attr_t *attr,
void *(*start_routine)(void*),
void *arg) {
rd_thread_t *rdt0;
rdt0 = rd_thread_create0(name, NULL);
rdt0->rdt_start = start_routine;
rdt0->rdt_start_arg = arg;
if (rdt)
*rdt = rdt0;
/* FIXME: We should block all signals until pthread_create returns. */
if (pthread_create(&rdt0->rdt_thread, attr,
rd_thread_start_routine, rdt0)) {
int errno_save = errno;
rd_thread_destroy(rdt0);
if (rdt)
*rdt = NULL;
errno = errno_save;
return -1;
}
#ifdef PR_SET_NAME
prctl(PR_SET_NAME, (char *)rdt0->rdt_name, 0, 0, 0);
#endif
return 0;
}
int rd_threads_create (const char *nameprefix, int threadcount,
const pthread_attr_t *attr,
void *(*start_routine)(void*),
void *arg) {
int i;
char *name = alloca(strlen(nameprefix) + 4);
int failed = 0;
if (threadcount >= 1000) {
errno = E2BIG;
return -1;
}
for (i = 0 ; i < threadcount ; i++) {
sprintf(name, "%s%i", nameprefix, i);
if (!rd_thread_create(NULL, name, attr, start_routine, arg))
failed++;
}
if (failed == threadcount)
return -1;
return threadcount - failed;
}
int rd_thread_sigmask (int how, ...) {
va_list ap;
sigset_t set;
int sig;
sigemptyset(&set);
va_start(ap, how);
while ((sig = va_arg(ap, int)) != RD_SIG_END) {
if (sig == RD_SIG_ALL)
sigfillset(&set);
else
sigaddset(&set, sig);
}
va_end(ap);
return pthread_sigmask(how, &set, NULL);
}