summaryrefslogtreecommitdiffstats
path: root/thread.c
blob: 806e21057c9969bcd322bc9f2ca7cde8f821710f (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
193
194
195
196
197
198
199
200
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <pthread.h>
#include <sched.h>
#include <errno.h>

#include "thread.h"
#include "malloc.h"
#include "once.h"
#include "macro.h"

struct sa_thread {
    pthread_t id;
    sa_thread_func_t thread_func;
    void *userdata;
    int running;
    pthread_mutex_t running_mutex;
};

struct sa_tls {
    pthread_key_t key;
};

static sa_tls_t *thread_tls;
static sa_once_t thread_tls_once = SA_ONCE_INIT;

static void tls_free_cb(void *p) {
    sa_thread_t *t = p;

    sa_assert(t);
    
    if (!t->thread_func) 
        /* This is a foreign thread, we need to free the struct */
        sa_free(t);
}

static void thread_tls_once_func(void) {
    thread_tls = sa_tls_new(tls_free_cb);
}

static void* internal_thread_func(void *userdata) {
    sa_thread_t *t = userdata;
    sa_assert(t);

    t->id = pthread_self();
    sa_tls_set(thread_tls, t);

    t->thread_func(t->userdata);

    sa_assert_success(pthread_mutex_lock(&t->running_mutex));
    t->running = 0;
    sa_assert_success(pthread_mutex_unlock(&t->running_mutex));
    
    return NULL;
}

sa_thread_t* sa_thread_new(sa_thread_func_t thread_func, void *userdata) {
    sa_thread_t *t;

    sa_assert(thread_func);
    
    if (sa_once(&thread_tls_once, thread_tls_once_func) < 0 || !thread_tls)
        return NULL;

    if (!(t = sa_new(sa_thread_t, 1)))
        return NULL;
    
    t->thread_func = thread_func;
    t->userdata = userdata;

    sa_assert_success(pthread_mutex_init(&t->running_mutex, NULL));
    t->running = 1;
    
    if (pthread_create(&t->id, NULL, internal_thread_func, t) < 0) {
        sa_assert_success(pthread_mutex_destroy(&t->running_mutex));
        sa_free(t);
        return NULL;
    }

    return t;
}

int sa_thread_is_running(sa_thread_t *t) {
    int b;
    sa_assert(t);

    if (!t->thread_func) {
        /* Mhmm, this is a foreign thread, t->running is not
         * necessarily valid. We misuse pthread_getschedparam() to
         * check if the thread is valid. This might not be portable. */

        int policy;
        struct sched_param param;
        
        return pthread_getschedparam(t->id, &policy, &param) >= 0 || errno != ESRCH;
    }

    sa_assert_success(pthread_mutex_lock(&t->running_mutex));
    b = t->running;
    sa_assert_success(pthread_mutex_unlock(&t->running_mutex));
    
    return !!b;
}

void sa_thread_free(sa_thread_t *t) {
    sa_assert(t);
    
    sa_thread_join(t);
    sa_assert_success(pthread_mutex_destroy(&t->running_mutex));
    sa_free(t);
}

int sa_thread_join(sa_thread_t *t) {
    sa_assert(t);
    
    return pthread_join(t->id, NULL);
}

sa_thread_t* sa_thread_self(void) {
    sa_thread_t *t;
    
    if (sa_once(&thread_tls_once, thread_tls_once_func) < 0 || !thread_tls)
        return NULL;

    if ((t = sa_tls_get(thread_tls)))
        return t;

    /* This is a foreign thread, let's create a pthread structure to
     * make sure that we can always return a sensible pointer */
    
    if (!(t = sa_new(sa_thread_t, 1)))
        return NULL;
    
    t->id = pthread_self();
    t->thread_func = NULL;
    t->userdata = NULL;
    t->running = 1;

    sa_tls_set(thread_tls, t);
    
    return t;
}

void* sa_thread_get_data(sa_thread_t *t) {
    sa_assert(t);

    return t->userdata;
}

void sa_thread_set_data(sa_thread_t *t, void *userdata) {
    sa_assert(t);

    t->userdata = userdata;
}

void sa_thread_yield(void) {
#ifdef HAVE_PTHREAD_YIELD
    pthread_yield();
#else
    sa_assert_success(sched_yield());
#endif
}

sa_tls_t* sa_tls_new(sa_free_func_t free_cb) {
    sa_tls_t *t;

    if (!(t = sa_new(sa_tls_t, 1)))
        return NULL;

    if (pthread_key_create(&t->key, free_cb) < 0) {
        sa_free(t);
        return NULL;
    }
        
    return t;
}

void sa_tls_free(sa_tls_t *t) {
    sa_assert(t);

    sa_assert_success(pthread_key_delete(t->key));
    sa_free(t);
}

void *sa_tls_get(sa_tls_t *t) {
    sa_assert(t);
    
    return pthread_getspecific(t->key);
}

void *sa_tls_set(sa_tls_t *t, void *userdata) {
    void *r;
    
    r = pthread_getspecific(t->key);
    sa_assert_success(pthread_setspecific(t->key, userdata));
    return r;
}