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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
/*
* ivykis, an event handling library
* Copyright (C) 2010 Lennert Buytenhek
* Dedicated to Marija Kulikova.
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version
* 2.1 as published by the Free Software Foundation.
*
* This library 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 2.1 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License version 2.1 along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <iv.h>
#include <iv_list.h>
#include <iv_thread.h>
#include <iv_tls.h>
#include <iv_work.h>
#include <pthread.h>
#include <syslog.h>
#include "iv_private.h"
/* data structures **********************************************************/
struct work_pool_priv {
pthread_mutex_t lock;
struct iv_event ev;
int shutting_down;
int started_threads;
struct iv_list_head idle_threads;
void *cookie;
void (*thread_start)(void *cookie);
void (*thread_stop)(void *cookie);
uint32_t seq_head;
uint32_t seq_tail;
struct iv_list_head work_items;
struct iv_list_head work_done;
};
struct work_pool_thread {
struct work_pool_priv *pool;
struct iv_list_head list;
int kicked;
struct iv_event kick;
struct iv_timer idle_timer;
};
/* worker thread ************************************************************/
static void __iv_work_thread_die(struct work_pool_thread *thr)
{
struct work_pool_priv *pool = thr->pool;
if (thr->kicked)
iv_fatal("__iv_work_thread_die: called on kicked thread");
iv_event_unregister(&thr->kick);
free(thr);
pool->started_threads--;
if (pool->thread_stop != NULL)
pool->thread_stop(pool->cookie);
if (pool->shutting_down && !pool->started_threads)
iv_event_post(&pool->ev);
}
static void iv_work_thread_got_event(void *_thr)
{
struct work_pool_thread *thr = _thr;
struct work_pool_priv *pool = thr->pool;
uint32_t last_seq;
pthread_mutex_lock(&pool->lock);
thr->kicked = 0;
if (!iv_list_empty(&thr->list)) {
iv_list_del_init(&thr->list);
iv_timer_unregister(&thr->idle_timer);
}
last_seq = pool->seq_tail;
while ((int32_t)(last_seq - pool->seq_head) > 0) {
struct iv_work_item *work;
pool->seq_head++;
work = iv_container_of(pool->work_items.next,
struct iv_work_item, list);
iv_list_del(&work->list);
pthread_mutex_unlock(&pool->lock);
work->work(work->cookie);
iv_invalidate_now();
pthread_mutex_lock(&pool->lock);
if (iv_list_empty(&pool->work_done))
iv_event_post(&pool->ev);
iv_list_add_tail(&work->list, &pool->work_done);
}
if (pool->seq_head == pool->seq_tail) {
if (!pool->shutting_down) {
iv_list_add(&thr->list, &pool->idle_threads);
iv_validate_now();
thr->idle_timer.expires = iv_now;
thr->idle_timer.expires.tv_sec += 10;
iv_timer_register(&thr->idle_timer);
} else {
__iv_work_thread_die(thr);
}
} else {
/*
* If we're already at the maximum number of pool
* threads, and none of those threads were idle when
* more work arrived, then there may have been no
* kick sent for the new work item(s) (and no new
* pool thread started either), so if we're leaving
* with work items still pending, kick ourselves by
* hand, to make sure we don't deadlock.
*/
iv_event_post(&thr->kick);
}
pthread_mutex_unlock(&pool->lock);
}
static void iv_work_thread_idle_timeout(void *_thr)
{
struct work_pool_thread *thr = _thr;
struct work_pool_priv *pool = thr->pool;
pthread_mutex_lock(&pool->lock);
if (thr->kicked) {
thr->idle_timer.expires = iv_now;
thr->idle_timer.expires.tv_sec += 10;
iv_timer_register(&thr->idle_timer);
pthread_mutex_unlock(&pool->lock);
return;
}
iv_list_del(&thr->list);
__iv_work_thread_die(thr);
pthread_mutex_unlock(&pool->lock);
}
static void iv_work_thread(void *_thr)
{
struct work_pool_thread *thr = _thr;
struct work_pool_priv *pool = thr->pool;
iv_init();
INIT_IV_LIST_HEAD(&thr->list);
thr->kicked = 0;
IV_EVENT_INIT(&thr->kick);
thr->kick.cookie = thr;
thr->kick.handler = iv_work_thread_got_event;
iv_event_register(&thr->kick);
IV_TIMER_INIT(&thr->idle_timer);
thr->idle_timer.cookie = thr;
thr->idle_timer.handler = iv_work_thread_idle_timeout;
if (pool->thread_start != NULL)
pool->thread_start(pool->cookie);
iv_event_post(&thr->kick);
iv_main();
iv_deinit();
}
/* main thread **************************************************************/
static void iv_work_event(void *_pool)
{
struct work_pool_priv *pool = _pool;
struct iv_list_head items;
pthread_mutex_lock(&pool->lock);
__iv_list_steal_elements(&pool->work_done, &items);
pthread_mutex_unlock(&pool->lock);
while (!iv_list_empty(&items)) {
struct iv_work_item *work;
work = iv_container_of(items.next, struct iv_work_item, list);
iv_list_del(&work->list);
work->completion(work->cookie);
}
if (pool->shutting_down) {
pthread_mutex_lock(&pool->lock);
if (!pool->started_threads && iv_list_empty(&pool->work_done)) {
pthread_mutex_unlock(&pool->lock);
pthread_mutex_destroy(&pool->lock);
iv_event_unregister(&pool->ev);
free(pool);
return;
}
pthread_mutex_unlock(&pool->lock);
}
}
int iv_work_pool_create(struct iv_work_pool *this)
{
struct work_pool_priv *pool;
int ret;
pool = malloc(sizeof(*pool));
if (pool == NULL)
return -1;
ret = pthread_mutex_init(&pool->lock, NULL);
if (ret) {
free(pool);
return -1;
}
IV_EVENT_INIT(&pool->ev);
pool->ev.cookie = pool;
pool->ev.handler = iv_work_event;
iv_event_register(&pool->ev);
pool->shutting_down = 0;
pool->started_threads = 0;
INIT_IV_LIST_HEAD(&pool->idle_threads);
pool->cookie = this->cookie;
pool->thread_start = this->thread_start;
pool->thread_stop = this->thread_stop;
pool->seq_head = 0;
pool->seq_tail = 0;
INIT_IV_LIST_HEAD(&pool->work_items);
INIT_IV_LIST_HEAD(&pool->work_done);
this->priv = pool;
return 0;
}
void iv_work_pool_put(struct iv_work_pool *this)
{
struct work_pool_priv *pool = this->priv;
struct iv_list_head *ilh;
pthread_mutex_lock(&pool->lock);
this->priv = NULL;
pool->shutting_down = 1;
if (!pool->started_threads) {
pthread_mutex_unlock(&pool->lock);
iv_event_post(&pool->ev);
return;
}
iv_list_for_each (ilh, &pool->idle_threads) {
struct work_pool_thread *thr;
thr = iv_container_of(ilh, struct work_pool_thread, list);
iv_event_post(&thr->kick);
}
pthread_mutex_unlock(&pool->lock);
}
static int iv_work_start_thread(struct work_pool_priv *pool)
{
struct work_pool_thread *thr;
char name[512];
int ret;
thr = malloc(sizeof(*thr));
if (thr == NULL)
return -1;
thr->pool = pool;
snprintf(name, sizeof(name), "iv_work pool %p thread %p", pool, thr);
ret = iv_thread_create(name, iv_work_thread, thr);
if (ret < 0) {
free(thr);
return -1;
}
pool->started_threads++;
return 0;
}
static void
iv_work_submit_pool(struct iv_work_pool *this, struct iv_work_item *work)
{
struct work_pool_priv *pool = this->priv;
pthread_mutex_lock(&pool->lock);
pool->seq_tail++;
iv_list_add_tail(&work->list, &pool->work_items);
if (!iv_list_empty(&pool->idle_threads)) {
struct work_pool_thread *thr;
thr = iv_container_of(pool->idle_threads.next,
struct work_pool_thread, list);
thr->kicked = 1;
iv_event_post(&thr->kick);
} else if (pool->started_threads < this->max_threads) {
iv_work_start_thread(pool);
}
pthread_mutex_unlock(&pool->lock);
}
struct iv_work_thr_info {
struct iv_task task;
struct iv_list_head work_items;
};
static void iv_work_handle_local(void *_tinfo);
static void iv_work_tls_init_thread(void *_tinfo)
{
struct iv_work_thr_info *tinfo = _tinfo;
IV_TASK_INIT(&tinfo->task);
tinfo->task.cookie = tinfo;
tinfo->task.handler = iv_work_handle_local;
INIT_IV_LIST_HEAD(&tinfo->work_items);
}
static struct iv_tls_user iv_work_tls_user = {
.sizeof_state = sizeof(struct iv_work_thr_info),
.init_thread = iv_work_tls_init_thread,
};
static void iv_work_tls_init(void) __attribute__((constructor));
static void iv_work_tls_init(void)
{
iv_tls_user_register(&iv_work_tls_user);
}
static void iv_work_handle_local(void *_tinfo)
{
struct iv_work_thr_info *tinfo = _tinfo;
struct iv_list_head items;
__iv_list_steal_elements(&tinfo->work_items, &items);
while (!iv_list_empty(&items)) {
struct iv_work_item *work;
work = iv_container_of(items.next, struct iv_work_item, list);
iv_list_del(&work->list);
work->work(work->cookie);
work->completion(work->cookie);
}
}
static void iv_work_submit_local(struct iv_work_item *work)
{
struct iv_work_thr_info *tinfo = iv_tls_user_ptr(&iv_work_tls_user);
if (iv_list_empty(&tinfo->work_items))
iv_task_register(&tinfo->task);
iv_list_add_tail(&work->list, &tinfo->work_items);
}
void
iv_work_pool_submit_work(struct iv_work_pool *this, struct iv_work_item *work)
{
if (this != NULL)
iv_work_submit_pool(this, work);
else
iv_work_submit_local(work);
}
|