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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
/*
* Copyright (c) 2010 Wayne Meissner
*
* All rights reserved.
*
* This file is part of ruby-ffi.
*
* This code is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3 only, as
* published by the Free Software Foundation.
*
* This code 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 Lesser General Public License
* version 3 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdbool.h>
#ifndef _WIN32
# include <pthread.h>
# include <errno.h>
# include <signal.h>
#else
# define _WINSOCKAPI_
# include <windows.h>
#endif
#include <fcntl.h>
#include "Thread.h"
#ifndef HAVE_RUBY_THREAD_HAS_GVL_P
rbffi_thread_t rbffi_active_thread;
rbffi_thread_t
rbffi_thread_self()
{
rbffi_thread_t self;
#ifdef _WIN32
self.id = GetCurrentThreadId();
#else
self.id = pthread_self();
#endif
self.valid = true;
return self;
}
bool
rbffi_thread_equal(const rbffi_thread_t* lhs, const rbffi_thread_t* rhs)
{
return lhs->valid && rhs->valid &&
#ifdef _WIN32
lhs->id == rhs->id;
#else
pthread_equal(lhs->id, rhs->id);
#endif
}
bool
rbffi_thread_has_gvl_p(void)
{
#ifdef _WIN32
return rbffi_active_thread.valid && rbffi_active_thread.id == GetCurrentThreadId();
#else
return rbffi_active_thread.valid && pthread_equal(rbffi_active_thread.id, pthread_self());
#endif
}
#endif // HAVE_RUBY_THREAD_HAS_GVL_P
#ifndef HAVE_RB_THREAD_BLOCKING_REGION
#if !defined(_WIN32)
struct BlockingThread {
pthread_t tid;
VALUE (*fn)(void *);
void *data;
void (*ubf)(void *);
void *data2;
VALUE retval;
int wrfd;
int rdfd;
};
static void*
rbffi_blocking_thread(void* args)
{
struct BlockingThread* thr = (struct BlockingThread *) args;
char c = 1;
VALUE retval;
retval = (*thr->fn)(thr->data);
pthread_testcancel();
thr->retval = retval;
write(thr->wrfd, &c, sizeof(c));
return NULL;
}
static VALUE
wait_for_thread(void *data)
{
struct BlockingThread* thr = (struct BlockingThread *) data;
char c;
if (read(thr->rdfd, &c, 1) < 1) {
rb_thread_wait_fd(thr->rdfd);
while (read(thr->rdfd, &c, 1) < 1 && rb_io_wait_readable(thr->rdfd) == Qtrue) {
;
}
}
return Qnil;
}
static VALUE
cleanup_blocking_thread(void *data, VALUE exc)
{
struct BlockingThread* thr = (struct BlockingThread *) data;
if (thr->ubf != (void (*)(void *)) -1) {
(*thr->ubf)(thr->data2);
} else {
pthread_kill(thr->tid, SIGVTALRM);
}
return exc;
}
VALUE
rbffi_thread_blocking_region(VALUE (*func)(void *), void *data1, void (*ubf)(void *), void *data2)
{
struct BlockingThread* thr;
int fd[2];
VALUE exc;
if (pipe(fd) < 0) {
rb_raise(rb_eSystemCallError, "pipe(2) failed");
return Qnil;
}
fcntl(fd[0], F_SETFL, fcntl(fd[0], F_GETFL) | O_NONBLOCK);
thr = ALLOC_N(struct BlockingThread, 1);
thr->rdfd = fd[0];
thr->wrfd = fd[1];
thr->fn = func;
thr->data = data1;
thr->ubf = ubf;
thr->data2 = data2;
thr->retval = Qnil;
if (pthread_create(&thr->tid, NULL, rbffi_blocking_thread, thr) != 0) {
close(fd[0]);
close(fd[1]);
xfree(thr);
rb_raise(rb_eSystemCallError, "pipe(2) failed");
return Qnil;
}
exc = rb_rescue2(wait_for_thread, (VALUE) thr, cleanup_blocking_thread, (VALUE) thr,
rb_eException);
pthread_join(thr->tid, NULL);
close(fd[1]);
close(fd[0]);
xfree(thr);
if (exc != Qnil) {
rb_exc_raise(exc);
}
return thr->retval;
}
#else
/* win32 implementation */
struct BlockingThread {
HANDLE tid;
VALUE (*fn)(void *);
void *data;
void (*ubf)(void *);
void *data2;
VALUE retval;
int wrfd;
int rdfd;
};
static DWORD __stdcall
rbffi_blocking_thread(LPVOID args)
{
struct BlockingThread* thr = (struct BlockingThread *) args;
char c = 1;
VALUE retval;
retval = (*thr->fn)(thr->data);
thr->retval = retval;
write(thr->wrfd, &c, sizeof(c));
return 0;
}
static VALUE
wait_for_thread(void *data)
{
struct BlockingThread* thr = (struct BlockingThread *) data;
char c, res;
fd_set rfds;
FD_ZERO(&rfds);
FD_SET(thr->rdfd, &rfds);
rb_thread_select(thr->rdfd + 1, &rfds, NULL, NULL, NULL);
read(thr->rdfd, &c, 1);
return Qnil;
}
static VALUE
cleanup_blocking_thread(void *data, VALUE exc)
{
struct BlockingThread* thr = (struct BlockingThread *) data;
if (thr->ubf != (void (*)(void *)) -1) {
(*thr->ubf)(thr->data2);
} else {
TerminateThread(thr->tid, 0);
}
return exc;
}
VALUE
rbffi_thread_blocking_region(VALUE (*func)(void *), void *data1, void (*ubf)(void *), void *data2)
{
struct BlockingThread* thr;
int fd[2];
VALUE exc;
DWORD state;
DWORD res;
if (_pipe(fd, 1024, O_BINARY) == -1) {
rb_raise(rb_eSystemCallError, "_pipe() failed");
return Qnil;
}
thr = ALLOC_N(struct BlockingThread, 1);
thr->rdfd = fd[0];
thr->wrfd = fd[1];
thr->fn = func;
thr->data = data1;
thr->ubf = ubf;
thr->data2 = data2;
thr->retval = Qnil;
thr->tid = CreateThread(NULL, 0, rbffi_blocking_thread, thr, 0, NULL);
if (!thr->tid) {
close(fd[0]);
close(fd[1]);
xfree(thr);
rb_raise(rb_eSystemCallError, "CreateThread() failed");
return Qnil;
}
exc = rb_rescue2(wait_for_thread, (VALUE) thr, cleanup_blocking_thread, (VALUE) thr,
rb_eException);
/* The thread should be finished, already. */
WaitForSingleObject(thr->tid, INFINITE);
CloseHandle(thr->tid);
close(fd[1]);
close(fd[0]);
xfree(thr);
if (exc != Qnil) {
rb_exc_raise(exc);
}
return thr->retval;
}
#if 0
/*
* FIXME: someone needs to implement something similar to the posix pipe based
* blocking region implementation above for ruby1.8.x on win32
*/
VALUE
rbffi_thread_blocking_region(VALUE (*func)(void *), void *data1, void (*ubf)(void *), void *data2)
{
#if !defined(HAVE_RUBY_THREAD_HAS_GVL_P)
rbffi_thread_t oldThread;
#endif
VALUE res;
#if !defined(HAVE_RUBY_THREAD_HAS_GVL_P)
oldThread = rbffi_active_thread;
rbffi_active_thread = rbffi_thread_self();
#endif
res = (*func)(data1);
#if !defined(HAVE_RUBY_THREAD_HAS_GVL_P)
rbffi_active_thread = oldThread;
#endif
return res;
}
#endif
#endif /* !_WIN32 */
#endif // HAVE_RB_THREAD_BLOCKING_REGION
|