2018-02-20 21:21:38 +00:00
|
|
|
/* radare - LGPL - Copyright 2009-2018 - pancake */
|
2009-07-21 11:13:24 +00:00
|
|
|
|
|
|
|
#include <r_th.h>
|
|
|
|
|
2017-04-09 00:17:54 +00:00
|
|
|
#if __WINDOWS__ && !defined(__CYGWIN__)
|
|
|
|
static DWORD WINAPI _r_th_launcher(void *_th) {
|
|
|
|
#else
|
2010-03-25 09:18:59 +00:00
|
|
|
static void *_r_th_launcher(void *_th) {
|
2017-04-09 00:17:54 +00:00
|
|
|
#endif
|
2009-07-21 11:13:24 +00:00
|
|
|
int ret;
|
2016-11-04 22:07:02 +00:00
|
|
|
RThread *th = _th;
|
2016-07-12 20:15:19 +00:00
|
|
|
th->ready = true;
|
2010-03-25 09:18:59 +00:00
|
|
|
#if __UNIX__
|
2016-11-04 22:07:02 +00:00
|
|
|
if (th->delay > 0) {
|
|
|
|
sleep (th->delay);
|
|
|
|
} else if (th->delay < 0) {
|
|
|
|
r_th_lock_wait (th->lock);
|
|
|
|
}
|
2010-03-25 09:18:59 +00:00
|
|
|
#else
|
2016-11-04 22:07:02 +00:00
|
|
|
if (th->delay < 0) {
|
|
|
|
r_th_lock_wait (th->lock);
|
|
|
|
}
|
2010-03-25 09:18:59 +00:00
|
|
|
#endif
|
2009-07-21 11:13:24 +00:00
|
|
|
do {
|
2017-07-26 16:46:22 +00:00
|
|
|
// CID 1378280: API usage errors (LOCK)
|
|
|
|
// "r_th_lock_leave" unlocks "th->lock->lock" while it is unlocked.
|
2016-11-04 22:07:02 +00:00
|
|
|
r_th_lock_leave (th->lock);
|
2016-07-12 20:15:19 +00:00
|
|
|
th->running = true;
|
2016-11-04 22:07:02 +00:00
|
|
|
ret = th->fun (th);
|
2016-07-12 20:15:19 +00:00
|
|
|
th->running = false;
|
2016-11-04 22:07:02 +00:00
|
|
|
r_th_lock_enter (th->lock);
|
|
|
|
} while (ret);
|
2009-07-21 11:13:24 +00:00
|
|
|
#if HAVE_PTHREAD
|
2016-11-04 22:07:02 +00:00
|
|
|
pthread_exit (&ret);
|
2009-07-21 11:13:24 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-25 09:18:59 +00:00
|
|
|
R_API int r_th_push_task(struct r_th_t *th, void *user) {
|
2016-07-12 20:15:19 +00:00
|
|
|
int ret = true;
|
2009-07-21 11:13:24 +00:00
|
|
|
th->user = user;
|
2016-11-04 22:07:02 +00:00
|
|
|
r_th_lock_leave (th->lock);
|
2009-07-21 11:13:24 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-11-04 22:07:02 +00:00
|
|
|
R_API RThread *r_th_new(R_TH_FUNCTION(fun), void *user, int delay) {
|
2014-08-28 10:08:46 +00:00
|
|
|
RThread *th = R_NEW0 (RThread);
|
2010-05-20 15:40:58 +00:00
|
|
|
if (th) {
|
2017-04-07 22:52:49 +00:00
|
|
|
th->lock = r_th_lock_new (false);
|
2016-07-12 20:15:19 +00:00
|
|
|
th->running = false;
|
2010-05-20 15:40:58 +00:00
|
|
|
th->fun = fun;
|
|
|
|
th->user = user;
|
|
|
|
th->delay = delay;
|
2016-07-12 20:15:19 +00:00
|
|
|
th->breaked = false;
|
|
|
|
th->ready = false;
|
2010-05-20 15:40:58 +00:00
|
|
|
#if HAVE_PTHREAD
|
2016-11-04 22:07:02 +00:00
|
|
|
pthread_create (&th->tid, NULL, _r_th_launcher, th);
|
2017-02-26 15:51:03 +00:00
|
|
|
#elif __WINDOWS__ && !defined(__CYGWIN__)
|
2017-04-09 00:17:54 +00:00
|
|
|
th->tid = CreateThread (NULL, 0, _r_th_launcher, th, 0, 0);
|
2010-05-20 15:40:58 +00:00
|
|
|
#endif
|
|
|
|
}
|
2009-07-21 11:13:24 +00:00
|
|
|
return th;
|
|
|
|
}
|
|
|
|
|
2016-11-04 22:07:02 +00:00
|
|
|
R_API void r_th_break(RThread *th) {
|
2016-07-12 20:15:19 +00:00
|
|
|
th->breaked = true;
|
2009-07-21 11:13:24 +00:00
|
|
|
}
|
|
|
|
|
2018-02-20 21:21:38 +00:00
|
|
|
R_API bool r_th_kill(RThread *th, bool force) {
|
2017-12-18 12:27:26 +00:00
|
|
|
if (!th) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-07-12 20:15:19 +00:00
|
|
|
th->breaked = true;
|
2017-12-18 12:27:26 +00:00
|
|
|
r_th_break (th);
|
|
|
|
r_th_wait (th);
|
2009-07-21 11:13:24 +00:00
|
|
|
#if HAVE_PTHREAD
|
2011-09-25 04:57:13 +00:00
|
|
|
#ifdef __ANDROID__
|
2011-09-26 00:10:25 +00:00
|
|
|
pthread_kill (th->tid, 9);
|
2011-09-25 04:57:13 +00:00
|
|
|
#else
|
2010-03-25 09:18:59 +00:00
|
|
|
pthread_cancel (th->tid);
|
2011-09-25 04:57:13 +00:00
|
|
|
#endif
|
2017-04-09 00:17:54 +00:00
|
|
|
#elif __WINDOWS__ && !defined(__CYGWIN__)
|
|
|
|
TerminateThread (th->tid, -1);
|
2009-07-21 11:13:24 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-04 22:07:02 +00:00
|
|
|
R_API bool r_th_start(RThread *th, int enable) {
|
|
|
|
bool ret = true;
|
2009-07-21 11:13:24 +00:00
|
|
|
if (enable) {
|
|
|
|
if (!th->running) {
|
|
|
|
// start thread
|
2016-11-04 22:07:02 +00:00
|
|
|
while (!th->ready) {
|
|
|
|
/* spinlock */
|
|
|
|
}
|
2010-05-20 15:40:58 +00:00
|
|
|
r_th_lock_leave (th->lock);
|
2009-07-21 11:13:24 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (th->running) {
|
|
|
|
// stop thread
|
2010-03-25 09:18:59 +00:00
|
|
|
r_th_kill (th, 0);
|
2010-05-20 15:40:58 +00:00
|
|
|
r_th_lock_enter (th->lock); // deadlock?
|
2009-07-21 11:13:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
th->running = enable;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-03-25 09:18:59 +00:00
|
|
|
R_API int r_th_wait(struct r_th_t *th) {
|
2016-07-12 20:15:19 +00:00
|
|
|
int ret = false;
|
2015-07-14 11:55:58 +00:00
|
|
|
void *thret;
|
2010-06-23 15:30:16 +00:00
|
|
|
if (th) {
|
2017-04-09 00:17:54 +00:00
|
|
|
#if HAVE_PTHREAD
|
2010-06-23 15:30:16 +00:00
|
|
|
ret = pthread_join (th->tid, &thret);
|
2017-04-09 00:17:54 +00:00
|
|
|
#elif __WINDOWS__ && !defined(__CYGWIN__)
|
|
|
|
ret = WaitForSingleObject (th->tid, INFINITE);
|
|
|
|
#endif
|
2016-07-12 20:15:19 +00:00
|
|
|
th->running = false;
|
2010-06-23 15:30:16 +00:00
|
|
|
}
|
2009-07-21 11:13:24 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-03-25 09:18:59 +00:00
|
|
|
R_API int r_th_wait_async(struct r_th_t *th) {
|
2009-07-21 11:13:24 +00:00
|
|
|
return th->running;
|
|
|
|
}
|
|
|
|
|
2010-03-25 09:18:59 +00:00
|
|
|
R_API void *r_th_free(struct r_th_t *th) {
|
2016-07-12 20:15:19 +00:00
|
|
|
r_th_kill (th, true);
|
2017-04-09 00:17:54 +00:00
|
|
|
#if __WINDOWS__ && !defined(__CYGWIN__)
|
|
|
|
CloseHandle (th->tid);
|
|
|
|
#endif
|
2010-05-20 15:40:58 +00:00
|
|
|
r_th_lock_free (th->lock);
|
2010-03-25 09:18:59 +00:00
|
|
|
free (th);
|
2009-07-21 11:13:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-11-01 03:46:33 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
// Thread Pipes
|
|
|
|
typedef struct r_th_pipe_t {
|
|
|
|
RList *msglist;
|
|
|
|
RThread *th;
|
|
|
|
//RThreadLock *lock;
|
|
|
|
} RThreadPipe;
|
|
|
|
|
|
|
|
r_th_pipe_new();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|