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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
#include <stdio.h>
#include <string.h>
#include <poll.h>
#include <errno.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include "pthreadpool.h"
static int test_init(void)
{
struct pthreadpool *p;
int ret;
ret = pthreadpool_init(1, &p);
if (ret != 0) {
fprintf(stderr, "pthreadpool_init failed: %s\n",
strerror(ret));
return -1;
}
ret = pthreadpool_destroy(p);
if (ret != 0) {
fprintf(stderr, "pthreadpool_init failed: %s\n",
strerror(ret));
return -1;
}
return 0;
}
static void test_sleep(void *ptr)
{
int *ptimeout = (int *)ptr;
int ret;
ret = poll(NULL, 0, *ptimeout);
if (ret != 0) {
fprintf(stderr, "poll returned %d (%s)\n",
ret, strerror(errno));
}
}
static int test_jobs(int num_threads, int num_jobs)
{
char *finished;
struct pthreadpool *p;
int timeout = 1;
int i, ret;
finished = (char *)calloc(1, num_jobs);
if (finished == NULL) {
fprintf(stderr, "calloc failed\n");
return -1;
}
ret = pthreadpool_init(num_threads, &p);
if (ret != 0) {
fprintf(stderr, "pthreadpool_init failed: %s\n",
strerror(ret));
return -1;
}
for (i=0; i<num_jobs; i++) {
ret = pthreadpool_add_job(p, i, test_sleep, &timeout);
if (ret != 0) {
fprintf(stderr, "pthreadpool_add_job failed: %s\n",
strerror(ret));
return -1;
}
}
for (i=0; i<num_jobs; i++) {
int jobid = -1;
ret = pthreadpool_finished_job(p, &jobid);
if ((ret != 0) || (jobid >= num_jobs)) {
fprintf(stderr, "invalid job number %d\n", jobid);
return -1;
}
finished[jobid] += 1;
}
for (i=0; i<num_jobs; i++) {
if (finished[i] != 1) {
fprintf(stderr, "finished[%d] = %d\n",
i, finished[i]);
return -1;
}
}
ret = pthreadpool_destroy(p);
if (ret != 0) {
fprintf(stderr, "pthreadpool_destroy failed: %s\n",
strerror(ret));
return -1;
}
free(finished);
return 0;
}
static int test_busydestroy(void)
{
struct pthreadpool *p;
int timeout = 50;
struct pollfd pfd;
int ret;
ret = pthreadpool_init(1, &p);
if (ret != 0) {
fprintf(stderr, "pthreadpool_init failed: %s\n",
strerror(ret));
return -1;
}
ret = pthreadpool_add_job(p, 1, test_sleep, &timeout);
if (ret != 0) {
fprintf(stderr, "pthreadpool_add_job failed: %s\n",
strerror(ret));
return -1;
}
ret = pthreadpool_destroy(p);
if (ret != EBUSY) {
fprintf(stderr, "Could destroy a busy pool\n");
return -1;
}
pfd.fd = pthreadpool_signal_fd(p);
pfd.events = POLLIN|POLLERR;
poll(&pfd, 1, -1);
ret = pthreadpool_destroy(p);
if (ret != 0) {
fprintf(stderr, "pthreadpool_destroy failed: %s\n",
strerror(ret));
return -1;
}
return 0;
}
struct threaded_state {
pthread_t tid;
struct pthreadpool *p;
int start_job;
int num_jobs;
int timeout;
};
static void *test_threaded_worker(void *p)
{
struct threaded_state *state = (struct threaded_state *)p;
int i;
for (i=0; i<state->num_jobs; i++) {
int ret = pthreadpool_add_job(state->p, state->start_job + i,
test_sleep, &state->timeout);
if (ret != 0) {
fprintf(stderr, "pthreadpool_add_job failed: %s\n",
strerror(ret));
return NULL;
}
}
return NULL;
}
static int test_threaded_addjob(int num_pools, int num_threads, int poolsize,
int num_jobs)
{
struct pthreadpool **pools;
struct threaded_state *states;
struct threaded_state *state;
struct pollfd *pfds;
char *finished;
pid_t child;
int i, ret, poolnum;
int received;
states = calloc(num_threads, sizeof(struct threaded_state));
if (states == NULL) {
fprintf(stderr, "calloc failed\n");
return -1;
}
finished = calloc(num_threads * num_jobs, 1);
if (finished == NULL) {
fprintf(stderr, "calloc failed\n");
return -1;
}
pools = calloc(num_pools, sizeof(struct pthreadpool *));
if (pools == NULL) {
fprintf(stderr, "calloc failed\n");
return -1;
}
pfds = calloc(num_pools, sizeof(struct pollfd));
if (pfds == NULL) {
fprintf(stderr, "calloc failed\n");
return -1;
}
for (i=0; i<num_pools; i++) {
ret = pthreadpool_init(poolsize, &pools[i]);
if (ret != 0) {
fprintf(stderr, "pthreadpool_init failed: %s\n",
strerror(ret));
return -1;
}
pfds[i].fd = pthreadpool_signal_fd(pools[i]);
pfds[i].events = POLLIN|POLLHUP;
}
poolnum = 0;
for (i=0; i<num_threads; i++) {
state = &states[i];
state->p = pools[poolnum];
poolnum = (poolnum + 1) % num_pools;
state->num_jobs = num_jobs;
state->timeout = 1;
state->start_job = i * num_jobs;
ret = pthread_create(&state->tid, NULL, test_threaded_worker,
state);
if (ret != 0) {
fprintf(stderr, "pthread_create failed: %s\n",
strerror(ret));
return -1;
}
}
if (random() % 1) {
poll(NULL, 0, 1);
}
child = fork();
if (child < 0) {
fprintf(stderr, "fork failed: %s\n", strerror(errno));
return -1;
}
if (child == 0) {
for (i=0; i<num_pools; i++) {
ret = pthreadpool_destroy(pools[i]);
if (ret != 0) {
fprintf(stderr, "pthreadpool_destroy failed: "
"%s\n", strerror(ret));
exit(1);
}
}
/* child */
exit(0);
}
for (i=0; i<num_threads; i++) {
ret = pthread_join(states[i].tid, NULL);
if (ret != 0) {
fprintf(stderr, "pthread_join(%d) failed: %s\n",
i, strerror(ret));
return -1;
}
}
received = 0;
while (received < num_threads*num_jobs) {
int j;
ret = poll(pfds, num_pools, 1000);
if (ret == -1) {
fprintf(stderr, "poll failed: %s\n",
strerror(errno));
return -1;
}
if (ret == 0) {
fprintf(stderr, "\npoll timed out\n");
break;
}
for (j=0; j<num_pools; j++) {
int jobid = -1;
if ((pfds[j].revents & (POLLIN|POLLHUP)) == 0) {
continue;
}
ret = pthreadpool_finished_job(pools[j], &jobid);
if ((ret != 0) || (jobid >= num_jobs * num_threads)) {
fprintf(stderr, "invalid job number %d\n",
jobid);
return -1;
}
finished[jobid] += 1;
received += 1;
}
}
for (i=0; i<num_threads*num_jobs; i++) {
if (finished[i] != 1) {
fprintf(stderr, "finished[%d] = %d\n",
i, finished[i]);
return -1;
}
}
for (i=0; i<num_pools; i++) {
ret = pthreadpool_destroy(pools[i]);
if (ret != 0) {
fprintf(stderr, "pthreadpool_destroy failed: %s\n",
strerror(ret));
return -1;
}
}
free(pfds);
free(pools);
free(states);
free(finished);
return 0;
}
int main(void)
{
int ret;
ret = test_init();
if (ret != 0) {
fprintf(stderr, "test_init failed\n");
return 1;
}
ret = test_jobs(10, 10000);
if (ret != 0) {
fprintf(stderr, "test_jobs failed\n");
return 1;
}
ret = test_busydestroy();
if (ret != 0) {
fprintf(stderr, "test_busydestroy failed\n");
return 1;
}
/*
* Test 10 threads adding jobs on a single pool
*/
ret = test_threaded_addjob(1, 10, 5, 5000);
if (ret != 0) {
fprintf(stderr, "test_jobs failed\n");
return 1;
}
/*
* Test 10 threads on 3 pools to verify our fork handling
* works right.
*/
ret = test_threaded_addjob(3, 10, 5, 5000);
if (ret != 0) {
fprintf(stderr, "test_jobs failed\n");
return 1;
}
printf("success\n");
return 0;
}
|